styles.css 182 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-41px;
  6. width:2819px;
  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. #u5832 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u5833_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:1196px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(215, 215, 215, 1);
  40. border-radius:0px;
  41. filter:drop-shadow(none);
  42. transition:none;
  43. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  44. font-weight:400;
  45. font-style:normal;
  46. font-size:14px;
  47. color:#AAAAAA;
  48. text-align:center;
  49. line-height:30px;
  50. }
  51. #u5833 {
  52. border-width:0px;
  53. position:absolute;
  54. left:41px;
  55. top:44px;
  56. width:1000px;
  57. height:1196px;
  58. display:flex;
  59. transition:none;
  60. transform-origin:50% 50%;
  61. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  62. font-weight:400;
  63. font-style:normal;
  64. font-size:14px;
  65. color:#AAAAAA;
  66. text-align:center;
  67. line-height:30px;
  68. }
  69. #u5833 .text {
  70. position:absolute;
  71. align-self:center;
  72. padding:5px 10px 5px 10px;
  73. box-sizing:border-box;
  74. width:100%;
  75. }
  76. #u5833_text {
  77. border-width:0px;
  78. word-wrap:break-word;
  79. text-transform:none;
  80. visibility:hidden;
  81. }
  82. #u5834_div {
  83. border-width:0px;
  84. position:absolute;
  85. left:0px;
  86. top:0px;
  87. width:83px;
  88. height:35px;
  89. background:inherit;
  90. background-color:rgba(255, 255, 255, 0);
  91. border-top:0px;
  92. border-right:0px;
  93. border-bottom:0px;
  94. border-radius:0px;
  95. border-top-left-radius:0px;
  96. border-bottom-left-radius:0px;
  97. filter:drop-shadow(none);
  98. transition:none;
  99. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  100. font-weight:500;
  101. font-style:normal;
  102. font-size:18px;
  103. }
  104. #u5834 {
  105. border-width:0px;
  106. position:absolute;
  107. left:61px;
  108. top:62px;
  109. width:83px;
  110. height:35px;
  111. display:flex;
  112. transition:none;
  113. transform-origin:50% 50%;
  114. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  115. font-weight:500;
  116. font-style:normal;
  117. font-size:18px;
  118. }
  119. #u5834 .text {
  120. position:absolute;
  121. align-self:center;
  122. padding:5px 10px 5px 0px;
  123. box-sizing:border-box;
  124. width:100%;
  125. }
  126. #u5834_text {
  127. border-width:0px;
  128. white-space:nowrap;
  129. text-transform:none;
  130. }
  131. #u5835 {
  132. border-width:0px;
  133. position:absolute;
  134. left:0px;
  135. top:0px;
  136. width:0px;
  137. height:0px;
  138. }
  139. #u5836_div {
  140. border-width:0px;
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:40px;
  145. height:40px;
  146. background:inherit;
  147. background-color:rgba(255, 255, 255, 0);
  148. border-top:0px;
  149. border-right:0px;
  150. border-bottom:0px;
  151. border-radius:0px;
  152. border-top-left-radius:0px;
  153. border-bottom-left-radius:0px;
  154. filter:drop-shadow(none);
  155. transition:none;
  156. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  157. font-weight:500;
  158. font-style:normal;
  159. font-size:18px;
  160. text-align:center;
  161. }
  162. #u5836 {
  163. border-width:0px;
  164. position:absolute;
  165. left:1001px;
  166. top:44px;
  167. width:40px;
  168. height:40px;
  169. display:flex;
  170. transition:none;
  171. transform-origin:50% 50%;
  172. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  173. font-weight:500;
  174. font-style:normal;
  175. font-size:18px;
  176. text-align:center;
  177. }
  178. #u5836 .text {
  179. position:absolute;
  180. align-self:center;
  181. padding:5px 10px 5px 0px;
  182. box-sizing:border-box;
  183. width:100%;
  184. }
  185. #u5836_text {
  186. border-width:0px;
  187. word-wrap:break-word;
  188. text-transform:none;
  189. }
  190. #u5837 {
  191. border-width:0px;
  192. position:absolute;
  193. left:989px;
  194. top:60px;
  195. width:13px;
  196. height:13px;
  197. display:flex;
  198. transition:none;
  199. }
  200. #u5837 .text {
  201. position:absolute;
  202. align-self:center;
  203. padding:2px 2px 2px 2px;
  204. box-sizing:border-box;
  205. width:100%;
  206. }
  207. #u5837_img {
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:13px;
  213. height:13px;
  214. }
  215. #u5837_text {
  216. border-width:0px;
  217. word-wrap:break-word;
  218. text-transform:none;
  219. visibility:hidden;
  220. }
  221. #u5838 {
  222. border-width:0px;
  223. position:absolute;
  224. left:0px;
  225. top:0px;
  226. width:0px;
  227. height:0px;
  228. }
  229. #u5839_div {
  230. border-width:0px;
  231. position:absolute;
  232. left:0px;
  233. top:0px;
  234. width:1000px;
  235. height:50px;
  236. background:inherit;
  237. background-color:rgba(255, 255, 255, 1);
  238. box-sizing:border-box;
  239. border-width:1px;
  240. border-style:solid;
  241. border-color:rgba(215, 215, 215, 1);
  242. border-radius:0px;
  243. filter:drop-shadow(none);
  244. transition:none;
  245. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  246. font-weight:400;
  247. font-style:normal;
  248. font-size:14px;
  249. color:#AAAAAA;
  250. text-align:center;
  251. line-height:30px;
  252. }
  253. #u5839 {
  254. border-width:0px;
  255. position:absolute;
  256. left:41px;
  257. top:1190px;
  258. width:1000px;
  259. height:50px;
  260. display:flex;
  261. transition:none;
  262. transform-origin:50% 50%;
  263. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  264. font-weight:400;
  265. font-style:normal;
  266. font-size:14px;
  267. color:#AAAAAA;
  268. text-align:center;
  269. line-height:30px;
  270. }
  271. #u5839 .text {
  272. position:absolute;
  273. align-self:center;
  274. padding:5px 10px 5px 10px;
  275. box-sizing:border-box;
  276. width:100%;
  277. }
  278. #u5839_text {
  279. border-width:0px;
  280. word-wrap:break-word;
  281. text-transform:none;
  282. visibility:hidden;
  283. }
  284. #u5840_div {
  285. border-width:0px;
  286. position:absolute;
  287. left:0px;
  288. top:0px;
  289. width:80px;
  290. height:30px;
  291. background:inherit;
  292. background-color:rgba(24, 144, 255, 1);
  293. border-radius:4px;
  294. filter:drop-shadow(none);
  295. transition:none;
  296. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  297. font-weight:400;
  298. font-style:normal;
  299. font-size:14px;
  300. color:#FFFFFF;
  301. }
  302. #u5840 {
  303. border-width:0px;
  304. position:absolute;
  305. left:939px;
  306. top:1200px;
  307. width:80px;
  308. height:30px;
  309. display:flex;
  310. transition:none;
  311. transform-origin:50% 50%;
  312. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  313. font-weight:400;
  314. font-style:normal;
  315. font-size:14px;
  316. color:#FFFFFF;
  317. }
  318. #u5840 .text {
  319. position:absolute;
  320. align-self:center;
  321. padding:2px 2px 2px 2px;
  322. box-sizing:border-box;
  323. width:100%;
  324. }
  325. #u5840_text {
  326. border-width:0px;
  327. word-wrap:break-word;
  328. text-transform:none;
  329. }
  330. #u5841_div {
  331. border-width:0px;
  332. position:absolute;
  333. left:0px;
  334. top:0px;
  335. width:80px;
  336. height:30px;
  337. background:inherit;
  338. background-color:rgba(255, 255, 255, 1);
  339. box-sizing:border-box;
  340. border-width:1px;
  341. border-style:solid;
  342. border-color:rgba(121, 121, 121, 1);
  343. border-radius:4px;
  344. filter:drop-shadow(none);
  345. transition:none;
  346. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  347. font-weight:400;
  348. font-style:normal;
  349. font-size:14px;
  350. }
  351. #u5841 {
  352. border-width:0px;
  353. position:absolute;
  354. left:849px;
  355. top:1200px;
  356. width:80px;
  357. height:30px;
  358. display:flex;
  359. transition:none;
  360. transform-origin:50% 50%;
  361. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  362. font-weight:400;
  363. font-style:normal;
  364. font-size:14px;
  365. }
  366. #u5841 .text {
  367. position:absolute;
  368. align-self:center;
  369. padding:2px 2px 2px 2px;
  370. box-sizing:border-box;
  371. width:100%;
  372. }
  373. #u5841_text {
  374. border-width:0px;
  375. word-wrap:break-word;
  376. text-transform:none;
  377. }
  378. #u5842_div {
  379. border-width:0px;
  380. position:absolute;
  381. left:0px;
  382. top:0px;
  383. width:75px;
  384. height:32px;
  385. background:inherit;
  386. background-color:rgba(255, 255, 255, 0);
  387. border-top:0px;
  388. border-right:0px;
  389. border-bottom:0px;
  390. border-radius:0px;
  391. border-top-left-radius:0px;
  392. border-bottom-left-radius:0px;
  393. filter:drop-shadow(none);
  394. transition:none;
  395. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  396. font-weight:500;
  397. font-style:normal;
  398. font-size:16px;
  399. }
  400. #u5842 {
  401. border-width:0px;
  402. position:absolute;
  403. left:92px;
  404. top:115px;
  405. width:75px;
  406. height:32px;
  407. display:flex;
  408. transition:none;
  409. transform-origin:50% 50%;
  410. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  411. font-weight:500;
  412. font-style:normal;
  413. font-size:16px;
  414. }
  415. #u5842 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:5px 10px 5px 0px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u5842_text {
  423. border-width:0px;
  424. white-space:nowrap;
  425. text-transform:none;
  426. }
  427. #u5843 {
  428. border-width:0px;
  429. position:absolute;
  430. left:92px;
  431. top:199px;
  432. width:910px;
  433. height:210px;
  434. }
  435. #u5844 {
  436. border-width:0px;
  437. position:absolute;
  438. left:0px;
  439. top:0px;
  440. width:228px;
  441. height:30px;
  442. display:flex;
  443. transition:none;
  444. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  445. font-weight:400;
  446. font-style:normal;
  447. color:#FFFFFF;
  448. }
  449. #u5844 .text {
  450. position:absolute;
  451. align-self:center;
  452. padding:2px 2px 2px 2px;
  453. box-sizing:border-box;
  454. width:100%;
  455. }
  456. #u5844_img {
  457. border-width:0px;
  458. position:absolute;
  459. left:0px;
  460. top:0px;
  461. width:228px;
  462. height:30px;
  463. }
  464. #u5844_text {
  465. border-width:0px;
  466. word-wrap:break-word;
  467. text-transform:none;
  468. }
  469. #u5845 {
  470. border-width:0px;
  471. position:absolute;
  472. left:228px;
  473. top:0px;
  474. width:228px;
  475. height:30px;
  476. display:flex;
  477. transition:none;
  478. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  479. font-weight:400;
  480. font-style:normal;
  481. color:#FFFFFF;
  482. }
  483. #u5845 .text {
  484. position:absolute;
  485. align-self:center;
  486. padding:2px 2px 2px 2px;
  487. box-sizing:border-box;
  488. width:100%;
  489. }
  490. #u5845_img {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:228px;
  496. height:30px;
  497. }
  498. #u5845_text {
  499. border-width:0px;
  500. word-wrap:break-word;
  501. text-transform:none;
  502. }
  503. #u5846 {
  504. border-width:0px;
  505. position:absolute;
  506. left:456px;
  507. top:0px;
  508. width:228px;
  509. height:30px;
  510. display:flex;
  511. transition:none;
  512. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  513. font-weight:400;
  514. font-style:normal;
  515. color:#FFFFFF;
  516. }
  517. #u5846 .text {
  518. position:absolute;
  519. align-self:center;
  520. padding:2px 2px 2px 2px;
  521. box-sizing:border-box;
  522. width:100%;
  523. }
  524. #u5846_img {
  525. border-width:0px;
  526. position:absolute;
  527. left:0px;
  528. top:0px;
  529. width:228px;
  530. height:30px;
  531. }
  532. #u5846_text {
  533. border-width:0px;
  534. word-wrap:break-word;
  535. text-transform:none;
  536. }
  537. #u5847 {
  538. border-width:0px;
  539. position:absolute;
  540. left:684px;
  541. top:0px;
  542. width:226px;
  543. height:30px;
  544. display:flex;
  545. transition:none;
  546. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  547. font-weight:400;
  548. font-style:normal;
  549. color:#FFFFFF;
  550. }
  551. #u5847 .text {
  552. position:absolute;
  553. align-self:center;
  554. padding:2px 2px 2px 2px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u5847_img {
  559. border-width:0px;
  560. position:absolute;
  561. left:0px;
  562. top:0px;
  563. width:226px;
  564. height:30px;
  565. }
  566. #u5847_text {
  567. border-width:0px;
  568. word-wrap:break-word;
  569. text-transform:none;
  570. }
  571. #u5848 {
  572. border-width:0px;
  573. position:absolute;
  574. left:0px;
  575. top:30px;
  576. width:228px;
  577. height:30px;
  578. display:flex;
  579. transition:none;
  580. }
  581. #u5848 .text {
  582. position:absolute;
  583. align-self:center;
  584. padding:2px 2px 2px 2px;
  585. box-sizing:border-box;
  586. width:100%;
  587. }
  588. #u5848_img {
  589. border-width:0px;
  590. position:absolute;
  591. left:0px;
  592. top:0px;
  593. width:228px;
  594. height:30px;
  595. }
  596. #u5848_text {
  597. border-width:0px;
  598. word-wrap:break-word;
  599. text-transform:none;
  600. }
  601. #u5849 {
  602. border-width:0px;
  603. position:absolute;
  604. left:228px;
  605. top:30px;
  606. width:228px;
  607. height:30px;
  608. display:flex;
  609. transition:none;
  610. }
  611. #u5849 .text {
  612. position:absolute;
  613. align-self:center;
  614. padding:2px 2px 2px 2px;
  615. box-sizing:border-box;
  616. width:100%;
  617. }
  618. #u5849_img {
  619. border-width:0px;
  620. position:absolute;
  621. left:0px;
  622. top:0px;
  623. width:228px;
  624. height:30px;
  625. }
  626. #u5849_text {
  627. border-width:0px;
  628. word-wrap:break-word;
  629. text-transform:none;
  630. }
  631. #u5850 {
  632. border-width:0px;
  633. position:absolute;
  634. left:456px;
  635. top:30px;
  636. width:228px;
  637. height:30px;
  638. display:flex;
  639. transition:none;
  640. }
  641. #u5850 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u5850_img {
  649. border-width:0px;
  650. position:absolute;
  651. left:0px;
  652. top:0px;
  653. width:228px;
  654. height:30px;
  655. }
  656. #u5850_text {
  657. border-width:0px;
  658. word-wrap:break-word;
  659. text-transform:none;
  660. }
  661. #u5851 {
  662. border-width:0px;
  663. position:absolute;
  664. left:684px;
  665. top:30px;
  666. width:226px;
  667. height:30px;
  668. display:flex;
  669. transition:none;
  670. color:#1890FF;
  671. }
  672. #u5851 .text {
  673. position:absolute;
  674. align-self:center;
  675. padding:2px 2px 2px 2px;
  676. box-sizing:border-box;
  677. width:100%;
  678. }
  679. #u5851_img {
  680. border-width:0px;
  681. position:absolute;
  682. left:0px;
  683. top:0px;
  684. width:226px;
  685. height:30px;
  686. }
  687. #u5851_text {
  688. border-width:0px;
  689. word-wrap:break-word;
  690. text-transform:none;
  691. }
  692. #u5852 {
  693. border-width:0px;
  694. position:absolute;
  695. left:0px;
  696. top:60px;
  697. width:228px;
  698. height:30px;
  699. display:flex;
  700. transition:none;
  701. }
  702. #u5852 .text {
  703. position:absolute;
  704. align-self:center;
  705. padding:2px 2px 2px 2px;
  706. box-sizing:border-box;
  707. width:100%;
  708. }
  709. #u5852_img {
  710. border-width:0px;
  711. position:absolute;
  712. left:0px;
  713. top:0px;
  714. width:228px;
  715. height:30px;
  716. }
  717. #u5852_text {
  718. border-width:0px;
  719. word-wrap:break-word;
  720. text-transform:none;
  721. }
  722. #u5853 {
  723. border-width:0px;
  724. position:absolute;
  725. left:228px;
  726. top:60px;
  727. width:228px;
  728. height:30px;
  729. display:flex;
  730. transition:none;
  731. }
  732. #u5853 .text {
  733. position:absolute;
  734. align-self:center;
  735. padding:2px 2px 2px 2px;
  736. box-sizing:border-box;
  737. width:100%;
  738. }
  739. #u5853_img {
  740. border-width:0px;
  741. position:absolute;
  742. left:0px;
  743. top:0px;
  744. width:228px;
  745. height:30px;
  746. }
  747. #u5853_text {
  748. border-width:0px;
  749. word-wrap:break-word;
  750. text-transform:none;
  751. }
  752. #u5854 {
  753. border-width:0px;
  754. position:absolute;
  755. left:456px;
  756. top:60px;
  757. width:228px;
  758. height:30px;
  759. display:flex;
  760. transition:none;
  761. }
  762. #u5854 .text {
  763. position:absolute;
  764. align-self:center;
  765. padding:2px 2px 2px 2px;
  766. box-sizing:border-box;
  767. width:100%;
  768. }
  769. #u5854_img {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:228px;
  775. height:30px;
  776. }
  777. #u5854_text {
  778. border-width:0px;
  779. word-wrap:break-word;
  780. text-transform:none;
  781. }
  782. #u5855 {
  783. border-width:0px;
  784. position:absolute;
  785. left:684px;
  786. top:60px;
  787. width:226px;
  788. height:30px;
  789. display:flex;
  790. transition:none;
  791. color:#1890FF;
  792. }
  793. #u5855 .text {
  794. position:absolute;
  795. align-self:center;
  796. padding:2px 2px 2px 2px;
  797. box-sizing:border-box;
  798. width:100%;
  799. }
  800. #u5855_img {
  801. border-width:0px;
  802. position:absolute;
  803. left:0px;
  804. top:0px;
  805. width:226px;
  806. height:30px;
  807. }
  808. #u5855_text {
  809. border-width:0px;
  810. word-wrap:break-word;
  811. text-transform:none;
  812. }
  813. #u5856 {
  814. border-width:0px;
  815. position:absolute;
  816. left:0px;
  817. top:90px;
  818. width:228px;
  819. height:30px;
  820. display:flex;
  821. transition:none;
  822. }
  823. #u5856 .text {
  824. position:absolute;
  825. align-self:center;
  826. padding:2px 2px 2px 2px;
  827. box-sizing:border-box;
  828. width:100%;
  829. }
  830. #u5856_img {
  831. border-width:0px;
  832. position:absolute;
  833. left:0px;
  834. top:0px;
  835. width:228px;
  836. height:30px;
  837. }
  838. #u5856_text {
  839. border-width:0px;
  840. word-wrap:break-word;
  841. text-transform:none;
  842. }
  843. #u5857 {
  844. border-width:0px;
  845. position:absolute;
  846. left:228px;
  847. top:90px;
  848. width:228px;
  849. height:30px;
  850. display:flex;
  851. transition:none;
  852. }
  853. #u5857 .text {
  854. position:absolute;
  855. align-self:center;
  856. padding:2px 2px 2px 2px;
  857. box-sizing:border-box;
  858. width:100%;
  859. }
  860. #u5857_img {
  861. border-width:0px;
  862. position:absolute;
  863. left:0px;
  864. top:0px;
  865. width:228px;
  866. height:30px;
  867. }
  868. #u5857_text {
  869. border-width:0px;
  870. word-wrap:break-word;
  871. text-transform:none;
  872. }
  873. #u5858 {
  874. border-width:0px;
  875. position:absolute;
  876. left:456px;
  877. top:90px;
  878. width:228px;
  879. height:30px;
  880. display:flex;
  881. transition:none;
  882. }
  883. #u5858 .text {
  884. position:absolute;
  885. align-self:center;
  886. padding:2px 2px 2px 2px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u5858_img {
  891. border-width:0px;
  892. position:absolute;
  893. left:0px;
  894. top:0px;
  895. width:228px;
  896. height:30px;
  897. }
  898. #u5858_text {
  899. border-width:0px;
  900. word-wrap:break-word;
  901. text-transform:none;
  902. }
  903. #u5859 {
  904. border-width:0px;
  905. position:absolute;
  906. left:684px;
  907. top:90px;
  908. width:226px;
  909. height:30px;
  910. display:flex;
  911. transition:none;
  912. color:#1890FF;
  913. }
  914. #u5859 .text {
  915. position:absolute;
  916. align-self:center;
  917. padding:2px 2px 2px 2px;
  918. box-sizing:border-box;
  919. width:100%;
  920. }
  921. #u5859_img {
  922. border-width:0px;
  923. position:absolute;
  924. left:0px;
  925. top:0px;
  926. width:226px;
  927. height:30px;
  928. }
  929. #u5859_text {
  930. border-width:0px;
  931. word-wrap:break-word;
  932. text-transform:none;
  933. }
  934. #u5860 {
  935. border-width:0px;
  936. position:absolute;
  937. left:0px;
  938. top:120px;
  939. width:228px;
  940. height:30px;
  941. display:flex;
  942. transition:none;
  943. }
  944. #u5860 .text {
  945. position:absolute;
  946. align-self:center;
  947. padding:2px 2px 2px 2px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u5860_img {
  952. border-width:0px;
  953. position:absolute;
  954. left:0px;
  955. top:0px;
  956. width:228px;
  957. height:30px;
  958. }
  959. #u5860_text {
  960. border-width:0px;
  961. word-wrap:break-word;
  962. text-transform:none;
  963. }
  964. #u5861 {
  965. border-width:0px;
  966. position:absolute;
  967. left:228px;
  968. top:120px;
  969. width:228px;
  970. height:30px;
  971. display:flex;
  972. transition:none;
  973. }
  974. #u5861 .text {
  975. position:absolute;
  976. align-self:center;
  977. padding:2px 2px 2px 2px;
  978. box-sizing:border-box;
  979. width:100%;
  980. }
  981. #u5861_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:228px;
  987. height:30px;
  988. }
  989. #u5861_text {
  990. border-width:0px;
  991. word-wrap:break-word;
  992. text-transform:none;
  993. }
  994. #u5862 {
  995. border-width:0px;
  996. position:absolute;
  997. left:456px;
  998. top:120px;
  999. width:228px;
  1000. height:30px;
  1001. display:flex;
  1002. transition:none;
  1003. }
  1004. #u5862 .text {
  1005. position:absolute;
  1006. align-self:center;
  1007. padding:2px 2px 2px 2px;
  1008. box-sizing:border-box;
  1009. width:100%;
  1010. }
  1011. #u5862_img {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:228px;
  1017. height:30px;
  1018. }
  1019. #u5862_text {
  1020. border-width:0px;
  1021. word-wrap:break-word;
  1022. text-transform:none;
  1023. visibility:hidden;
  1024. }
  1025. #u5863 {
  1026. border-width:0px;
  1027. position:absolute;
  1028. left:684px;
  1029. top:120px;
  1030. width:226px;
  1031. height:30px;
  1032. display:flex;
  1033. transition:none;
  1034. }
  1035. #u5863 .text {
  1036. position:absolute;
  1037. align-self:center;
  1038. padding:2px 2px 2px 2px;
  1039. box-sizing:border-box;
  1040. width:100%;
  1041. }
  1042. #u5863_img {
  1043. border-width:0px;
  1044. position:absolute;
  1045. left:0px;
  1046. top:0px;
  1047. width:226px;
  1048. height:30px;
  1049. }
  1050. #u5863_text {
  1051. border-width:0px;
  1052. word-wrap:break-word;
  1053. text-transform:none;
  1054. visibility:hidden;
  1055. }
  1056. #u5864 {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:0px;
  1060. top:150px;
  1061. width:228px;
  1062. height:30px;
  1063. display:flex;
  1064. transition:none;
  1065. }
  1066. #u5864 .text {
  1067. position:absolute;
  1068. align-self:center;
  1069. padding:2px 2px 2px 2px;
  1070. box-sizing:border-box;
  1071. width:100%;
  1072. }
  1073. #u5864_img {
  1074. border-width:0px;
  1075. position:absolute;
  1076. left:0px;
  1077. top:0px;
  1078. width:228px;
  1079. height:30px;
  1080. }
  1081. #u5864_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u5865 {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:228px;
  1091. top:150px;
  1092. width:228px;
  1093. height:30px;
  1094. display:flex;
  1095. transition:none;
  1096. }
  1097. #u5865 .text {
  1098. position:absolute;
  1099. align-self:center;
  1100. padding:2px 2px 2px 2px;
  1101. box-sizing:border-box;
  1102. width:100%;
  1103. }
  1104. #u5865_img {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:0px;
  1108. top:0px;
  1109. width:228px;
  1110. height:30px;
  1111. }
  1112. #u5865_text {
  1113. border-width:0px;
  1114. word-wrap:break-word;
  1115. text-transform:none;
  1116. visibility:hidden;
  1117. }
  1118. #u5866 {
  1119. border-width:0px;
  1120. position:absolute;
  1121. left:456px;
  1122. top:150px;
  1123. width:228px;
  1124. height:30px;
  1125. display:flex;
  1126. transition:none;
  1127. }
  1128. #u5866 .text {
  1129. position:absolute;
  1130. align-self:center;
  1131. padding:2px 2px 2px 2px;
  1132. box-sizing:border-box;
  1133. width:100%;
  1134. }
  1135. #u5866_img {
  1136. border-width:0px;
  1137. position:absolute;
  1138. left:0px;
  1139. top:0px;
  1140. width:228px;
  1141. height:30px;
  1142. }
  1143. #u5866_text {
  1144. border-width:0px;
  1145. word-wrap:break-word;
  1146. text-transform:none;
  1147. visibility:hidden;
  1148. }
  1149. #u5867 {
  1150. border-width:0px;
  1151. position:absolute;
  1152. left:684px;
  1153. top:150px;
  1154. width:226px;
  1155. height:30px;
  1156. display:flex;
  1157. transition:none;
  1158. }
  1159. #u5867 .text {
  1160. position:absolute;
  1161. align-self:center;
  1162. padding:2px 2px 2px 2px;
  1163. box-sizing:border-box;
  1164. width:100%;
  1165. }
  1166. #u5867_img {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:226px;
  1172. height:30px;
  1173. }
  1174. #u5867_text {
  1175. border-width:0px;
  1176. word-wrap:break-word;
  1177. text-transform:none;
  1178. visibility:hidden;
  1179. }
  1180. #u5868 {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:180px;
  1185. width:228px;
  1186. height:30px;
  1187. display:flex;
  1188. transition:none;
  1189. }
  1190. #u5868 .text {
  1191. position:absolute;
  1192. align-self:center;
  1193. padding:2px 2px 2px 2px;
  1194. box-sizing:border-box;
  1195. width:100%;
  1196. }
  1197. #u5868_img {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:228px;
  1203. height:30px;
  1204. }
  1205. #u5868_text {
  1206. border-width:0px;
  1207. word-wrap:break-word;
  1208. text-transform:none;
  1209. visibility:hidden;
  1210. }
  1211. #u5869 {
  1212. border-width:0px;
  1213. position:absolute;
  1214. left:228px;
  1215. top:180px;
  1216. width:228px;
  1217. height:30px;
  1218. display:flex;
  1219. transition:none;
  1220. }
  1221. #u5869 .text {
  1222. position:absolute;
  1223. align-self:center;
  1224. padding:2px 2px 2px 2px;
  1225. box-sizing:border-box;
  1226. width:100%;
  1227. }
  1228. #u5869_img {
  1229. border-width:0px;
  1230. position:absolute;
  1231. left:0px;
  1232. top:0px;
  1233. width:228px;
  1234. height:30px;
  1235. }
  1236. #u5869_text {
  1237. border-width:0px;
  1238. word-wrap:break-word;
  1239. text-transform:none;
  1240. visibility:hidden;
  1241. }
  1242. #u5870 {
  1243. border-width:0px;
  1244. position:absolute;
  1245. left:456px;
  1246. top:180px;
  1247. width:228px;
  1248. height:30px;
  1249. display:flex;
  1250. transition:none;
  1251. }
  1252. #u5870 .text {
  1253. position:absolute;
  1254. align-self:center;
  1255. padding:2px 2px 2px 2px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u5870_img {
  1260. border-width:0px;
  1261. position:absolute;
  1262. left:0px;
  1263. top:0px;
  1264. width:228px;
  1265. height:30px;
  1266. }
  1267. #u5870_text {
  1268. border-width:0px;
  1269. word-wrap:break-word;
  1270. text-transform:none;
  1271. visibility:hidden;
  1272. }
  1273. #u5871 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:684px;
  1277. top:180px;
  1278. width:226px;
  1279. height:30px;
  1280. display:flex;
  1281. transition:none;
  1282. }
  1283. #u5871 .text {
  1284. position:absolute;
  1285. align-self:center;
  1286. padding:2px 2px 2px 2px;
  1287. box-sizing:border-box;
  1288. width:100%;
  1289. }
  1290. #u5871_img {
  1291. border-width:0px;
  1292. position:absolute;
  1293. left:0px;
  1294. top:0px;
  1295. width:226px;
  1296. height:30px;
  1297. }
  1298. #u5871_text {
  1299. border-width:0px;
  1300. word-wrap:break-word;
  1301. text-transform:none;
  1302. visibility:hidden;
  1303. }
  1304. #u5872_div {
  1305. border-width:0px;
  1306. position:absolute;
  1307. left:0px;
  1308. top:0px;
  1309. width:80px;
  1310. height:30px;
  1311. background:inherit;
  1312. background-color:rgba(255, 255, 255, 1);
  1313. box-sizing:border-box;
  1314. border-width:1px;
  1315. border-style:solid;
  1316. border-color:rgba(51, 51, 51, 1);
  1317. border-radius:4px;
  1318. filter:drop-shadow(none);
  1319. transition:none;
  1320. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1321. font-weight:400;
  1322. font-style:normal;
  1323. font-size:14px;
  1324. text-align:center;
  1325. }
  1326. #u5872 {
  1327. border-width:0px;
  1328. position:absolute;
  1329. left:829px;
  1330. top:115px;
  1331. width:80px;
  1332. height:30px;
  1333. display:flex;
  1334. transition:none;
  1335. transform-origin:50% 50%;
  1336. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. font-size:14px;
  1340. text-align:center;
  1341. }
  1342. #u5872 .text {
  1343. position:absolute;
  1344. align-self:center;
  1345. padding:5px 0px 5px 0px;
  1346. box-sizing:border-box;
  1347. width:100%;
  1348. }
  1349. #u5872_text {
  1350. border-width:0px;
  1351. word-wrap:break-word;
  1352. text-transform:none;
  1353. }
  1354. #u5873_div {
  1355. border-width:0px;
  1356. position:absolute;
  1357. left:0px;
  1358. top:0px;
  1359. width:69px;
  1360. height:32px;
  1361. background:inherit;
  1362. background-color:rgba(24, 144, 255, 1);
  1363. border-radius:31px;
  1364. filter:drop-shadow(none);
  1365. transition:none;
  1366. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1367. font-weight:400;
  1368. font-style:normal;
  1369. font-size:16px;
  1370. color:#FFFFFF;
  1371. }
  1372. #u5873 {
  1373. border-width:0px;
  1374. position:absolute;
  1375. left:92px;
  1376. top:157px;
  1377. width:69px;
  1378. height:32px;
  1379. display:flex;
  1380. transition:none;
  1381. transform-origin:50% 50%;
  1382. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1383. font-weight:400;
  1384. font-style:normal;
  1385. font-size:16px;
  1386. color:#FFFFFF;
  1387. }
  1388. #u5873 .text {
  1389. position:absolute;
  1390. align-self:center;
  1391. padding:5px 10px 5px 10px;
  1392. box-sizing:border-box;
  1393. width:100%;
  1394. }
  1395. #u5873_text {
  1396. border-width:0px;
  1397. white-space:nowrap;
  1398. text-transform:none;
  1399. }
  1400. #u5874_div {
  1401. border-width:0px;
  1402. position:absolute;
  1403. left:0px;
  1404. top:0px;
  1405. width:80px;
  1406. height:30px;
  1407. background:inherit;
  1408. background-color:rgba(255, 255, 255, 1);
  1409. box-sizing:border-box;
  1410. border-width:1px;
  1411. border-style:solid;
  1412. border-color:rgba(51, 51, 51, 1);
  1413. border-radius:3px;
  1414. filter:drop-shadow(none);
  1415. transition:none;
  1416. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1417. font-weight:400;
  1418. font-style:normal;
  1419. font-size:14px;
  1420. text-align:center;
  1421. }
  1422. #u5874 {
  1423. border-width:0px;
  1424. position:absolute;
  1425. left:920px;
  1426. top:115px;
  1427. width:80px;
  1428. height:30px;
  1429. display:flex;
  1430. transition:none;
  1431. transform-origin:50% 50%;
  1432. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1433. font-weight:400;
  1434. font-style:normal;
  1435. font-size:14px;
  1436. text-align:center;
  1437. }
  1438. #u5874 .text {
  1439. position:absolute;
  1440. align-self:center;
  1441. padding:5px 0px 5px 0px;
  1442. box-sizing:border-box;
  1443. width:100%;
  1444. }
  1445. #u5874_text {
  1446. border-width:0px;
  1447. word-wrap:break-word;
  1448. text-transform:none;
  1449. }
  1450. #u5875 {
  1451. border-width:0px;
  1452. position:absolute;
  1453. left:0px;
  1454. top:0px;
  1455. width:0px;
  1456. height:0px;
  1457. }
  1458. #u5876 {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:0px;
  1462. top:0px;
  1463. width:0px;
  1464. height:0px;
  1465. }
  1466. #u5877_div {
  1467. border-width:0px;
  1468. position:absolute;
  1469. left:0px;
  1470. top:0px;
  1471. width:380px;
  1472. height:140px;
  1473. background:inherit;
  1474. background-color:rgba(255, 255, 255, 1);
  1475. border-radius:4px;
  1476. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  1477. transition:none;
  1478. font-family:"Microsoft YaHei", sans-serif;
  1479. font-weight:400;
  1480. font-style:normal;
  1481. }
  1482. #u5877 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:412px;
  1486. top:418px;
  1487. width:380px;
  1488. height:140px;
  1489. display:flex;
  1490. transition:none;
  1491. transform-origin:50% 50%;
  1492. font-family:"Microsoft YaHei", sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. }
  1496. #u5877 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:2px 2px 2px 2px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u5877_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. visibility:hidden;
  1508. }
  1509. #u5878_div {
  1510. border-width:0px;
  1511. position:absolute;
  1512. left:0px;
  1513. top:0px;
  1514. width:299px;
  1515. height:22px;
  1516. background:inherit;
  1517. background-color:rgba(255, 255, 255, 0);
  1518. border-radius:0px;
  1519. filter:drop-shadow(none);
  1520. transition:none;
  1521. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1522. font-weight:400;
  1523. font-style:normal;
  1524. font-size:14px;
  1525. color:#666666;
  1526. line-height:22px;
  1527. }
  1528. #u5878 {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:472px;
  1532. top:473px;
  1533. width:299px;
  1534. height:22px;
  1535. display:flex;
  1536. transition:none;
  1537. transform-origin:50% 50%;
  1538. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1539. font-weight:400;
  1540. font-style:normal;
  1541. font-size:14px;
  1542. color:#666666;
  1543. line-height:22px;
  1544. }
  1545. #u5878 .text {
  1546. position:absolute;
  1547. align-self:flex-start;
  1548. padding:0px 0px 0px 0px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u5878_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. }
  1557. #u5879_div {
  1558. border-width:0px;
  1559. position:absolute;
  1560. left:0px;
  1561. top:0px;
  1562. width:127px;
  1563. height:21px;
  1564. background:inherit;
  1565. background-color:rgba(255, 255, 255, 0);
  1566. border-radius:0px;
  1567. filter:drop-shadow(none);
  1568. transition:none;
  1569. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  1570. font-weight:650;
  1571. font-style:normal;
  1572. font-size:18px;
  1573. color:#000000;
  1574. line-height:22px;
  1575. }
  1576. #u5879 {
  1577. border-width:0px;
  1578. position:absolute;
  1579. left:472px;
  1580. top:443px;
  1581. width:127px;
  1582. height:21px;
  1583. display:flex;
  1584. transition:none;
  1585. transform-origin:50% 50%;
  1586. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  1587. font-weight:650;
  1588. font-style:normal;
  1589. font-size:18px;
  1590. color:#000000;
  1591. line-height:22px;
  1592. }
  1593. #u5879 .text {
  1594. position:absolute;
  1595. align-self:flex-start;
  1596. padding:0px 0px 0px 0px;
  1597. box-sizing:border-box;
  1598. width:100%;
  1599. }
  1600. #u5879_text {
  1601. border-width:0px;
  1602. white-space:nowrap;
  1603. text-transform:none;
  1604. }
  1605. #u5880_div {
  1606. border-width:0px;
  1607. position:absolute;
  1608. left:0px;
  1609. top:0px;
  1610. width:61px;
  1611. height:32px;
  1612. background:inherit;
  1613. background-color:rgba(24, 144, 255, 1);
  1614. border-radius:4px;
  1615. filter:drop-shadow(none);
  1616. transition:none;
  1617. font-family:"Microsoft YaHei", sans-serif;
  1618. font-weight:400;
  1619. font-style:normal;
  1620. font-size:14px;
  1621. color:#FFFFFF;
  1622. }
  1623. #u5880 {
  1624. border-width:0px;
  1625. position:absolute;
  1626. left:714px;
  1627. top:507px;
  1628. width:61px;
  1629. height:32px;
  1630. display:flex;
  1631. transition:none;
  1632. transform-origin:50% 50%;
  1633. font-family:"Microsoft YaHei", sans-serif;
  1634. font-weight:400;
  1635. font-style:normal;
  1636. font-size:14px;
  1637. color:#FFFFFF;
  1638. }
  1639. #u5880 .text {
  1640. position:absolute;
  1641. align-self:center;
  1642. padding:2px 16px 2px 16px;
  1643. box-sizing:border-box;
  1644. width:100%;
  1645. }
  1646. #u5880_text {
  1647. border-width:0px;
  1648. white-space:nowrap;
  1649. text-transform:none;
  1650. }
  1651. #u5881_div {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:0px;
  1655. top:0px;
  1656. width:66px;
  1657. height:32px;
  1658. background:inherit;
  1659. background-color:rgba(255, 255, 255, 1);
  1660. box-sizing:border-box;
  1661. border-width:1px;
  1662. border-style:solid;
  1663. border-color:rgba(217, 217, 217, 1);
  1664. border-radius:4px;
  1665. filter:drop-shadow(none);
  1666. transition:none;
  1667. font-family:"Microsoft YaHei", sans-serif;
  1668. font-weight:400;
  1669. font-style:normal;
  1670. font-size:14px;
  1671. color:rgba(0, 0, 0, 0.6470588235294118);
  1672. line-height:21px;
  1673. }
  1674. #u5881 {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:632px;
  1678. top:507px;
  1679. width:66px;
  1680. height:32px;
  1681. display:flex;
  1682. transition:none;
  1683. transform-origin:50% 50%;
  1684. font-family:"Microsoft YaHei", sans-serif;
  1685. font-weight:400;
  1686. font-style:normal;
  1687. font-size:14px;
  1688. color:rgba(0, 0, 0, 0.6470588235294118);
  1689. line-height:21px;
  1690. }
  1691. #u5881 .text {
  1692. position:absolute;
  1693. align-self:center;
  1694. padding:2px 16px 2px 16px;
  1695. box-sizing:border-box;
  1696. width:100%;
  1697. }
  1698. #u5881_text {
  1699. border-width:0px;
  1700. white-space:nowrap;
  1701. text-transform:none;
  1702. }
  1703. #u5882 {
  1704. border-width:0px;
  1705. position:absolute;
  1706. left:441px;
  1707. top:447px;
  1708. width:20px;
  1709. height:20px;
  1710. display:flex;
  1711. transition:none;
  1712. }
  1713. #u5882 .text {
  1714. position:absolute;
  1715. align-self:center;
  1716. padding:2px 2px 2px 2px;
  1717. box-sizing:border-box;
  1718. width:100%;
  1719. }
  1720. #u5882_img {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:0px;
  1724. top:0px;
  1725. width:20px;
  1726. height:20px;
  1727. }
  1728. #u5882_text {
  1729. border-width:0px;
  1730. word-wrap:break-word;
  1731. text-transform:none;
  1732. visibility:hidden;
  1733. }
  1734. #u5883 {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:0px;
  1738. top:0px;
  1739. width:0px;
  1740. height:0px;
  1741. }
  1742. #u5884_div {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:0px;
  1746. top:0px;
  1747. width:380px;
  1748. height:140px;
  1749. background:inherit;
  1750. background-color:rgba(255, 255, 255, 1);
  1751. border-radius:4px;
  1752. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  1753. transition:none;
  1754. font-family:"Microsoft YaHei", sans-serif;
  1755. font-weight:400;
  1756. font-style:normal;
  1757. }
  1758. #u5884 {
  1759. border-width:0px;
  1760. position:absolute;
  1761. left:412px;
  1762. top:579px;
  1763. width:380px;
  1764. height:140px;
  1765. display:flex;
  1766. transition:none;
  1767. transform-origin:50% 50%;
  1768. font-family:"Microsoft YaHei", sans-serif;
  1769. font-weight:400;
  1770. font-style:normal;
  1771. }
  1772. #u5884 .text {
  1773. position:absolute;
  1774. align-self:center;
  1775. padding:2px 2px 2px 2px;
  1776. box-sizing:border-box;
  1777. width:100%;
  1778. }
  1779. #u5884_text {
  1780. border-width:0px;
  1781. word-wrap:break-word;
  1782. text-transform:none;
  1783. visibility:hidden;
  1784. }
  1785. #u5885_div {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:0px;
  1789. top:0px;
  1790. width:288px;
  1791. height:22px;
  1792. background:inherit;
  1793. background-color:rgba(255, 255, 255, 0);
  1794. border-radius:0px;
  1795. filter:drop-shadow(none);
  1796. transition:none;
  1797. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1798. font-weight:400;
  1799. font-style:normal;
  1800. font-size:14px;
  1801. color:#666666;
  1802. line-height:22px;
  1803. }
  1804. #u5885 {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:472px;
  1808. top:634px;
  1809. width:288px;
  1810. height:22px;
  1811. display:flex;
  1812. transition:none;
  1813. transform-origin:50% 50%;
  1814. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1815. font-weight:400;
  1816. font-style:normal;
  1817. font-size:14px;
  1818. color:#666666;
  1819. line-height:22px;
  1820. }
  1821. #u5885 .text {
  1822. position:absolute;
  1823. align-self:flex-start;
  1824. padding:0px 0px 0px 0px;
  1825. box-sizing:border-box;
  1826. width:100%;
  1827. }
  1828. #u5885_text {
  1829. border-width:0px;
  1830. word-wrap:break-word;
  1831. text-transform:none;
  1832. }
  1833. #u5886_div {
  1834. border-width:0px;
  1835. position:absolute;
  1836. left:0px;
  1837. top:0px;
  1838. width:91px;
  1839. height:21px;
  1840. background:inherit;
  1841. background-color:rgba(255, 255, 255, 0);
  1842. border-radius:0px;
  1843. filter:drop-shadow(none);
  1844. transition:none;
  1845. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  1846. font-weight:650;
  1847. font-style:normal;
  1848. font-size:18px;
  1849. color:#000000;
  1850. line-height:22px;
  1851. }
  1852. #u5886 {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:472px;
  1856. top:604px;
  1857. width:91px;
  1858. height:21px;
  1859. display:flex;
  1860. transition:none;
  1861. transform-origin:50% 50%;
  1862. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  1863. font-weight:650;
  1864. font-style:normal;
  1865. font-size:18px;
  1866. color:#000000;
  1867. line-height:22px;
  1868. }
  1869. #u5886 .text {
  1870. position:absolute;
  1871. align-self:flex-start;
  1872. padding:0px 0px 0px 0px;
  1873. box-sizing:border-box;
  1874. width:100%;
  1875. }
  1876. #u5886_text {
  1877. border-width:0px;
  1878. white-space:nowrap;
  1879. text-transform:none;
  1880. }
  1881. #u5887_div {
  1882. border-width:0px;
  1883. position:absolute;
  1884. left:0px;
  1885. top:0px;
  1886. width:61px;
  1887. height:32px;
  1888. background:inherit;
  1889. background-color:rgba(24, 144, 255, 1);
  1890. border-radius:4px;
  1891. filter:drop-shadow(none);
  1892. transition:none;
  1893. font-family:"Microsoft YaHei", sans-serif;
  1894. font-weight:400;
  1895. font-style:normal;
  1896. font-size:14px;
  1897. color:#FFFFFF;
  1898. }
  1899. #u5887 {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:711px;
  1903. top:668px;
  1904. width:61px;
  1905. height:32px;
  1906. display:flex;
  1907. transition:none;
  1908. transform-origin:50% 50%;
  1909. font-family:"Microsoft YaHei", sans-serif;
  1910. font-weight:400;
  1911. font-style:normal;
  1912. font-size:14px;
  1913. color:#FFFFFF;
  1914. }
  1915. #u5887 .text {
  1916. position:absolute;
  1917. align-self:center;
  1918. padding:2px 16px 2px 16px;
  1919. box-sizing:border-box;
  1920. width:100%;
  1921. }
  1922. #u5887_text {
  1923. border-width:0px;
  1924. white-space:nowrap;
  1925. text-transform:none;
  1926. }
  1927. #u5888_div {
  1928. border-width:0px;
  1929. position:absolute;
  1930. left:0px;
  1931. top:0px;
  1932. width:66px;
  1933. height:32px;
  1934. background:inherit;
  1935. background-color:rgba(255, 255, 255, 1);
  1936. box-sizing:border-box;
  1937. border-width:1px;
  1938. border-style:solid;
  1939. border-color:rgba(217, 217, 217, 1);
  1940. border-radius:4px;
  1941. filter:drop-shadow(none);
  1942. transition:none;
  1943. font-family:"Microsoft YaHei", sans-serif;
  1944. font-weight:400;
  1945. font-style:normal;
  1946. font-size:14px;
  1947. color:rgba(0, 0, 0, 0.6470588235294118);
  1948. line-height:21px;
  1949. }
  1950. #u5888 {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:632px;
  1954. top:668px;
  1955. width:66px;
  1956. height:32px;
  1957. display:flex;
  1958. transition:none;
  1959. transform-origin:50% 50%;
  1960. font-family:"Microsoft YaHei", sans-serif;
  1961. font-weight:400;
  1962. font-style:normal;
  1963. font-size:14px;
  1964. color:rgba(0, 0, 0, 0.6470588235294118);
  1965. line-height:21px;
  1966. }
  1967. #u5888 .text {
  1968. position:absolute;
  1969. align-self:center;
  1970. padding:2px 16px 2px 16px;
  1971. box-sizing:border-box;
  1972. width:100%;
  1973. }
  1974. #u5888_text {
  1975. border-width:0px;
  1976. white-space:nowrap;
  1977. text-transform:none;
  1978. }
  1979. #u5889 {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:441px;
  1983. top:606px;
  1984. width:20px;
  1985. height:20px;
  1986. display:flex;
  1987. transition:none;
  1988. }
  1989. #u5889 .text {
  1990. position:absolute;
  1991. align-self:center;
  1992. padding:2px 2px 2px 2px;
  1993. box-sizing:border-box;
  1994. width:100%;
  1995. }
  1996. #u5889_img {
  1997. border-width:0px;
  1998. position:absolute;
  1999. left:0px;
  2000. top:0px;
  2001. width:20px;
  2002. height:20px;
  2003. }
  2004. #u5889_text {
  2005. border-width:0px;
  2006. word-wrap:break-word;
  2007. text-transform:none;
  2008. visibility:hidden;
  2009. }
  2010. #u5890 {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:0px;
  2014. top:0px;
  2015. width:0px;
  2016. height:0px;
  2017. }
  2018. #u5891_div {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:0px;
  2022. top:0px;
  2023. width:1000px;
  2024. height:1196px;
  2025. background:inherit;
  2026. background-color:rgba(255, 255, 255, 1);
  2027. box-sizing:border-box;
  2028. border-width:1px;
  2029. border-style:solid;
  2030. border-color:rgba(215, 215, 215, 1);
  2031. border-radius:0px;
  2032. filter:drop-shadow(none);
  2033. transition:none;
  2034. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2035. font-weight:400;
  2036. font-style:normal;
  2037. font-size:14px;
  2038. color:#AAAAAA;
  2039. text-align:center;
  2040. line-height:30px;
  2041. }
  2042. #u5891 {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:41px;
  2046. top:1260px;
  2047. width:1000px;
  2048. height:1196px;
  2049. display:flex;
  2050. transition:none;
  2051. transform-origin:50% 50%;
  2052. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2053. font-weight:400;
  2054. font-style:normal;
  2055. font-size:14px;
  2056. color:#AAAAAA;
  2057. text-align:center;
  2058. line-height:30px;
  2059. }
  2060. #u5891 .text {
  2061. position:absolute;
  2062. align-self:center;
  2063. padding:5px 10px 5px 10px;
  2064. box-sizing:border-box;
  2065. width:100%;
  2066. }
  2067. #u5891_text {
  2068. border-width:0px;
  2069. word-wrap:break-word;
  2070. text-transform:none;
  2071. visibility:hidden;
  2072. }
  2073. #u5892_div {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:0px;
  2077. top:0px;
  2078. width:83px;
  2079. height:35px;
  2080. background:inherit;
  2081. background-color:rgba(255, 255, 255, 0);
  2082. border-top:0px;
  2083. border-right:0px;
  2084. border-bottom:0px;
  2085. border-radius:0px;
  2086. border-top-left-radius:0px;
  2087. border-bottom-left-radius:0px;
  2088. filter:drop-shadow(none);
  2089. transition:none;
  2090. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  2091. font-weight:500;
  2092. font-style:normal;
  2093. font-size:18px;
  2094. }
  2095. #u5892 {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:61px;
  2099. top:1278px;
  2100. width:83px;
  2101. height:35px;
  2102. display:flex;
  2103. transition:none;
  2104. transform-origin:50% 50%;
  2105. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  2106. font-weight:500;
  2107. font-style:normal;
  2108. font-size:18px;
  2109. }
  2110. #u5892 .text {
  2111. position:absolute;
  2112. align-self:center;
  2113. padding:5px 10px 5px 0px;
  2114. box-sizing:border-box;
  2115. width:100%;
  2116. }
  2117. #u5892_text {
  2118. border-width:0px;
  2119. white-space:nowrap;
  2120. text-transform:none;
  2121. }
  2122. #u5893 {
  2123. border-width:0px;
  2124. position:absolute;
  2125. left:0px;
  2126. top:0px;
  2127. width:0px;
  2128. height:0px;
  2129. }
  2130. #u5894_div {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:40px;
  2136. height:40px;
  2137. background:inherit;
  2138. background-color:rgba(255, 255, 255, 0);
  2139. border-top:0px;
  2140. border-right:0px;
  2141. border-bottom:0px;
  2142. border-radius:0px;
  2143. border-top-left-radius:0px;
  2144. border-bottom-left-radius:0px;
  2145. filter:drop-shadow(none);
  2146. transition:none;
  2147. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  2148. font-weight:500;
  2149. font-style:normal;
  2150. font-size:18px;
  2151. text-align:center;
  2152. }
  2153. #u5894 {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:1001px;
  2157. top:1260px;
  2158. width:40px;
  2159. height:40px;
  2160. display:flex;
  2161. transition:none;
  2162. transform-origin:50% 50%;
  2163. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  2164. font-weight:500;
  2165. font-style:normal;
  2166. font-size:18px;
  2167. text-align:center;
  2168. }
  2169. #u5894 .text {
  2170. position:absolute;
  2171. align-self:center;
  2172. padding:5px 10px 5px 0px;
  2173. box-sizing:border-box;
  2174. width:100%;
  2175. }
  2176. #u5894_text {
  2177. border-width:0px;
  2178. word-wrap:break-word;
  2179. text-transform:none;
  2180. }
  2181. #u5895 {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:989px;
  2185. top:1276px;
  2186. width:13px;
  2187. height:13px;
  2188. display:flex;
  2189. transition:none;
  2190. }
  2191. #u5895 .text {
  2192. position:absolute;
  2193. align-self:center;
  2194. padding:2px 2px 2px 2px;
  2195. box-sizing:border-box;
  2196. width:100%;
  2197. }
  2198. #u5895_img {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:0px;
  2202. top:0px;
  2203. width:13px;
  2204. height:13px;
  2205. }
  2206. #u5895_text {
  2207. border-width:0px;
  2208. word-wrap:break-word;
  2209. text-transform:none;
  2210. visibility:hidden;
  2211. }
  2212. #u5896 {
  2213. border-width:0px;
  2214. position:absolute;
  2215. left:0px;
  2216. top:0px;
  2217. width:0px;
  2218. height:0px;
  2219. }
  2220. #u5897_div {
  2221. border-width:0px;
  2222. position:absolute;
  2223. left:0px;
  2224. top:0px;
  2225. width:1000px;
  2226. height:50px;
  2227. background:inherit;
  2228. background-color:rgba(255, 255, 255, 1);
  2229. box-sizing:border-box;
  2230. border-width:1px;
  2231. border-style:solid;
  2232. border-color:rgba(215, 215, 215, 1);
  2233. border-radius:0px;
  2234. filter:drop-shadow(none);
  2235. transition:none;
  2236. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2237. font-weight:400;
  2238. font-style:normal;
  2239. font-size:14px;
  2240. color:#AAAAAA;
  2241. text-align:center;
  2242. line-height:30px;
  2243. }
  2244. #u5897 {
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:41px;
  2248. top:2406px;
  2249. width:1000px;
  2250. height:50px;
  2251. display:flex;
  2252. transition:none;
  2253. transform-origin:50% 50%;
  2254. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2255. font-weight:400;
  2256. font-style:normal;
  2257. font-size:14px;
  2258. color:#AAAAAA;
  2259. text-align:center;
  2260. line-height:30px;
  2261. }
  2262. #u5897 .text {
  2263. position:absolute;
  2264. align-self:center;
  2265. padding:5px 10px 5px 10px;
  2266. box-sizing:border-box;
  2267. width:100%;
  2268. }
  2269. #u5897_text {
  2270. border-width:0px;
  2271. word-wrap:break-word;
  2272. text-transform:none;
  2273. visibility:hidden;
  2274. }
  2275. #u5898_div {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:0px;
  2279. top:0px;
  2280. width:80px;
  2281. height:30px;
  2282. background:inherit;
  2283. background-color:rgba(24, 144, 255, 1);
  2284. border-radius:4px;
  2285. filter:drop-shadow(none);
  2286. transition:none;
  2287. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2288. font-weight:400;
  2289. font-style:normal;
  2290. font-size:14px;
  2291. color:#FFFFFF;
  2292. }
  2293. #u5898 {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:939px;
  2297. top:2416px;
  2298. width:80px;
  2299. height:30px;
  2300. display:flex;
  2301. transition:none;
  2302. transform-origin:50% 50%;
  2303. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2304. font-weight:400;
  2305. font-style:normal;
  2306. font-size:14px;
  2307. color:#FFFFFF;
  2308. }
  2309. #u5898 .text {
  2310. position:absolute;
  2311. align-self:center;
  2312. padding:2px 2px 2px 2px;
  2313. box-sizing:border-box;
  2314. width:100%;
  2315. }
  2316. #u5898_text {
  2317. border-width:0px;
  2318. word-wrap:break-word;
  2319. text-transform:none;
  2320. }
  2321. #u5899_div {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:0px;
  2325. top:0px;
  2326. width:80px;
  2327. height:30px;
  2328. background:inherit;
  2329. background-color:rgba(255, 255, 255, 1);
  2330. box-sizing:border-box;
  2331. border-width:1px;
  2332. border-style:solid;
  2333. border-color:rgba(121, 121, 121, 1);
  2334. border-radius:4px;
  2335. filter:drop-shadow(none);
  2336. transition:none;
  2337. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2338. font-weight:400;
  2339. font-style:normal;
  2340. font-size:14px;
  2341. }
  2342. #u5899 {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:849px;
  2346. top:2416px;
  2347. width:80px;
  2348. height:30px;
  2349. display:flex;
  2350. transition:none;
  2351. transform-origin:50% 50%;
  2352. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2353. font-weight:400;
  2354. font-style:normal;
  2355. font-size:14px;
  2356. }
  2357. #u5899 .text {
  2358. position:absolute;
  2359. align-self:center;
  2360. padding:2px 2px 2px 2px;
  2361. box-sizing:border-box;
  2362. width:100%;
  2363. }
  2364. #u5899_text {
  2365. border-width:0px;
  2366. word-wrap:break-word;
  2367. text-transform:none;
  2368. }
  2369. #u5900_div {
  2370. border-width:0px;
  2371. position:absolute;
  2372. left:0px;
  2373. top:0px;
  2374. width:75px;
  2375. height:32px;
  2376. background:inherit;
  2377. background-color:rgba(255, 255, 255, 0);
  2378. border-top:0px;
  2379. border-right:0px;
  2380. border-bottom:0px;
  2381. border-radius:0px;
  2382. border-top-left-radius:0px;
  2383. border-bottom-left-radius:0px;
  2384. filter:drop-shadow(none);
  2385. transition:none;
  2386. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  2387. font-weight:500;
  2388. font-style:normal;
  2389. font-size:16px;
  2390. }
  2391. #u5900 {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:92px;
  2395. top:1331px;
  2396. width:75px;
  2397. height:32px;
  2398. display:flex;
  2399. transition:none;
  2400. transform-origin:50% 50%;
  2401. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  2402. font-weight:500;
  2403. font-style:normal;
  2404. font-size:16px;
  2405. }
  2406. #u5900 .text {
  2407. position:absolute;
  2408. align-self:center;
  2409. padding:5px 10px 5px 0px;
  2410. box-sizing:border-box;
  2411. width:100%;
  2412. }
  2413. #u5900_text {
  2414. border-width:0px;
  2415. white-space:nowrap;
  2416. text-transform:none;
  2417. }
  2418. #u5901 {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:92px;
  2422. top:1414px;
  2423. width:910px;
  2424. height:210px;
  2425. }
  2426. #u5902 {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:0px;
  2430. top:0px;
  2431. width:228px;
  2432. height:30px;
  2433. display:flex;
  2434. transition:none;
  2435. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2436. font-weight:400;
  2437. font-style:normal;
  2438. color:#FFFFFF;
  2439. }
  2440. #u5902 .text {
  2441. position:absolute;
  2442. align-self:center;
  2443. padding:2px 2px 2px 2px;
  2444. box-sizing:border-box;
  2445. width:100%;
  2446. }
  2447. #u5902_img {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:0px;
  2451. top:0px;
  2452. width:228px;
  2453. height:30px;
  2454. }
  2455. #u5902_text {
  2456. border-width:0px;
  2457. word-wrap:break-word;
  2458. text-transform:none;
  2459. }
  2460. #u5903 {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:228px;
  2464. top:0px;
  2465. width:228px;
  2466. height:30px;
  2467. display:flex;
  2468. transition:none;
  2469. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2470. font-weight:400;
  2471. font-style:normal;
  2472. color:#FFFFFF;
  2473. }
  2474. #u5903 .text {
  2475. position:absolute;
  2476. align-self:center;
  2477. padding:2px 2px 2px 2px;
  2478. box-sizing:border-box;
  2479. width:100%;
  2480. }
  2481. #u5903_img {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:0px;
  2485. top:0px;
  2486. width:228px;
  2487. height:30px;
  2488. }
  2489. #u5903_text {
  2490. border-width:0px;
  2491. word-wrap:break-word;
  2492. text-transform:none;
  2493. }
  2494. #u5904 {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:456px;
  2498. top:0px;
  2499. width:228px;
  2500. height:30px;
  2501. display:flex;
  2502. transition:none;
  2503. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2504. font-weight:400;
  2505. font-style:normal;
  2506. color:#FFFFFF;
  2507. }
  2508. #u5904 .text {
  2509. position:absolute;
  2510. align-self:center;
  2511. padding:2px 2px 2px 2px;
  2512. box-sizing:border-box;
  2513. width:100%;
  2514. }
  2515. #u5904_img {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:228px;
  2521. height:30px;
  2522. }
  2523. #u5904_text {
  2524. border-width:0px;
  2525. word-wrap:break-word;
  2526. text-transform:none;
  2527. }
  2528. #u5905 {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:684px;
  2532. top:0px;
  2533. width:228px;
  2534. height:30px;
  2535. display:flex;
  2536. transition:none;
  2537. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2538. font-weight:400;
  2539. font-style:normal;
  2540. color:#FFFFFF;
  2541. }
  2542. #u5905 .text {
  2543. position:absolute;
  2544. align-self:center;
  2545. padding:2px 2px 2px 2px;
  2546. box-sizing:border-box;
  2547. width:100%;
  2548. }
  2549. #u5905_img {
  2550. border-width:0px;
  2551. position:absolute;
  2552. left:0px;
  2553. top:0px;
  2554. width:228px;
  2555. height:30px;
  2556. }
  2557. #u5905_text {
  2558. border-width:0px;
  2559. word-wrap:break-word;
  2560. text-transform:none;
  2561. }
  2562. #u5906 {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:0px;
  2566. top:30px;
  2567. width:228px;
  2568. height:30px;
  2569. display:flex;
  2570. transition:none;
  2571. }
  2572. #u5906 .text {
  2573. position:absolute;
  2574. align-self:center;
  2575. padding:2px 2px 2px 2px;
  2576. box-sizing:border-box;
  2577. width:100%;
  2578. }
  2579. #u5906_img {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:0px;
  2583. top:0px;
  2584. width:228px;
  2585. height:30px;
  2586. }
  2587. #u5906_text {
  2588. border-width:0px;
  2589. word-wrap:break-word;
  2590. text-transform:none;
  2591. }
  2592. #u5907 {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:228px;
  2596. top:30px;
  2597. width:228px;
  2598. height:30px;
  2599. display:flex;
  2600. transition:none;
  2601. }
  2602. #u5907 .text {
  2603. position:absolute;
  2604. align-self:center;
  2605. padding:2px 2px 2px 2px;
  2606. box-sizing:border-box;
  2607. width:100%;
  2608. }
  2609. #u5907_img {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:0px;
  2613. top:0px;
  2614. width:228px;
  2615. height:30px;
  2616. }
  2617. #u5907_text {
  2618. border-width:0px;
  2619. word-wrap:break-word;
  2620. text-transform:none;
  2621. }
  2622. #u5908 {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:456px;
  2626. top:30px;
  2627. width:228px;
  2628. height:30px;
  2629. display:flex;
  2630. transition:none;
  2631. }
  2632. #u5908 .text {
  2633. position:absolute;
  2634. align-self:center;
  2635. padding:2px 2px 2px 2px;
  2636. box-sizing:border-box;
  2637. width:100%;
  2638. }
  2639. #u5908_img {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:0px;
  2643. top:0px;
  2644. width:228px;
  2645. height:30px;
  2646. }
  2647. #u5908_text {
  2648. border-width:0px;
  2649. word-wrap:break-word;
  2650. text-transform:none;
  2651. }
  2652. #u5909 {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:684px;
  2656. top:30px;
  2657. width:228px;
  2658. height:30px;
  2659. display:flex;
  2660. transition:none;
  2661. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2662. font-weight:400;
  2663. font-style:normal;
  2664. color:#1890FF;
  2665. }
  2666. #u5909 .text {
  2667. position:absolute;
  2668. align-self:center;
  2669. padding:2px 2px 2px 2px;
  2670. box-sizing:border-box;
  2671. width:100%;
  2672. }
  2673. #u5909_img {
  2674. border-width:0px;
  2675. position:absolute;
  2676. left:0px;
  2677. top:0px;
  2678. width:228px;
  2679. height:30px;
  2680. }
  2681. #u5909_text {
  2682. border-width:0px;
  2683. word-wrap:break-word;
  2684. text-transform:none;
  2685. }
  2686. #u5910 {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:60px;
  2691. width:228px;
  2692. height:30px;
  2693. display:flex;
  2694. transition:none;
  2695. }
  2696. #u5910 .text {
  2697. position:absolute;
  2698. align-self:center;
  2699. padding:2px 2px 2px 2px;
  2700. box-sizing:border-box;
  2701. width:100%;
  2702. }
  2703. #u5910_img {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:0px;
  2707. top:0px;
  2708. width:228px;
  2709. height:30px;
  2710. }
  2711. #u5910_text {
  2712. border-width:0px;
  2713. word-wrap:break-word;
  2714. text-transform:none;
  2715. }
  2716. #u5911 {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:228px;
  2720. top:60px;
  2721. width:228px;
  2722. height:30px;
  2723. display:flex;
  2724. transition:none;
  2725. }
  2726. #u5911 .text {
  2727. position:absolute;
  2728. align-self:center;
  2729. padding:2px 2px 2px 2px;
  2730. box-sizing:border-box;
  2731. width:100%;
  2732. }
  2733. #u5911_img {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:0px;
  2737. top:0px;
  2738. width:228px;
  2739. height:30px;
  2740. }
  2741. #u5911_text {
  2742. border-width:0px;
  2743. word-wrap:break-word;
  2744. text-transform:none;
  2745. }
  2746. #u5912 {
  2747. border-width:0px;
  2748. position:absolute;
  2749. left:456px;
  2750. top:60px;
  2751. width:228px;
  2752. height:30px;
  2753. display:flex;
  2754. transition:none;
  2755. }
  2756. #u5912 .text {
  2757. position:absolute;
  2758. align-self:center;
  2759. padding:2px 2px 2px 2px;
  2760. box-sizing:border-box;
  2761. width:100%;
  2762. }
  2763. #u5912_img {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:228px;
  2769. height:30px;
  2770. }
  2771. #u5912_text {
  2772. border-width:0px;
  2773. word-wrap:break-word;
  2774. text-transform:none;
  2775. }
  2776. #u5913 {
  2777. border-width:0px;
  2778. position:absolute;
  2779. left:684px;
  2780. top:60px;
  2781. width:228px;
  2782. height:30px;
  2783. display:flex;
  2784. transition:none;
  2785. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2786. font-weight:400;
  2787. font-style:normal;
  2788. color:#1890FF;
  2789. }
  2790. #u5913 .text {
  2791. position:absolute;
  2792. align-self:center;
  2793. padding:2px 2px 2px 2px;
  2794. box-sizing:border-box;
  2795. width:100%;
  2796. }
  2797. #u5913_img {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:0px;
  2802. width:228px;
  2803. height:30px;
  2804. }
  2805. #u5913_text {
  2806. border-width:0px;
  2807. word-wrap:break-word;
  2808. text-transform:none;
  2809. }
  2810. #u5914 {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:0px;
  2814. top:90px;
  2815. width:228px;
  2816. height:30px;
  2817. display:flex;
  2818. transition:none;
  2819. }
  2820. #u5914 .text {
  2821. position:absolute;
  2822. align-self:center;
  2823. padding:2px 2px 2px 2px;
  2824. box-sizing:border-box;
  2825. width:100%;
  2826. }
  2827. #u5914_img {
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:0px;
  2831. top:0px;
  2832. width:228px;
  2833. height:30px;
  2834. }
  2835. #u5914_text {
  2836. border-width:0px;
  2837. word-wrap:break-word;
  2838. text-transform:none;
  2839. }
  2840. #u5915 {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:228px;
  2844. top:90px;
  2845. width:228px;
  2846. height:30px;
  2847. display:flex;
  2848. transition:none;
  2849. }
  2850. #u5915 .text {
  2851. position:absolute;
  2852. align-self:center;
  2853. padding:2px 2px 2px 2px;
  2854. box-sizing:border-box;
  2855. width:100%;
  2856. }
  2857. #u5915_img {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:0px;
  2861. top:0px;
  2862. width:228px;
  2863. height:30px;
  2864. }
  2865. #u5915_text {
  2866. border-width:0px;
  2867. word-wrap:break-word;
  2868. text-transform:none;
  2869. }
  2870. #u5916 {
  2871. border-width:0px;
  2872. position:absolute;
  2873. left:456px;
  2874. top:90px;
  2875. width:228px;
  2876. height:30px;
  2877. display:flex;
  2878. transition:none;
  2879. }
  2880. #u5916 .text {
  2881. position:absolute;
  2882. align-self:center;
  2883. padding:2px 2px 2px 2px;
  2884. box-sizing:border-box;
  2885. width:100%;
  2886. }
  2887. #u5916_img {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:0px;
  2891. top:0px;
  2892. width:228px;
  2893. height:30px;
  2894. }
  2895. #u5916_text {
  2896. border-width:0px;
  2897. word-wrap:break-word;
  2898. text-transform:none;
  2899. }
  2900. #u5917 {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:684px;
  2904. top:90px;
  2905. width:228px;
  2906. height:30px;
  2907. display:flex;
  2908. transition:none;
  2909. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2910. font-weight:400;
  2911. font-style:normal;
  2912. color:#1890FF;
  2913. }
  2914. #u5917 .text {
  2915. position:absolute;
  2916. align-self:center;
  2917. padding:2px 2px 2px 2px;
  2918. box-sizing:border-box;
  2919. width:100%;
  2920. }
  2921. #u5917_img {
  2922. border-width:0px;
  2923. position:absolute;
  2924. left:0px;
  2925. top:0px;
  2926. width:228px;
  2927. height:30px;
  2928. }
  2929. #u5917_text {
  2930. border-width:0px;
  2931. word-wrap:break-word;
  2932. text-transform:none;
  2933. }
  2934. #u5918 {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:0px;
  2938. top:120px;
  2939. width:228px;
  2940. height:30px;
  2941. display:flex;
  2942. transition:none;
  2943. }
  2944. #u5918 .text {
  2945. position:absolute;
  2946. align-self:center;
  2947. padding:2px 2px 2px 2px;
  2948. box-sizing:border-box;
  2949. width:100%;
  2950. }
  2951. #u5918_img {
  2952. border-width:0px;
  2953. position:absolute;
  2954. left:0px;
  2955. top:0px;
  2956. width:228px;
  2957. height:30px;
  2958. }
  2959. #u5918_text {
  2960. border-width:0px;
  2961. word-wrap:break-word;
  2962. text-transform:none;
  2963. visibility:hidden;
  2964. }
  2965. #u5919 {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:228px;
  2969. top:120px;
  2970. width:228px;
  2971. height:30px;
  2972. display:flex;
  2973. transition:none;
  2974. }
  2975. #u5919 .text {
  2976. position:absolute;
  2977. align-self:center;
  2978. padding:2px 2px 2px 2px;
  2979. box-sizing:border-box;
  2980. width:100%;
  2981. }
  2982. #u5919_img {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:0px;
  2986. top:0px;
  2987. width:228px;
  2988. height:30px;
  2989. }
  2990. #u5919_text {
  2991. border-width:0px;
  2992. word-wrap:break-word;
  2993. text-transform:none;
  2994. visibility:hidden;
  2995. }
  2996. #u5920 {
  2997. border-width:0px;
  2998. position:absolute;
  2999. left:456px;
  3000. top:120px;
  3001. width:228px;
  3002. height:30px;
  3003. display:flex;
  3004. transition:none;
  3005. }
  3006. #u5920 .text {
  3007. position:absolute;
  3008. align-self:center;
  3009. padding:2px 2px 2px 2px;
  3010. box-sizing:border-box;
  3011. width:100%;
  3012. }
  3013. #u5920_img {
  3014. border-width:0px;
  3015. position:absolute;
  3016. left:0px;
  3017. top:0px;
  3018. width:228px;
  3019. height:30px;
  3020. }
  3021. #u5920_text {
  3022. border-width:0px;
  3023. word-wrap:break-word;
  3024. text-transform:none;
  3025. visibility:hidden;
  3026. }
  3027. #u5921 {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:684px;
  3031. top:120px;
  3032. width:228px;
  3033. height:30px;
  3034. display:flex;
  3035. transition:none;
  3036. }
  3037. #u5921 .text {
  3038. position:absolute;
  3039. align-self:center;
  3040. padding:2px 2px 2px 2px;
  3041. box-sizing:border-box;
  3042. width:100%;
  3043. }
  3044. #u5921_img {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:0px;
  3048. top:0px;
  3049. width:228px;
  3050. height:30px;
  3051. }
  3052. #u5921_text {
  3053. border-width:0px;
  3054. word-wrap:break-word;
  3055. text-transform:none;
  3056. visibility:hidden;
  3057. }
  3058. #u5922 {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:0px;
  3062. top:150px;
  3063. width:228px;
  3064. height:30px;
  3065. display:flex;
  3066. transition:none;
  3067. }
  3068. #u5922 .text {
  3069. position:absolute;
  3070. align-self:center;
  3071. padding:2px 2px 2px 2px;
  3072. box-sizing:border-box;
  3073. width:100%;
  3074. }
  3075. #u5922_img {
  3076. border-width:0px;
  3077. position:absolute;
  3078. left:0px;
  3079. top:0px;
  3080. width:228px;
  3081. height:30px;
  3082. }
  3083. #u5922_text {
  3084. border-width:0px;
  3085. word-wrap:break-word;
  3086. text-transform:none;
  3087. visibility:hidden;
  3088. }
  3089. #u5923 {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:228px;
  3093. top:150px;
  3094. width:228px;
  3095. height:30px;
  3096. display:flex;
  3097. transition:none;
  3098. }
  3099. #u5923 .text {
  3100. position:absolute;
  3101. align-self:center;
  3102. padding:2px 2px 2px 2px;
  3103. box-sizing:border-box;
  3104. width:100%;
  3105. }
  3106. #u5923_img {
  3107. border-width:0px;
  3108. position:absolute;
  3109. left:0px;
  3110. top:0px;
  3111. width:228px;
  3112. height:30px;
  3113. }
  3114. #u5923_text {
  3115. border-width:0px;
  3116. word-wrap:break-word;
  3117. text-transform:none;
  3118. visibility:hidden;
  3119. }
  3120. #u5924 {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:456px;
  3124. top:150px;
  3125. width:228px;
  3126. height:30px;
  3127. display:flex;
  3128. transition:none;
  3129. }
  3130. #u5924 .text {
  3131. position:absolute;
  3132. align-self:center;
  3133. padding:2px 2px 2px 2px;
  3134. box-sizing:border-box;
  3135. width:100%;
  3136. }
  3137. #u5924_img {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:0px;
  3141. top:0px;
  3142. width:228px;
  3143. height:30px;
  3144. }
  3145. #u5924_text {
  3146. border-width:0px;
  3147. word-wrap:break-word;
  3148. text-transform:none;
  3149. visibility:hidden;
  3150. }
  3151. #u5925 {
  3152. border-width:0px;
  3153. position:absolute;
  3154. left:684px;
  3155. top:150px;
  3156. width:228px;
  3157. height:30px;
  3158. display:flex;
  3159. transition:none;
  3160. }
  3161. #u5925 .text {
  3162. position:absolute;
  3163. align-self:center;
  3164. padding:2px 2px 2px 2px;
  3165. box-sizing:border-box;
  3166. width:100%;
  3167. }
  3168. #u5925_img {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:0px;
  3172. top:0px;
  3173. width:228px;
  3174. height:30px;
  3175. }
  3176. #u5925_text {
  3177. border-width:0px;
  3178. word-wrap:break-word;
  3179. text-transform:none;
  3180. visibility:hidden;
  3181. }
  3182. #u5926 {
  3183. border-width:0px;
  3184. position:absolute;
  3185. left:0px;
  3186. top:180px;
  3187. width:228px;
  3188. height:30px;
  3189. display:flex;
  3190. transition:none;
  3191. }
  3192. #u5926 .text {
  3193. position:absolute;
  3194. align-self:center;
  3195. padding:2px 2px 2px 2px;
  3196. box-sizing:border-box;
  3197. width:100%;
  3198. }
  3199. #u5926_img {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:0px;
  3203. top:0px;
  3204. width:228px;
  3205. height:30px;
  3206. }
  3207. #u5926_text {
  3208. border-width:0px;
  3209. word-wrap:break-word;
  3210. text-transform:none;
  3211. visibility:hidden;
  3212. }
  3213. #u5927 {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:228px;
  3217. top:180px;
  3218. width:228px;
  3219. height:30px;
  3220. display:flex;
  3221. transition:none;
  3222. }
  3223. #u5927 .text {
  3224. position:absolute;
  3225. align-self:center;
  3226. padding:2px 2px 2px 2px;
  3227. box-sizing:border-box;
  3228. width:100%;
  3229. }
  3230. #u5927_img {
  3231. border-width:0px;
  3232. position:absolute;
  3233. left:0px;
  3234. top:0px;
  3235. width:228px;
  3236. height:30px;
  3237. }
  3238. #u5927_text {
  3239. border-width:0px;
  3240. word-wrap:break-word;
  3241. text-transform:none;
  3242. visibility:hidden;
  3243. }
  3244. #u5928 {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:456px;
  3248. top:180px;
  3249. width:228px;
  3250. height:30px;
  3251. display:flex;
  3252. transition:none;
  3253. }
  3254. #u5928 .text {
  3255. position:absolute;
  3256. align-self:center;
  3257. padding:2px 2px 2px 2px;
  3258. box-sizing:border-box;
  3259. width:100%;
  3260. }
  3261. #u5928_img {
  3262. border-width:0px;
  3263. position:absolute;
  3264. left:0px;
  3265. top:0px;
  3266. width:228px;
  3267. height:30px;
  3268. }
  3269. #u5928_text {
  3270. border-width:0px;
  3271. word-wrap:break-word;
  3272. text-transform:none;
  3273. visibility:hidden;
  3274. }
  3275. #u5929 {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:684px;
  3279. top:180px;
  3280. width:228px;
  3281. height:30px;
  3282. display:flex;
  3283. transition:none;
  3284. }
  3285. #u5929 .text {
  3286. position:absolute;
  3287. align-self:center;
  3288. padding:2px 2px 2px 2px;
  3289. box-sizing:border-box;
  3290. width:100%;
  3291. }
  3292. #u5929_img {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:0px;
  3296. top:0px;
  3297. width:228px;
  3298. height:30px;
  3299. }
  3300. #u5929_text {
  3301. border-width:0px;
  3302. word-wrap:break-word;
  3303. text-transform:none;
  3304. visibility:hidden;
  3305. }
  3306. #u5930_div {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:0px;
  3310. top:0px;
  3311. width:80px;
  3312. height:30px;
  3313. background:inherit;
  3314. background-color:rgba(255, 255, 255, 1);
  3315. box-sizing:border-box;
  3316. border-width:1px;
  3317. border-style:solid;
  3318. border-color:rgba(51, 51, 51, 1);
  3319. border-radius:3px;
  3320. filter:drop-shadow(none);
  3321. transition:none;
  3322. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3323. font-weight:400;
  3324. font-style:normal;
  3325. font-size:14px;
  3326. text-align:center;
  3327. }
  3328. #u5930 {
  3329. border-width:0px;
  3330. position:absolute;
  3331. left:922px;
  3332. top:1331px;
  3333. width:80px;
  3334. height:30px;
  3335. display:flex;
  3336. transition:none;
  3337. transform-origin:50% 50%;
  3338. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3339. font-weight:400;
  3340. font-style:normal;
  3341. font-size:14px;
  3342. text-align:center;
  3343. }
  3344. #u5930 .text {
  3345. position:absolute;
  3346. align-self:center;
  3347. padding:5px 0px 5px 0px;
  3348. box-sizing:border-box;
  3349. width:100%;
  3350. }
  3351. #u5930_text {
  3352. border-width:0px;
  3353. word-wrap:break-word;
  3354. text-transform:none;
  3355. }
  3356. #u5931_div {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:0px;
  3360. top:0px;
  3361. width:64px;
  3362. height:32px;
  3363. background:inherit;
  3364. background-color:rgba(24, 144, 255, 1);
  3365. border-radius:31px;
  3366. filter:drop-shadow(none);
  3367. transition:none;
  3368. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3369. font-weight:400;
  3370. font-style:normal;
  3371. font-size:16px;
  3372. color:#FFFFFF;
  3373. }
  3374. #u5931 {
  3375. border-width:0px;
  3376. position:absolute;
  3377. left:92px;
  3378. top:1372px;
  3379. width:64px;
  3380. height:32px;
  3381. display:flex;
  3382. transition:none;
  3383. transform-origin:50% 50%;
  3384. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3385. font-weight:400;
  3386. font-style:normal;
  3387. font-size:16px;
  3388. color:#FFFFFF;
  3389. }
  3390. #u5931 .text {
  3391. position:absolute;
  3392. align-self:center;
  3393. padding:5px 10px 5px 10px;
  3394. box-sizing:border-box;
  3395. width:100%;
  3396. }
  3397. #u5931_text {
  3398. border-width:0px;
  3399. white-space:nowrap;
  3400. text-transform:none;
  3401. }
  3402. #u5932_div {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:0px;
  3406. top:0px;
  3407. width:64px;
  3408. height:32px;
  3409. background:inherit;
  3410. background-color:rgba(242, 242, 242, 1);
  3411. border-radius:31px;
  3412. filter:drop-shadow(none);
  3413. transition:none;
  3414. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3415. font-weight:400;
  3416. font-style:normal;
  3417. font-size:16px;
  3418. color:#AAAAAA;
  3419. }
  3420. #u5932 {
  3421. border-width:0px;
  3422. position:absolute;
  3423. left:166px;
  3424. top:1372px;
  3425. width:64px;
  3426. height:32px;
  3427. display:flex;
  3428. transition:none;
  3429. transform-origin:50% 50%;
  3430. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3431. font-weight:400;
  3432. font-style:normal;
  3433. font-size:16px;
  3434. color:#AAAAAA;
  3435. }
  3436. #u5932 .text {
  3437. position:absolute;
  3438. align-self:center;
  3439. padding:5px 10px 5px 10px;
  3440. box-sizing:border-box;
  3441. width:100%;
  3442. }
  3443. #u5932_text {
  3444. border-width:0px;
  3445. white-space:nowrap;
  3446. text-transform:none;
  3447. }
  3448. #u5933_div {
  3449. border-width:0px;
  3450. position:absolute;
  3451. left:0px;
  3452. top:0px;
  3453. width:65px;
  3454. height:32px;
  3455. background:inherit;
  3456. background-color:rgba(242, 242, 242, 1);
  3457. border-radius:31px;
  3458. filter:drop-shadow(none);
  3459. transition:none;
  3460. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3461. font-weight:400;
  3462. font-style:normal;
  3463. font-size:16px;
  3464. color:#AAAAAA;
  3465. }
  3466. #u5933 {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:240px;
  3470. top:1372px;
  3471. width:65px;
  3472. height:32px;
  3473. display:flex;
  3474. transition:none;
  3475. transform-origin:50% 50%;
  3476. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3477. font-weight:400;
  3478. font-style:normal;
  3479. font-size:16px;
  3480. color:#AAAAAA;
  3481. }
  3482. #u5933 .text {
  3483. position:absolute;
  3484. align-self:center;
  3485. padding:5px 10px 5px 10px;
  3486. box-sizing:border-box;
  3487. width:100%;
  3488. }
  3489. #u5933_text {
  3490. border-width:0px;
  3491. white-space:nowrap;
  3492. text-transform:none;
  3493. }
  3494. #u5934_div {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:0px;
  3498. top:0px;
  3499. width:80px;
  3500. height:30px;
  3501. background:inherit;
  3502. background-color:rgba(255, 255, 255, 1);
  3503. box-sizing:border-box;
  3504. border-width:1px;
  3505. border-style:solid;
  3506. border-color:rgba(51, 51, 51, 1);
  3507. border-radius:3px;
  3508. filter:drop-shadow(none);
  3509. transition:none;
  3510. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3511. font-weight:400;
  3512. font-style:normal;
  3513. font-size:14px;
  3514. text-align:center;
  3515. }
  3516. #u5934 {
  3517. border-width:0px;
  3518. position:absolute;
  3519. left:832px;
  3520. top:1331px;
  3521. width:80px;
  3522. height:30px;
  3523. display:flex;
  3524. transition:none;
  3525. transform-origin:50% 50%;
  3526. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3527. font-weight:400;
  3528. font-style:normal;
  3529. font-size:14px;
  3530. text-align:center;
  3531. }
  3532. #u5934 .text {
  3533. position:absolute;
  3534. align-self:center;
  3535. padding:5px 0px 5px 0px;
  3536. box-sizing:border-box;
  3537. width:100%;
  3538. }
  3539. #u5934_text {
  3540. border-width:0px;
  3541. word-wrap:break-word;
  3542. text-transform:none;
  3543. }
  3544. #u5935 {
  3545. border-width:0px;
  3546. position:absolute;
  3547. left:0px;
  3548. top:0px;
  3549. width:0px;
  3550. height:0px;
  3551. }
  3552. #u5936_div {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:0px;
  3556. top:0px;
  3557. width:600px;
  3558. height:1196px;
  3559. background:inherit;
  3560. background-color:rgba(255, 255, 255, 1);
  3561. box-sizing:border-box;
  3562. border-width:1px;
  3563. border-style:solid;
  3564. border-color:rgba(215, 215, 215, 1);
  3565. border-radius:0px;
  3566. filter:drop-shadow(none);
  3567. transition:none;
  3568. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3569. font-weight:400;
  3570. font-style:normal;
  3571. font-size:14px;
  3572. color:#AAAAAA;
  3573. text-align:center;
  3574. line-height:30px;
  3575. }
  3576. #u5936 {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:1079px;
  3580. top:1260px;
  3581. width:600px;
  3582. height:1196px;
  3583. display:flex;
  3584. transition:none;
  3585. transform-origin:50% 50%;
  3586. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3587. font-weight:400;
  3588. font-style:normal;
  3589. font-size:14px;
  3590. color:#AAAAAA;
  3591. text-align:center;
  3592. line-height:30px;
  3593. }
  3594. #u5936 .text {
  3595. position:absolute;
  3596. align-self:center;
  3597. padding:5px 10px 5px 10px;
  3598. box-sizing:border-box;
  3599. width:100%;
  3600. }
  3601. #u5936_text {
  3602. border-width:0px;
  3603. word-wrap:break-word;
  3604. text-transform:none;
  3605. visibility:hidden;
  3606. }
  3607. #u5937_div {
  3608. border-width:0px;
  3609. position:absolute;
  3610. left:0px;
  3611. top:0px;
  3612. width:83px;
  3613. height:35px;
  3614. background:inherit;
  3615. background-color:rgba(255, 255, 255, 0);
  3616. border-top:0px;
  3617. border-right:0px;
  3618. border-bottom:0px;
  3619. border-radius:0px;
  3620. border-top-left-radius:0px;
  3621. border-bottom-left-radius:0px;
  3622. filter:drop-shadow(none);
  3623. transition:none;
  3624. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  3625. font-weight:500;
  3626. font-style:normal;
  3627. font-size:18px;
  3628. }
  3629. #u5937 {
  3630. border-width:0px;
  3631. position:absolute;
  3632. left:1099px;
  3633. top:1278px;
  3634. width:83px;
  3635. height:35px;
  3636. display:flex;
  3637. transition:none;
  3638. transform-origin:50% 50%;
  3639. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  3640. font-weight:500;
  3641. font-style:normal;
  3642. font-size:18px;
  3643. }
  3644. #u5937 .text {
  3645. position:absolute;
  3646. align-self:center;
  3647. padding:5px 10px 5px 0px;
  3648. box-sizing:border-box;
  3649. width:100%;
  3650. }
  3651. #u5937_text {
  3652. border-width:0px;
  3653. white-space:nowrap;
  3654. text-transform:none;
  3655. }
  3656. #u5938 {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:0px;
  3660. top:0px;
  3661. width:0px;
  3662. height:0px;
  3663. }
  3664. #u5939_div {
  3665. border-width:0px;
  3666. position:absolute;
  3667. left:0px;
  3668. top:0px;
  3669. width:40px;
  3670. height:40px;
  3671. background:inherit;
  3672. background-color:rgba(255, 255, 255, 0);
  3673. border-top:0px;
  3674. border-right:0px;
  3675. border-bottom:0px;
  3676. border-radius:0px;
  3677. border-top-left-radius:0px;
  3678. border-bottom-left-radius:0px;
  3679. filter:drop-shadow(none);
  3680. transition:none;
  3681. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  3682. font-weight:500;
  3683. font-style:normal;
  3684. font-size:18px;
  3685. text-align:center;
  3686. }
  3687. #u5939 {
  3688. border-width:0px;
  3689. position:absolute;
  3690. left:1639px;
  3691. top:1260px;
  3692. width:40px;
  3693. height:40px;
  3694. display:flex;
  3695. transition:none;
  3696. transform-origin:50% 50%;
  3697. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  3698. font-weight:500;
  3699. font-style:normal;
  3700. font-size:18px;
  3701. text-align:center;
  3702. }
  3703. #u5939 .text {
  3704. position:absolute;
  3705. align-self:center;
  3706. padding:5px 10px 5px 0px;
  3707. box-sizing:border-box;
  3708. width:100%;
  3709. }
  3710. #u5939_text {
  3711. border-width:0px;
  3712. word-wrap:break-word;
  3713. text-transform:none;
  3714. }
  3715. #u5940 {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:1627px;
  3719. top:1276px;
  3720. width:13px;
  3721. height:13px;
  3722. display:flex;
  3723. transition:none;
  3724. }
  3725. #u5940 .text {
  3726. position:absolute;
  3727. align-self:center;
  3728. padding:2px 2px 2px 2px;
  3729. box-sizing:border-box;
  3730. width:100%;
  3731. }
  3732. #u5940_img {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:0px;
  3736. top:0px;
  3737. width:13px;
  3738. height:13px;
  3739. }
  3740. #u5940_text {
  3741. border-width:0px;
  3742. word-wrap:break-word;
  3743. text-transform:none;
  3744. visibility:hidden;
  3745. }
  3746. #u5941 {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:0px;
  3750. top:0px;
  3751. width:0px;
  3752. height:0px;
  3753. }
  3754. #u5942_div {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:0px;
  3758. top:0px;
  3759. width:600px;
  3760. height:50px;
  3761. background:inherit;
  3762. background-color:rgba(255, 255, 255, 1);
  3763. box-sizing:border-box;
  3764. border-width:1px;
  3765. border-style:solid;
  3766. border-color:rgba(215, 215, 215, 1);
  3767. border-radius:0px;
  3768. filter:drop-shadow(none);
  3769. transition:none;
  3770. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3771. font-weight:400;
  3772. font-style:normal;
  3773. font-size:14px;
  3774. color:#AAAAAA;
  3775. text-align:center;
  3776. line-height:30px;
  3777. }
  3778. #u5942 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:1079px;
  3782. top:2406px;
  3783. width:600px;
  3784. height:50px;
  3785. display:flex;
  3786. transition:none;
  3787. transform-origin:50% 50%;
  3788. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3789. font-weight:400;
  3790. font-style:normal;
  3791. font-size:14px;
  3792. color:#AAAAAA;
  3793. text-align:center;
  3794. line-height:30px;
  3795. }
  3796. #u5942 .text {
  3797. position:absolute;
  3798. align-self:center;
  3799. padding:5px 10px 5px 10px;
  3800. box-sizing:border-box;
  3801. width:100%;
  3802. }
  3803. #u5942_text {
  3804. border-width:0px;
  3805. word-wrap:break-word;
  3806. text-transform:none;
  3807. visibility:hidden;
  3808. }
  3809. #u5943_div {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:0px;
  3813. top:0px;
  3814. width:80px;
  3815. height:30px;
  3816. background:inherit;
  3817. background-color:rgba(24, 144, 255, 1);
  3818. border-radius:4px;
  3819. filter:drop-shadow(none);
  3820. transition:none;
  3821. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3822. font-weight:400;
  3823. font-style:normal;
  3824. font-size:14px;
  3825. color:#FFFFFF;
  3826. }
  3827. #u5943 {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:1577px;
  3831. top:2416px;
  3832. width:80px;
  3833. height:30px;
  3834. display:flex;
  3835. transition:none;
  3836. transform-origin:50% 50%;
  3837. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3838. font-weight:400;
  3839. font-style:normal;
  3840. font-size:14px;
  3841. color:#FFFFFF;
  3842. }
  3843. #u5943 .text {
  3844. position:absolute;
  3845. align-self:center;
  3846. padding:2px 2px 2px 2px;
  3847. box-sizing:border-box;
  3848. width:100%;
  3849. }
  3850. #u5943_text {
  3851. border-width:0px;
  3852. word-wrap:break-word;
  3853. text-transform:none;
  3854. }
  3855. #u5944_div {
  3856. border-width:0px;
  3857. position:absolute;
  3858. left:0px;
  3859. top:0px;
  3860. width:80px;
  3861. height:30px;
  3862. background:inherit;
  3863. background-color:rgba(255, 255, 255, 1);
  3864. box-sizing:border-box;
  3865. border-width:1px;
  3866. border-style:solid;
  3867. border-color:rgba(121, 121, 121, 1);
  3868. border-radius:4px;
  3869. filter:drop-shadow(none);
  3870. transition:none;
  3871. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3872. font-weight:400;
  3873. font-style:normal;
  3874. font-size:14px;
  3875. }
  3876. #u5944 {
  3877. border-width:0px;
  3878. position:absolute;
  3879. left:1487px;
  3880. top:2416px;
  3881. width:80px;
  3882. height:30px;
  3883. display:flex;
  3884. transition:none;
  3885. transform-origin:50% 50%;
  3886. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3887. font-weight:400;
  3888. font-style:normal;
  3889. font-size:14px;
  3890. }
  3891. #u5944 .text {
  3892. position:absolute;
  3893. align-self:center;
  3894. padding:2px 2px 2px 2px;
  3895. box-sizing:border-box;
  3896. width:100%;
  3897. }
  3898. #u5944_text {
  3899. border-width:0px;
  3900. word-wrap:break-word;
  3901. text-transform:none;
  3902. }
  3903. #u5945_div {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:0px;
  3907. top:0px;
  3908. width:102px;
  3909. height:30px;
  3910. background:inherit;
  3911. background-color:rgba(255, 255, 255, 0);
  3912. border-top:0px;
  3913. border-right:0px;
  3914. border-bottom:0px;
  3915. border-radius:0px;
  3916. border-top-left-radius:0px;
  3917. border-bottom-left-radius:0px;
  3918. filter:drop-shadow(none);
  3919. transition:none;
  3920. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3921. font-weight:400;
  3922. font-style:normal;
  3923. font-size:14px;
  3924. }
  3925. #u5945 {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:1128px;
  3929. top:1494px;
  3930. width:102px;
  3931. height:30px;
  3932. display:flex;
  3933. transition:none;
  3934. transform-origin:50% 50%;
  3935. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3936. font-weight:400;
  3937. font-style:normal;
  3938. font-size:14px;
  3939. }
  3940. #u5945 .text {
  3941. position:absolute;
  3942. align-self:center;
  3943. padding:5px 10px 5px 0px;
  3944. box-sizing:border-box;
  3945. width:100%;
  3946. }
  3947. #u5945_text {
  3948. border-width:0px;
  3949. white-space:nowrap;
  3950. text-transform:none;
  3951. }
  3952. #u5946_div {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:0px;
  3956. top:0px;
  3957. width:74px;
  3958. height:30px;
  3959. background:inherit;
  3960. background-color:rgba(255, 255, 255, 0);
  3961. border-top:0px;
  3962. border-right:0px;
  3963. border-bottom:0px;
  3964. border-radius:0px;
  3965. border-top-left-radius:0px;
  3966. border-bottom-left-radius:0px;
  3967. filter:drop-shadow(none);
  3968. transition:none;
  3969. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3970. font-weight:400;
  3971. font-style:normal;
  3972. font-size:14px;
  3973. }
  3974. #u5946 {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:1128px;
  3978. top:1584px;
  3979. width:74px;
  3980. height:30px;
  3981. display:flex;
  3982. transition:none;
  3983. transform-origin:50% 50%;
  3984. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3985. font-weight:400;
  3986. font-style:normal;
  3987. font-size:14px;
  3988. }
  3989. #u5946 .text {
  3990. position:absolute;
  3991. align-self:center;
  3992. padding:5px 10px 5px 0px;
  3993. box-sizing:border-box;
  3994. width:100%;
  3995. }
  3996. #u5946_text {
  3997. border-width:0px;
  3998. white-space:nowrap;
  3999. text-transform:none;
  4000. }
  4001. #u5947 {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:0px;
  4005. top:0px;
  4006. width:0px;
  4007. height:0px;
  4008. }
  4009. #u5948_div {
  4010. border-width:0px;
  4011. position:absolute;
  4012. left:0px;
  4013. top:0px;
  4014. width:400px;
  4015. height:40px;
  4016. background:inherit;
  4017. background-color:rgba(255, 255, 255, 1);
  4018. box-sizing:border-box;
  4019. border-width:1px;
  4020. border-style:solid;
  4021. border-color:rgba(201, 201, 201, 1);
  4022. border-radius:4px;
  4023. filter:drop-shadow(none);
  4024. transition:none;
  4025. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4026. font-weight:400;
  4027. font-style:normal;
  4028. font-size:12px;
  4029. color:#CCCCCC;
  4030. text-align:right;
  4031. }
  4032. #u5948 {
  4033. border-width:0px;
  4034. position:absolute;
  4035. left:1128px;
  4036. top:1614px;
  4037. width:400px;
  4038. height:40px;
  4039. display:flex;
  4040. transition:none;
  4041. transform-origin:50% 50%;
  4042. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4043. font-weight:400;
  4044. font-style:normal;
  4045. font-size:12px;
  4046. color:#CCCCCC;
  4047. text-align:right;
  4048. }
  4049. #u5948 .text {
  4050. position:absolute;
  4051. align-self:center;
  4052. padding:2px 8px 2px 8px;
  4053. box-sizing:border-box;
  4054. width:100%;
  4055. }
  4056. #u5948_text {
  4057. border-width:0px;
  4058. word-wrap:break-word;
  4059. text-transform:none;
  4060. }
  4061. #u5949_input {
  4062. position:absolute;
  4063. left:0px;
  4064. top:0px;
  4065. width:350px;
  4066. height:38px;
  4067. padding:2px 2px 2px 2px;
  4068. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4069. font-weight:400;
  4070. font-style:normal;
  4071. font-size:14px;
  4072. letter-spacing:normal;
  4073. color:#000000;
  4074. vertical-align:none;
  4075. text-align:left;
  4076. text-transform:none;
  4077. background-color:transparent;
  4078. border-color:transparent;
  4079. }
  4080. #u5949_input.hint {
  4081. position:absolute;
  4082. left:0px;
  4083. top:0px;
  4084. width:350px;
  4085. height:38px;
  4086. padding:2px 2px 2px 2px;
  4087. font-family:"Microsoft YaHei", sans-serif;
  4088. font-weight:400;
  4089. font-style:normal;
  4090. font-size:12px;
  4091. letter-spacing:normal;
  4092. color:#AAAAAA;
  4093. vertical-align:none;
  4094. text-align:left;
  4095. text-transform:none;
  4096. background-color:transparent;
  4097. border-color:transparent;
  4098. }
  4099. #u5949_input.disabled {
  4100. position:absolute;
  4101. left:0px;
  4102. top:0px;
  4103. width:350px;
  4104. height:38px;
  4105. padding:2px 2px 2px 2px;
  4106. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4107. font-weight:400;
  4108. font-style:normal;
  4109. font-size:14px;
  4110. letter-spacing:normal;
  4111. color:#000000;
  4112. vertical-align:none;
  4113. text-align:left;
  4114. text-transform:none;
  4115. background-color:transparent;
  4116. border-color:transparent;
  4117. }
  4118. #u5949_input.hint.disabled {
  4119. position:absolute;
  4120. left:0px;
  4121. top:0px;
  4122. width:350px;
  4123. height:38px;
  4124. padding:2px 2px 2px 2px;
  4125. font-family:"Microsoft YaHei", sans-serif;
  4126. font-weight:400;
  4127. font-style:normal;
  4128. font-size:12px;
  4129. letter-spacing:normal;
  4130. color:#AAAAAA;
  4131. vertical-align:none;
  4132. text-align:left;
  4133. text-transform:none;
  4134. background-color:transparent;
  4135. border-color:transparent;
  4136. }
  4137. #u5949_div {
  4138. border-width:0px;
  4139. position:absolute;
  4140. left:0px;
  4141. top:0px;
  4142. width:350px;
  4143. height:38px;
  4144. background:inherit;
  4145. background-color:rgba(255, 255, 255, 1);
  4146. border-radius:0px;
  4147. filter:drop-shadow(none);
  4148. transition:none;
  4149. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4150. font-weight:400;
  4151. font-style:normal;
  4152. font-size:14px;
  4153. }
  4154. #u5949 {
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:1139px;
  4158. top:1615px;
  4159. width:350px;
  4160. height:38px;
  4161. display:flex;
  4162. transition:none;
  4163. transform-origin:50% 50%;
  4164. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4165. font-weight:400;
  4166. font-style:normal;
  4167. font-size:14px;
  4168. }
  4169. #u5949 .text {
  4170. position:absolute;
  4171. align-self:center;
  4172. padding:2px 2px 2px 2px;
  4173. box-sizing:border-box;
  4174. width:100%;
  4175. }
  4176. #u5949_div.hint {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:0px;
  4180. top:0px;
  4181. width:350px;
  4182. height:38px;
  4183. background:inherit;
  4184. background-color:rgba(255, 255, 255, 1);
  4185. border-radius:0px;
  4186. filter:drop-shadow(none);
  4187. transition:none;
  4188. font-family:"Microsoft YaHei", sans-serif;
  4189. font-weight:400;
  4190. font-style:normal;
  4191. font-size:14px;
  4192. }
  4193. #u5949.hint {
  4194. }
  4195. #u5949_div.disabled {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:0px;
  4199. top:0px;
  4200. width:350px;
  4201. height:38px;
  4202. background:inherit;
  4203. background-color:rgba(240, 240, 240, 1);
  4204. border-radius:0px;
  4205. filter:drop-shadow(none);
  4206. transition:none;
  4207. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4208. font-weight:400;
  4209. font-style:normal;
  4210. font-size:14px;
  4211. }
  4212. #u5949.disabled {
  4213. }
  4214. #u5949_div.hint.disabled {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:0px;
  4218. top:0px;
  4219. width:350px;
  4220. height:38px;
  4221. background:inherit;
  4222. background-color:rgba(240, 240, 240, 1);
  4223. border-radius:0px;
  4224. filter:drop-shadow(none);
  4225. transition:none;
  4226. font-family:"Microsoft YaHei", sans-serif;
  4227. font-weight:400;
  4228. font-style:normal;
  4229. font-size:14px;
  4230. }
  4231. #u5949.hint.disabled {
  4232. }
  4233. #u5950_div {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:0px;
  4237. top:0px;
  4238. width:127px;
  4239. height:30px;
  4240. background:inherit;
  4241. background-color:rgba(255, 255, 255, 0);
  4242. border-top:0px;
  4243. border-right:0px;
  4244. border-bottom:0px;
  4245. border-radius:0px;
  4246. border-top-left-radius:0px;
  4247. border-bottom-left-radius:0px;
  4248. filter:drop-shadow(none);
  4249. transition:none;
  4250. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4251. font-weight:400;
  4252. font-style:normal;
  4253. font-size:14px;
  4254. }
  4255. #u5950 {
  4256. border-width:0px;
  4257. position:absolute;
  4258. left:1128px;
  4259. top:1664px;
  4260. width:127px;
  4261. height:30px;
  4262. display:flex;
  4263. transition:none;
  4264. transform-origin:50% 50%;
  4265. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4266. font-weight:400;
  4267. font-style:normal;
  4268. font-size:14px;
  4269. }
  4270. #u5950 .text {
  4271. position:absolute;
  4272. align-self:center;
  4273. padding:5px 10px 5px 0px;
  4274. box-sizing:border-box;
  4275. width:100%;
  4276. }
  4277. #u5950_text {
  4278. border-width:0px;
  4279. white-space:nowrap;
  4280. text-transform:none;
  4281. }
  4282. #u5951 {
  4283. border-width:0px;
  4284. position:absolute;
  4285. left:0px;
  4286. top:0px;
  4287. width:0px;
  4288. height:0px;
  4289. }
  4290. #u5952 {
  4291. border-width:0px;
  4292. position:absolute;
  4293. left:0px;
  4294. top:0px;
  4295. width:0px;
  4296. height:0px;
  4297. }
  4298. #u5953 {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:1128px;
  4302. top:1704px;
  4303. width:400px;
  4304. height:120px;
  4305. display:flex;
  4306. transition:none;
  4307. font-family:"Microsoft YaHei", sans-serif;
  4308. font-weight:400;
  4309. font-style:normal;
  4310. font-size:14px;
  4311. color:#CCCCCC;
  4312. text-align:left;
  4313. }
  4314. #u5953 .text {
  4315. position:absolute;
  4316. align-self:center;
  4317. padding:2px 8px 2px 8px;
  4318. box-sizing:border-box;
  4319. width:100%;
  4320. }
  4321. #u5953_img {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:0px;
  4325. top:0px;
  4326. width:400px;
  4327. height:120px;
  4328. }
  4329. #u5953_text {
  4330. border-width:0px;
  4331. word-wrap:break-word;
  4332. text-transform:none;
  4333. visibility:hidden;
  4334. }
  4335. #u5954 {
  4336. border-width:0px;
  4337. position:absolute;
  4338. left:1308px;
  4339. top:1726px;
  4340. width:41px;
  4341. height:30px;
  4342. display:flex;
  4343. transition:none;
  4344. }
  4345. #u5954 .text {
  4346. position:absolute;
  4347. align-self:center;
  4348. padding:2px 2px 2px 2px;
  4349. box-sizing:border-box;
  4350. width:100%;
  4351. }
  4352. #u5954_img {
  4353. border-width:0px;
  4354. position:absolute;
  4355. left:0px;
  4356. top:0px;
  4357. width:41px;
  4358. height:30px;
  4359. }
  4360. #u5954_text {
  4361. border-width:0px;
  4362. word-wrap:break-word;
  4363. text-transform:none;
  4364. visibility:hidden;
  4365. }
  4366. #u5955_div {
  4367. border-width:0px;
  4368. position:absolute;
  4369. left:0px;
  4370. top:0px;
  4371. width:277px;
  4372. height:30px;
  4373. background:inherit;
  4374. background-color:rgba(255, 255, 255, 0);
  4375. border-top:0px;
  4376. border-right:0px;
  4377. border-bottom:0px;
  4378. border-radius:0px;
  4379. border-top-left-radius:0px;
  4380. border-bottom-left-radius:0px;
  4381. filter:drop-shadow(none);
  4382. transition:none;
  4383. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4384. font-weight:400;
  4385. font-style:normal;
  4386. font-size:14px;
  4387. }
  4388. #u5955 {
  4389. border-width:0px;
  4390. position:absolute;
  4391. left:1190px;
  4392. top:1764px;
  4393. width:277px;
  4394. height:30px;
  4395. display:flex;
  4396. transition:none;
  4397. transform-origin:50% 50%;
  4398. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4399. font-weight:400;
  4400. font-style:normal;
  4401. font-size:14px;
  4402. }
  4403. #u5955 .text {
  4404. position:absolute;
  4405. align-self:center;
  4406. padding:5px 10px 5px 0px;
  4407. box-sizing:border-box;
  4408. width:100%;
  4409. }
  4410. #u5955_text {
  4411. border-width:0px;
  4412. white-space:nowrap;
  4413. text-transform:none;
  4414. }
  4415. #u5956_div {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:0px;
  4419. top:0px;
  4420. width:169px;
  4421. height:27px;
  4422. background:inherit;
  4423. background-color:rgba(255, 255, 255, 0);
  4424. border-top:0px;
  4425. border-right:0px;
  4426. border-bottom:0px;
  4427. border-radius:0px;
  4428. border-top-left-radius:0px;
  4429. border-bottom-left-radius:0px;
  4430. filter:drop-shadow(none);
  4431. transition:none;
  4432. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4433. font-weight:400;
  4434. font-style:normal;
  4435. font-size:12px;
  4436. color:#AAAAAA;
  4437. }
  4438. #u5956 {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:1240px;
  4442. top:1790px;
  4443. width:169px;
  4444. height:27px;
  4445. display:flex;
  4446. transition:none;
  4447. transform-origin:50% 50%;
  4448. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4449. font-weight:400;
  4450. font-style:normal;
  4451. font-size:12px;
  4452. color:#AAAAAA;
  4453. }
  4454. #u5956 .text {
  4455. position:absolute;
  4456. align-self:center;
  4457. padding:5px 10px 5px 0px;
  4458. box-sizing:border-box;
  4459. width:100%;
  4460. }
  4461. #u5956_text {
  4462. border-width:0px;
  4463. white-space:nowrap;
  4464. text-transform:none;
  4465. }
  4466. #u5957_div {
  4467. border-width:0px;
  4468. position:absolute;
  4469. left:0px;
  4470. top:0px;
  4471. width:46px;
  4472. height:30px;
  4473. background:inherit;
  4474. background-color:rgba(255, 255, 255, 0);
  4475. border-top:0px;
  4476. border-right:0px;
  4477. border-bottom:0px;
  4478. border-radius:0px;
  4479. border-top-left-radius:0px;
  4480. border-bottom-left-radius:0px;
  4481. filter:drop-shadow(none);
  4482. transition:none;
  4483. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4484. font-weight:400;
  4485. font-style:normal;
  4486. font-size:14px;
  4487. }
  4488. #u5957 {
  4489. border-width:0px;
  4490. position:absolute;
  4491. left:1128px;
  4492. top:1334px;
  4493. width:46px;
  4494. height:30px;
  4495. display:flex;
  4496. transition:none;
  4497. transform-origin:50% 50%;
  4498. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4499. font-weight:400;
  4500. font-style:normal;
  4501. font-size:14px;
  4502. }
  4503. #u5957 .text {
  4504. position:absolute;
  4505. align-self:center;
  4506. padding:5px 10px 5px 0px;
  4507. box-sizing:border-box;
  4508. width:100%;
  4509. }
  4510. #u5957_text {
  4511. border-width:0px;
  4512. white-space:nowrap;
  4513. text-transform:none;
  4514. }
  4515. #u5958 {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:0px;
  4519. top:0px;
  4520. width:0px;
  4521. height:0px;
  4522. }
  4523. #u5959_div {
  4524. border-width:0px;
  4525. position:absolute;
  4526. left:0px;
  4527. top:0px;
  4528. width:400px;
  4529. height:40px;
  4530. background:inherit;
  4531. background-color:rgba(242, 242, 242, 1);
  4532. box-sizing:border-box;
  4533. border-width:1px;
  4534. border-style:solid;
  4535. border-color:rgba(215, 215, 215, 1);
  4536. border-radius:4px;
  4537. filter:drop-shadow(none);
  4538. transition:none;
  4539. font-size:14px;
  4540. }
  4541. #u5959 {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:1128px;
  4545. top:1364px;
  4546. width:400px;
  4547. height:40px;
  4548. display:flex;
  4549. transition:none;
  4550. transform-origin:50% 50%;
  4551. font-size:14px;
  4552. }
  4553. #u5959 .text {
  4554. position:absolute;
  4555. align-self:center;
  4556. padding:2px 2px 2px 2px;
  4557. box-sizing:border-box;
  4558. width:100%;
  4559. }
  4560. #u5959_text {
  4561. border-width:0px;
  4562. word-wrap:break-word;
  4563. text-transform:none;
  4564. visibility:hidden;
  4565. }
  4566. #u5960_input {
  4567. position:absolute;
  4568. left:0px;
  4569. top:0px;
  4570. width:382px;
  4571. height:31px;
  4572. padding:2px 2px 2px 2px;
  4573. font-family:"ArialMT", "Arial", sans-serif;
  4574. font-weight:400;
  4575. font-style:normal;
  4576. font-size:14px;
  4577. letter-spacing:normal;
  4578. color:#AAAAAA;
  4579. vertical-align:none;
  4580. text-align:left;
  4581. text-transform:none;
  4582. background-color:transparent;
  4583. border-color:transparent;
  4584. }
  4585. #u5960_input.disabled {
  4586. position:absolute;
  4587. left:0px;
  4588. top:0px;
  4589. width:382px;
  4590. height:31px;
  4591. padding:2px 2px 2px 2px;
  4592. font-family:"ArialMT", "Arial", sans-serif;
  4593. font-weight:400;
  4594. font-style:normal;
  4595. font-size:14px;
  4596. letter-spacing:normal;
  4597. color:#AAAAAA;
  4598. vertical-align:none;
  4599. text-align:left;
  4600. text-transform:none;
  4601. background-color:transparent;
  4602. border-color:transparent;
  4603. }
  4604. #u5960_div {
  4605. border-width:0px;
  4606. position:absolute;
  4607. left:0px;
  4608. top:0px;
  4609. width:382px;
  4610. height:31px;
  4611. background:inherit;
  4612. background-color:rgba(242, 242, 242, 1);
  4613. border-radius:0px;
  4614. filter:drop-shadow(none);
  4615. transition:none;
  4616. font-size:14px;
  4617. color:#AAAAAA;
  4618. }
  4619. #u5960 {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:1140px;
  4623. top:1367px;
  4624. width:382px;
  4625. height:31px;
  4626. display:flex;
  4627. transition:none;
  4628. transform-origin:50% 50%;
  4629. font-size:14px;
  4630. color:#AAAAAA;
  4631. }
  4632. #u5960 .text {
  4633. position:absolute;
  4634. align-self:flex-start;
  4635. padding:2px 2px 2px 2px;
  4636. box-sizing:border-box;
  4637. width:100%;
  4638. }
  4639. #u5960_div.disabled {
  4640. border-width:0px;
  4641. position:absolute;
  4642. left:0px;
  4643. top:0px;
  4644. width:382px;
  4645. height:31px;
  4646. background:inherit;
  4647. background-color:rgba(240, 240, 240, 1);
  4648. border-radius:0px;
  4649. filter:drop-shadow(none);
  4650. transition:none;
  4651. font-size:14px;
  4652. color:#AAAAAA;
  4653. }
  4654. #u5960.disabled {
  4655. }
  4656. .u5960_input_option {
  4657. font-size:14px;
  4658. }
  4659. #u5961_div {
  4660. border-width:0px;
  4661. position:absolute;
  4662. left:0px;
  4663. top:0px;
  4664. width:46px;
  4665. height:30px;
  4666. background:inherit;
  4667. background-color:rgba(255, 255, 255, 0);
  4668. border-top:0px;
  4669. border-right:0px;
  4670. border-bottom:0px;
  4671. border-radius:0px;
  4672. border-top-left-radius:0px;
  4673. border-bottom-left-radius:0px;
  4674. filter:drop-shadow(none);
  4675. transition:none;
  4676. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4677. font-weight:400;
  4678. font-style:normal;
  4679. font-size:14px;
  4680. }
  4681. #u5961 {
  4682. border-width:0px;
  4683. position:absolute;
  4684. left:1128px;
  4685. top:1414px;
  4686. width:46px;
  4687. height:30px;
  4688. display:flex;
  4689. transition:none;
  4690. transform-origin:50% 50%;
  4691. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4692. font-weight:400;
  4693. font-style:normal;
  4694. font-size:14px;
  4695. }
  4696. #u5961 .text {
  4697. position:absolute;
  4698. align-self:center;
  4699. padding:5px 10px 5px 0px;
  4700. box-sizing:border-box;
  4701. width:100%;
  4702. }
  4703. #u5961_text {
  4704. border-width:0px;
  4705. white-space:nowrap;
  4706. text-transform:none;
  4707. }
  4708. #u5962 {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:0px;
  4712. top:0px;
  4713. width:0px;
  4714. height:0px;
  4715. }
  4716. #u5963_div {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:0px;
  4720. top:0px;
  4721. width:400px;
  4722. height:40px;
  4723. background:inherit;
  4724. background-color:rgba(242, 242, 242, 1);
  4725. box-sizing:border-box;
  4726. border-width:1px;
  4727. border-style:solid;
  4728. border-color:rgba(215, 215, 215, 1);
  4729. border-radius:4px;
  4730. filter:drop-shadow(none);
  4731. transition:none;
  4732. font-size:14px;
  4733. }
  4734. #u5963 {
  4735. border-width:0px;
  4736. position:absolute;
  4737. left:1128px;
  4738. top:1444px;
  4739. width:400px;
  4740. height:40px;
  4741. display:flex;
  4742. transition:none;
  4743. transform-origin:50% 50%;
  4744. font-size:14px;
  4745. }
  4746. #u5963 .text {
  4747. position:absolute;
  4748. align-self:center;
  4749. padding:2px 2px 2px 2px;
  4750. box-sizing:border-box;
  4751. width:100%;
  4752. }
  4753. #u5963_text {
  4754. border-width:0px;
  4755. word-wrap:break-word;
  4756. text-transform:none;
  4757. visibility:hidden;
  4758. }
  4759. #u5964_input {
  4760. position:absolute;
  4761. left:0px;
  4762. top:0px;
  4763. width:382px;
  4764. height:31px;
  4765. padding:2px 2px 2px 2px;
  4766. font-family:"ArialMT", "Arial", sans-serif;
  4767. font-weight:400;
  4768. font-style:normal;
  4769. font-size:14px;
  4770. letter-spacing:normal;
  4771. color:#AAAAAA;
  4772. vertical-align:none;
  4773. text-align:left;
  4774. text-transform:none;
  4775. background-color:transparent;
  4776. border-color:transparent;
  4777. }
  4778. #u5964_input.disabled {
  4779. position:absolute;
  4780. left:0px;
  4781. top:0px;
  4782. width:382px;
  4783. height:31px;
  4784. padding:2px 2px 2px 2px;
  4785. font-family:"ArialMT", "Arial", sans-serif;
  4786. font-weight:400;
  4787. font-style:normal;
  4788. font-size:14px;
  4789. letter-spacing:normal;
  4790. color:#AAAAAA;
  4791. vertical-align:none;
  4792. text-align:left;
  4793. text-transform:none;
  4794. background-color:transparent;
  4795. border-color:transparent;
  4796. }
  4797. #u5964_div {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:0px;
  4801. top:0px;
  4802. width:382px;
  4803. height:31px;
  4804. background:inherit;
  4805. background-color:rgba(242, 242, 242, 1);
  4806. border-radius:0px;
  4807. filter:drop-shadow(none);
  4808. transition:none;
  4809. font-size:14px;
  4810. color:#AAAAAA;
  4811. }
  4812. #u5964 {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:1140px;
  4816. top:1447px;
  4817. width:382px;
  4818. height:31px;
  4819. display:flex;
  4820. transition:none;
  4821. transform-origin:50% 50%;
  4822. font-size:14px;
  4823. color:#AAAAAA;
  4824. }
  4825. #u5964 .text {
  4826. position:absolute;
  4827. align-self:flex-start;
  4828. padding:2px 2px 2px 2px;
  4829. box-sizing:border-box;
  4830. width:100%;
  4831. }
  4832. #u5964_div.disabled {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:0px;
  4836. top:0px;
  4837. width:382px;
  4838. height:31px;
  4839. background:inherit;
  4840. background-color:rgba(240, 240, 240, 1);
  4841. border-radius:0px;
  4842. filter:drop-shadow(none);
  4843. transition:none;
  4844. font-size:14px;
  4845. color:#AAAAAA;
  4846. }
  4847. #u5964.disabled {
  4848. }
  4849. .u5964_input_option {
  4850. font-size:14px;
  4851. }
  4852. #u5965 {
  4853. border-width:0px;
  4854. position:absolute;
  4855. left:0px;
  4856. top:0px;
  4857. width:0px;
  4858. height:0px;
  4859. }
  4860. #u5966_div {
  4861. border-width:0px;
  4862. position:absolute;
  4863. left:0px;
  4864. top:0px;
  4865. width:400px;
  4866. height:40px;
  4867. background:inherit;
  4868. background-color:rgba(242, 242, 242, 1);
  4869. box-sizing:border-box;
  4870. border-width:1px;
  4871. border-style:solid;
  4872. border-color:rgba(201, 201, 201, 1);
  4873. border-radius:4px;
  4874. filter:drop-shadow(none);
  4875. transition:none;
  4876. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4877. font-weight:400;
  4878. font-style:normal;
  4879. font-size:12px;
  4880. color:#CCCCCC;
  4881. text-align:right;
  4882. }
  4883. #u5966 {
  4884. border-width:0px;
  4885. position:absolute;
  4886. left:1128px;
  4887. top:1534px;
  4888. width:400px;
  4889. height:40px;
  4890. display:flex;
  4891. transition:none;
  4892. transform-origin:50% 50%;
  4893. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4894. font-weight:400;
  4895. font-style:normal;
  4896. font-size:12px;
  4897. color:#CCCCCC;
  4898. text-align:right;
  4899. }
  4900. #u5966 .text {
  4901. position:absolute;
  4902. align-self:center;
  4903. padding:2px 8px 2px 8px;
  4904. box-sizing:border-box;
  4905. width:100%;
  4906. }
  4907. #u5966_text {
  4908. border-width:0px;
  4909. word-wrap:break-word;
  4910. text-transform:none;
  4911. visibility:hidden;
  4912. }
  4913. #u5967_input {
  4914. position:absolute;
  4915. left:0px;
  4916. top:0px;
  4917. width:350px;
  4918. height:38px;
  4919. padding:2px 2px 2px 2px;
  4920. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4921. font-weight:400;
  4922. font-style:normal;
  4923. font-size:14px;
  4924. letter-spacing:normal;
  4925. color:#000000;
  4926. vertical-align:none;
  4927. text-align:left;
  4928. text-transform:none;
  4929. background-color:transparent;
  4930. border-color:transparent;
  4931. }
  4932. #u5967_input.hint {
  4933. position:absolute;
  4934. left:0px;
  4935. top:0px;
  4936. width:350px;
  4937. height:38px;
  4938. padding:2px 2px 2px 2px;
  4939. font-family:"Microsoft YaHei", sans-serif;
  4940. font-weight:400;
  4941. font-style:normal;
  4942. font-size:12px;
  4943. letter-spacing:normal;
  4944. color:#AAAAAA;
  4945. vertical-align:none;
  4946. text-align:left;
  4947. text-transform:none;
  4948. background-color:transparent;
  4949. border-color:transparent;
  4950. }
  4951. #u5967_input.disabled {
  4952. position:absolute;
  4953. left:0px;
  4954. top:0px;
  4955. width:350px;
  4956. height:38px;
  4957. padding:2px 2px 2px 2px;
  4958. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4959. font-weight:400;
  4960. font-style:normal;
  4961. font-size:14px;
  4962. letter-spacing:normal;
  4963. color:#000000;
  4964. vertical-align:none;
  4965. text-align:left;
  4966. text-transform:none;
  4967. background-color:transparent;
  4968. border-color:transparent;
  4969. }
  4970. #u5967_input.hint.disabled {
  4971. position:absolute;
  4972. left:0px;
  4973. top:0px;
  4974. width:350px;
  4975. height:38px;
  4976. padding:2px 2px 2px 2px;
  4977. font-family:"Microsoft YaHei", sans-serif;
  4978. font-weight:400;
  4979. font-style:normal;
  4980. font-size:12px;
  4981. letter-spacing:normal;
  4982. color:#AAAAAA;
  4983. vertical-align:none;
  4984. text-align:left;
  4985. text-transform:none;
  4986. background-color:transparent;
  4987. border-color:transparent;
  4988. }
  4989. #u5967_div {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:0px;
  4993. top:0px;
  4994. width:350px;
  4995. height:38px;
  4996. background:inherit;
  4997. background-color:rgba(242, 242, 242, 1);
  4998. border-radius:0px;
  4999. filter:drop-shadow(none);
  5000. transition:none;
  5001. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5002. font-weight:400;
  5003. font-style:normal;
  5004. font-size:14px;
  5005. }
  5006. #u5967 {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:1139px;
  5010. top:1535px;
  5011. width:350px;
  5012. height:38px;
  5013. display:flex;
  5014. transition:none;
  5015. transform-origin:50% 50%;
  5016. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5017. font-weight:400;
  5018. font-style:normal;
  5019. font-size:14px;
  5020. }
  5021. #u5967 .text {
  5022. position:absolute;
  5023. align-self:center;
  5024. padding:2px 2px 2px 2px;
  5025. box-sizing:border-box;
  5026. width:100%;
  5027. }
  5028. #u5967_div.hint {
  5029. border-width:0px;
  5030. position:absolute;
  5031. left:0px;
  5032. top:0px;
  5033. width:350px;
  5034. height:38px;
  5035. background:inherit;
  5036. background-color:rgba(242, 242, 242, 1);
  5037. border-radius:0px;
  5038. filter:drop-shadow(none);
  5039. transition:none;
  5040. font-family:"Microsoft YaHei", sans-serif;
  5041. font-weight:400;
  5042. font-style:normal;
  5043. font-size:14px;
  5044. }
  5045. #u5967.hint {
  5046. }
  5047. #u5967_div.disabled {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:0px;
  5051. top:0px;
  5052. width:350px;
  5053. height:38px;
  5054. background:inherit;
  5055. background-color:rgba(240, 240, 240, 1);
  5056. border-radius:0px;
  5057. filter:drop-shadow(none);
  5058. transition:none;
  5059. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5060. font-weight:400;
  5061. font-style:normal;
  5062. font-size:14px;
  5063. }
  5064. #u5967.disabled {
  5065. }
  5066. #u5967_div.hint.disabled {
  5067. border-width:0px;
  5068. position:absolute;
  5069. left:0px;
  5070. top:0px;
  5071. width:350px;
  5072. height:38px;
  5073. background:inherit;
  5074. background-color:rgba(240, 240, 240, 1);
  5075. border-radius:0px;
  5076. filter:drop-shadow(none);
  5077. transition:none;
  5078. font-family:"Microsoft YaHei", sans-serif;
  5079. font-weight:400;
  5080. font-style:normal;
  5081. font-size:14px;
  5082. }
  5083. #u5967.hint.disabled {
  5084. }
  5085. #u5968 {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:0px;
  5089. top:0px;
  5090. width:0px;
  5091. height:0px;
  5092. }
  5093. #u5969 {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:0px;
  5097. top:0px;
  5098. width:0px;
  5099. height:0px;
  5100. }
  5101. #u5970_div {
  5102. border-width:0px;
  5103. position:absolute;
  5104. left:0px;
  5105. top:0px;
  5106. width:380px;
  5107. height:140px;
  5108. background:inherit;
  5109. background-color:rgba(255, 255, 255, 1);
  5110. border-radius:4px;
  5111. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  5112. transition:none;
  5113. font-family:"Microsoft YaHei", sans-serif;
  5114. font-weight:400;
  5115. font-style:normal;
  5116. }
  5117. #u5970 {
  5118. border-width:0px;
  5119. position:absolute;
  5120. left:412px;
  5121. top:1646px;
  5122. width:380px;
  5123. height:140px;
  5124. display:flex;
  5125. transition:none;
  5126. transform-origin:50% 50%;
  5127. font-family:"Microsoft YaHei", sans-serif;
  5128. font-weight:400;
  5129. font-style:normal;
  5130. }
  5131. #u5970 .text {
  5132. position:absolute;
  5133. align-self:center;
  5134. padding:2px 2px 2px 2px;
  5135. box-sizing:border-box;
  5136. width:100%;
  5137. }
  5138. #u5970_text {
  5139. border-width:0px;
  5140. word-wrap:break-word;
  5141. text-transform:none;
  5142. visibility:hidden;
  5143. }
  5144. #u5971_div {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:0px;
  5148. top:0px;
  5149. width:299px;
  5150. height:22px;
  5151. background:inherit;
  5152. background-color:rgba(255, 255, 255, 0);
  5153. border-radius:0px;
  5154. filter:drop-shadow(none);
  5155. transition:none;
  5156. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5157. font-weight:400;
  5158. font-style:normal;
  5159. font-size:14px;
  5160. color:#666666;
  5161. line-height:22px;
  5162. }
  5163. #u5971 {
  5164. border-width:0px;
  5165. position:absolute;
  5166. left:472px;
  5167. top:1701px;
  5168. width:299px;
  5169. height:22px;
  5170. display:flex;
  5171. transition:none;
  5172. transform-origin:50% 50%;
  5173. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5174. font-weight:400;
  5175. font-style:normal;
  5176. font-size:14px;
  5177. color:#666666;
  5178. line-height:22px;
  5179. }
  5180. #u5971 .text {
  5181. position:absolute;
  5182. align-self:flex-start;
  5183. padding:0px 0px 0px 0px;
  5184. box-sizing:border-box;
  5185. width:100%;
  5186. }
  5187. #u5971_text {
  5188. border-width:0px;
  5189. word-wrap:break-word;
  5190. text-transform:none;
  5191. }
  5192. #u5972_div {
  5193. border-width:0px;
  5194. position:absolute;
  5195. left:0px;
  5196. top:0px;
  5197. width:127px;
  5198. height:21px;
  5199. background:inherit;
  5200. background-color:rgba(255, 255, 255, 0);
  5201. border-radius:0px;
  5202. filter:drop-shadow(none);
  5203. transition:none;
  5204. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  5205. font-weight:650;
  5206. font-style:normal;
  5207. font-size:18px;
  5208. color:#000000;
  5209. line-height:22px;
  5210. }
  5211. #u5972 {
  5212. border-width:0px;
  5213. position:absolute;
  5214. left:472px;
  5215. top:1671px;
  5216. width:127px;
  5217. height:21px;
  5218. display:flex;
  5219. transition:none;
  5220. transform-origin:50% 50%;
  5221. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  5222. font-weight:650;
  5223. font-style:normal;
  5224. font-size:18px;
  5225. color:#000000;
  5226. line-height:22px;
  5227. }
  5228. #u5972 .text {
  5229. position:absolute;
  5230. align-self:flex-start;
  5231. padding:0px 0px 0px 0px;
  5232. box-sizing:border-box;
  5233. width:100%;
  5234. }
  5235. #u5972_text {
  5236. border-width:0px;
  5237. white-space:nowrap;
  5238. text-transform:none;
  5239. }
  5240. #u5973_div {
  5241. border-width:0px;
  5242. position:absolute;
  5243. left:0px;
  5244. top:0px;
  5245. width:61px;
  5246. height:32px;
  5247. background:inherit;
  5248. background-color:rgba(24, 144, 255, 1);
  5249. border-radius:4px;
  5250. filter:drop-shadow(none);
  5251. transition:none;
  5252. font-family:"Microsoft YaHei", sans-serif;
  5253. font-weight:400;
  5254. font-style:normal;
  5255. font-size:14px;
  5256. color:#FFFFFF;
  5257. }
  5258. #u5973 {
  5259. border-width:0px;
  5260. position:absolute;
  5261. left:714px;
  5262. top:1735px;
  5263. width:61px;
  5264. height:32px;
  5265. display:flex;
  5266. transition:none;
  5267. transform-origin:50% 50%;
  5268. font-family:"Microsoft YaHei", sans-serif;
  5269. font-weight:400;
  5270. font-style:normal;
  5271. font-size:14px;
  5272. color:#FFFFFF;
  5273. }
  5274. #u5973 .text {
  5275. position:absolute;
  5276. align-self:center;
  5277. padding:2px 16px 2px 16px;
  5278. box-sizing:border-box;
  5279. width:100%;
  5280. }
  5281. #u5973_text {
  5282. border-width:0px;
  5283. white-space:nowrap;
  5284. text-transform:none;
  5285. }
  5286. #u5974_div {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:0px;
  5290. top:0px;
  5291. width:66px;
  5292. height:32px;
  5293. background:inherit;
  5294. background-color:rgba(255, 255, 255, 1);
  5295. box-sizing:border-box;
  5296. border-width:1px;
  5297. border-style:solid;
  5298. border-color:rgba(217, 217, 217, 1);
  5299. border-radius:4px;
  5300. filter:drop-shadow(none);
  5301. transition:none;
  5302. font-family:"Microsoft YaHei", sans-serif;
  5303. font-weight:400;
  5304. font-style:normal;
  5305. font-size:14px;
  5306. color:rgba(0, 0, 0, 0.6470588235294118);
  5307. line-height:21px;
  5308. }
  5309. #u5974 {
  5310. border-width:0px;
  5311. position:absolute;
  5312. left:632px;
  5313. top:1735px;
  5314. width:66px;
  5315. height:32px;
  5316. display:flex;
  5317. transition:none;
  5318. transform-origin:50% 50%;
  5319. font-family:"Microsoft YaHei", sans-serif;
  5320. font-weight:400;
  5321. font-style:normal;
  5322. font-size:14px;
  5323. color:rgba(0, 0, 0, 0.6470588235294118);
  5324. line-height:21px;
  5325. }
  5326. #u5974 .text {
  5327. position:absolute;
  5328. align-self:center;
  5329. padding:2px 16px 2px 16px;
  5330. box-sizing:border-box;
  5331. width:100%;
  5332. }
  5333. #u5974_text {
  5334. border-width:0px;
  5335. white-space:nowrap;
  5336. text-transform:none;
  5337. }
  5338. #u5975 {
  5339. border-width:0px;
  5340. position:absolute;
  5341. left:441px;
  5342. top:1675px;
  5343. width:20px;
  5344. height:20px;
  5345. display:flex;
  5346. transition:none;
  5347. }
  5348. #u5975 .text {
  5349. position:absolute;
  5350. align-self:center;
  5351. padding:2px 2px 2px 2px;
  5352. box-sizing:border-box;
  5353. width:100%;
  5354. }
  5355. #u5975_img {
  5356. border-width:0px;
  5357. position:absolute;
  5358. left:0px;
  5359. top:0px;
  5360. width:20px;
  5361. height:20px;
  5362. }
  5363. #u5975_text {
  5364. border-width:0px;
  5365. word-wrap:break-word;
  5366. text-transform:none;
  5367. visibility:hidden;
  5368. }
  5369. #u5976 {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:0px;
  5373. top:0px;
  5374. width:0px;
  5375. height:0px;
  5376. }
  5377. #u5977_div {
  5378. border-width:0px;
  5379. position:absolute;
  5380. left:0px;
  5381. top:0px;
  5382. width:380px;
  5383. height:140px;
  5384. background:inherit;
  5385. background-color:rgba(255, 255, 255, 1);
  5386. border-radius:4px;
  5387. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  5388. transition:none;
  5389. font-family:"Microsoft YaHei", sans-serif;
  5390. font-weight:400;
  5391. font-style:normal;
  5392. }
  5393. #u5977 {
  5394. border-width:0px;
  5395. position:absolute;
  5396. left:412px;
  5397. top:1807px;
  5398. width:380px;
  5399. height:140px;
  5400. display:flex;
  5401. transition:none;
  5402. transform-origin:50% 50%;
  5403. font-family:"Microsoft YaHei", sans-serif;
  5404. font-weight:400;
  5405. font-style:normal;
  5406. }
  5407. #u5977 .text {
  5408. position:absolute;
  5409. align-self:center;
  5410. padding:2px 2px 2px 2px;
  5411. box-sizing:border-box;
  5412. width:100%;
  5413. }
  5414. #u5977_text {
  5415. border-width:0px;
  5416. word-wrap:break-word;
  5417. text-transform:none;
  5418. visibility:hidden;
  5419. }
  5420. #u5978_div {
  5421. border-width:0px;
  5422. position:absolute;
  5423. left:0px;
  5424. top:0px;
  5425. width:288px;
  5426. height:22px;
  5427. background:inherit;
  5428. background-color:rgba(255, 255, 255, 0);
  5429. border-radius:0px;
  5430. filter:drop-shadow(none);
  5431. transition:none;
  5432. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5433. font-weight:400;
  5434. font-style:normal;
  5435. font-size:14px;
  5436. color:#666666;
  5437. line-height:22px;
  5438. }
  5439. #u5978 {
  5440. border-width:0px;
  5441. position:absolute;
  5442. left:472px;
  5443. top:1862px;
  5444. width:288px;
  5445. height:22px;
  5446. display:flex;
  5447. transition:none;
  5448. transform-origin:50% 50%;
  5449. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5450. font-weight:400;
  5451. font-style:normal;
  5452. font-size:14px;
  5453. color:#666666;
  5454. line-height:22px;
  5455. }
  5456. #u5978 .text {
  5457. position:absolute;
  5458. align-self:flex-start;
  5459. padding:0px 0px 0px 0px;
  5460. box-sizing:border-box;
  5461. width:100%;
  5462. }
  5463. #u5978_text {
  5464. border-width:0px;
  5465. word-wrap:break-word;
  5466. text-transform:none;
  5467. }
  5468. #u5979_div {
  5469. border-width:0px;
  5470. position:absolute;
  5471. left:0px;
  5472. top:0px;
  5473. width:91px;
  5474. height:21px;
  5475. background:inherit;
  5476. background-color:rgba(255, 255, 255, 0);
  5477. border-radius:0px;
  5478. filter:drop-shadow(none);
  5479. transition:none;
  5480. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  5481. font-weight:650;
  5482. font-style:normal;
  5483. font-size:18px;
  5484. color:#000000;
  5485. line-height:22px;
  5486. }
  5487. #u5979 {
  5488. border-width:0px;
  5489. position:absolute;
  5490. left:472px;
  5491. top:1832px;
  5492. width:91px;
  5493. height:21px;
  5494. display:flex;
  5495. transition:none;
  5496. transform-origin:50% 50%;
  5497. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  5498. font-weight:650;
  5499. font-style:normal;
  5500. font-size:18px;
  5501. color:#000000;
  5502. line-height:22px;
  5503. }
  5504. #u5979 .text {
  5505. position:absolute;
  5506. align-self:flex-start;
  5507. padding:0px 0px 0px 0px;
  5508. box-sizing:border-box;
  5509. width:100%;
  5510. }
  5511. #u5979_text {
  5512. border-width:0px;
  5513. white-space:nowrap;
  5514. text-transform:none;
  5515. }
  5516. #u5980_div {
  5517. border-width:0px;
  5518. position:absolute;
  5519. left:0px;
  5520. top:0px;
  5521. width:61px;
  5522. height:32px;
  5523. background:inherit;
  5524. background-color:rgba(24, 144, 255, 1);
  5525. border-radius:4px;
  5526. filter:drop-shadow(none);
  5527. transition:none;
  5528. font-family:"Microsoft YaHei", sans-serif;
  5529. font-weight:400;
  5530. font-style:normal;
  5531. font-size:14px;
  5532. color:#FFFFFF;
  5533. }
  5534. #u5980 {
  5535. border-width:0px;
  5536. position:absolute;
  5537. left:711px;
  5538. top:1896px;
  5539. width:61px;
  5540. height:32px;
  5541. display:flex;
  5542. transition:none;
  5543. transform-origin:50% 50%;
  5544. font-family:"Microsoft YaHei", sans-serif;
  5545. font-weight:400;
  5546. font-style:normal;
  5547. font-size:14px;
  5548. color:#FFFFFF;
  5549. }
  5550. #u5980 .text {
  5551. position:absolute;
  5552. align-self:center;
  5553. padding:2px 16px 2px 16px;
  5554. box-sizing:border-box;
  5555. width:100%;
  5556. }
  5557. #u5980_text {
  5558. border-width:0px;
  5559. white-space:nowrap;
  5560. text-transform:none;
  5561. }
  5562. #u5981_div {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:0px;
  5566. top:0px;
  5567. width:66px;
  5568. height:32px;
  5569. background:inherit;
  5570. background-color:rgba(255, 255, 255, 1);
  5571. box-sizing:border-box;
  5572. border-width:1px;
  5573. border-style:solid;
  5574. border-color:rgba(217, 217, 217, 1);
  5575. border-radius:4px;
  5576. filter:drop-shadow(none);
  5577. transition:none;
  5578. font-family:"Microsoft YaHei", sans-serif;
  5579. font-weight:400;
  5580. font-style:normal;
  5581. font-size:14px;
  5582. color:rgba(0, 0, 0, 0.6470588235294118);
  5583. line-height:21px;
  5584. }
  5585. #u5981 {
  5586. border-width:0px;
  5587. position:absolute;
  5588. left:632px;
  5589. top:1896px;
  5590. width:66px;
  5591. height:32px;
  5592. display:flex;
  5593. transition:none;
  5594. transform-origin:50% 50%;
  5595. font-family:"Microsoft YaHei", sans-serif;
  5596. font-weight:400;
  5597. font-style:normal;
  5598. font-size:14px;
  5599. color:rgba(0, 0, 0, 0.6470588235294118);
  5600. line-height:21px;
  5601. }
  5602. #u5981 .text {
  5603. position:absolute;
  5604. align-self:center;
  5605. padding:2px 16px 2px 16px;
  5606. box-sizing:border-box;
  5607. width:100%;
  5608. }
  5609. #u5981_text {
  5610. border-width:0px;
  5611. white-space:nowrap;
  5612. text-transform:none;
  5613. }
  5614. #u5982 {
  5615. border-width:0px;
  5616. position:absolute;
  5617. left:441px;
  5618. top:1834px;
  5619. width:20px;
  5620. height:20px;
  5621. display:flex;
  5622. transition:none;
  5623. }
  5624. #u5982 .text {
  5625. position:absolute;
  5626. align-self:center;
  5627. padding:2px 2px 2px 2px;
  5628. box-sizing:border-box;
  5629. width:100%;
  5630. }
  5631. #u5982_img {
  5632. border-width:0px;
  5633. position:absolute;
  5634. left:0px;
  5635. top:0px;
  5636. width:20px;
  5637. height:20px;
  5638. }
  5639. #u5982_text {
  5640. border-width:0px;
  5641. word-wrap:break-word;
  5642. text-transform:none;
  5643. visibility:hidden;
  5644. }
  5645. #u5983 {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:0px;
  5649. top:0px;
  5650. width:0px;
  5651. height:0px;
  5652. }
  5653. #u5984_div {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:0px;
  5657. top:0px;
  5658. width:630px;
  5659. height:1200px;
  5660. background:inherit;
  5661. background-color:rgba(255, 255, 255, 1);
  5662. box-sizing:border-box;
  5663. border-width:1px;
  5664. border-style:solid;
  5665. border-color:rgba(215, 215, 215, 1);
  5666. border-radius:0px;
  5667. filter:drop-shadow(none);
  5668. transition:none;
  5669. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5670. font-weight:400;
  5671. font-style:normal;
  5672. font-size:14px;
  5673. color:#AAAAAA;
  5674. text-align:center;
  5675. line-height:30px;
  5676. }
  5677. #u5984 {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:1079px;
  5681. top:44px;
  5682. width:630px;
  5683. height:1200px;
  5684. display:flex;
  5685. transition:none;
  5686. transform-origin:50% 50%;
  5687. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5688. font-weight:400;
  5689. font-style:normal;
  5690. font-size:14px;
  5691. color:#AAAAAA;
  5692. text-align:center;
  5693. line-height:30px;
  5694. }
  5695. #u5984 .text {
  5696. position:absolute;
  5697. align-self:center;
  5698. padding:5px 10px 5px 10px;
  5699. box-sizing:border-box;
  5700. width:100%;
  5701. }
  5702. #u5984_text {
  5703. border-width:0px;
  5704. word-wrap:break-word;
  5705. text-transform:none;
  5706. visibility:hidden;
  5707. }
  5708. #u5985 {
  5709. border-width:0px;
  5710. position:absolute;
  5711. left:0px;
  5712. top:0px;
  5713. width:0px;
  5714. height:0px;
  5715. }
  5716. #u5986_div {
  5717. border-width:0px;
  5718. position:absolute;
  5719. left:0px;
  5720. top:0px;
  5721. width:541px;
  5722. height:60px;
  5723. background:inherit;
  5724. background-color:rgba(24, 144, 255, 0.09803921568627451);
  5725. box-sizing:border-box;
  5726. border-width:1px;
  5727. border-style:solid;
  5728. border-color:rgba(24, 144, 255, 1);
  5729. border-radius:4px;
  5730. filter:drop-shadow(none);
  5731. transition:none;
  5732. font-size:14px;
  5733. }
  5734. #u5986 {
  5735. border-width:0px;
  5736. position:absolute;
  5737. left:1123px;
  5738. top:122px;
  5739. width:541px;
  5740. height:60px;
  5741. display:flex;
  5742. transition:none;
  5743. transform-origin:50% 50%;
  5744. font-size:14px;
  5745. }
  5746. #u5986 .text {
  5747. position:absolute;
  5748. align-self:center;
  5749. padding:2px 2px 2px 2px;
  5750. box-sizing:border-box;
  5751. width:100%;
  5752. }
  5753. #u5986_text {
  5754. border-width:0px;
  5755. word-wrap:break-word;
  5756. text-transform:none;
  5757. visibility:hidden;
  5758. }
  5759. #u5987_div {
  5760. border-width:0px;
  5761. position:absolute;
  5762. left:0px;
  5763. top:0px;
  5764. width:484px;
  5765. height:44px;
  5766. background:inherit;
  5767. background-color:rgba(255, 255, 255, 0);
  5768. border-top:0px;
  5769. border-right:0px;
  5770. border-bottom:0px;
  5771. border-radius:0px;
  5772. border-top-left-radius:0px;
  5773. border-bottom-left-radius:0px;
  5774. filter:drop-shadow(none);
  5775. transition:none;
  5776. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5777. font-weight:400;
  5778. font-style:normal;
  5779. font-size:12px;
  5780. }
  5781. #u5987 {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:1163px;
  5785. top:130px;
  5786. width:484px;
  5787. height:44px;
  5788. display:flex;
  5789. transition:none;
  5790. transform-origin:50% 50%;
  5791. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5792. font-weight:400;
  5793. font-style:normal;
  5794. font-size:12px;
  5795. }
  5796. #u5987 .text {
  5797. position:absolute;
  5798. align-self:center;
  5799. padding:5px 10px 5px 0px;
  5800. box-sizing:border-box;
  5801. width:100%;
  5802. }
  5803. #u5987_text {
  5804. border-width:0px;
  5805. word-wrap:break-word;
  5806. text-transform:none;
  5807. }
  5808. #u5988 {
  5809. border-width:0px;
  5810. position:absolute;
  5811. left:1138px;
  5812. top:137px;
  5813. width:15px;
  5814. height:15px;
  5815. display:flex;
  5816. transition:none;
  5817. }
  5818. #u5988 .text {
  5819. position:absolute;
  5820. align-self:center;
  5821. padding:2px 2px 2px 2px;
  5822. box-sizing:border-box;
  5823. width:100%;
  5824. }
  5825. #u5988_img {
  5826. border-width:0px;
  5827. position:absolute;
  5828. left:0px;
  5829. top:0px;
  5830. width:15px;
  5831. height:15px;
  5832. }
  5833. #u5988_text {
  5834. border-width:0px;
  5835. word-wrap:break-word;
  5836. text-transform:none;
  5837. visibility:hidden;
  5838. }
  5839. #u5989_div {
  5840. border-width:0px;
  5841. position:absolute;
  5842. left:0px;
  5843. top:0px;
  5844. width:83px;
  5845. height:35px;
  5846. background:inherit;
  5847. background-color:rgba(255, 255, 255, 0);
  5848. border-top:0px;
  5849. border-right:0px;
  5850. border-bottom:0px;
  5851. border-radius:0px;
  5852. border-top-left-radius:0px;
  5853. border-bottom-left-radius:0px;
  5854. filter:drop-shadow(none);
  5855. transition:none;
  5856. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  5857. font-weight:500;
  5858. font-style:normal;
  5859. font-size:18px;
  5860. }
  5861. #u5989 {
  5862. border-width:0px;
  5863. position:absolute;
  5864. left:1099px;
  5865. top:62px;
  5866. width:83px;
  5867. height:35px;
  5868. display:flex;
  5869. transition:none;
  5870. transform-origin:50% 50%;
  5871. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  5872. font-weight:500;
  5873. font-style:normal;
  5874. font-size:18px;
  5875. }
  5876. #u5989 .text {
  5877. position:absolute;
  5878. align-self:center;
  5879. padding:5px 10px 5px 0px;
  5880. box-sizing:border-box;
  5881. width:100%;
  5882. }
  5883. #u5989_text {
  5884. border-width:0px;
  5885. white-space:nowrap;
  5886. text-transform:none;
  5887. }
  5888. #u5990_div {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:0px;
  5892. top:0px;
  5893. width:40px;
  5894. height:40px;
  5895. background:inherit;
  5896. background-color:rgba(255, 255, 255, 0);
  5897. border-top:0px;
  5898. border-right:0px;
  5899. border-bottom:0px;
  5900. border-radius:0px;
  5901. border-top-left-radius:0px;
  5902. border-bottom-left-radius:0px;
  5903. filter:drop-shadow(none);
  5904. transition:none;
  5905. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  5906. font-weight:500;
  5907. font-style:normal;
  5908. font-size:18px;
  5909. text-align:center;
  5910. }
  5911. #u5990 {
  5912. border-width:0px;
  5913. position:absolute;
  5914. left:1669px;
  5915. top:44px;
  5916. width:40px;
  5917. height:40px;
  5918. display:flex;
  5919. transition:none;
  5920. transform-origin:50% 50%;
  5921. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  5922. font-weight:500;
  5923. font-style:normal;
  5924. font-size:18px;
  5925. text-align:center;
  5926. }
  5927. #u5990 .text {
  5928. position:absolute;
  5929. align-self:center;
  5930. padding:5px 10px 5px 0px;
  5931. box-sizing:border-box;
  5932. width:100%;
  5933. }
  5934. #u5990_text {
  5935. border-width:0px;
  5936. word-wrap:break-word;
  5937. text-transform:none;
  5938. }
  5939. #u5991 {
  5940. border-width:0px;
  5941. position:absolute;
  5942. left:1657px;
  5943. top:60px;
  5944. width:13px;
  5945. height:13px;
  5946. display:flex;
  5947. transition:none;
  5948. }
  5949. #u5991 .text {
  5950. position:absolute;
  5951. align-self:center;
  5952. padding:2px 2px 2px 2px;
  5953. box-sizing:border-box;
  5954. width:100%;
  5955. }
  5956. #u5991_img {
  5957. border-width:0px;
  5958. position:absolute;
  5959. left:0px;
  5960. top:0px;
  5961. width:13px;
  5962. height:13px;
  5963. }
  5964. #u5991_text {
  5965. border-width:0px;
  5966. word-wrap:break-word;
  5967. text-transform:none;
  5968. visibility:hidden;
  5969. }
  5970. #u5992_div {
  5971. border-width:0px;
  5972. position:absolute;
  5973. left:0px;
  5974. top:0px;
  5975. width:60px;
  5976. height:30px;
  5977. background:inherit;
  5978. background-color:rgba(255, 255, 255, 0);
  5979. border-top:0px;
  5980. border-right:0px;
  5981. border-bottom:0px;
  5982. border-radius:0px;
  5983. border-top-left-radius:0px;
  5984. border-bottom-left-radius:0px;
  5985. filter:drop-shadow(none);
  5986. transition:none;
  5987. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5988. font-weight:400;
  5989. font-style:normal;
  5990. font-size:14px;
  5991. }
  5992. #u5992 {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:1123px;
  5996. top:198px;
  5997. width:60px;
  5998. height:30px;
  5999. display:flex;
  6000. transition:none;
  6001. transform-origin:50% 50%;
  6002. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6003. font-weight:400;
  6004. font-style:normal;
  6005. font-size:14px;
  6006. }
  6007. #u5992 .text {
  6008. position:absolute;
  6009. align-self:center;
  6010. padding:5px 10px 5px 0px;
  6011. box-sizing:border-box;
  6012. width:100%;
  6013. }
  6014. #u5992_text {
  6015. border-width:0px;
  6016. white-space:nowrap;
  6017. text-transform:none;
  6018. }
  6019. #u5993 {
  6020. border-width:0px;
  6021. position:absolute;
  6022. left:0px;
  6023. top:0px;
  6024. width:0px;
  6025. height:0px;
  6026. }
  6027. #u5994_div {
  6028. border-width:0px;
  6029. position:absolute;
  6030. left:0px;
  6031. top:0px;
  6032. width:630px;
  6033. height:50px;
  6034. background:inherit;
  6035. background-color:rgba(255, 255, 255, 1);
  6036. box-sizing:border-box;
  6037. border-width:1px;
  6038. border-style:solid;
  6039. border-color:rgba(215, 215, 215, 1);
  6040. border-radius:0px;
  6041. filter:drop-shadow(none);
  6042. transition:none;
  6043. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6044. font-weight:400;
  6045. font-style:normal;
  6046. font-size:14px;
  6047. color:#AAAAAA;
  6048. text-align:center;
  6049. line-height:30px;
  6050. }
  6051. #u5994 {
  6052. border-width:0px;
  6053. position:absolute;
  6054. left:1079px;
  6055. top:1194px;
  6056. width:630px;
  6057. height:50px;
  6058. display:flex;
  6059. transition:none;
  6060. transform-origin:50% 50%;
  6061. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6062. font-weight:400;
  6063. font-style:normal;
  6064. font-size:14px;
  6065. color:#AAAAAA;
  6066. text-align:center;
  6067. line-height:30px;
  6068. }
  6069. #u5994 .text {
  6070. position:absolute;
  6071. align-self:center;
  6072. padding:5px 10px 5px 10px;
  6073. box-sizing:border-box;
  6074. width:100%;
  6075. }
  6076. #u5994_text {
  6077. border-width:0px;
  6078. word-wrap:break-word;
  6079. text-transform:none;
  6080. visibility:hidden;
  6081. }
  6082. #u5995_div {
  6083. border-width:0px;
  6084. position:absolute;
  6085. left:0px;
  6086. top:0px;
  6087. width:80px;
  6088. height:30px;
  6089. background:inherit;
  6090. background-color:rgba(24, 144, 255, 1);
  6091. border-radius:4px;
  6092. filter:drop-shadow(none);
  6093. transition:none;
  6094. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6095. font-weight:400;
  6096. font-style:normal;
  6097. font-size:14px;
  6098. color:#FFFFFF;
  6099. }
  6100. #u5995 {
  6101. border-width:0px;
  6102. position:absolute;
  6103. left:1607px;
  6104. top:1204px;
  6105. width:80px;
  6106. height:30px;
  6107. display:flex;
  6108. transition:none;
  6109. transform-origin:50% 50%;
  6110. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6111. font-weight:400;
  6112. font-style:normal;
  6113. font-size:14px;
  6114. color:#FFFFFF;
  6115. }
  6116. #u5995 .text {
  6117. position:absolute;
  6118. align-self:center;
  6119. padding:2px 2px 2px 2px;
  6120. box-sizing:border-box;
  6121. width:100%;
  6122. }
  6123. #u5995_text {
  6124. border-width:0px;
  6125. word-wrap:break-word;
  6126. text-transform:none;
  6127. }
  6128. #u5996_div {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:0px;
  6132. top:0px;
  6133. width:80px;
  6134. height:30px;
  6135. background:inherit;
  6136. background-color:rgba(255, 255, 255, 1);
  6137. box-sizing:border-box;
  6138. border-width:1px;
  6139. border-style:solid;
  6140. border-color:rgba(121, 121, 121, 1);
  6141. border-radius:4px;
  6142. filter:drop-shadow(none);
  6143. transition:none;
  6144. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6145. font-weight:400;
  6146. font-style:normal;
  6147. font-size:14px;
  6148. }
  6149. #u5996 {
  6150. border-width:0px;
  6151. position:absolute;
  6152. left:1517px;
  6153. top:1204px;
  6154. width:80px;
  6155. height:30px;
  6156. display:flex;
  6157. transition:none;
  6158. transform-origin:50% 50%;
  6159. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6160. font-weight:400;
  6161. font-style:normal;
  6162. font-size:14px;
  6163. }
  6164. #u5996 .text {
  6165. position:absolute;
  6166. align-self:center;
  6167. padding:2px 2px 2px 2px;
  6168. box-sizing:border-box;
  6169. width:100%;
  6170. }
  6171. #u5996_text {
  6172. border-width:0px;
  6173. word-wrap:break-word;
  6174. text-transform:none;
  6175. }
  6176. #u5997_div {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:0px;
  6180. top:0px;
  6181. width:74px;
  6182. height:30px;
  6183. background:inherit;
  6184. background-color:rgba(255, 255, 255, 0);
  6185. border-top:0px;
  6186. border-right:0px;
  6187. border-bottom:0px;
  6188. border-radius:0px;
  6189. border-top-left-radius:0px;
  6190. border-bottom-left-radius:0px;
  6191. filter:drop-shadow(none);
  6192. transition:none;
  6193. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6194. font-weight:400;
  6195. font-style:normal;
  6196. font-size:14px;
  6197. }
  6198. #u5997 {
  6199. border-width:0px;
  6200. position:absolute;
  6201. left:1123px;
  6202. top:358px;
  6203. width:74px;
  6204. height:30px;
  6205. display:flex;
  6206. transition:none;
  6207. transform-origin:50% 50%;
  6208. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6209. font-weight:400;
  6210. font-style:normal;
  6211. font-size:14px;
  6212. }
  6213. #u5997 .text {
  6214. position:absolute;
  6215. align-self:center;
  6216. padding:5px 10px 5px 0px;
  6217. box-sizing:border-box;
  6218. width:100%;
  6219. }
  6220. #u5997_text {
  6221. border-width:0px;
  6222. white-space:nowrap;
  6223. text-transform:none;
  6224. }
  6225. #u5998 {
  6226. border-width:0px;
  6227. position:absolute;
  6228. left:0px;
  6229. top:0px;
  6230. width:0px;
  6231. height:0px;
  6232. }
  6233. #u5999_div {
  6234. border-width:0px;
  6235. position:absolute;
  6236. left:0px;
  6237. top:0px;
  6238. width:400px;
  6239. height:40px;
  6240. background:inherit;
  6241. background-color:rgba(255, 255, 255, 1);
  6242. box-sizing:border-box;
  6243. border-width:1px;
  6244. border-style:solid;
  6245. border-color:rgba(215, 215, 215, 1);
  6246. border-radius:4px;
  6247. filter:drop-shadow(none);
  6248. transition:none;
  6249. font-size:14px;
  6250. }
  6251. #u5999 {
  6252. border-width:0px;
  6253. position:absolute;
  6254. left:1123px;
  6255. top:388px;
  6256. width:400px;
  6257. height:40px;
  6258. display:flex;
  6259. transition:none;
  6260. transform-origin:50% 50%;
  6261. font-size:14px;
  6262. }
  6263. #u5999 .text {
  6264. position:absolute;
  6265. align-self:center;
  6266. padding:2px 2px 2px 2px;
  6267. box-sizing:border-box;
  6268. width:100%;
  6269. }
  6270. #u5999_text {
  6271. border-width:0px;
  6272. word-wrap:break-word;
  6273. text-transform:none;
  6274. visibility:hidden;
  6275. }
  6276. #u6000_input {
  6277. position:absolute;
  6278. left:0px;
  6279. top:0px;
  6280. width:382px;
  6281. height:31px;
  6282. padding:2px 2px 2px 2px;
  6283. font-family:"ArialMT", "Arial", sans-serif;
  6284. font-weight:400;
  6285. font-style:normal;
  6286. font-size:14px;
  6287. letter-spacing:normal;
  6288. color:#AAAAAA;
  6289. vertical-align:none;
  6290. text-align:left;
  6291. text-transform:none;
  6292. background-color:transparent;
  6293. border-color:transparent;
  6294. }
  6295. #u6000_input.disabled {
  6296. position:absolute;
  6297. left:0px;
  6298. top:0px;
  6299. width:382px;
  6300. height:31px;
  6301. padding:2px 2px 2px 2px;
  6302. font-family:"ArialMT", "Arial", sans-serif;
  6303. font-weight:400;
  6304. font-style:normal;
  6305. font-size:14px;
  6306. letter-spacing:normal;
  6307. color:#AAAAAA;
  6308. vertical-align:none;
  6309. text-align:left;
  6310. text-transform:none;
  6311. background-color:transparent;
  6312. border-color:transparent;
  6313. }
  6314. #u6000_div {
  6315. border-width:0px;
  6316. position:absolute;
  6317. left:0px;
  6318. top:0px;
  6319. width:382px;
  6320. height:31px;
  6321. background:inherit;
  6322. background-color:rgba(255, 255, 255, 1);
  6323. border-radius:0px;
  6324. filter:drop-shadow(none);
  6325. transition:none;
  6326. font-size:14px;
  6327. color:#AAAAAA;
  6328. }
  6329. #u6000 {
  6330. border-width:0px;
  6331. position:absolute;
  6332. left:1135px;
  6333. top:391px;
  6334. width:382px;
  6335. height:31px;
  6336. display:flex;
  6337. transition:none;
  6338. transform-origin:50% 50%;
  6339. font-size:14px;
  6340. color:#AAAAAA;
  6341. }
  6342. #u6000 .text {
  6343. position:absolute;
  6344. align-self:flex-start;
  6345. padding:2px 2px 2px 2px;
  6346. box-sizing:border-box;
  6347. width:100%;
  6348. }
  6349. #u6000_div.disabled {
  6350. border-width:0px;
  6351. position:absolute;
  6352. left:0px;
  6353. top:0px;
  6354. width:382px;
  6355. height:31px;
  6356. background:inherit;
  6357. background-color:rgba(240, 240, 240, 1);
  6358. border-radius:0px;
  6359. filter:drop-shadow(none);
  6360. transition:none;
  6361. font-size:14px;
  6362. color:#AAAAAA;
  6363. }
  6364. #u6000.disabled {
  6365. }
  6366. .u6000_input_option {
  6367. font-size:14px;
  6368. }
  6369. #u6001 {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:0px;
  6373. top:0px;
  6374. width:0px;
  6375. height:0px;
  6376. }
  6377. #u6002_div {
  6378. border-width:0px;
  6379. position:absolute;
  6380. left:0px;
  6381. top:0px;
  6382. width:400px;
  6383. height:40px;
  6384. background:inherit;
  6385. background-color:rgba(255, 255, 255, 1);
  6386. box-sizing:border-box;
  6387. border-width:1px;
  6388. border-style:solid;
  6389. border-color:rgba(215, 215, 215, 1);
  6390. border-radius:4px;
  6391. filter:drop-shadow(none);
  6392. transition:none;
  6393. font-size:14px;
  6394. }
  6395. #u6002 {
  6396. border-width:0px;
  6397. position:absolute;
  6398. left:1123px;
  6399. top:228px;
  6400. width:400px;
  6401. height:40px;
  6402. display:flex;
  6403. transition:none;
  6404. transform-origin:50% 50%;
  6405. font-size:14px;
  6406. }
  6407. #u6002 .text {
  6408. position:absolute;
  6409. align-self:center;
  6410. padding:2px 2px 2px 2px;
  6411. box-sizing:border-box;
  6412. width:100%;
  6413. }
  6414. #u6002_text {
  6415. border-width:0px;
  6416. word-wrap:break-word;
  6417. text-transform:none;
  6418. visibility:hidden;
  6419. }
  6420. #u6003_input {
  6421. position:absolute;
  6422. left:0px;
  6423. top:0px;
  6424. width:382px;
  6425. height:31px;
  6426. padding:2px 2px 2px 2px;
  6427. font-family:"ArialMT", "Arial", sans-serif;
  6428. font-weight:400;
  6429. font-style:normal;
  6430. font-size:14px;
  6431. letter-spacing:normal;
  6432. color:#AAAAAA;
  6433. vertical-align:none;
  6434. text-align:left;
  6435. text-transform:none;
  6436. background-color:transparent;
  6437. border-color:transparent;
  6438. }
  6439. #u6003_input.disabled {
  6440. position:absolute;
  6441. left:0px;
  6442. top:0px;
  6443. width:382px;
  6444. height:31px;
  6445. padding:2px 2px 2px 2px;
  6446. font-family:"ArialMT", "Arial", sans-serif;
  6447. font-weight:400;
  6448. font-style:normal;
  6449. font-size:14px;
  6450. letter-spacing:normal;
  6451. color:#AAAAAA;
  6452. vertical-align:none;
  6453. text-align:left;
  6454. text-transform:none;
  6455. background-color:transparent;
  6456. border-color:transparent;
  6457. }
  6458. #u6003_div {
  6459. border-width:0px;
  6460. position:absolute;
  6461. left:0px;
  6462. top:0px;
  6463. width:382px;
  6464. height:31px;
  6465. background:inherit;
  6466. background-color:rgba(255, 255, 255, 1);
  6467. border-radius:0px;
  6468. filter:drop-shadow(none);
  6469. transition:none;
  6470. font-size:14px;
  6471. color:#AAAAAA;
  6472. }
  6473. #u6003 {
  6474. border-width:0px;
  6475. position:absolute;
  6476. left:1135px;
  6477. top:231px;
  6478. width:382px;
  6479. height:31px;
  6480. display:flex;
  6481. transition:none;
  6482. transform-origin:50% 50%;
  6483. font-size:14px;
  6484. color:#AAAAAA;
  6485. }
  6486. #u6003 .text {
  6487. position:absolute;
  6488. align-self:flex-start;
  6489. padding:2px 2px 2px 2px;
  6490. box-sizing:border-box;
  6491. width:100%;
  6492. }
  6493. #u6003_div.disabled {
  6494. border-width:0px;
  6495. position:absolute;
  6496. left:0px;
  6497. top:0px;
  6498. width:382px;
  6499. height:31px;
  6500. background:inherit;
  6501. background-color:rgba(240, 240, 240, 1);
  6502. border-radius:0px;
  6503. filter:drop-shadow(none);
  6504. transition:none;
  6505. font-size:14px;
  6506. color:#AAAAAA;
  6507. }
  6508. #u6003.disabled {
  6509. }
  6510. .u6003_input_option {
  6511. font-size:14px;
  6512. }
  6513. #u6004_div {
  6514. border-width:0px;
  6515. position:absolute;
  6516. left:0px;
  6517. top:0px;
  6518. width:46px;
  6519. height:30px;
  6520. background:inherit;
  6521. background-color:rgba(255, 255, 255, 0);
  6522. border-top:0px;
  6523. border-right:0px;
  6524. border-bottom:0px;
  6525. border-radius:0px;
  6526. border-top-left-radius:0px;
  6527. border-bottom-left-radius:0px;
  6528. filter:drop-shadow(none);
  6529. transition:none;
  6530. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6531. font-weight:400;
  6532. font-style:normal;
  6533. font-size:14px;
  6534. }
  6535. #u6004 {
  6536. border-width:0px;
  6537. position:absolute;
  6538. left:1123px;
  6539. top:278px;
  6540. width:46px;
  6541. height:30px;
  6542. display:flex;
  6543. transition:none;
  6544. transform-origin:50% 50%;
  6545. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6546. font-weight:400;
  6547. font-style:normal;
  6548. font-size:14px;
  6549. }
  6550. #u6004 .text {
  6551. position:absolute;
  6552. align-self:center;
  6553. padding:5px 10px 5px 0px;
  6554. box-sizing:border-box;
  6555. width:100%;
  6556. }
  6557. #u6004_text {
  6558. border-width:0px;
  6559. white-space:nowrap;
  6560. text-transform:none;
  6561. }
  6562. #u6005 {
  6563. border-width:0px;
  6564. position:absolute;
  6565. left:0px;
  6566. top:0px;
  6567. width:0px;
  6568. height:0px;
  6569. }
  6570. #u6006_div {
  6571. border-width:0px;
  6572. position:absolute;
  6573. left:0px;
  6574. top:0px;
  6575. width:400px;
  6576. height:40px;
  6577. background:inherit;
  6578. background-color:rgba(255, 255, 255, 1);
  6579. box-sizing:border-box;
  6580. border-width:1px;
  6581. border-style:solid;
  6582. border-color:rgba(215, 215, 215, 1);
  6583. border-radius:4px;
  6584. filter:drop-shadow(none);
  6585. transition:none;
  6586. font-size:14px;
  6587. }
  6588. #u6006 {
  6589. border-width:0px;
  6590. position:absolute;
  6591. left:1123px;
  6592. top:308px;
  6593. width:400px;
  6594. height:40px;
  6595. display:flex;
  6596. transition:none;
  6597. transform-origin:50% 50%;
  6598. font-size:14px;
  6599. }
  6600. #u6006 .text {
  6601. position:absolute;
  6602. align-self:center;
  6603. padding:2px 2px 2px 2px;
  6604. box-sizing:border-box;
  6605. width:100%;
  6606. }
  6607. #u6006_text {
  6608. border-width:0px;
  6609. word-wrap:break-word;
  6610. text-transform:none;
  6611. visibility:hidden;
  6612. }
  6613. #u6007_input {
  6614. position:absolute;
  6615. left:0px;
  6616. top:0px;
  6617. width:382px;
  6618. height:31px;
  6619. padding:2px 2px 2px 2px;
  6620. font-family:"ArialMT", "Arial", sans-serif;
  6621. font-weight:400;
  6622. font-style:normal;
  6623. font-size:14px;
  6624. letter-spacing:normal;
  6625. color:#AAAAAA;
  6626. vertical-align:none;
  6627. text-align:left;
  6628. text-transform:none;
  6629. background-color:transparent;
  6630. border-color:transparent;
  6631. }
  6632. #u6007_input.disabled {
  6633. position:absolute;
  6634. left:0px;
  6635. top:0px;
  6636. width:382px;
  6637. height:31px;
  6638. padding:2px 2px 2px 2px;
  6639. font-family:"ArialMT", "Arial", sans-serif;
  6640. font-weight:400;
  6641. font-style:normal;
  6642. font-size:14px;
  6643. letter-spacing:normal;
  6644. color:#AAAAAA;
  6645. vertical-align:none;
  6646. text-align:left;
  6647. text-transform:none;
  6648. background-color:transparent;
  6649. border-color:transparent;
  6650. }
  6651. #u6007_div {
  6652. border-width:0px;
  6653. position:absolute;
  6654. left:0px;
  6655. top:0px;
  6656. width:382px;
  6657. height:31px;
  6658. background:inherit;
  6659. background-color:rgba(255, 255, 255, 1);
  6660. border-radius:0px;
  6661. filter:drop-shadow(none);
  6662. transition:none;
  6663. font-size:14px;
  6664. color:#AAAAAA;
  6665. }
  6666. #u6007 {
  6667. border-width:0px;
  6668. position:absolute;
  6669. left:1135px;
  6670. top:311px;
  6671. width:382px;
  6672. height:31px;
  6673. display:flex;
  6674. transition:none;
  6675. transform-origin:50% 50%;
  6676. font-size:14px;
  6677. color:#AAAAAA;
  6678. }
  6679. #u6007 .text {
  6680. position:absolute;
  6681. align-self:flex-start;
  6682. padding:2px 2px 2px 2px;
  6683. box-sizing:border-box;
  6684. width:100%;
  6685. }
  6686. #u6007_div.disabled {
  6687. border-width:0px;
  6688. position:absolute;
  6689. left:0px;
  6690. top:0px;
  6691. width:382px;
  6692. height:31px;
  6693. background:inherit;
  6694. background-color:rgba(240, 240, 240, 1);
  6695. border-radius:0px;
  6696. filter:drop-shadow(none);
  6697. transition:none;
  6698. font-size:14px;
  6699. color:#AAAAAA;
  6700. }
  6701. #u6007.disabled {
  6702. }
  6703. .u6007_input_option {
  6704. font-size:14px;
  6705. }
  6706. #u6008_div {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:0px;
  6710. top:0px;
  6711. width:74px;
  6712. height:30px;
  6713. background:inherit;
  6714. background-color:rgba(255, 255, 255, 0);
  6715. border-top:0px;
  6716. border-right:0px;
  6717. border-bottom:0px;
  6718. border-radius:0px;
  6719. border-top-left-radius:0px;
  6720. border-bottom-left-radius:0px;
  6721. filter:drop-shadow(none);
  6722. transition:none;
  6723. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6724. font-weight:400;
  6725. font-style:normal;
  6726. font-size:14px;
  6727. }
  6728. #u6008 {
  6729. border-width:0px;
  6730. position:absolute;
  6731. left:1123px;
  6732. top:438px;
  6733. width:74px;
  6734. height:30px;
  6735. display:flex;
  6736. transition:none;
  6737. transform-origin:50% 50%;
  6738. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6739. font-weight:400;
  6740. font-style:normal;
  6741. font-size:14px;
  6742. }
  6743. #u6008 .text {
  6744. position:absolute;
  6745. align-self:center;
  6746. padding:5px 10px 5px 0px;
  6747. box-sizing:border-box;
  6748. width:100%;
  6749. }
  6750. #u6008_text {
  6751. border-width:0px;
  6752. white-space:nowrap;
  6753. text-transform:none;
  6754. }
  6755. #u6009 {
  6756. border-width:0px;
  6757. position:absolute;
  6758. left:0px;
  6759. top:0px;
  6760. width:0px;
  6761. height:0px;
  6762. }
  6763. #u6010_div {
  6764. border-width:0px;
  6765. position:absolute;
  6766. left:0px;
  6767. top:0px;
  6768. width:400px;
  6769. height:40px;
  6770. background:inherit;
  6771. background-color:rgba(255, 255, 255, 1);
  6772. box-sizing:border-box;
  6773. border-width:1px;
  6774. border-style:solid;
  6775. border-color:rgba(215, 215, 215, 1);
  6776. border-radius:4px;
  6777. filter:drop-shadow(none);
  6778. transition:none;
  6779. font-size:14px;
  6780. }
  6781. #u6010 {
  6782. border-width:0px;
  6783. position:absolute;
  6784. left:1123px;
  6785. top:468px;
  6786. width:400px;
  6787. height:40px;
  6788. display:flex;
  6789. transition:none;
  6790. transform-origin:50% 50%;
  6791. font-size:14px;
  6792. }
  6793. #u6010 .text {
  6794. position:absolute;
  6795. align-self:center;
  6796. padding:2px 2px 2px 2px;
  6797. box-sizing:border-box;
  6798. width:100%;
  6799. }
  6800. #u6010_text {
  6801. border-width:0px;
  6802. word-wrap:break-word;
  6803. text-transform:none;
  6804. visibility:hidden;
  6805. }
  6806. #u6011_input {
  6807. position:absolute;
  6808. left:0px;
  6809. top:0px;
  6810. width:382px;
  6811. height:31px;
  6812. padding:2px 2px 2px 2px;
  6813. font-family:"ArialMT", "Arial", sans-serif;
  6814. font-weight:400;
  6815. font-style:normal;
  6816. font-size:14px;
  6817. letter-spacing:normal;
  6818. color:#AAAAAA;
  6819. vertical-align:none;
  6820. text-align:left;
  6821. text-transform:none;
  6822. background-color:transparent;
  6823. border-color:transparent;
  6824. }
  6825. #u6011_input.disabled {
  6826. position:absolute;
  6827. left:0px;
  6828. top:0px;
  6829. width:382px;
  6830. height:31px;
  6831. padding:2px 2px 2px 2px;
  6832. font-family:"ArialMT", "Arial", sans-serif;
  6833. font-weight:400;
  6834. font-style:normal;
  6835. font-size:14px;
  6836. letter-spacing:normal;
  6837. color:#AAAAAA;
  6838. vertical-align:none;
  6839. text-align:left;
  6840. text-transform:none;
  6841. background-color:transparent;
  6842. border-color:transparent;
  6843. }
  6844. #u6011_div {
  6845. border-width:0px;
  6846. position:absolute;
  6847. left:0px;
  6848. top:0px;
  6849. width:382px;
  6850. height:31px;
  6851. background:inherit;
  6852. background-color:rgba(255, 255, 255, 1);
  6853. border-radius:0px;
  6854. filter:drop-shadow(none);
  6855. transition:none;
  6856. font-size:14px;
  6857. color:#AAAAAA;
  6858. }
  6859. #u6011 {
  6860. border-width:0px;
  6861. position:absolute;
  6862. left:1135px;
  6863. top:471px;
  6864. width:382px;
  6865. height:31px;
  6866. display:flex;
  6867. transition:none;
  6868. transform-origin:50% 50%;
  6869. font-size:14px;
  6870. color:#AAAAAA;
  6871. }
  6872. #u6011 .text {
  6873. position:absolute;
  6874. align-self:flex-start;
  6875. padding:2px 2px 2px 2px;
  6876. box-sizing:border-box;
  6877. width:100%;
  6878. }
  6879. #u6011_div.disabled {
  6880. border-width:0px;
  6881. position:absolute;
  6882. left:0px;
  6883. top:0px;
  6884. width:382px;
  6885. height:31px;
  6886. background:inherit;
  6887. background-color:rgba(240, 240, 240, 1);
  6888. border-radius:0px;
  6889. filter:drop-shadow(none);
  6890. transition:none;
  6891. font-size:14px;
  6892. color:#AAAAAA;
  6893. }
  6894. #u6011.disabled {
  6895. }
  6896. .u6011_input_option {
  6897. font-size:14px;
  6898. }
  6899. #u6012_div {
  6900. border-width:0px;
  6901. position:absolute;
  6902. left:0px;
  6903. top:0px;
  6904. width:207px;
  6905. height:30px;
  6906. background:inherit;
  6907. background-color:rgba(255, 255, 255, 0);
  6908. border-top:0px;
  6909. border-right:0px;
  6910. border-bottom:0px;
  6911. border-radius:0px;
  6912. border-top-left-radius:0px;
  6913. border-bottom-left-radius:0px;
  6914. filter:drop-shadow(none);
  6915. transition:none;
  6916. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6917. font-weight:400;
  6918. font-style:normal;
  6919. font-size:14px;
  6920. }
  6921. #u6012 {
  6922. border-width:0px;
  6923. position:absolute;
  6924. left:1123px;
  6925. top:533px;
  6926. width:207px;
  6927. height:30px;
  6928. display:flex;
  6929. transition:none;
  6930. transform-origin:50% 50%;
  6931. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6932. font-weight:400;
  6933. font-style:normal;
  6934. font-size:14px;
  6935. }
  6936. #u6012 .text {
  6937. position:absolute;
  6938. align-self:center;
  6939. padding:5px 10px 5px 0px;
  6940. box-sizing:border-box;
  6941. width:100%;
  6942. }
  6943. #u6012_text {
  6944. border-width:0px;
  6945. white-space:nowrap;
  6946. text-transform:none;
  6947. }
  6948. #u6013 {
  6949. border-width:0px;
  6950. position:absolute;
  6951. left:1123px;
  6952. top:574px;
  6953. width:400px;
  6954. height:240px;
  6955. }
  6956. #u6014 {
  6957. border-width:0px;
  6958. position:absolute;
  6959. left:0px;
  6960. top:0px;
  6961. width:73px;
  6962. height:30px;
  6963. display:flex;
  6964. transition:none;
  6965. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6966. font-weight:400;
  6967. font-style:normal;
  6968. color:#FFFFFF;
  6969. }
  6970. #u6014 .text {
  6971. position:absolute;
  6972. align-self:center;
  6973. padding:2px 2px 2px 2px;
  6974. box-sizing:border-box;
  6975. width:100%;
  6976. }
  6977. #u6014_img {
  6978. border-width:0px;
  6979. position:absolute;
  6980. left:0px;
  6981. top:0px;
  6982. width:73px;
  6983. height:30px;
  6984. }
  6985. #u6014_text {
  6986. border-width:0px;
  6987. word-wrap:break-word;
  6988. text-transform:none;
  6989. }
  6990. #u6015 {
  6991. border-width:0px;
  6992. position:absolute;
  6993. left:73px;
  6994. top:0px;
  6995. width:163px;
  6996. height:30px;
  6997. display:flex;
  6998. transition:none;
  6999. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7000. font-weight:400;
  7001. font-style:normal;
  7002. color:#FFFFFF;
  7003. }
  7004. #u6015 .text {
  7005. position:absolute;
  7006. align-self:center;
  7007. padding:2px 2px 2px 2px;
  7008. box-sizing:border-box;
  7009. width:100%;
  7010. }
  7011. #u6015_img {
  7012. border-width:0px;
  7013. position:absolute;
  7014. left:0px;
  7015. top:0px;
  7016. width:163px;
  7017. height:30px;
  7018. }
  7019. #u6015_text {
  7020. border-width:0px;
  7021. word-wrap:break-word;
  7022. text-transform:none;
  7023. }
  7024. #u6016 {
  7025. border-width:0px;
  7026. position:absolute;
  7027. left:236px;
  7028. top:0px;
  7029. width:163px;
  7030. height:30px;
  7031. display:flex;
  7032. transition:none;
  7033. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7034. font-weight:400;
  7035. font-style:normal;
  7036. color:#FFFFFF;
  7037. }
  7038. #u6016 .text {
  7039. position:absolute;
  7040. align-self:center;
  7041. padding:2px 10px 2px 2px;
  7042. box-sizing:border-box;
  7043. width:100%;
  7044. }
  7045. #u6016_img {
  7046. border-width:0px;
  7047. position:absolute;
  7048. left:0px;
  7049. top:0px;
  7050. width:163px;
  7051. height:30px;
  7052. }
  7053. #u6016_text {
  7054. border-width:0px;
  7055. word-wrap:break-word;
  7056. text-transform:none;
  7057. }
  7058. #u6017 {
  7059. border-width:0px;
  7060. position:absolute;
  7061. left:0px;
  7062. top:30px;
  7063. width:73px;
  7064. height:30px;
  7065. display:flex;
  7066. transition:none;
  7067. }
  7068. #u6017 .text {
  7069. position:absolute;
  7070. align-self:center;
  7071. padding:2px 2px 2px 2px;
  7072. box-sizing:border-box;
  7073. width:100%;
  7074. }
  7075. #u6017_img {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:0px;
  7079. top:0px;
  7080. width:73px;
  7081. height:30px;
  7082. }
  7083. #u6017_text {
  7084. border-width:0px;
  7085. word-wrap:break-word;
  7086. text-transform:none;
  7087. }
  7088. #u6018 {
  7089. border-width:0px;
  7090. position:absolute;
  7091. left:73px;
  7092. top:30px;
  7093. width:163px;
  7094. height:30px;
  7095. display:flex;
  7096. transition:none;
  7097. }
  7098. #u6018 .text {
  7099. position:absolute;
  7100. align-self:center;
  7101. padding:2px 2px 2px 2px;
  7102. box-sizing:border-box;
  7103. width:100%;
  7104. }
  7105. #u6018_img {
  7106. border-width:0px;
  7107. position:absolute;
  7108. left:0px;
  7109. top:0px;
  7110. width:163px;
  7111. height:30px;
  7112. }
  7113. #u6018_text {
  7114. border-width:0px;
  7115. word-wrap:break-word;
  7116. text-transform:none;
  7117. }
  7118. #u6019 {
  7119. border-width:0px;
  7120. position:absolute;
  7121. left:236px;
  7122. top:30px;
  7123. width:163px;
  7124. height:30px;
  7125. display:flex;
  7126. transition:none;
  7127. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7128. font-weight:400;
  7129. font-style:normal;
  7130. text-align:right;
  7131. }
  7132. #u6019 .text {
  7133. position:absolute;
  7134. align-self:center;
  7135. padding:2px 10px 2px 2px;
  7136. box-sizing:border-box;
  7137. width:100%;
  7138. }
  7139. #u6019_img {
  7140. border-width:0px;
  7141. position:absolute;
  7142. left:0px;
  7143. top:0px;
  7144. width:163px;
  7145. height:30px;
  7146. }
  7147. #u6019_text {
  7148. border-width:0px;
  7149. word-wrap:break-word;
  7150. text-transform:none;
  7151. }
  7152. #u6020 {
  7153. border-width:0px;
  7154. position:absolute;
  7155. left:0px;
  7156. top:60px;
  7157. width:73px;
  7158. height:30px;
  7159. display:flex;
  7160. transition:none;
  7161. }
  7162. #u6020 .text {
  7163. position:absolute;
  7164. align-self:center;
  7165. padding:2px 2px 2px 2px;
  7166. box-sizing:border-box;
  7167. width:100%;
  7168. }
  7169. #u6020_img {
  7170. border-width:0px;
  7171. position:absolute;
  7172. left:0px;
  7173. top:0px;
  7174. width:73px;
  7175. height:30px;
  7176. }
  7177. #u6020_text {
  7178. border-width:0px;
  7179. word-wrap:break-word;
  7180. text-transform:none;
  7181. }
  7182. #u6021 {
  7183. border-width:0px;
  7184. position:absolute;
  7185. left:73px;
  7186. top:60px;
  7187. width:163px;
  7188. height:30px;
  7189. display:flex;
  7190. transition:none;
  7191. }
  7192. #u6021 .text {
  7193. position:absolute;
  7194. align-self:center;
  7195. padding:2px 2px 2px 2px;
  7196. box-sizing:border-box;
  7197. width:100%;
  7198. }
  7199. #u6021_img {
  7200. border-width:0px;
  7201. position:absolute;
  7202. left:0px;
  7203. top:0px;
  7204. width:163px;
  7205. height:30px;
  7206. }
  7207. #u6021_text {
  7208. border-width:0px;
  7209. word-wrap:break-word;
  7210. text-transform:none;
  7211. }
  7212. #u6022 {
  7213. border-width:0px;
  7214. position:absolute;
  7215. left:236px;
  7216. top:60px;
  7217. width:163px;
  7218. height:30px;
  7219. display:flex;
  7220. transition:none;
  7221. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7222. font-weight:400;
  7223. font-style:normal;
  7224. text-align:right;
  7225. }
  7226. #u6022 .text {
  7227. position:absolute;
  7228. align-self:center;
  7229. padding:2px 10px 2px 2px;
  7230. box-sizing:border-box;
  7231. width:100%;
  7232. }
  7233. #u6022_img {
  7234. border-width:0px;
  7235. position:absolute;
  7236. left:0px;
  7237. top:0px;
  7238. width:163px;
  7239. height:30px;
  7240. }
  7241. #u6022_text {
  7242. border-width:0px;
  7243. word-wrap:break-word;
  7244. text-transform:none;
  7245. }
  7246. #u6023 {
  7247. border-width:0px;
  7248. position:absolute;
  7249. left:0px;
  7250. top:90px;
  7251. width:73px;
  7252. height:30px;
  7253. display:flex;
  7254. transition:none;
  7255. }
  7256. #u6023 .text {
  7257. position:absolute;
  7258. align-self:center;
  7259. padding:2px 2px 2px 2px;
  7260. box-sizing:border-box;
  7261. width:100%;
  7262. }
  7263. #u6023_img {
  7264. border-width:0px;
  7265. position:absolute;
  7266. left:0px;
  7267. top:0px;
  7268. width:73px;
  7269. height:30px;
  7270. }
  7271. #u6023_text {
  7272. border-width:0px;
  7273. word-wrap:break-word;
  7274. text-transform:none;
  7275. }
  7276. #u6024 {
  7277. border-width:0px;
  7278. position:absolute;
  7279. left:73px;
  7280. top:90px;
  7281. width:163px;
  7282. height:30px;
  7283. display:flex;
  7284. transition:none;
  7285. }
  7286. #u6024 .text {
  7287. position:absolute;
  7288. align-self:center;
  7289. padding:2px 2px 2px 2px;
  7290. box-sizing:border-box;
  7291. width:100%;
  7292. }
  7293. #u6024_img {
  7294. border-width:0px;
  7295. position:absolute;
  7296. left:0px;
  7297. top:0px;
  7298. width:163px;
  7299. height:30px;
  7300. }
  7301. #u6024_text {
  7302. border-width:0px;
  7303. word-wrap:break-word;
  7304. text-transform:none;
  7305. }
  7306. #u6025 {
  7307. border-width:0px;
  7308. position:absolute;
  7309. left:236px;
  7310. top:90px;
  7311. width:163px;
  7312. height:30px;
  7313. display:flex;
  7314. transition:none;
  7315. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7316. font-weight:400;
  7317. font-style:normal;
  7318. text-align:right;
  7319. }
  7320. #u6025 .text {
  7321. position:absolute;
  7322. align-self:center;
  7323. padding:2px 10px 2px 2px;
  7324. box-sizing:border-box;
  7325. width:100%;
  7326. }
  7327. #u6025_img {
  7328. border-width:0px;
  7329. position:absolute;
  7330. left:0px;
  7331. top:0px;
  7332. width:163px;
  7333. height:30px;
  7334. }
  7335. #u6025_text {
  7336. border-width:0px;
  7337. word-wrap:break-word;
  7338. text-transform:none;
  7339. }
  7340. #u6026 {
  7341. border-width:0px;
  7342. position:absolute;
  7343. left:0px;
  7344. top:120px;
  7345. width:73px;
  7346. height:30px;
  7347. display:flex;
  7348. transition:none;
  7349. }
  7350. #u6026 .text {
  7351. position:absolute;
  7352. align-self:center;
  7353. padding:2px 2px 2px 2px;
  7354. box-sizing:border-box;
  7355. width:100%;
  7356. }
  7357. #u6026_img {
  7358. border-width:0px;
  7359. position:absolute;
  7360. left:0px;
  7361. top:0px;
  7362. width:73px;
  7363. height:30px;
  7364. }
  7365. #u6026_text {
  7366. border-width:0px;
  7367. word-wrap:break-word;
  7368. text-transform:none;
  7369. }
  7370. #u6027 {
  7371. border-width:0px;
  7372. position:absolute;
  7373. left:73px;
  7374. top:120px;
  7375. width:163px;
  7376. height:30px;
  7377. display:flex;
  7378. transition:none;
  7379. }
  7380. #u6027 .text {
  7381. position:absolute;
  7382. align-self:center;
  7383. padding:2px 2px 2px 2px;
  7384. box-sizing:border-box;
  7385. width:100%;
  7386. }
  7387. #u6027_img {
  7388. border-width:0px;
  7389. position:absolute;
  7390. left:0px;
  7391. top:0px;
  7392. width:163px;
  7393. height:30px;
  7394. }
  7395. #u6027_text {
  7396. border-width:0px;
  7397. word-wrap:break-word;
  7398. text-transform:none;
  7399. }
  7400. #u6028 {
  7401. border-width:0px;
  7402. position:absolute;
  7403. left:236px;
  7404. top:120px;
  7405. width:163px;
  7406. height:30px;
  7407. display:flex;
  7408. transition:none;
  7409. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7410. font-weight:400;
  7411. font-style:normal;
  7412. text-align:right;
  7413. }
  7414. #u6028 .text {
  7415. position:absolute;
  7416. align-self:center;
  7417. padding:2px 10px 2px 2px;
  7418. box-sizing:border-box;
  7419. width:100%;
  7420. }
  7421. #u6028_img {
  7422. border-width:0px;
  7423. position:absolute;
  7424. left:0px;
  7425. top:0px;
  7426. width:163px;
  7427. height:30px;
  7428. }
  7429. #u6028_text {
  7430. border-width:0px;
  7431. word-wrap:break-word;
  7432. text-transform:none;
  7433. }
  7434. #u6029 {
  7435. border-width:0px;
  7436. position:absolute;
  7437. left:0px;
  7438. top:150px;
  7439. width:73px;
  7440. height:30px;
  7441. display:flex;
  7442. transition:none;
  7443. }
  7444. #u6029 .text {
  7445. position:absolute;
  7446. align-self:center;
  7447. padding:2px 2px 2px 2px;
  7448. box-sizing:border-box;
  7449. width:100%;
  7450. }
  7451. #u6029_img {
  7452. border-width:0px;
  7453. position:absolute;
  7454. left:0px;
  7455. top:0px;
  7456. width:73px;
  7457. height:30px;
  7458. }
  7459. #u6029_text {
  7460. border-width:0px;
  7461. word-wrap:break-word;
  7462. text-transform:none;
  7463. }
  7464. #u6030 {
  7465. border-width:0px;
  7466. position:absolute;
  7467. left:73px;
  7468. top:150px;
  7469. width:163px;
  7470. height:30px;
  7471. display:flex;
  7472. transition:none;
  7473. }
  7474. #u6030 .text {
  7475. position:absolute;
  7476. align-self:center;
  7477. padding:2px 2px 2px 2px;
  7478. box-sizing:border-box;
  7479. width:100%;
  7480. }
  7481. #u6030_img {
  7482. border-width:0px;
  7483. position:absolute;
  7484. left:0px;
  7485. top:0px;
  7486. width:163px;
  7487. height:30px;
  7488. }
  7489. #u6030_text {
  7490. border-width:0px;
  7491. word-wrap:break-word;
  7492. text-transform:none;
  7493. }
  7494. #u6031 {
  7495. border-width:0px;
  7496. position:absolute;
  7497. left:236px;
  7498. top:150px;
  7499. width:163px;
  7500. height:30px;
  7501. display:flex;
  7502. transition:none;
  7503. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7504. font-weight:400;
  7505. font-style:normal;
  7506. text-align:right;
  7507. }
  7508. #u6031 .text {
  7509. position:absolute;
  7510. align-self:center;
  7511. padding:2px 10px 2px 2px;
  7512. box-sizing:border-box;
  7513. width:100%;
  7514. }
  7515. #u6031_img {
  7516. border-width:0px;
  7517. position:absolute;
  7518. left:0px;
  7519. top:0px;
  7520. width:163px;
  7521. height:30px;
  7522. }
  7523. #u6031_text {
  7524. border-width:0px;
  7525. word-wrap:break-word;
  7526. text-transform:none;
  7527. }
  7528. #u6032 {
  7529. border-width:0px;
  7530. position:absolute;
  7531. left:0px;
  7532. top:180px;
  7533. width:73px;
  7534. height:30px;
  7535. display:flex;
  7536. transition:none;
  7537. }
  7538. #u6032 .text {
  7539. position:absolute;
  7540. align-self:center;
  7541. padding:2px 2px 2px 2px;
  7542. box-sizing:border-box;
  7543. width:100%;
  7544. }
  7545. #u6032_img {
  7546. border-width:0px;
  7547. position:absolute;
  7548. left:0px;
  7549. top:0px;
  7550. width:73px;
  7551. height:30px;
  7552. }
  7553. #u6032_text {
  7554. border-width:0px;
  7555. word-wrap:break-word;
  7556. text-transform:none;
  7557. }
  7558. #u6033 {
  7559. border-width:0px;
  7560. position:absolute;
  7561. left:73px;
  7562. top:180px;
  7563. width:163px;
  7564. height:30px;
  7565. display:flex;
  7566. transition:none;
  7567. }
  7568. #u6033 .text {
  7569. position:absolute;
  7570. align-self:center;
  7571. padding:2px 2px 2px 2px;
  7572. box-sizing:border-box;
  7573. width:100%;
  7574. }
  7575. #u6033_img {
  7576. border-width:0px;
  7577. position:absolute;
  7578. left:0px;
  7579. top:0px;
  7580. width:163px;
  7581. height:30px;
  7582. }
  7583. #u6033_text {
  7584. border-width:0px;
  7585. word-wrap:break-word;
  7586. text-transform:none;
  7587. }
  7588. #u6034 {
  7589. border-width:0px;
  7590. position:absolute;
  7591. left:236px;
  7592. top:180px;
  7593. width:163px;
  7594. height:30px;
  7595. display:flex;
  7596. transition:none;
  7597. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7598. font-weight:400;
  7599. font-style:normal;
  7600. text-align:right;
  7601. }
  7602. #u6034 .text {
  7603. position:absolute;
  7604. align-self:center;
  7605. padding:2px 10px 2px 2px;
  7606. box-sizing:border-box;
  7607. width:100%;
  7608. }
  7609. #u6034_img {
  7610. border-width:0px;
  7611. position:absolute;
  7612. left:0px;
  7613. top:0px;
  7614. width:163px;
  7615. height:30px;
  7616. }
  7617. #u6034_text {
  7618. border-width:0px;
  7619. word-wrap:break-word;
  7620. text-transform:none;
  7621. }
  7622. #u6035 {
  7623. border-width:0px;
  7624. position:absolute;
  7625. left:0px;
  7626. top:210px;
  7627. width:73px;
  7628. height:30px;
  7629. display:flex;
  7630. transition:none;
  7631. }
  7632. #u6035 .text {
  7633. position:absolute;
  7634. align-self:center;
  7635. padding:2px 2px 2px 2px;
  7636. box-sizing:border-box;
  7637. width:100%;
  7638. }
  7639. #u6035_img {
  7640. border-width:0px;
  7641. position:absolute;
  7642. left:0px;
  7643. top:0px;
  7644. width:73px;
  7645. height:30px;
  7646. }
  7647. #u6035_text {
  7648. border-width:0px;
  7649. word-wrap:break-word;
  7650. text-transform:none;
  7651. }
  7652. #u6036 {
  7653. border-width:0px;
  7654. position:absolute;
  7655. left:73px;
  7656. top:210px;
  7657. width:163px;
  7658. height:30px;
  7659. display:flex;
  7660. transition:none;
  7661. }
  7662. #u6036 .text {
  7663. position:absolute;
  7664. align-self:center;
  7665. padding:2px 2px 2px 2px;
  7666. box-sizing:border-box;
  7667. width:100%;
  7668. }
  7669. #u6036_img {
  7670. border-width:0px;
  7671. position:absolute;
  7672. left:0px;
  7673. top:0px;
  7674. width:163px;
  7675. height:30px;
  7676. }
  7677. #u6036_text {
  7678. border-width:0px;
  7679. word-wrap:break-word;
  7680. text-transform:none;
  7681. }
  7682. #u6037 {
  7683. border-width:0px;
  7684. position:absolute;
  7685. left:236px;
  7686. top:210px;
  7687. width:163px;
  7688. height:30px;
  7689. display:flex;
  7690. transition:none;
  7691. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7692. font-weight:400;
  7693. font-style:normal;
  7694. text-align:right;
  7695. }
  7696. #u6037 .text {
  7697. position:absolute;
  7698. align-self:center;
  7699. padding:2px 10px 2px 2px;
  7700. box-sizing:border-box;
  7701. width:100%;
  7702. }
  7703. #u6037_img {
  7704. border-width:0px;
  7705. position:absolute;
  7706. left:0px;
  7707. top:0px;
  7708. width:163px;
  7709. height:30px;
  7710. }
  7711. #u6037_text {
  7712. border-width:0px;
  7713. word-wrap:break-word;
  7714. text-transform:none;
  7715. }
  7716. #u6038 {
  7717. border-width:0px;
  7718. position:absolute;
  7719. left:0px;
  7720. top:0px;
  7721. width:0px;
  7722. height:0px;
  7723. }
  7724. #u6039_div {
  7725. border-width:0px;
  7726. position:absolute;
  7727. left:0px;
  7728. top:0px;
  7729. width:123px;
  7730. height:26px;
  7731. background:inherit;
  7732. background-color:rgba(255, 255, 255, 1);
  7733. box-sizing:border-box;
  7734. border-width:1px;
  7735. border-style:solid;
  7736. border-color:rgba(221, 221, 221, 1);
  7737. border-radius:4px;
  7738. filter:drop-shadow(none);
  7739. transition:none;
  7740. font-size:12px;
  7741. color:#666666;
  7742. }
  7743. #u6039 {
  7744. border-width:0px;
  7745. position:absolute;
  7746. left:1368px;
  7747. top:606px;
  7748. width:123px;
  7749. height:26px;
  7750. display:flex;
  7751. transition:none;
  7752. transform-origin:50% 50%;
  7753. font-size:12px;
  7754. color:#666666;
  7755. }
  7756. #u6039 .text {
  7757. position:absolute;
  7758. align-self:center;
  7759. padding:2px 2px 2px 2px;
  7760. box-sizing:border-box;
  7761. width:100%;
  7762. }
  7763. #u6039_div.mouseOver {
  7764. border-width:0px;
  7765. position:absolute;
  7766. left:0px;
  7767. top:0px;
  7768. width:123px;
  7769. height:26px;
  7770. background:inherit;
  7771. background-color:rgba(255, 255, 255, 1);
  7772. box-sizing:border-box;
  7773. border-width:1px;
  7774. border-style:solid;
  7775. border-color:rgba(20, 92, 199, 1);
  7776. border-radius:4px;
  7777. filter:drop-shadow(0px 0px 3px rgba(20, 92, 199, 0.4980392156862745));
  7778. transition:none;
  7779. font-size:12px;
  7780. color:#666666;
  7781. }
  7782. #u6039.mouseOver {
  7783. }
  7784. #u6039_div.disabled {
  7785. border-width:0px;
  7786. position:absolute;
  7787. left:0px;
  7788. top:0px;
  7789. width:123px;
  7790. height:26px;
  7791. background:inherit;
  7792. background-color:rgba(229, 229, 229, 1);
  7793. box-sizing:border-box;
  7794. border-width:1px;
  7795. border-style:solid;
  7796. border-color:rgba(221, 221, 221, 1);
  7797. border-radius:4px;
  7798. filter:drop-shadow(none);
  7799. transition:none;
  7800. font-size:12px;
  7801. color:#666666;
  7802. }
  7803. #u6039.disabled {
  7804. }
  7805. #u6039_text {
  7806. border-width:0px;
  7807. word-wrap:break-word;
  7808. text-transform:none;
  7809. visibility:hidden;
  7810. }
  7811. #u6040_input {
  7812. position:absolute;
  7813. left:0px;
  7814. top:0px;
  7815. width:114px;
  7816. height:24px;
  7817. padding:2px 2px 2px 2px;
  7818. font-family:"ArialMT", "Arial", sans-serif;
  7819. font-weight:400;
  7820. font-style:normal;
  7821. font-size:13px;
  7822. letter-spacing:normal;
  7823. color:#333333;
  7824. vertical-align:none;
  7825. text-align:center;
  7826. text-transform:none;
  7827. background-color:transparent;
  7828. border-color:transparent;
  7829. }
  7830. #u6040_input.hint {
  7831. position:absolute;
  7832. left:0px;
  7833. top:0px;
  7834. width:114px;
  7835. height:24px;
  7836. padding:2px 2px 2px 2px;
  7837. font-family:"ArialMT", "Arial", sans-serif;
  7838. font-weight:400;
  7839. font-style:normal;
  7840. font-size:13px;
  7841. letter-spacing:normal;
  7842. color:#999999;
  7843. vertical-align:none;
  7844. text-align:center;
  7845. text-transform:none;
  7846. background-color:transparent;
  7847. border-color:transparent;
  7848. }
  7849. #u6040_input.disabled {
  7850. position:absolute;
  7851. left:0px;
  7852. top:0px;
  7853. width:114px;
  7854. height:24px;
  7855. padding:2px 2px 2px 2px;
  7856. font-family:"ArialMT", "Arial", sans-serif;
  7857. font-weight:400;
  7858. font-style:normal;
  7859. font-size:13px;
  7860. letter-spacing:normal;
  7861. color:#333333;
  7862. vertical-align:none;
  7863. text-align:center;
  7864. text-transform:none;
  7865. background-color:transparent;
  7866. border-color:transparent;
  7867. }
  7868. #u6040_input.hint.disabled {
  7869. position:absolute;
  7870. left:0px;
  7871. top:0px;
  7872. width:114px;
  7873. height:24px;
  7874. padding:2px 2px 2px 2px;
  7875. font-family:"ArialMT", "Arial", sans-serif;
  7876. font-weight:400;
  7877. font-style:normal;
  7878. font-size:13px;
  7879. letter-spacing:normal;
  7880. color:#999999;
  7881. vertical-align:none;
  7882. text-align:center;
  7883. text-transform:none;
  7884. background-color:transparent;
  7885. border-color:transparent;
  7886. }
  7887. #u6040_div {
  7888. border-width:0px;
  7889. position:absolute;
  7890. left:0px;
  7891. top:0px;
  7892. width:114px;
  7893. height:24px;
  7894. background:inherit;
  7895. background-color:rgba(255, 255, 255, 0);
  7896. border-radius:0px;
  7897. filter:drop-shadow(none);
  7898. transition:none;
  7899. color:#333333;
  7900. text-align:center;
  7901. }
  7902. #u6040 {
  7903. border-width:0px;
  7904. position:absolute;
  7905. left:1370px;
  7906. top:607px;
  7907. width:114px;
  7908. height:24px;
  7909. display:flex;
  7910. transition:none;
  7911. transform-origin:50% 50%;
  7912. color:#333333;
  7913. text-align:center;
  7914. }
  7915. #u6040 .text {
  7916. position:absolute;
  7917. align-self:center;
  7918. padding:2px 2px 2px 2px;
  7919. box-sizing:border-box;
  7920. width:100%;
  7921. }
  7922. #u6040_div.hint {
  7923. border-width:0px;
  7924. position:absolute;
  7925. left:0px;
  7926. top:0px;
  7927. width:114px;
  7928. height:24px;
  7929. background:inherit;
  7930. background-color:rgba(255, 255, 255, 0);
  7931. border-radius:0px;
  7932. filter:drop-shadow(none);
  7933. transition:none;
  7934. color:#333333;
  7935. text-align:center;
  7936. }
  7937. #u6040.hint {
  7938. }
  7939. #u6040_div.disabled {
  7940. border-width:0px;
  7941. position:absolute;
  7942. left:0px;
  7943. top:0px;
  7944. width:114px;
  7945. height:24px;
  7946. background:inherit;
  7947. background-color:rgba(240, 240, 240, 1);
  7948. border-radius:0px;
  7949. filter:drop-shadow(none);
  7950. transition:none;
  7951. color:#333333;
  7952. text-align:center;
  7953. }
  7954. #u6040.disabled {
  7955. }
  7956. #u6040_div.hint.disabled {
  7957. border-width:0px;
  7958. position:absolute;
  7959. left:0px;
  7960. top:0px;
  7961. width:114px;
  7962. height:24px;
  7963. background:inherit;
  7964. background-color:rgba(240, 240, 240, 1);
  7965. border-radius:0px;
  7966. filter:drop-shadow(none);
  7967. transition:none;
  7968. color:#333333;
  7969. text-align:center;
  7970. }
  7971. #u6040.hint.disabled {
  7972. }
  7973. #u6041 {
  7974. border-width:0px;
  7975. position:absolute;
  7976. left:0px;
  7977. top:0px;
  7978. width:0px;
  7979. height:0px;
  7980. }
  7981. #u6042 {
  7982. border-width:0px;
  7983. position:absolute;
  7984. left:0px;
  7985. top:0px;
  7986. width:0px;
  7987. height:0px;
  7988. }
  7989. #u6043_div {
  7990. border-width:0px;
  7991. position:absolute;
  7992. left:0px;
  7993. top:0px;
  7994. width:123px;
  7995. height:26px;
  7996. background:inherit;
  7997. background-color:rgba(255, 255, 255, 1);
  7998. box-sizing:border-box;
  7999. border-width:1px;
  8000. border-style:solid;
  8001. border-color:rgba(221, 221, 221, 1);
  8002. border-radius:4px;
  8003. filter:drop-shadow(none);
  8004. transition:none;
  8005. font-size:12px;
  8006. color:#666666;
  8007. }
  8008. #u6043 {
  8009. border-width:0px;
  8010. position:absolute;
  8011. left:1368px;
  8012. top:636px;
  8013. width:123px;
  8014. height:26px;
  8015. display:flex;
  8016. transition:none;
  8017. transform-origin:50% 50%;
  8018. font-size:12px;
  8019. color:#666666;
  8020. }
  8021. #u6043 .text {
  8022. position:absolute;
  8023. align-self:center;
  8024. padding:2px 2px 2px 2px;
  8025. box-sizing:border-box;
  8026. width:100%;
  8027. }
  8028. #u6043_div.mouseOver {
  8029. border-width:0px;
  8030. position:absolute;
  8031. left:0px;
  8032. top:0px;
  8033. width:123px;
  8034. height:26px;
  8035. background:inherit;
  8036. background-color:rgba(255, 255, 255, 1);
  8037. box-sizing:border-box;
  8038. border-width:1px;
  8039. border-style:solid;
  8040. border-color:rgba(20, 92, 199, 1);
  8041. border-radius:4px;
  8042. filter:drop-shadow(0px 0px 3px rgba(20, 92, 199, 0.4980392156862745));
  8043. transition:none;
  8044. font-size:12px;
  8045. color:#666666;
  8046. }
  8047. #u6043.mouseOver {
  8048. }
  8049. #u6043_div.disabled {
  8050. border-width:0px;
  8051. position:absolute;
  8052. left:0px;
  8053. top:0px;
  8054. width:123px;
  8055. height:26px;
  8056. background:inherit;
  8057. background-color:rgba(229, 229, 229, 1);
  8058. box-sizing:border-box;
  8059. border-width:1px;
  8060. border-style:solid;
  8061. border-color:rgba(221, 221, 221, 1);
  8062. border-radius:4px;
  8063. filter:drop-shadow(none);
  8064. transition:none;
  8065. font-size:12px;
  8066. color:#666666;
  8067. }
  8068. #u6043.disabled {
  8069. }
  8070. #u6043_text {
  8071. border-width:0px;
  8072. word-wrap:break-word;
  8073. text-transform:none;
  8074. visibility:hidden;
  8075. }
  8076. #u6044_input {
  8077. position:absolute;
  8078. left:0px;
  8079. top:0px;
  8080. width:114px;
  8081. height:24px;
  8082. padding:2px 2px 2px 2px;
  8083. font-family:"ArialMT", "Arial", sans-serif;
  8084. font-weight:400;
  8085. font-style:normal;
  8086. font-size:13px;
  8087. letter-spacing:normal;
  8088. color:#333333;
  8089. vertical-align:none;
  8090. text-align:center;
  8091. text-transform:none;
  8092. background-color:transparent;
  8093. border-color:transparent;
  8094. }
  8095. #u6044_input.hint {
  8096. position:absolute;
  8097. left:0px;
  8098. top:0px;
  8099. width:114px;
  8100. height:24px;
  8101. padding:2px 2px 2px 2px;
  8102. font-family:"ArialMT", "Arial", sans-serif;
  8103. font-weight:400;
  8104. font-style:normal;
  8105. font-size:13px;
  8106. letter-spacing:normal;
  8107. color:#999999;
  8108. vertical-align:none;
  8109. text-align:center;
  8110. text-transform:none;
  8111. background-color:transparent;
  8112. border-color:transparent;
  8113. }
  8114. #u6044_input.disabled {
  8115. position:absolute;
  8116. left:0px;
  8117. top:0px;
  8118. width:114px;
  8119. height:24px;
  8120. padding:2px 2px 2px 2px;
  8121. font-family:"ArialMT", "Arial", sans-serif;
  8122. font-weight:400;
  8123. font-style:normal;
  8124. font-size:13px;
  8125. letter-spacing:normal;
  8126. color:#333333;
  8127. vertical-align:none;
  8128. text-align:center;
  8129. text-transform:none;
  8130. background-color:transparent;
  8131. border-color:transparent;
  8132. }
  8133. #u6044_input.hint.disabled {
  8134. position:absolute;
  8135. left:0px;
  8136. top:0px;
  8137. width:114px;
  8138. height:24px;
  8139. padding:2px 2px 2px 2px;
  8140. font-family:"ArialMT", "Arial", sans-serif;
  8141. font-weight:400;
  8142. font-style:normal;
  8143. font-size:13px;
  8144. letter-spacing:normal;
  8145. color:#999999;
  8146. vertical-align:none;
  8147. text-align:center;
  8148. text-transform:none;
  8149. background-color:transparent;
  8150. border-color:transparent;
  8151. }
  8152. #u6044_div {
  8153. border-width:0px;
  8154. position:absolute;
  8155. left:0px;
  8156. top:0px;
  8157. width:114px;
  8158. height:24px;
  8159. background:inherit;
  8160. background-color:rgba(255, 255, 255, 0);
  8161. border-radius:0px;
  8162. filter:drop-shadow(none);
  8163. transition:none;
  8164. color:#333333;
  8165. text-align:center;
  8166. }
  8167. #u6044 {
  8168. border-width:0px;
  8169. position:absolute;
  8170. left:1370px;
  8171. top:637px;
  8172. width:114px;
  8173. height:24px;
  8174. display:flex;
  8175. transition:none;
  8176. transform-origin:50% 50%;
  8177. color:#333333;
  8178. text-align:center;
  8179. }
  8180. #u6044 .text {
  8181. position:absolute;
  8182. align-self:center;
  8183. padding:2px 2px 2px 2px;
  8184. box-sizing:border-box;
  8185. width:100%;
  8186. }
  8187. #u6044_div.hint {
  8188. border-width:0px;
  8189. position:absolute;
  8190. left:0px;
  8191. top:0px;
  8192. width:114px;
  8193. height:24px;
  8194. background:inherit;
  8195. background-color:rgba(255, 255, 255, 0);
  8196. border-radius:0px;
  8197. filter:drop-shadow(none);
  8198. transition:none;
  8199. color:#333333;
  8200. text-align:center;
  8201. }
  8202. #u6044.hint {
  8203. }
  8204. #u6044_div.disabled {
  8205. border-width:0px;
  8206. position:absolute;
  8207. left:0px;
  8208. top:0px;
  8209. width:114px;
  8210. height:24px;
  8211. background:inherit;
  8212. background-color:rgba(240, 240, 240, 1);
  8213. border-radius:0px;
  8214. filter:drop-shadow(none);
  8215. transition:none;
  8216. color:#333333;
  8217. text-align:center;
  8218. }
  8219. #u6044.disabled {
  8220. }
  8221. #u6044_div.hint.disabled {
  8222. border-width:0px;
  8223. position:absolute;
  8224. left:0px;
  8225. top:0px;
  8226. width:114px;
  8227. height:24px;
  8228. background:inherit;
  8229. background-color:rgba(240, 240, 240, 1);
  8230. border-radius:0px;
  8231. filter:drop-shadow(none);
  8232. transition:none;
  8233. color:#333333;
  8234. text-align:center;
  8235. }
  8236. #u6044.hint.disabled {
  8237. }
  8238. #u6045 {
  8239. border-width:0px;
  8240. position:absolute;
  8241. left:0px;
  8242. top:0px;
  8243. width:0px;
  8244. height:0px;
  8245. }
  8246. #u6046_div {
  8247. border-width:0px;
  8248. position:absolute;
  8249. left:0px;
  8250. top:0px;
  8251. width:123px;
  8252. height:26px;
  8253. background:inherit;
  8254. background-color:rgba(255, 255, 255, 1);
  8255. box-sizing:border-box;
  8256. border-width:1px;
  8257. border-style:solid;
  8258. border-color:rgba(221, 221, 221, 1);
  8259. border-radius:4px;
  8260. filter:drop-shadow(none);
  8261. transition:none;
  8262. font-size:12px;
  8263. color:#666666;
  8264. }
  8265. #u6046 {
  8266. border-width:0px;
  8267. position:absolute;
  8268. left:1368px;
  8269. top:666px;
  8270. width:123px;
  8271. height:26px;
  8272. display:flex;
  8273. transition:none;
  8274. transform-origin:50% 50%;
  8275. font-size:12px;
  8276. color:#666666;
  8277. }
  8278. #u6046 .text {
  8279. position:absolute;
  8280. align-self:center;
  8281. padding:2px 2px 2px 2px;
  8282. box-sizing:border-box;
  8283. width:100%;
  8284. }
  8285. #u6046_div.mouseOver {
  8286. border-width:0px;
  8287. position:absolute;
  8288. left:0px;
  8289. top:0px;
  8290. width:123px;
  8291. height:26px;
  8292. background:inherit;
  8293. background-color:rgba(255, 255, 255, 1);
  8294. box-sizing:border-box;
  8295. border-width:1px;
  8296. border-style:solid;
  8297. border-color:rgba(20, 92, 199, 1);
  8298. border-radius:4px;
  8299. filter:drop-shadow(0px 0px 3px rgba(20, 92, 199, 0.4980392156862745));
  8300. transition:none;
  8301. font-size:12px;
  8302. color:#666666;
  8303. }
  8304. #u6046.mouseOver {
  8305. }
  8306. #u6046_div.disabled {
  8307. border-width:0px;
  8308. position:absolute;
  8309. left:0px;
  8310. top:0px;
  8311. width:123px;
  8312. height:26px;
  8313. background:inherit;
  8314. background-color:rgba(229, 229, 229, 1);
  8315. box-sizing:border-box;
  8316. border-width:1px;
  8317. border-style:solid;
  8318. border-color:rgba(221, 221, 221, 1);
  8319. border-radius:4px;
  8320. filter:drop-shadow(none);
  8321. transition:none;
  8322. font-size:12px;
  8323. color:#666666;
  8324. }
  8325. #u6046.disabled {
  8326. }
  8327. #u6046_text {
  8328. border-width:0px;
  8329. word-wrap:break-word;
  8330. text-transform:none;
  8331. visibility:hidden;
  8332. }
  8333. #u6047_input {
  8334. position:absolute;
  8335. left:0px;
  8336. top:0px;
  8337. width:114px;
  8338. height:24px;
  8339. padding:2px 2px 2px 2px;
  8340. font-family:"ArialMT", "Arial", sans-serif;
  8341. font-weight:400;
  8342. font-style:normal;
  8343. font-size:13px;
  8344. letter-spacing:normal;
  8345. color:#333333;
  8346. vertical-align:none;
  8347. text-align:center;
  8348. text-transform:none;
  8349. background-color:transparent;
  8350. border-color:transparent;
  8351. }
  8352. #u6047_input.hint {
  8353. position:absolute;
  8354. left:0px;
  8355. top:0px;
  8356. width:114px;
  8357. height:24px;
  8358. padding:2px 2px 2px 2px;
  8359. font-family:"ArialMT", "Arial", sans-serif;
  8360. font-weight:400;
  8361. font-style:normal;
  8362. font-size:13px;
  8363. letter-spacing:normal;
  8364. color:#999999;
  8365. vertical-align:none;
  8366. text-align:center;
  8367. text-transform:none;
  8368. background-color:transparent;
  8369. border-color:transparent;
  8370. }
  8371. #u6047_input.disabled {
  8372. position:absolute;
  8373. left:0px;
  8374. top:0px;
  8375. width:114px;
  8376. height:24px;
  8377. padding:2px 2px 2px 2px;
  8378. font-family:"ArialMT", "Arial", sans-serif;
  8379. font-weight:400;
  8380. font-style:normal;
  8381. font-size:13px;
  8382. letter-spacing:normal;
  8383. color:#333333;
  8384. vertical-align:none;
  8385. text-align:center;
  8386. text-transform:none;
  8387. background-color:transparent;
  8388. border-color:transparent;
  8389. }
  8390. #u6047_input.hint.disabled {
  8391. position:absolute;
  8392. left:0px;
  8393. top:0px;
  8394. width:114px;
  8395. height:24px;
  8396. padding:2px 2px 2px 2px;
  8397. font-family:"ArialMT", "Arial", sans-serif;
  8398. font-weight:400;
  8399. font-style:normal;
  8400. font-size:13px;
  8401. letter-spacing:normal;
  8402. color:#999999;
  8403. vertical-align:none;
  8404. text-align:center;
  8405. text-transform:none;
  8406. background-color:transparent;
  8407. border-color:transparent;
  8408. }
  8409. #u6047_div {
  8410. border-width:0px;
  8411. position:absolute;
  8412. left:0px;
  8413. top:0px;
  8414. width:114px;
  8415. height:24px;
  8416. background:inherit;
  8417. background-color:rgba(255, 255, 255, 0);
  8418. border-radius:0px;
  8419. filter:drop-shadow(none);
  8420. transition:none;
  8421. color:#333333;
  8422. text-align:center;
  8423. }
  8424. #u6047 {
  8425. border-width:0px;
  8426. position:absolute;
  8427. left:1370px;
  8428. top:667px;
  8429. width:114px;
  8430. height:24px;
  8431. display:flex;
  8432. transition:none;
  8433. transform-origin:50% 50%;
  8434. color:#333333;
  8435. text-align:center;
  8436. }
  8437. #u6047 .text {
  8438. position:absolute;
  8439. align-self:center;
  8440. padding:2px 2px 2px 2px;
  8441. box-sizing:border-box;
  8442. width:100%;
  8443. }
  8444. #u6047_div.hint {
  8445. border-width:0px;
  8446. position:absolute;
  8447. left:0px;
  8448. top:0px;
  8449. width:114px;
  8450. height:24px;
  8451. background:inherit;
  8452. background-color:rgba(255, 255, 255, 0);
  8453. border-radius:0px;
  8454. filter:drop-shadow(none);
  8455. transition:none;
  8456. color:#333333;
  8457. text-align:center;
  8458. }
  8459. #u6047.hint {
  8460. }
  8461. #u6047_div.disabled {
  8462. border-width:0px;
  8463. position:absolute;
  8464. left:0px;
  8465. top:0px;
  8466. width:114px;
  8467. height:24px;
  8468. background:inherit;
  8469. background-color:rgba(240, 240, 240, 1);
  8470. border-radius:0px;
  8471. filter:drop-shadow(none);
  8472. transition:none;
  8473. color:#333333;
  8474. text-align:center;
  8475. }
  8476. #u6047.disabled {
  8477. }
  8478. #u6047_div.hint.disabled {
  8479. border-width:0px;
  8480. position:absolute;
  8481. left:0px;
  8482. top:0px;
  8483. width:114px;
  8484. height:24px;
  8485. background:inherit;
  8486. background-color:rgba(240, 240, 240, 1);
  8487. border-radius:0px;
  8488. filter:drop-shadow(none);
  8489. transition:none;
  8490. color:#333333;
  8491. text-align:center;
  8492. }
  8493. #u6047.hint.disabled {
  8494. }
  8495. #u6048 {
  8496. border-width:0px;
  8497. position:absolute;
  8498. left:0px;
  8499. top:0px;
  8500. width:0px;
  8501. height:0px;
  8502. }
  8503. #u6049_div {
  8504. border-width:0px;
  8505. position:absolute;
  8506. left:0px;
  8507. top:0px;
  8508. width:123px;
  8509. height:26px;
  8510. background:inherit;
  8511. background-color:rgba(255, 255, 255, 1);
  8512. box-sizing:border-box;
  8513. border-width:1px;
  8514. border-style:solid;
  8515. border-color:rgba(221, 221, 221, 1);
  8516. border-radius:4px;
  8517. filter:drop-shadow(none);
  8518. transition:none;
  8519. font-size:12px;
  8520. color:#666666;
  8521. }
  8522. #u6049 {
  8523. border-width:0px;
  8524. position:absolute;
  8525. left:1368px;
  8526. top:696px;
  8527. width:123px;
  8528. height:26px;
  8529. display:flex;
  8530. transition:none;
  8531. transform-origin:50% 50%;
  8532. font-size:12px;
  8533. color:#666666;
  8534. }
  8535. #u6049 .text {
  8536. position:absolute;
  8537. align-self:center;
  8538. padding:2px 2px 2px 2px;
  8539. box-sizing:border-box;
  8540. width:100%;
  8541. }
  8542. #u6049_div.mouseOver {
  8543. border-width:0px;
  8544. position:absolute;
  8545. left:0px;
  8546. top:0px;
  8547. width:123px;
  8548. height:26px;
  8549. background:inherit;
  8550. background-color:rgba(255, 255, 255, 1);
  8551. box-sizing:border-box;
  8552. border-width:1px;
  8553. border-style:solid;
  8554. border-color:rgba(20, 92, 199, 1);
  8555. border-radius:4px;
  8556. filter:drop-shadow(0px 0px 3px rgba(20, 92, 199, 0.4980392156862745));
  8557. transition:none;
  8558. font-size:12px;
  8559. color:#666666;
  8560. }
  8561. #u6049.mouseOver {
  8562. }
  8563. #u6049_div.disabled {
  8564. border-width:0px;
  8565. position:absolute;
  8566. left:0px;
  8567. top:0px;
  8568. width:123px;
  8569. height:26px;
  8570. background:inherit;
  8571. background-color:rgba(229, 229, 229, 1);
  8572. box-sizing:border-box;
  8573. border-width:1px;
  8574. border-style:solid;
  8575. border-color:rgba(221, 221, 221, 1);
  8576. border-radius:4px;
  8577. filter:drop-shadow(none);
  8578. transition:none;
  8579. font-size:12px;
  8580. color:#666666;
  8581. }
  8582. #u6049.disabled {
  8583. }
  8584. #u6049_text {
  8585. border-width:0px;
  8586. word-wrap:break-word;
  8587. text-transform:none;
  8588. visibility:hidden;
  8589. }
  8590. #u6050_input {
  8591. position:absolute;
  8592. left:0px;
  8593. top:0px;
  8594. width:114px;
  8595. height:24px;
  8596. padding:2px 2px 2px 2px;
  8597. font-family:"ArialMT", "Arial", sans-serif;
  8598. font-weight:400;
  8599. font-style:normal;
  8600. font-size:13px;
  8601. letter-spacing:normal;
  8602. color:#333333;
  8603. vertical-align:none;
  8604. text-align:center;
  8605. text-transform:none;
  8606. background-color:transparent;
  8607. border-color:transparent;
  8608. }
  8609. #u6050_input.hint {
  8610. position:absolute;
  8611. left:0px;
  8612. top:0px;
  8613. width:114px;
  8614. height:24px;
  8615. padding:2px 2px 2px 2px;
  8616. font-family:"ArialMT", "Arial", sans-serif;
  8617. font-weight:400;
  8618. font-style:normal;
  8619. font-size:13px;
  8620. letter-spacing:normal;
  8621. color:#999999;
  8622. vertical-align:none;
  8623. text-align:center;
  8624. text-transform:none;
  8625. background-color:transparent;
  8626. border-color:transparent;
  8627. }
  8628. #u6050_input.disabled {
  8629. position:absolute;
  8630. left:0px;
  8631. top:0px;
  8632. width:114px;
  8633. height:24px;
  8634. padding:2px 2px 2px 2px;
  8635. font-family:"ArialMT", "Arial", sans-serif;
  8636. font-weight:400;
  8637. font-style:normal;
  8638. font-size:13px;
  8639. letter-spacing:normal;
  8640. color:#333333;
  8641. vertical-align:none;
  8642. text-align:center;
  8643. text-transform:none;
  8644. background-color:transparent;
  8645. border-color:transparent;
  8646. }
  8647. #u6050_input.hint.disabled {
  8648. position:absolute;
  8649. left:0px;
  8650. top:0px;
  8651. width:114px;
  8652. height:24px;
  8653. padding:2px 2px 2px 2px;
  8654. font-family:"ArialMT", "Arial", sans-serif;
  8655. font-weight:400;
  8656. font-style:normal;
  8657. font-size:13px;
  8658. letter-spacing:normal;
  8659. color:#999999;
  8660. vertical-align:none;
  8661. text-align:center;
  8662. text-transform:none;
  8663. background-color:transparent;
  8664. border-color:transparent;
  8665. }
  8666. #u6050_div {
  8667. border-width:0px;
  8668. position:absolute;
  8669. left:0px;
  8670. top:0px;
  8671. width:114px;
  8672. height:24px;
  8673. background:inherit;
  8674. background-color:rgba(255, 255, 255, 0);
  8675. border-radius:0px;
  8676. filter:drop-shadow(none);
  8677. transition:none;
  8678. color:#333333;
  8679. text-align:center;
  8680. }
  8681. #u6050 {
  8682. border-width:0px;
  8683. position:absolute;
  8684. left:1370px;
  8685. top:697px;
  8686. width:114px;
  8687. height:24px;
  8688. display:flex;
  8689. transition:none;
  8690. transform-origin:50% 50%;
  8691. color:#333333;
  8692. text-align:center;
  8693. }
  8694. #u6050 .text {
  8695. position:absolute;
  8696. align-self:center;
  8697. padding:2px 2px 2px 2px;
  8698. box-sizing:border-box;
  8699. width:100%;
  8700. }
  8701. #u6050_div.hint {
  8702. border-width:0px;
  8703. position:absolute;
  8704. left:0px;
  8705. top:0px;
  8706. width:114px;
  8707. height:24px;
  8708. background:inherit;
  8709. background-color:rgba(255, 255, 255, 0);
  8710. border-radius:0px;
  8711. filter:drop-shadow(none);
  8712. transition:none;
  8713. color:#333333;
  8714. text-align:center;
  8715. }
  8716. #u6050.hint {
  8717. }
  8718. #u6050_div.disabled {
  8719. border-width:0px;
  8720. position:absolute;
  8721. left:0px;
  8722. top:0px;
  8723. width:114px;
  8724. height:24px;
  8725. background:inherit;
  8726. background-color:rgba(240, 240, 240, 1);
  8727. border-radius:0px;
  8728. filter:drop-shadow(none);
  8729. transition:none;
  8730. color:#333333;
  8731. text-align:center;
  8732. }
  8733. #u6050.disabled {
  8734. }
  8735. #u6050_div.hint.disabled {
  8736. border-width:0px;
  8737. position:absolute;
  8738. left:0px;
  8739. top:0px;
  8740. width:114px;
  8741. height:24px;
  8742. background:inherit;
  8743. background-color:rgba(240, 240, 240, 1);
  8744. border-radius:0px;
  8745. filter:drop-shadow(none);
  8746. transition:none;
  8747. color:#333333;
  8748. text-align:center;
  8749. }
  8750. #u6050.hint.disabled {
  8751. }
  8752. #u6051 {
  8753. border-width:0px;
  8754. position:absolute;
  8755. left:0px;
  8756. top:0px;
  8757. width:0px;
  8758. height:0px;
  8759. }
  8760. #u6052_div {
  8761. border-width:0px;
  8762. position:absolute;
  8763. left:0px;
  8764. top:0px;
  8765. width:123px;
  8766. height:26px;
  8767. background:inherit;
  8768. background-color:rgba(255, 255, 255, 1);
  8769. box-sizing:border-box;
  8770. border-width:1px;
  8771. border-style:solid;
  8772. border-color:rgba(221, 221, 221, 1);
  8773. border-radius:4px;
  8774. filter:drop-shadow(none);
  8775. transition:none;
  8776. font-size:12px;
  8777. color:#666666;
  8778. }
  8779. #u6052 {
  8780. border-width:0px;
  8781. position:absolute;
  8782. left:1368px;
  8783. top:726px;
  8784. width:123px;
  8785. height:26px;
  8786. display:flex;
  8787. transition:none;
  8788. transform-origin:50% 50%;
  8789. font-size:12px;
  8790. color:#666666;
  8791. }
  8792. #u6052 .text {
  8793. position:absolute;
  8794. align-self:center;
  8795. padding:2px 2px 2px 2px;
  8796. box-sizing:border-box;
  8797. width:100%;
  8798. }
  8799. #u6052_div.mouseOver {
  8800. border-width:0px;
  8801. position:absolute;
  8802. left:0px;
  8803. top:0px;
  8804. width:123px;
  8805. height:26px;
  8806. background:inherit;
  8807. background-color:rgba(255, 255, 255, 1);
  8808. box-sizing:border-box;
  8809. border-width:1px;
  8810. border-style:solid;
  8811. border-color:rgba(20, 92, 199, 1);
  8812. border-radius:4px;
  8813. filter:drop-shadow(0px 0px 3px rgba(20, 92, 199, 0.4980392156862745));
  8814. transition:none;
  8815. font-size:12px;
  8816. color:#666666;
  8817. }
  8818. #u6052.mouseOver {
  8819. }
  8820. #u6052_div.disabled {
  8821. border-width:0px;
  8822. position:absolute;
  8823. left:0px;
  8824. top:0px;
  8825. width:123px;
  8826. height:26px;
  8827. background:inherit;
  8828. background-color:rgba(229, 229, 229, 1);
  8829. box-sizing:border-box;
  8830. border-width:1px;
  8831. border-style:solid;
  8832. border-color:rgba(221, 221, 221, 1);
  8833. border-radius:4px;
  8834. filter:drop-shadow(none);
  8835. transition:none;
  8836. font-size:12px;
  8837. color:#666666;
  8838. }
  8839. #u6052.disabled {
  8840. }
  8841. #u6052_text {
  8842. border-width:0px;
  8843. word-wrap:break-word;
  8844. text-transform:none;
  8845. visibility:hidden;
  8846. }
  8847. #u6053_input {
  8848. position:absolute;
  8849. left:0px;
  8850. top:0px;
  8851. width:114px;
  8852. height:24px;
  8853. padding:2px 2px 2px 2px;
  8854. font-family:"ArialMT", "Arial", sans-serif;
  8855. font-weight:400;
  8856. font-style:normal;
  8857. font-size:13px;
  8858. letter-spacing:normal;
  8859. color:#333333;
  8860. vertical-align:none;
  8861. text-align:center;
  8862. text-transform:none;
  8863. background-color:transparent;
  8864. border-color:transparent;
  8865. }
  8866. #u6053_input.hint {
  8867. position:absolute;
  8868. left:0px;
  8869. top:0px;
  8870. width:114px;
  8871. height:24px;
  8872. padding:2px 2px 2px 2px;
  8873. font-family:"ArialMT", "Arial", sans-serif;
  8874. font-weight:400;
  8875. font-style:normal;
  8876. font-size:13px;
  8877. letter-spacing:normal;
  8878. color:#999999;
  8879. vertical-align:none;
  8880. text-align:center;
  8881. text-transform:none;
  8882. background-color:transparent;
  8883. border-color:transparent;
  8884. }
  8885. #u6053_input.disabled {
  8886. position:absolute;
  8887. left:0px;
  8888. top:0px;
  8889. width:114px;
  8890. height:24px;
  8891. padding:2px 2px 2px 2px;
  8892. font-family:"ArialMT", "Arial", sans-serif;
  8893. font-weight:400;
  8894. font-style:normal;
  8895. font-size:13px;
  8896. letter-spacing:normal;
  8897. color:#333333;
  8898. vertical-align:none;
  8899. text-align:center;
  8900. text-transform:none;
  8901. background-color:transparent;
  8902. border-color:transparent;
  8903. }
  8904. #u6053_input.hint.disabled {
  8905. position:absolute;
  8906. left:0px;
  8907. top:0px;
  8908. width:114px;
  8909. height:24px;
  8910. padding:2px 2px 2px 2px;
  8911. font-family:"ArialMT", "Arial", sans-serif;
  8912. font-weight:400;
  8913. font-style:normal;
  8914. font-size:13px;
  8915. letter-spacing:normal;
  8916. color:#999999;
  8917. vertical-align:none;
  8918. text-align:center;
  8919. text-transform:none;
  8920. background-color:transparent;
  8921. border-color:transparent;
  8922. }
  8923. #u6053_div {
  8924. border-width:0px;
  8925. position:absolute;
  8926. left:0px;
  8927. top:0px;
  8928. width:114px;
  8929. height:24px;
  8930. background:inherit;
  8931. background-color:rgba(255, 255, 255, 0);
  8932. border-radius:0px;
  8933. filter:drop-shadow(none);
  8934. transition:none;
  8935. color:#333333;
  8936. text-align:center;
  8937. }
  8938. #u6053 {
  8939. border-width:0px;
  8940. position:absolute;
  8941. left:1370px;
  8942. top:727px;
  8943. width:114px;
  8944. height:24px;
  8945. display:flex;
  8946. transition:none;
  8947. transform-origin:50% 50%;
  8948. color:#333333;
  8949. text-align:center;
  8950. }
  8951. #u6053 .text {
  8952. position:absolute;
  8953. align-self:center;
  8954. padding:2px 2px 2px 2px;
  8955. box-sizing:border-box;
  8956. width:100%;
  8957. }
  8958. #u6053_div.hint {
  8959. border-width:0px;
  8960. position:absolute;
  8961. left:0px;
  8962. top:0px;
  8963. width:114px;
  8964. height:24px;
  8965. background:inherit;
  8966. background-color:rgba(255, 255, 255, 0);
  8967. border-radius:0px;
  8968. filter:drop-shadow(none);
  8969. transition:none;
  8970. color:#333333;
  8971. text-align:center;
  8972. }
  8973. #u6053.hint {
  8974. }
  8975. #u6053_div.disabled {
  8976. border-width:0px;
  8977. position:absolute;
  8978. left:0px;
  8979. top:0px;
  8980. width:114px;
  8981. height:24px;
  8982. background:inherit;
  8983. background-color:rgba(240, 240, 240, 1);
  8984. border-radius:0px;
  8985. filter:drop-shadow(none);
  8986. transition:none;
  8987. color:#333333;
  8988. text-align:center;
  8989. }
  8990. #u6053.disabled {
  8991. }
  8992. #u6053_div.hint.disabled {
  8993. border-width:0px;
  8994. position:absolute;
  8995. left:0px;
  8996. top:0px;
  8997. width:114px;
  8998. height:24px;
  8999. background:inherit;
  9000. background-color:rgba(240, 240, 240, 1);
  9001. border-radius:0px;
  9002. filter:drop-shadow(none);
  9003. transition:none;
  9004. color:#333333;
  9005. text-align:center;
  9006. }
  9007. #u6053.hint.disabled {
  9008. }
  9009. #u6054 {
  9010. border-width:0px;
  9011. position:absolute;
  9012. left:0px;
  9013. top:0px;
  9014. width:0px;
  9015. height:0px;
  9016. }
  9017. #u6055_div {
  9018. border-width:0px;
  9019. position:absolute;
  9020. left:0px;
  9021. top:0px;
  9022. width:123px;
  9023. height:26px;
  9024. background:inherit;
  9025. background-color:rgba(255, 255, 255, 1);
  9026. box-sizing:border-box;
  9027. border-width:1px;
  9028. border-style:solid;
  9029. border-color:rgba(221, 221, 221, 1);
  9030. border-radius:4px;
  9031. filter:drop-shadow(none);
  9032. transition:none;
  9033. font-size:12px;
  9034. color:#666666;
  9035. }
  9036. #u6055 {
  9037. border-width:0px;
  9038. position:absolute;
  9039. left:1368px;
  9040. top:756px;
  9041. width:123px;
  9042. height:26px;
  9043. display:flex;
  9044. transition:none;
  9045. transform-origin:50% 50%;
  9046. font-size:12px;
  9047. color:#666666;
  9048. }
  9049. #u6055 .text {
  9050. position:absolute;
  9051. align-self:center;
  9052. padding:2px 2px 2px 2px;
  9053. box-sizing:border-box;
  9054. width:100%;
  9055. }
  9056. #u6055_div.mouseOver {
  9057. border-width:0px;
  9058. position:absolute;
  9059. left:0px;
  9060. top:0px;
  9061. width:123px;
  9062. height:26px;
  9063. background:inherit;
  9064. background-color:rgba(255, 255, 255, 1);
  9065. box-sizing:border-box;
  9066. border-width:1px;
  9067. border-style:solid;
  9068. border-color:rgba(20, 92, 199, 1);
  9069. border-radius:4px;
  9070. filter:drop-shadow(0px 0px 3px rgba(20, 92, 199, 0.4980392156862745));
  9071. transition:none;
  9072. font-size:12px;
  9073. color:#666666;
  9074. }
  9075. #u6055.mouseOver {
  9076. }
  9077. #u6055_div.disabled {
  9078. border-width:0px;
  9079. position:absolute;
  9080. left:0px;
  9081. top:0px;
  9082. width:123px;
  9083. height:26px;
  9084. background:inherit;
  9085. background-color:rgba(229, 229, 229, 1);
  9086. box-sizing:border-box;
  9087. border-width:1px;
  9088. border-style:solid;
  9089. border-color:rgba(221, 221, 221, 1);
  9090. border-radius:4px;
  9091. filter:drop-shadow(none);
  9092. transition:none;
  9093. font-size:12px;
  9094. color:#666666;
  9095. }
  9096. #u6055.disabled {
  9097. }
  9098. #u6055_text {
  9099. border-width:0px;
  9100. word-wrap:break-word;
  9101. text-transform:none;
  9102. visibility:hidden;
  9103. }
  9104. #u6056_input {
  9105. position:absolute;
  9106. left:0px;
  9107. top:0px;
  9108. width:114px;
  9109. height:24px;
  9110. padding:2px 2px 2px 2px;
  9111. font-family:"ArialMT", "Arial", sans-serif;
  9112. font-weight:400;
  9113. font-style:normal;
  9114. font-size:13px;
  9115. letter-spacing:normal;
  9116. color:#333333;
  9117. vertical-align:none;
  9118. text-align:center;
  9119. text-transform:none;
  9120. background-color:transparent;
  9121. border-color:transparent;
  9122. }
  9123. #u6056_input.hint {
  9124. position:absolute;
  9125. left:0px;
  9126. top:0px;
  9127. width:114px;
  9128. height:24px;
  9129. padding:2px 2px 2px 2px;
  9130. font-family:"ArialMT", "Arial", sans-serif;
  9131. font-weight:400;
  9132. font-style:normal;
  9133. font-size:13px;
  9134. letter-spacing:normal;
  9135. color:#999999;
  9136. vertical-align:none;
  9137. text-align:center;
  9138. text-transform:none;
  9139. background-color:transparent;
  9140. border-color:transparent;
  9141. }
  9142. #u6056_input.disabled {
  9143. position:absolute;
  9144. left:0px;
  9145. top:0px;
  9146. width:114px;
  9147. height:24px;
  9148. padding:2px 2px 2px 2px;
  9149. font-family:"ArialMT", "Arial", sans-serif;
  9150. font-weight:400;
  9151. font-style:normal;
  9152. font-size:13px;
  9153. letter-spacing:normal;
  9154. color:#333333;
  9155. vertical-align:none;
  9156. text-align:center;
  9157. text-transform:none;
  9158. background-color:transparent;
  9159. border-color:transparent;
  9160. }
  9161. #u6056_input.hint.disabled {
  9162. position:absolute;
  9163. left:0px;
  9164. top:0px;
  9165. width:114px;
  9166. height:24px;
  9167. padding:2px 2px 2px 2px;
  9168. font-family:"ArialMT", "Arial", sans-serif;
  9169. font-weight:400;
  9170. font-style:normal;
  9171. font-size:13px;
  9172. letter-spacing:normal;
  9173. color:#999999;
  9174. vertical-align:none;
  9175. text-align:center;
  9176. text-transform:none;
  9177. background-color:transparent;
  9178. border-color:transparent;
  9179. }
  9180. #u6056_div {
  9181. border-width:0px;
  9182. position:absolute;
  9183. left:0px;
  9184. top:0px;
  9185. width:114px;
  9186. height:24px;
  9187. background:inherit;
  9188. background-color:rgba(255, 255, 255, 0);
  9189. border-radius:0px;
  9190. filter:drop-shadow(none);
  9191. transition:none;
  9192. color:#333333;
  9193. text-align:center;
  9194. }
  9195. #u6056 {
  9196. border-width:0px;
  9197. position:absolute;
  9198. left:1370px;
  9199. top:757px;
  9200. width:114px;
  9201. height:24px;
  9202. display:flex;
  9203. transition:none;
  9204. transform-origin:50% 50%;
  9205. color:#333333;
  9206. text-align:center;
  9207. }
  9208. #u6056 .text {
  9209. position:absolute;
  9210. align-self:center;
  9211. padding:2px 2px 2px 2px;
  9212. box-sizing:border-box;
  9213. width:100%;
  9214. }
  9215. #u6056_div.hint {
  9216. border-width:0px;
  9217. position:absolute;
  9218. left:0px;
  9219. top:0px;
  9220. width:114px;
  9221. height:24px;
  9222. background:inherit;
  9223. background-color:rgba(255, 255, 255, 0);
  9224. border-radius:0px;
  9225. filter:drop-shadow(none);
  9226. transition:none;
  9227. color:#333333;
  9228. text-align:center;
  9229. }
  9230. #u6056.hint {
  9231. }
  9232. #u6056_div.disabled {
  9233. border-width:0px;
  9234. position:absolute;
  9235. left:0px;
  9236. top:0px;
  9237. width:114px;
  9238. height:24px;
  9239. background:inherit;
  9240. background-color:rgba(240, 240, 240, 1);
  9241. border-radius:0px;
  9242. filter:drop-shadow(none);
  9243. transition:none;
  9244. color:#333333;
  9245. text-align:center;
  9246. }
  9247. #u6056.disabled {
  9248. }
  9249. #u6056_div.hint.disabled {
  9250. border-width:0px;
  9251. position:absolute;
  9252. left:0px;
  9253. top:0px;
  9254. width:114px;
  9255. height:24px;
  9256. background:inherit;
  9257. background-color:rgba(240, 240, 240, 1);
  9258. border-radius:0px;
  9259. filter:drop-shadow(none);
  9260. transition:none;
  9261. color:#333333;
  9262. text-align:center;
  9263. }
  9264. #u6056.hint.disabled {
  9265. }
  9266. #u6057 {
  9267. border-width:0px;
  9268. position:absolute;
  9269. left:0px;
  9270. top:0px;
  9271. width:0px;
  9272. height:0px;
  9273. }
  9274. #u6058_div {
  9275. border-width:0px;
  9276. position:absolute;
  9277. left:0px;
  9278. top:0px;
  9279. width:123px;
  9280. height:26px;
  9281. background:inherit;
  9282. background-color:rgba(255, 255, 255, 1);
  9283. box-sizing:border-box;
  9284. border-width:1px;
  9285. border-style:solid;
  9286. border-color:rgba(221, 221, 221, 1);
  9287. border-radius:4px;
  9288. filter:drop-shadow(none);
  9289. transition:none;
  9290. font-size:12px;
  9291. color:#666666;
  9292. }
  9293. #u6058 {
  9294. border-width:0px;
  9295. position:absolute;
  9296. left:1368px;
  9297. top:786px;
  9298. width:123px;
  9299. height:26px;
  9300. display:flex;
  9301. transition:none;
  9302. transform-origin:50% 50%;
  9303. font-size:12px;
  9304. color:#666666;
  9305. }
  9306. #u6058 .text {
  9307. position:absolute;
  9308. align-self:center;
  9309. padding:2px 2px 2px 2px;
  9310. box-sizing:border-box;
  9311. width:100%;
  9312. }
  9313. #u6058_div.mouseOver {
  9314. border-width:0px;
  9315. position:absolute;
  9316. left:0px;
  9317. top:0px;
  9318. width:123px;
  9319. height:26px;
  9320. background:inherit;
  9321. background-color:rgba(255, 255, 255, 1);
  9322. box-sizing:border-box;
  9323. border-width:1px;
  9324. border-style:solid;
  9325. border-color:rgba(20, 92, 199, 1);
  9326. border-radius:4px;
  9327. filter:drop-shadow(0px 0px 3px rgba(20, 92, 199, 0.4980392156862745));
  9328. transition:none;
  9329. font-size:12px;
  9330. color:#666666;
  9331. }
  9332. #u6058.mouseOver {
  9333. }
  9334. #u6058_div.disabled {
  9335. border-width:0px;
  9336. position:absolute;
  9337. left:0px;
  9338. top:0px;
  9339. width:123px;
  9340. height:26px;
  9341. background:inherit;
  9342. background-color:rgba(229, 229, 229, 1);
  9343. box-sizing:border-box;
  9344. border-width:1px;
  9345. border-style:solid;
  9346. border-color:rgba(221, 221, 221, 1);
  9347. border-radius:4px;
  9348. filter:drop-shadow(none);
  9349. transition:none;
  9350. font-size:12px;
  9351. color:#666666;
  9352. }
  9353. #u6058.disabled {
  9354. }
  9355. #u6058_text {
  9356. border-width:0px;
  9357. word-wrap:break-word;
  9358. text-transform:none;
  9359. visibility:hidden;
  9360. }
  9361. #u6059_input {
  9362. position:absolute;
  9363. left:0px;
  9364. top:0px;
  9365. width:114px;
  9366. height:24px;
  9367. padding:2px 2px 2px 2px;
  9368. font-family:"ArialMT", "Arial", sans-serif;
  9369. font-weight:400;
  9370. font-style:normal;
  9371. font-size:13px;
  9372. letter-spacing:normal;
  9373. color:#333333;
  9374. vertical-align:none;
  9375. text-align:center;
  9376. text-transform:none;
  9377. background-color:transparent;
  9378. border-color:transparent;
  9379. }
  9380. #u6059_input.hint {
  9381. position:absolute;
  9382. left:0px;
  9383. top:0px;
  9384. width:114px;
  9385. height:24px;
  9386. padding:2px 2px 2px 2px;
  9387. font-family:"ArialMT", "Arial", sans-serif;
  9388. font-weight:400;
  9389. font-style:normal;
  9390. font-size:13px;
  9391. letter-spacing:normal;
  9392. color:#999999;
  9393. vertical-align:none;
  9394. text-align:center;
  9395. text-transform:none;
  9396. background-color:transparent;
  9397. border-color:transparent;
  9398. }
  9399. #u6059_input.disabled {
  9400. position:absolute;
  9401. left:0px;
  9402. top:0px;
  9403. width:114px;
  9404. height:24px;
  9405. padding:2px 2px 2px 2px;
  9406. font-family:"ArialMT", "Arial", sans-serif;
  9407. font-weight:400;
  9408. font-style:normal;
  9409. font-size:13px;
  9410. letter-spacing:normal;
  9411. color:#333333;
  9412. vertical-align:none;
  9413. text-align:center;
  9414. text-transform:none;
  9415. background-color:transparent;
  9416. border-color:transparent;
  9417. }
  9418. #u6059_input.hint.disabled {
  9419. position:absolute;
  9420. left:0px;
  9421. top:0px;
  9422. width:114px;
  9423. height:24px;
  9424. padding:2px 2px 2px 2px;
  9425. font-family:"ArialMT", "Arial", sans-serif;
  9426. font-weight:400;
  9427. font-style:normal;
  9428. font-size:13px;
  9429. letter-spacing:normal;
  9430. color:#999999;
  9431. vertical-align:none;
  9432. text-align:center;
  9433. text-transform:none;
  9434. background-color:transparent;
  9435. border-color:transparent;
  9436. }
  9437. #u6059_div {
  9438. border-width:0px;
  9439. position:absolute;
  9440. left:0px;
  9441. top:0px;
  9442. width:114px;
  9443. height:24px;
  9444. background:inherit;
  9445. background-color:rgba(255, 255, 255, 0);
  9446. border-radius:0px;
  9447. filter:drop-shadow(none);
  9448. transition:none;
  9449. color:#333333;
  9450. text-align:center;
  9451. }
  9452. #u6059 {
  9453. border-width:0px;
  9454. position:absolute;
  9455. left:1370px;
  9456. top:787px;
  9457. width:114px;
  9458. height:24px;
  9459. display:flex;
  9460. transition:none;
  9461. transform-origin:50% 50%;
  9462. color:#333333;
  9463. text-align:center;
  9464. }
  9465. #u6059 .text {
  9466. position:absolute;
  9467. align-self:center;
  9468. padding:2px 2px 2px 2px;
  9469. box-sizing:border-box;
  9470. width:100%;
  9471. }
  9472. #u6059_div.hint {
  9473. border-width:0px;
  9474. position:absolute;
  9475. left:0px;
  9476. top:0px;
  9477. width:114px;
  9478. height:24px;
  9479. background:inherit;
  9480. background-color:rgba(255, 255, 255, 0);
  9481. border-radius:0px;
  9482. filter:drop-shadow(none);
  9483. transition:none;
  9484. color:#333333;
  9485. text-align:center;
  9486. }
  9487. #u6059.hint {
  9488. }
  9489. #u6059_div.disabled {
  9490. border-width:0px;
  9491. position:absolute;
  9492. left:0px;
  9493. top:0px;
  9494. width:114px;
  9495. height:24px;
  9496. background:inherit;
  9497. background-color:rgba(240, 240, 240, 1);
  9498. border-radius:0px;
  9499. filter:drop-shadow(none);
  9500. transition:none;
  9501. color:#333333;
  9502. text-align:center;
  9503. }
  9504. #u6059.disabled {
  9505. }
  9506. #u6059_div.hint.disabled {
  9507. border-width:0px;
  9508. position:absolute;
  9509. left:0px;
  9510. top:0px;
  9511. width:114px;
  9512. height:24px;
  9513. background:inherit;
  9514. background-color:rgba(240, 240, 240, 1);
  9515. border-radius:0px;
  9516. filter:drop-shadow(none);
  9517. transition:none;
  9518. color:#333333;
  9519. text-align:center;
  9520. }
  9521. #u6059.hint.disabled {
  9522. }
  9523. #u6060 {
  9524. border-width:0px;
  9525. position:absolute;
  9526. left:1747px;
  9527. top:44px;
  9528. width:1113px;
  9529. height:326px;
  9530. }
  9531. #u6060_state0 {
  9532. border-width:0px;
  9533. position:absolute;
  9534. left:0px;
  9535. top:0px;
  9536. width:1113px;
  9537. height:326px;
  9538. -ms-overflow-x:hidden;
  9539. overflow-x:hidden;
  9540. -ms-overflow-y:hidden;
  9541. overflow-y:hidden;
  9542. background-image:none;
  9543. border-radius:0px;
  9544. -moz-box-shadow:none;
  9545. -webkit-box-shadow:none;
  9546. box-shadow:none;
  9547. }
  9548. #u6060_state0_content {
  9549. border-width:0px;
  9550. position:absolute;
  9551. left:0px;
  9552. top:0px;
  9553. width:1px;
  9554. height:1px;
  9555. }
  9556. #u6061 {
  9557. border-width:0px;
  9558. position:absolute;
  9559. left:0px;
  9560. top:43px;
  9561. width:1000px;
  9562. height:1px;
  9563. display:flex;
  9564. transition:none;
  9565. }
  9566. #u6061 .text {
  9567. position:absolute;
  9568. align-self:center;
  9569. padding:2px 2px 2px 2px;
  9570. box-sizing:border-box;
  9571. width:100%;
  9572. }
  9573. #u6061_img {
  9574. border-width:0px;
  9575. position:absolute;
  9576. left:0px;
  9577. top:0px;
  9578. width:1001px;
  9579. height:2px;
  9580. }
  9581. #u6061_text {
  9582. border-width:0px;
  9583. word-wrap:break-word;
  9584. text-transform:none;
  9585. visibility:hidden;
  9586. }
  9587. #u6062 {
  9588. border-width:0px;
  9589. position:absolute;
  9590. left:0px;
  9591. top:0px;
  9592. width:0px;
  9593. height:0px;
  9594. }
  9595. #u6063 {
  9596. border-width:0px;
  9597. position:absolute;
  9598. left:40px;
  9599. top:37px;
  9600. width:13px;
  9601. height:13px;
  9602. display:flex;
  9603. transition:none;
  9604. }
  9605. #u6063 .text {
  9606. position:absolute;
  9607. align-self:center;
  9608. padding:2px 2px 2px 2px;
  9609. box-sizing:border-box;
  9610. width:100%;
  9611. }
  9612. #u6063_img {
  9613. border-width:0px;
  9614. position:absolute;
  9615. left:0px;
  9616. top:0px;
  9617. width:13px;
  9618. height:13px;
  9619. }
  9620. #u6063_text {
  9621. border-width:0px;
  9622. word-wrap:break-word;
  9623. text-transform:none;
  9624. visibility:hidden;
  9625. }
  9626. #u6064_div {
  9627. border-width:0px;
  9628. position:absolute;
  9629. left:0px;
  9630. top:0px;
  9631. width:38px;
  9632. height:21px;
  9633. background:inherit;
  9634. background-color:rgba(255, 255, 255, 0);
  9635. border-radius:0px;
  9636. filter:drop-shadow(none);
  9637. transition:none;
  9638. font-family:"Arial-BoldMT", "Arial Bold", "Arial", sans-serif;
  9639. font-weight:700;
  9640. font-style:normal;
  9641. font-size:18px;
  9642. }
  9643. #u6064 {
  9644. border-width:0px;
  9645. position:absolute;
  9646. left:28px;
  9647. top:7px;
  9648. width:38px;
  9649. height:21px;
  9650. display:flex;
  9651. transition:none;
  9652. transform-origin:50% 50%;
  9653. font-family:"Arial-BoldMT", "Arial Bold", "Arial", sans-serif;
  9654. font-weight:700;
  9655. font-style:normal;
  9656. font-size:18px;
  9657. }
  9658. #u6064 .text {
  9659. position:absolute;
  9660. align-self:flex-start;
  9661. padding:0px 0px 0px 0px;
  9662. box-sizing:border-box;
  9663. width:100%;
  9664. }
  9665. #u6064_text {
  9666. border-width:0px;
  9667. white-space:nowrap;
  9668. text-transform:none;
  9669. }
  9670. #u6065 {
  9671. border-width:0px;
  9672. position:absolute;
  9673. left:30px;
  9674. top:67px;
  9675. width:1292px;
  9676. height:180px;
  9677. transition:none;
  9678. }
  9679. #u6065_children {
  9680. border-width:0px;
  9681. position:absolute;
  9682. left:0px;
  9683. top:0px;
  9684. width:0px;
  9685. height:0px;
  9686. }
  9687. #u6066 {
  9688. border-width:0px;
  9689. position:absolute;
  9690. left:0px;
  9691. top:0px;
  9692. width:98px;
  9693. height:20px;
  9694. transition:none;
  9695. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9696. font-weight:400;
  9697. font-style:normal;
  9698. }
  9699. #u6067 {
  9700. border-width:0px;
  9701. position:absolute;
  9702. left:6px;
  9703. top:6px;
  9704. width:9px;
  9705. height:9px;
  9706. display:flex;
  9707. transition:none;
  9708. }
  9709. #u6067 .text {
  9710. position:absolute;
  9711. align-self:center;
  9712. padding:2px 2px 2px 2px;
  9713. box-sizing:border-box;
  9714. width:100%;
  9715. }
  9716. #u6067_img {
  9717. border-width:0px;
  9718. position:absolute;
  9719. left:0px;
  9720. top:0px;
  9721. width:9px;
  9722. height:9px;
  9723. }
  9724. #u6067_img.selected {
  9725. }
  9726. #u6067.selected {
  9727. }
  9728. #u6067_text {
  9729. border-width:0px;
  9730. word-wrap:break-word;
  9731. text-transform:none;
  9732. visibility:hidden;
  9733. }
  9734. #u6068_div {
  9735. border-width:0px;
  9736. position:absolute;
  9737. left:0px;
  9738. top:0px;
  9739. width:76px;
  9740. height:20px;
  9741. background:inherit;
  9742. background-color:rgba(255, 255, 255, 0);
  9743. border-radius:0px;
  9744. filter:drop-shadow(none);
  9745. transition:none;
  9746. }
  9747. #u6068 {
  9748. border-width:0px;
  9749. position:absolute;
  9750. left:22px;
  9751. top:0px;
  9752. width:76px;
  9753. height:20px;
  9754. display:flex;
  9755. transition:none;
  9756. transform-origin:50% 50%;
  9757. }
  9758. #u6068 .text {
  9759. position:absolute;
  9760. align-self:center;
  9761. padding:2px 2px 2px 3px;
  9762. box-sizing:border-box;
  9763. width:100%;
  9764. }
  9765. #u6068_text {
  9766. border-width:0px;
  9767. white-space:nowrap;
  9768. text-transform:none;
  9769. }
  9770. #u6066_children {
  9771. border-width:0px;
  9772. position:absolute;
  9773. left:0px;
  9774. top:0px;
  9775. width:0px;
  9776. height:0px;
  9777. }
  9778. #u6069 {
  9779. border-width:0px;
  9780. position:absolute;
  9781. left:20px;
  9782. top:20px;
  9783. width:238px;
  9784. height:20px;
  9785. transition:none;
  9786. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9787. font-weight:400;
  9788. font-style:normal;
  9789. }
  9790. #u6070_div {
  9791. border-width:0px;
  9792. position:absolute;
  9793. left:0px;
  9794. top:0px;
  9795. width:216px;
  9796. height:20px;
  9797. background:inherit;
  9798. background-color:rgba(255, 255, 255, 0);
  9799. border-radius:0px;
  9800. filter:drop-shadow(none);
  9801. transition:none;
  9802. }
  9803. #u6070 {
  9804. border-width:0px;
  9805. position:absolute;
  9806. left:22px;
  9807. top:0px;
  9808. width:216px;
  9809. height:20px;
  9810. display:flex;
  9811. transition:none;
  9812. transform-origin:50% 50%;
  9813. }
  9814. #u6070 .text {
  9815. position:absolute;
  9816. align-self:center;
  9817. padding:2px 2px 2px 3px;
  9818. box-sizing:border-box;
  9819. width:100%;
  9820. }
  9821. #u6070_text {
  9822. border-width:0px;
  9823. white-space:nowrap;
  9824. text-transform:none;
  9825. }
  9826. #u6071 {
  9827. border-width:0px;
  9828. position:absolute;
  9829. left:20px;
  9830. top:40px;
  9831. width:799px;
  9832. height:20px;
  9833. transition:none;
  9834. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9835. font-weight:400;
  9836. font-style:normal;
  9837. }
  9838. #u6072_div {
  9839. border-width:0px;
  9840. position:absolute;
  9841. left:0px;
  9842. top:0px;
  9843. width:777px;
  9844. height:20px;
  9845. background:inherit;
  9846. background-color:rgba(255, 255, 255, 0);
  9847. border-radius:0px;
  9848. filter:drop-shadow(none);
  9849. transition:none;
  9850. }
  9851. #u6072 {
  9852. border-width:0px;
  9853. position:absolute;
  9854. left:22px;
  9855. top:0px;
  9856. width:777px;
  9857. height:20px;
  9858. display:flex;
  9859. transition:none;
  9860. transform-origin:50% 50%;
  9861. }
  9862. #u6072 .text {
  9863. position:absolute;
  9864. align-self:center;
  9865. padding:2px 2px 2px 3px;
  9866. box-sizing:border-box;
  9867. width:100%;
  9868. }
  9869. #u6072_text {
  9870. border-width:0px;
  9871. white-space:nowrap;
  9872. text-transform:none;
  9873. }
  9874. #u6073 {
  9875. border-width:0px;
  9876. position:absolute;
  9877. left:20px;
  9878. top:60px;
  9879. width:759px;
  9880. height:20px;
  9881. transition:none;
  9882. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9883. font-weight:400;
  9884. font-style:normal;
  9885. }
  9886. #u6074_div {
  9887. border-width:0px;
  9888. position:absolute;
  9889. left:0px;
  9890. top:0px;
  9891. width:737px;
  9892. height:20px;
  9893. background:inherit;
  9894. background-color:rgba(255, 255, 255, 0);
  9895. border-radius:0px;
  9896. filter:drop-shadow(none);
  9897. transition:none;
  9898. }
  9899. #u6074 {
  9900. border-width:0px;
  9901. position:absolute;
  9902. left:22px;
  9903. top:0px;
  9904. width:737px;
  9905. height:20px;
  9906. display:flex;
  9907. transition:none;
  9908. transform-origin:50% 50%;
  9909. }
  9910. #u6074 .text {
  9911. position:absolute;
  9912. align-self:center;
  9913. padding:2px 2px 2px 3px;
  9914. box-sizing:border-box;
  9915. width:100%;
  9916. }
  9917. #u6074_text {
  9918. border-width:0px;
  9919. white-space:nowrap;
  9920. text-transform:none;
  9921. }
  9922. #u6075 {
  9923. border-width:0px;
  9924. position:absolute;
  9925. left:20px;
  9926. top:80px;
  9927. width:330px;
  9928. height:20px;
  9929. transition:none;
  9930. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9931. font-weight:400;
  9932. font-style:normal;
  9933. }
  9934. #u6076_div {
  9935. border-width:0px;
  9936. position:absolute;
  9937. left:0px;
  9938. top:0px;
  9939. width:308px;
  9940. height:20px;
  9941. background:inherit;
  9942. background-color:rgba(255, 255, 255, 0);
  9943. border-radius:0px;
  9944. filter:drop-shadow(none);
  9945. transition:none;
  9946. }
  9947. #u6076 {
  9948. border-width:0px;
  9949. position:absolute;
  9950. left:22px;
  9951. top:0px;
  9952. width:308px;
  9953. height:20px;
  9954. display:flex;
  9955. transition:none;
  9956. transform-origin:50% 50%;
  9957. }
  9958. #u6076 .text {
  9959. position:absolute;
  9960. align-self:center;
  9961. padding:2px 2px 2px 3px;
  9962. box-sizing:border-box;
  9963. width:100%;
  9964. }
  9965. #u6076_text {
  9966. border-width:0px;
  9967. white-space:nowrap;
  9968. text-transform:none;
  9969. }
  9970. #u6077 {
  9971. border-width:0px;
  9972. position:absolute;
  9973. left:20px;
  9974. top:100px;
  9975. width:603px;
  9976. height:20px;
  9977. transition:none;
  9978. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9979. font-weight:400;
  9980. font-style:normal;
  9981. }
  9982. #u6078 {
  9983. border-width:0px;
  9984. position:absolute;
  9985. left:6px;
  9986. top:6px;
  9987. width:9px;
  9988. height:9px;
  9989. display:flex;
  9990. transition:none;
  9991. }
  9992. #u6078 .text {
  9993. position:absolute;
  9994. align-self:center;
  9995. padding:2px 2px 2px 2px;
  9996. box-sizing:border-box;
  9997. width:100%;
  9998. }
  9999. #u6078_img {
  10000. border-width:0px;
  10001. position:absolute;
  10002. left:0px;
  10003. top:0px;
  10004. width:9px;
  10005. height:9px;
  10006. }
  10007. #u6078_img.selected {
  10008. }
  10009. #u6078.selected {
  10010. }
  10011. #u6078_text {
  10012. border-width:0px;
  10013. word-wrap:break-word;
  10014. text-transform:none;
  10015. visibility:hidden;
  10016. }
  10017. #u6079_div {
  10018. border-width:0px;
  10019. position:absolute;
  10020. left:0px;
  10021. top:0px;
  10022. width:581px;
  10023. height:20px;
  10024. background:inherit;
  10025. background-color:rgba(255, 255, 255, 0);
  10026. border-radius:0px;
  10027. filter:drop-shadow(none);
  10028. transition:none;
  10029. }
  10030. #u6079 {
  10031. border-width:0px;
  10032. position:absolute;
  10033. left:22px;
  10034. top:0px;
  10035. width:581px;
  10036. height:20px;
  10037. display:flex;
  10038. transition:none;
  10039. transform-origin:50% 50%;
  10040. }
  10041. #u6079 .text {
  10042. position:absolute;
  10043. align-self:center;
  10044. padding:2px 2px 2px 3px;
  10045. box-sizing:border-box;
  10046. width:100%;
  10047. }
  10048. #u6079_text {
  10049. border-width:0px;
  10050. white-space:nowrap;
  10051. text-transform:none;
  10052. }
  10053. #u6077_children {
  10054. border-width:0px;
  10055. position:absolute;
  10056. left:0px;
  10057. top:0px;
  10058. width:0px;
  10059. height:0px;
  10060. }
  10061. #u6080 {
  10062. border-width:0px;
  10063. position:absolute;
  10064. left:20px;
  10065. top:20px;
  10066. width:521px;
  10067. height:20px;
  10068. transition:none;
  10069. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10070. font-weight:400;
  10071. font-style:normal;
  10072. }
  10073. #u6081_div {
  10074. border-width:0px;
  10075. position:absolute;
  10076. left:0px;
  10077. top:0px;
  10078. width:499px;
  10079. height:20px;
  10080. background:inherit;
  10081. background-color:rgba(255, 255, 255, 0);
  10082. border-radius:0px;
  10083. filter:drop-shadow(none);
  10084. transition:none;
  10085. }
  10086. #u6081 {
  10087. border-width:0px;
  10088. position:absolute;
  10089. left:22px;
  10090. top:0px;
  10091. width:499px;
  10092. height:20px;
  10093. display:flex;
  10094. transition:none;
  10095. transform-origin:50% 50%;
  10096. }
  10097. #u6081 .text {
  10098. position:absolute;
  10099. align-self:center;
  10100. padding:2px 2px 2px 3px;
  10101. box-sizing:border-box;
  10102. width:100%;
  10103. }
  10104. #u6081_text {
  10105. border-width:0px;
  10106. white-space:nowrap;
  10107. text-transform:none;
  10108. }
  10109. #u6082 {
  10110. border-width:0px;
  10111. position:absolute;
  10112. left:20px;
  10113. top:40px;
  10114. width:1252px;
  10115. height:20px;
  10116. transition:none;
  10117. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10118. font-weight:400;
  10119. font-style:normal;
  10120. }
  10121. #u6083_div {
  10122. border-width:0px;
  10123. position:absolute;
  10124. left:0px;
  10125. top:0px;
  10126. width:1230px;
  10127. height:20px;
  10128. background:inherit;
  10129. background-color:rgba(255, 255, 255, 0);
  10130. border-radius:0px;
  10131. filter:drop-shadow(none);
  10132. transition:none;
  10133. }
  10134. #u6083 {
  10135. border-width:0px;
  10136. position:absolute;
  10137. left:22px;
  10138. top:0px;
  10139. width:1230px;
  10140. height:20px;
  10141. display:flex;
  10142. transition:none;
  10143. transform-origin:50% 50%;
  10144. }
  10145. #u6083 .text {
  10146. position:absolute;
  10147. align-self:center;
  10148. padding:2px 2px 2px 3px;
  10149. box-sizing:border-box;
  10150. width:100%;
  10151. }
  10152. #u6083_text {
  10153. border-width:0px;
  10154. white-space:nowrap;
  10155. text-transform:none;
  10156. }
  10157. #u6084 {
  10158. border-width:0px;
  10159. position:absolute;
  10160. left:20px;
  10161. top:60px;
  10162. width:316px;
  10163. height:20px;
  10164. transition:none;
  10165. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10166. font-weight:400;
  10167. font-style:normal;
  10168. }
  10169. #u6085_div {
  10170. border-width:0px;
  10171. position:absolute;
  10172. left:0px;
  10173. top:0px;
  10174. width:294px;
  10175. height:20px;
  10176. background:inherit;
  10177. background-color:rgba(255, 255, 255, 0);
  10178. border-radius:0px;
  10179. filter:drop-shadow(none);
  10180. transition:none;
  10181. }
  10182. #u6085 {
  10183. border-width:0px;
  10184. position:absolute;
  10185. left:22px;
  10186. top:0px;
  10187. width:294px;
  10188. height:20px;
  10189. display:flex;
  10190. transition:none;
  10191. transform-origin:50% 50%;
  10192. }
  10193. #u6085 .text {
  10194. position:absolute;
  10195. align-self:center;
  10196. padding:2px 2px 2px 3px;
  10197. box-sizing:border-box;
  10198. width:100%;
  10199. }
  10200. #u6085_text {
  10201. border-width:0px;
  10202. white-space:nowrap;
  10203. text-transform:none;
  10204. }