styles.css 108 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2325px;
  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. #u60435_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u60435 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u60435 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u60435_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u60436_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u60436 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u60436 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u60436_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u60437_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u60437 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u60437 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u60437_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u60438 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u60439_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u60439 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u60439 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u60439_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u60440_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u60440 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u60440 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u60440_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u60441_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u60441 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u60441 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u60441_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u60442 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u60443_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u60443_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u60443_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u60443 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u60443 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u60443_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u60443.disabled {
  356. }
  357. .u60443_input_option {
  358. font-size:14px;
  359. }
  360. #u60444_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u60444 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u60444 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u60444_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u60445_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u60445 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u60445 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u60445_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u60446_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u60446 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u60446 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u60446_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u60447 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u60448_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u60448 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u60448 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u60448_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u60449_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u60449 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u60449 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u60449_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u60450 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u60451_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u60451 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u60451 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u60451_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u60452_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u60452 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u60452 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u60452_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u60453 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u60454_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u60454 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u60454 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u60454_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u60455_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u60455 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u60455 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u60455_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u60456 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u60457_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u60457 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u60457 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u60457_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u60458_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u60458 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u60458 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u60458_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u60459 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u60460_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u60460 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u60460 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u60460_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u60461_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u60461 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u60461 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u60461_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u60462 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u60463_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u60463 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u60463 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u60463_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u60464_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u60464 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u60464 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u60464_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u60465 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u60466_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u60466 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u60466 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u60466_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u60467_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u60467 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u60467 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u60467_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u60468 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u60469_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u60469 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u60469 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u60469_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u60470_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u60470 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u60470 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u60470_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u60471 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u60472_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u60472 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u60472 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u60472_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u60473_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u60473 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u60473 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u60473_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u60474 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u60475_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u60475 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u60475 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u60475_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u60476_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u60476 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u60476 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u60476_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u60477_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u60477 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u60477 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u60477_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u60478_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u60478 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u60478 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u60478_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u60479_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u60479 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u60479 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u60479_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u60480_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u60480 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u60480 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u60480_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u60481 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u60482_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u60482 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u60482 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u60482_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u60483_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u60483 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u60483 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u60483_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u60484 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u60485_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u60485 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u60485 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u60485_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u60486_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u60486 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u60486 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u60486_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u60487_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1255px;
  1644. height:1176px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. box-sizing:border-box;
  1648. border-width:1px;
  1649. border-style:solid;
  1650. border-color:rgba(242, 242, 242, 1);
  1651. border-radius:0px;
  1652. -moz-box-shadow:none;
  1653. -webkit-box-shadow:none;
  1654. box-shadow:none;
  1655. }
  1656. #u60487 {
  1657. border-width:0px;
  1658. position:absolute;
  1659. left:333px;
  1660. top:54px;
  1661. width:1255px;
  1662. height:1176px;
  1663. display:flex;
  1664. }
  1665. #u60487 .text {
  1666. position:absolute;
  1667. align-self:center;
  1668. padding:2px 2px 2px 2px;
  1669. box-sizing:border-box;
  1670. width:100%;
  1671. }
  1672. #u60487_text {
  1673. border-width:0px;
  1674. word-wrap:break-word;
  1675. text-transform:none;
  1676. visibility:hidden;
  1677. }
  1678. #u60488 {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:357px;
  1682. top:192px;
  1683. width:1207px;
  1684. height:220px;
  1685. }
  1686. #u60489_img {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:0px;
  1690. top:0px;
  1691. width:47px;
  1692. height:30px;
  1693. }
  1694. #u60489 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:0px;
  1698. top:0px;
  1699. width:47px;
  1700. height:30px;
  1701. display:flex;
  1702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1703. font-weight:400;
  1704. font-style:normal;
  1705. font-size:14px;
  1706. color:#FFFFFF;
  1707. }
  1708. #u60489 .text {
  1709. position:absolute;
  1710. align-self:center;
  1711. padding:2px 2px 2px 2px;
  1712. box-sizing:border-box;
  1713. width:100%;
  1714. }
  1715. #u60489_text {
  1716. border-width:0px;
  1717. word-wrap:break-word;
  1718. text-transform:none;
  1719. }
  1720. #u60490_img {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:0px;
  1724. top:0px;
  1725. width:168px;
  1726. height:30px;
  1727. }
  1728. #u60490 {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:47px;
  1732. top:0px;
  1733. width:168px;
  1734. height:30px;
  1735. display:flex;
  1736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1737. font-weight:400;
  1738. font-style:normal;
  1739. font-size:14px;
  1740. color:#FFFFFF;
  1741. }
  1742. #u60490 .text {
  1743. position:absolute;
  1744. align-self:center;
  1745. padding:2px 2px 2px 2px;
  1746. box-sizing:border-box;
  1747. width:100%;
  1748. }
  1749. #u60490_text {
  1750. border-width:0px;
  1751. word-wrap:break-word;
  1752. text-transform:none;
  1753. }
  1754. #u60491_img {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:0px;
  1758. top:0px;
  1759. width:238px;
  1760. height:30px;
  1761. }
  1762. #u60491 {
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:215px;
  1766. top:0px;
  1767. width:238px;
  1768. height:30px;
  1769. display:flex;
  1770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1771. font-weight:400;
  1772. font-style:normal;
  1773. font-size:14px;
  1774. color:#FFFFFF;
  1775. }
  1776. #u60491 .text {
  1777. position:absolute;
  1778. align-self:center;
  1779. padding:2px 2px 2px 2px;
  1780. box-sizing:border-box;
  1781. width:100%;
  1782. }
  1783. #u60491_text {
  1784. border-width:0px;
  1785. word-wrap:break-word;
  1786. text-transform:none;
  1787. }
  1788. #u60492_img {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:0px;
  1792. top:0px;
  1793. width:194px;
  1794. height:30px;
  1795. }
  1796. #u60492 {
  1797. border-width:0px;
  1798. position:absolute;
  1799. left:453px;
  1800. top:0px;
  1801. width:194px;
  1802. height:30px;
  1803. display:flex;
  1804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1805. font-weight:400;
  1806. font-style:normal;
  1807. font-size:14px;
  1808. color:#FFFFFF;
  1809. }
  1810. #u60492 .text {
  1811. position:absolute;
  1812. align-self:center;
  1813. padding:2px 2px 2px 2px;
  1814. box-sizing:border-box;
  1815. width:100%;
  1816. }
  1817. #u60492_text {
  1818. border-width:0px;
  1819. word-wrap:break-word;
  1820. text-transform:none;
  1821. }
  1822. #u60493_img {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:0px;
  1826. top:0px;
  1827. width:241px;
  1828. height:30px;
  1829. }
  1830. #u60493 {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:647px;
  1834. top:0px;
  1835. width:241px;
  1836. height:30px;
  1837. display:flex;
  1838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1839. font-weight:400;
  1840. font-style:normal;
  1841. font-size:14px;
  1842. color:#FFFFFF;
  1843. }
  1844. #u60493 .text {
  1845. position:absolute;
  1846. align-self:center;
  1847. padding:2px 2px 2px 2px;
  1848. box-sizing:border-box;
  1849. width:100%;
  1850. }
  1851. #u60493_text {
  1852. border-width:0px;
  1853. word-wrap:break-word;
  1854. text-transform:none;
  1855. }
  1856. #u60494_img {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:0px;
  1860. top:0px;
  1861. width:168px;
  1862. height:30px;
  1863. }
  1864. #u60494 {
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:888px;
  1868. top:0px;
  1869. width:168px;
  1870. height:30px;
  1871. display:flex;
  1872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1873. font-weight:400;
  1874. font-style:normal;
  1875. font-size:14px;
  1876. color:#FFFFFF;
  1877. }
  1878. #u60494 .text {
  1879. position:absolute;
  1880. align-self:center;
  1881. padding:2px 2px 2px 2px;
  1882. box-sizing:border-box;
  1883. width:100%;
  1884. }
  1885. #u60494_text {
  1886. border-width:0px;
  1887. word-wrap:break-word;
  1888. text-transform:none;
  1889. }
  1890. #u60495_img {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:0px;
  1894. top:0px;
  1895. width:151px;
  1896. height:30px;
  1897. }
  1898. #u60495 {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:1056px;
  1902. top:0px;
  1903. width:151px;
  1904. height:30px;
  1905. display:flex;
  1906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1907. font-weight:400;
  1908. font-style:normal;
  1909. font-size:14px;
  1910. color:#FFFFFF;
  1911. }
  1912. #u60495 .text {
  1913. position:absolute;
  1914. align-self:center;
  1915. padding:2px 2px 2px 2px;
  1916. box-sizing:border-box;
  1917. width:100%;
  1918. }
  1919. #u60495_text {
  1920. border-width:0px;
  1921. word-wrap:break-word;
  1922. text-transform:none;
  1923. }
  1924. #u60496_img {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:0px;
  1928. top:0px;
  1929. width:47px;
  1930. height:38px;
  1931. }
  1932. #u60496 {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:0px;
  1936. top:30px;
  1937. width:47px;
  1938. height:38px;
  1939. display:flex;
  1940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1941. font-weight:400;
  1942. font-style:normal;
  1943. font-size:14px;
  1944. }
  1945. #u60496 .text {
  1946. position:absolute;
  1947. align-self:center;
  1948. padding:2px 2px 2px 2px;
  1949. box-sizing:border-box;
  1950. width:100%;
  1951. }
  1952. #u60496_text {
  1953. border-width:0px;
  1954. word-wrap:break-word;
  1955. text-transform:none;
  1956. }
  1957. #u60497_img {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:0px;
  1961. top:0px;
  1962. width:168px;
  1963. height:38px;
  1964. }
  1965. #u60497 {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:47px;
  1969. top:30px;
  1970. width:168px;
  1971. height:38px;
  1972. display:flex;
  1973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1974. font-weight:400;
  1975. font-style:normal;
  1976. font-size:14px;
  1977. }
  1978. #u60497 .text {
  1979. position:absolute;
  1980. align-self:center;
  1981. padding:2px 2px 2px 2px;
  1982. box-sizing:border-box;
  1983. width:100%;
  1984. }
  1985. #u60497_text {
  1986. border-width:0px;
  1987. word-wrap:break-word;
  1988. text-transform:none;
  1989. visibility:hidden;
  1990. }
  1991. #u60498_img {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:0px;
  1995. top:0px;
  1996. width:238px;
  1997. height:38px;
  1998. }
  1999. #u60498 {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:215px;
  2003. top:30px;
  2004. width:238px;
  2005. height:38px;
  2006. display:flex;
  2007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2008. font-weight:400;
  2009. font-style:normal;
  2010. font-size:14px;
  2011. }
  2012. #u60498 .text {
  2013. position:absolute;
  2014. align-self:center;
  2015. padding:2px 2px 2px 2px;
  2016. box-sizing:border-box;
  2017. width:100%;
  2018. }
  2019. #u60498_text {
  2020. border-width:0px;
  2021. word-wrap:break-word;
  2022. text-transform:none;
  2023. visibility:hidden;
  2024. }
  2025. #u60499_img {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:0px;
  2029. top:0px;
  2030. width:194px;
  2031. height:38px;
  2032. }
  2033. #u60499 {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:453px;
  2037. top:30px;
  2038. width:194px;
  2039. height:38px;
  2040. display:flex;
  2041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2042. font-weight:400;
  2043. font-style:normal;
  2044. font-size:14px;
  2045. }
  2046. #u60499 .text {
  2047. position:absolute;
  2048. align-self:center;
  2049. padding:2px 2px 2px 2px;
  2050. box-sizing:border-box;
  2051. width:100%;
  2052. }
  2053. #u60499_text {
  2054. border-width:0px;
  2055. word-wrap:break-word;
  2056. text-transform:none;
  2057. visibility:hidden;
  2058. }
  2059. #u60500_img {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:0px;
  2063. top:0px;
  2064. width:241px;
  2065. height:38px;
  2066. }
  2067. #u60500 {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:647px;
  2071. top:30px;
  2072. width:241px;
  2073. height:38px;
  2074. display:flex;
  2075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2076. font-weight:400;
  2077. font-style:normal;
  2078. font-size:14px;
  2079. }
  2080. #u60500 .text {
  2081. position:absolute;
  2082. align-self:center;
  2083. padding:2px 2px 2px 2px;
  2084. box-sizing:border-box;
  2085. width:100%;
  2086. }
  2087. #u60500_text {
  2088. border-width:0px;
  2089. word-wrap:break-word;
  2090. text-transform:none;
  2091. visibility:hidden;
  2092. }
  2093. #u60501_img {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:0px;
  2097. top:0px;
  2098. width:168px;
  2099. height:38px;
  2100. }
  2101. #u60501 {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:888px;
  2105. top:30px;
  2106. width:168px;
  2107. height:38px;
  2108. display:flex;
  2109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2110. font-weight:400;
  2111. font-style:normal;
  2112. font-size:14px;
  2113. }
  2114. #u60501 .text {
  2115. position:absolute;
  2116. align-self:center;
  2117. padding:2px 2px 2px 2px;
  2118. box-sizing:border-box;
  2119. width:100%;
  2120. }
  2121. #u60501_text {
  2122. border-width:0px;
  2123. word-wrap:break-word;
  2124. text-transform:none;
  2125. visibility:hidden;
  2126. }
  2127. #u60502_img {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:0px;
  2131. top:0px;
  2132. width:151px;
  2133. height:38px;
  2134. }
  2135. #u60502 {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:1056px;
  2139. top:30px;
  2140. width:151px;
  2141. height:38px;
  2142. display:flex;
  2143. font-size:14px;
  2144. }
  2145. #u60502 .text {
  2146. position:absolute;
  2147. align-self:center;
  2148. padding:2px 2px 2px 2px;
  2149. box-sizing:border-box;
  2150. width:100%;
  2151. }
  2152. #u60502_text {
  2153. border-width:0px;
  2154. word-wrap:break-word;
  2155. text-transform:none;
  2156. }
  2157. #u60503_img {
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:0px;
  2161. top:0px;
  2162. width:47px;
  2163. height:38px;
  2164. }
  2165. #u60503 {
  2166. border-width:0px;
  2167. position:absolute;
  2168. left:0px;
  2169. top:68px;
  2170. width:47px;
  2171. height:38px;
  2172. display:flex;
  2173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2174. font-weight:400;
  2175. font-style:normal;
  2176. font-size:14px;
  2177. }
  2178. #u60503 .text {
  2179. position:absolute;
  2180. align-self:center;
  2181. padding:2px 2px 2px 2px;
  2182. box-sizing:border-box;
  2183. width:100%;
  2184. }
  2185. #u60503_text {
  2186. border-width:0px;
  2187. word-wrap:break-word;
  2188. text-transform:none;
  2189. visibility:hidden;
  2190. }
  2191. #u60504_img {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:0px;
  2195. top:0px;
  2196. width:168px;
  2197. height:38px;
  2198. }
  2199. #u60504 {
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:47px;
  2203. top:68px;
  2204. width:168px;
  2205. height:38px;
  2206. display:flex;
  2207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2208. font-weight:400;
  2209. font-style:normal;
  2210. font-size:14px;
  2211. }
  2212. #u60504 .text {
  2213. position:absolute;
  2214. align-self:center;
  2215. padding:2px 2px 2px 2px;
  2216. box-sizing:border-box;
  2217. width:100%;
  2218. }
  2219. #u60504_text {
  2220. border-width:0px;
  2221. word-wrap:break-word;
  2222. text-transform:none;
  2223. visibility:hidden;
  2224. }
  2225. #u60505_img {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:0px;
  2229. top:0px;
  2230. width:238px;
  2231. height:38px;
  2232. }
  2233. #u60505 {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:215px;
  2237. top:68px;
  2238. width:238px;
  2239. height:38px;
  2240. display:flex;
  2241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2242. font-weight:400;
  2243. font-style:normal;
  2244. font-size:14px;
  2245. }
  2246. #u60505 .text {
  2247. position:absolute;
  2248. align-self:center;
  2249. padding:2px 2px 2px 2px;
  2250. box-sizing:border-box;
  2251. width:100%;
  2252. }
  2253. #u60505_text {
  2254. border-width:0px;
  2255. word-wrap:break-word;
  2256. text-transform:none;
  2257. visibility:hidden;
  2258. }
  2259. #u60506_img {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:0px;
  2263. top:0px;
  2264. width:194px;
  2265. height:38px;
  2266. }
  2267. #u60506 {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:453px;
  2271. top:68px;
  2272. width:194px;
  2273. height:38px;
  2274. display:flex;
  2275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2276. font-weight:400;
  2277. font-style:normal;
  2278. font-size:14px;
  2279. }
  2280. #u60506 .text {
  2281. position:absolute;
  2282. align-self:center;
  2283. padding:2px 2px 2px 2px;
  2284. box-sizing:border-box;
  2285. width:100%;
  2286. }
  2287. #u60506_text {
  2288. border-width:0px;
  2289. word-wrap:break-word;
  2290. text-transform:none;
  2291. visibility:hidden;
  2292. }
  2293. #u60507_img {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:0px;
  2297. top:0px;
  2298. width:241px;
  2299. height:38px;
  2300. }
  2301. #u60507 {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:647px;
  2305. top:68px;
  2306. width:241px;
  2307. height:38px;
  2308. display:flex;
  2309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2310. font-weight:400;
  2311. font-style:normal;
  2312. font-size:14px;
  2313. }
  2314. #u60507 .text {
  2315. position:absolute;
  2316. align-self:center;
  2317. padding:2px 2px 2px 2px;
  2318. box-sizing:border-box;
  2319. width:100%;
  2320. }
  2321. #u60507_text {
  2322. border-width:0px;
  2323. word-wrap:break-word;
  2324. text-transform:none;
  2325. visibility:hidden;
  2326. }
  2327. #u60508_img {
  2328. border-width:0px;
  2329. position:absolute;
  2330. left:0px;
  2331. top:0px;
  2332. width:168px;
  2333. height:38px;
  2334. }
  2335. #u60508 {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:888px;
  2339. top:68px;
  2340. width:168px;
  2341. height:38px;
  2342. display:flex;
  2343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2344. font-weight:400;
  2345. font-style:normal;
  2346. font-size:14px;
  2347. }
  2348. #u60508 .text {
  2349. position:absolute;
  2350. align-self:center;
  2351. padding:2px 2px 2px 2px;
  2352. box-sizing:border-box;
  2353. width:100%;
  2354. }
  2355. #u60508_text {
  2356. border-width:0px;
  2357. word-wrap:break-word;
  2358. text-transform:none;
  2359. visibility:hidden;
  2360. }
  2361. #u60509_img {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:0px;
  2365. top:0px;
  2366. width:151px;
  2367. height:38px;
  2368. }
  2369. #u60509 {
  2370. border-width:0px;
  2371. position:absolute;
  2372. left:1056px;
  2373. top:68px;
  2374. width:151px;
  2375. height:38px;
  2376. display:flex;
  2377. font-size:14px;
  2378. }
  2379. #u60509 .text {
  2380. position:absolute;
  2381. align-self:center;
  2382. padding:2px 2px 2px 2px;
  2383. box-sizing:border-box;
  2384. width:100%;
  2385. }
  2386. #u60509_text {
  2387. border-width:0px;
  2388. word-wrap:break-word;
  2389. text-transform:none;
  2390. visibility:hidden;
  2391. }
  2392. #u60510_img {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:0px;
  2396. top:0px;
  2397. width:47px;
  2398. height:38px;
  2399. }
  2400. #u60510 {
  2401. border-width:0px;
  2402. position:absolute;
  2403. left:0px;
  2404. top:106px;
  2405. width:47px;
  2406. height:38px;
  2407. display:flex;
  2408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2409. font-weight:400;
  2410. font-style:normal;
  2411. font-size:14px;
  2412. }
  2413. #u60510 .text {
  2414. position:absolute;
  2415. align-self:center;
  2416. padding:2px 2px 2px 2px;
  2417. box-sizing:border-box;
  2418. width:100%;
  2419. }
  2420. #u60510_text {
  2421. border-width:0px;
  2422. word-wrap:break-word;
  2423. text-transform:none;
  2424. visibility:hidden;
  2425. }
  2426. #u60511_img {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:0px;
  2430. top:0px;
  2431. width:168px;
  2432. height:38px;
  2433. }
  2434. #u60511 {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:47px;
  2438. top:106px;
  2439. width:168px;
  2440. height:38px;
  2441. display:flex;
  2442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2443. font-weight:400;
  2444. font-style:normal;
  2445. font-size:14px;
  2446. }
  2447. #u60511 .text {
  2448. position:absolute;
  2449. align-self:center;
  2450. padding:2px 2px 2px 2px;
  2451. box-sizing:border-box;
  2452. width:100%;
  2453. }
  2454. #u60511_text {
  2455. border-width:0px;
  2456. word-wrap:break-word;
  2457. text-transform:none;
  2458. visibility:hidden;
  2459. }
  2460. #u60512_img {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:0px;
  2464. top:0px;
  2465. width:238px;
  2466. height:38px;
  2467. }
  2468. #u60512 {
  2469. border-width:0px;
  2470. position:absolute;
  2471. left:215px;
  2472. top:106px;
  2473. width:238px;
  2474. height:38px;
  2475. display:flex;
  2476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2477. font-weight:400;
  2478. font-style:normal;
  2479. font-size:14px;
  2480. }
  2481. #u60512 .text {
  2482. position:absolute;
  2483. align-self:center;
  2484. padding:2px 2px 2px 2px;
  2485. box-sizing:border-box;
  2486. width:100%;
  2487. }
  2488. #u60512_text {
  2489. border-width:0px;
  2490. word-wrap:break-word;
  2491. text-transform:none;
  2492. visibility:hidden;
  2493. }
  2494. #u60513_img {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:0px;
  2498. top:0px;
  2499. width:194px;
  2500. height:38px;
  2501. }
  2502. #u60513 {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:453px;
  2506. top:106px;
  2507. width:194px;
  2508. height:38px;
  2509. display:flex;
  2510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2511. font-weight:400;
  2512. font-style:normal;
  2513. font-size:14px;
  2514. }
  2515. #u60513 .text {
  2516. position:absolute;
  2517. align-self:center;
  2518. padding:2px 2px 2px 2px;
  2519. box-sizing:border-box;
  2520. width:100%;
  2521. }
  2522. #u60513_text {
  2523. border-width:0px;
  2524. word-wrap:break-word;
  2525. text-transform:none;
  2526. visibility:hidden;
  2527. }
  2528. #u60514_img {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:0px;
  2532. top:0px;
  2533. width:241px;
  2534. height:38px;
  2535. }
  2536. #u60514 {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:647px;
  2540. top:106px;
  2541. width:241px;
  2542. height:38px;
  2543. display:flex;
  2544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2545. font-weight:400;
  2546. font-style:normal;
  2547. font-size:14px;
  2548. }
  2549. #u60514 .text {
  2550. position:absolute;
  2551. align-self:center;
  2552. padding:2px 2px 2px 2px;
  2553. box-sizing:border-box;
  2554. width:100%;
  2555. }
  2556. #u60514_text {
  2557. border-width:0px;
  2558. word-wrap:break-word;
  2559. text-transform:none;
  2560. visibility:hidden;
  2561. }
  2562. #u60515_img {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:0px;
  2566. top:0px;
  2567. width:168px;
  2568. height:38px;
  2569. }
  2570. #u60515 {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:888px;
  2574. top:106px;
  2575. width:168px;
  2576. height:38px;
  2577. display:flex;
  2578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2579. font-weight:400;
  2580. font-style:normal;
  2581. font-size:14px;
  2582. }
  2583. #u60515 .text {
  2584. position:absolute;
  2585. align-self:center;
  2586. padding:2px 2px 2px 2px;
  2587. box-sizing:border-box;
  2588. width:100%;
  2589. }
  2590. #u60515_text {
  2591. border-width:0px;
  2592. word-wrap:break-word;
  2593. text-transform:none;
  2594. visibility:hidden;
  2595. }
  2596. #u60516_img {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:0px;
  2600. top:0px;
  2601. width:151px;
  2602. height:38px;
  2603. }
  2604. #u60516 {
  2605. border-width:0px;
  2606. position:absolute;
  2607. left:1056px;
  2608. top:106px;
  2609. width:151px;
  2610. height:38px;
  2611. display:flex;
  2612. font-size:14px;
  2613. }
  2614. #u60516 .text {
  2615. position:absolute;
  2616. align-self:center;
  2617. padding:2px 2px 2px 2px;
  2618. box-sizing:border-box;
  2619. width:100%;
  2620. }
  2621. #u60516_text {
  2622. border-width:0px;
  2623. word-wrap:break-word;
  2624. text-transform:none;
  2625. visibility:hidden;
  2626. }
  2627. #u60517_img {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:0px;
  2631. top:0px;
  2632. width:47px;
  2633. height:38px;
  2634. }
  2635. #u60517 {
  2636. border-width:0px;
  2637. position:absolute;
  2638. left:0px;
  2639. top:144px;
  2640. width:47px;
  2641. height:38px;
  2642. display:flex;
  2643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2644. font-weight:400;
  2645. font-style:normal;
  2646. font-size:14px;
  2647. }
  2648. #u60517 .text {
  2649. position:absolute;
  2650. align-self:center;
  2651. padding:2px 2px 2px 2px;
  2652. box-sizing:border-box;
  2653. width:100%;
  2654. }
  2655. #u60517_text {
  2656. border-width:0px;
  2657. word-wrap:break-word;
  2658. text-transform:none;
  2659. visibility:hidden;
  2660. }
  2661. #u60518_img {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:0px;
  2665. top:0px;
  2666. width:168px;
  2667. height:38px;
  2668. }
  2669. #u60518 {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:47px;
  2673. top:144px;
  2674. width:168px;
  2675. height:38px;
  2676. display:flex;
  2677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2678. font-weight:400;
  2679. font-style:normal;
  2680. font-size:14px;
  2681. }
  2682. #u60518 .text {
  2683. position:absolute;
  2684. align-self:center;
  2685. padding:2px 2px 2px 2px;
  2686. box-sizing:border-box;
  2687. width:100%;
  2688. }
  2689. #u60518_text {
  2690. border-width:0px;
  2691. word-wrap:break-word;
  2692. text-transform:none;
  2693. visibility:hidden;
  2694. }
  2695. #u60519_img {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:0px;
  2699. top:0px;
  2700. width:238px;
  2701. height:38px;
  2702. }
  2703. #u60519 {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:215px;
  2707. top:144px;
  2708. width:238px;
  2709. height:38px;
  2710. display:flex;
  2711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2712. font-weight:400;
  2713. font-style:normal;
  2714. font-size:14px;
  2715. }
  2716. #u60519 .text {
  2717. position:absolute;
  2718. align-self:center;
  2719. padding:2px 2px 2px 2px;
  2720. box-sizing:border-box;
  2721. width:100%;
  2722. }
  2723. #u60519_text {
  2724. border-width:0px;
  2725. word-wrap:break-word;
  2726. text-transform:none;
  2727. visibility:hidden;
  2728. }
  2729. #u60520_img {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:0px;
  2733. top:0px;
  2734. width:194px;
  2735. height:38px;
  2736. }
  2737. #u60520 {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:453px;
  2741. top:144px;
  2742. width:194px;
  2743. height:38px;
  2744. display:flex;
  2745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2746. font-weight:400;
  2747. font-style:normal;
  2748. font-size:14px;
  2749. }
  2750. #u60520 .text {
  2751. position:absolute;
  2752. align-self:center;
  2753. padding:2px 2px 2px 2px;
  2754. box-sizing:border-box;
  2755. width:100%;
  2756. }
  2757. #u60520_text {
  2758. border-width:0px;
  2759. word-wrap:break-word;
  2760. text-transform:none;
  2761. visibility:hidden;
  2762. }
  2763. #u60521_img {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:241px;
  2769. height:38px;
  2770. }
  2771. #u60521 {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:647px;
  2775. top:144px;
  2776. width:241px;
  2777. height:38px;
  2778. display:flex;
  2779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2780. font-weight:400;
  2781. font-style:normal;
  2782. font-size:14px;
  2783. }
  2784. #u60521 .text {
  2785. position:absolute;
  2786. align-self:center;
  2787. padding:2px 2px 2px 2px;
  2788. box-sizing:border-box;
  2789. width:100%;
  2790. }
  2791. #u60521_text {
  2792. border-width:0px;
  2793. word-wrap:break-word;
  2794. text-transform:none;
  2795. visibility:hidden;
  2796. }
  2797. #u60522_img {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:0px;
  2802. width:168px;
  2803. height:38px;
  2804. }
  2805. #u60522 {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:888px;
  2809. top:144px;
  2810. width:168px;
  2811. height:38px;
  2812. display:flex;
  2813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2814. font-weight:400;
  2815. font-style:normal;
  2816. font-size:14px;
  2817. }
  2818. #u60522 .text {
  2819. position:absolute;
  2820. align-self:center;
  2821. padding:2px 2px 2px 2px;
  2822. box-sizing:border-box;
  2823. width:100%;
  2824. }
  2825. #u60522_text {
  2826. border-width:0px;
  2827. word-wrap:break-word;
  2828. text-transform:none;
  2829. visibility:hidden;
  2830. }
  2831. #u60523_img {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:0px;
  2835. top:0px;
  2836. width:151px;
  2837. height:38px;
  2838. }
  2839. #u60523 {
  2840. border-width:0px;
  2841. position:absolute;
  2842. left:1056px;
  2843. top:144px;
  2844. width:151px;
  2845. height:38px;
  2846. display:flex;
  2847. font-size:14px;
  2848. }
  2849. #u60523 .text {
  2850. position:absolute;
  2851. align-self:center;
  2852. padding:2px 2px 2px 2px;
  2853. box-sizing:border-box;
  2854. width:100%;
  2855. }
  2856. #u60523_text {
  2857. border-width:0px;
  2858. word-wrap:break-word;
  2859. text-transform:none;
  2860. visibility:hidden;
  2861. }
  2862. #u60524_img {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:0px;
  2866. top:0px;
  2867. width:47px;
  2868. height:38px;
  2869. }
  2870. #u60524 {
  2871. border-width:0px;
  2872. position:absolute;
  2873. left:0px;
  2874. top:182px;
  2875. width:47px;
  2876. height:38px;
  2877. display:flex;
  2878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2879. font-weight:400;
  2880. font-style:normal;
  2881. font-size:14px;
  2882. }
  2883. #u60524 .text {
  2884. position:absolute;
  2885. align-self:center;
  2886. padding:2px 2px 2px 2px;
  2887. box-sizing:border-box;
  2888. width:100%;
  2889. }
  2890. #u60524_text {
  2891. border-width:0px;
  2892. word-wrap:break-word;
  2893. text-transform:none;
  2894. visibility:hidden;
  2895. }
  2896. #u60525_img {
  2897. border-width:0px;
  2898. position:absolute;
  2899. left:0px;
  2900. top:0px;
  2901. width:168px;
  2902. height:38px;
  2903. }
  2904. #u60525 {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:47px;
  2908. top:182px;
  2909. width:168px;
  2910. height:38px;
  2911. display:flex;
  2912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2913. font-weight:400;
  2914. font-style:normal;
  2915. font-size:14px;
  2916. }
  2917. #u60525 .text {
  2918. position:absolute;
  2919. align-self:center;
  2920. padding:2px 2px 2px 2px;
  2921. box-sizing:border-box;
  2922. width:100%;
  2923. }
  2924. #u60525_text {
  2925. border-width:0px;
  2926. word-wrap:break-word;
  2927. text-transform:none;
  2928. visibility:hidden;
  2929. }
  2930. #u60526_img {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:0px;
  2934. top:0px;
  2935. width:238px;
  2936. height:38px;
  2937. }
  2938. #u60526 {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:215px;
  2942. top:182px;
  2943. width:238px;
  2944. height:38px;
  2945. display:flex;
  2946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2947. font-weight:400;
  2948. font-style:normal;
  2949. font-size:14px;
  2950. }
  2951. #u60526 .text {
  2952. position:absolute;
  2953. align-self:center;
  2954. padding:2px 2px 2px 2px;
  2955. box-sizing:border-box;
  2956. width:100%;
  2957. }
  2958. #u60526_text {
  2959. border-width:0px;
  2960. word-wrap:break-word;
  2961. text-transform:none;
  2962. visibility:hidden;
  2963. }
  2964. #u60527_img {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:0px;
  2968. top:0px;
  2969. width:194px;
  2970. height:38px;
  2971. }
  2972. #u60527 {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:453px;
  2976. top:182px;
  2977. width:194px;
  2978. height:38px;
  2979. display:flex;
  2980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2981. font-weight:400;
  2982. font-style:normal;
  2983. font-size:14px;
  2984. }
  2985. #u60527 .text {
  2986. position:absolute;
  2987. align-self:center;
  2988. padding:2px 2px 2px 2px;
  2989. box-sizing:border-box;
  2990. width:100%;
  2991. }
  2992. #u60527_text {
  2993. border-width:0px;
  2994. word-wrap:break-word;
  2995. text-transform:none;
  2996. visibility:hidden;
  2997. }
  2998. #u60528_img {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:0px;
  3002. top:0px;
  3003. width:241px;
  3004. height:38px;
  3005. }
  3006. #u60528 {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:647px;
  3010. top:182px;
  3011. width:241px;
  3012. height:38px;
  3013. display:flex;
  3014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3015. font-weight:400;
  3016. font-style:normal;
  3017. font-size:14px;
  3018. }
  3019. #u60528 .text {
  3020. position:absolute;
  3021. align-self:center;
  3022. padding:2px 2px 2px 2px;
  3023. box-sizing:border-box;
  3024. width:100%;
  3025. }
  3026. #u60528_text {
  3027. border-width:0px;
  3028. word-wrap:break-word;
  3029. text-transform:none;
  3030. visibility:hidden;
  3031. }
  3032. #u60529_img {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:0px;
  3036. top:0px;
  3037. width:168px;
  3038. height:38px;
  3039. }
  3040. #u60529 {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:888px;
  3044. top:182px;
  3045. width:168px;
  3046. height:38px;
  3047. display:flex;
  3048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3049. font-weight:400;
  3050. font-style:normal;
  3051. font-size:14px;
  3052. }
  3053. #u60529 .text {
  3054. position:absolute;
  3055. align-self:center;
  3056. padding:2px 2px 2px 2px;
  3057. box-sizing:border-box;
  3058. width:100%;
  3059. }
  3060. #u60529_text {
  3061. border-width:0px;
  3062. word-wrap:break-word;
  3063. text-transform:none;
  3064. visibility:hidden;
  3065. }
  3066. #u60530_img {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:0px;
  3070. top:0px;
  3071. width:151px;
  3072. height:38px;
  3073. }
  3074. #u60530 {
  3075. border-width:0px;
  3076. position:absolute;
  3077. left:1056px;
  3078. top:182px;
  3079. width:151px;
  3080. height:38px;
  3081. display:flex;
  3082. font-size:14px;
  3083. }
  3084. #u60530 .text {
  3085. position:absolute;
  3086. align-self:center;
  3087. padding:2px 2px 2px 2px;
  3088. box-sizing:border-box;
  3089. width:100%;
  3090. }
  3091. #u60530_text {
  3092. border-width:0px;
  3093. word-wrap:break-word;
  3094. text-transform:none;
  3095. visibility:hidden;
  3096. }
  3097. #u60531_div {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:0px;
  3101. top:0px;
  3102. width:80px;
  3103. height:30px;
  3104. background:inherit;
  3105. background-color:rgba(24, 144, 255, 1);
  3106. border:none;
  3107. border-radius:4px;
  3108. -moz-box-shadow:none;
  3109. -webkit-box-shadow:none;
  3110. box-shadow:none;
  3111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3112. font-weight:400;
  3113. font-style:normal;
  3114. font-size:14px;
  3115. color:#FFFFFF;
  3116. }
  3117. #u60531 {
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:357px;
  3121. top:154px;
  3122. width:80px;
  3123. height:30px;
  3124. display:flex;
  3125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3126. font-weight:400;
  3127. font-style:normal;
  3128. font-size:14px;
  3129. color:#FFFFFF;
  3130. }
  3131. #u60531 .text {
  3132. position:absolute;
  3133. align-self:center;
  3134. padding:2px 2px 2px 2px;
  3135. box-sizing:border-box;
  3136. width:100%;
  3137. }
  3138. #u60531_text {
  3139. border-width:0px;
  3140. word-wrap:break-word;
  3141. text-transform:none;
  3142. }
  3143. #u60532 {
  3144. border-width:0px;
  3145. position:absolute;
  3146. left:0px;
  3147. top:0px;
  3148. width:0px;
  3149. height:0px;
  3150. }
  3151. #u60533_div {
  3152. border-width:0px;
  3153. position:absolute;
  3154. left:0px;
  3155. top:0px;
  3156. width:160px;
  3157. height:30px;
  3158. background:inherit;
  3159. background-color:rgba(255, 255, 255, 1);
  3160. box-sizing:border-box;
  3161. border-width:1px;
  3162. border-style:solid;
  3163. border-color:rgba(201, 201, 201, 1);
  3164. border-radius:4px;
  3165. -moz-box-shadow:none;
  3166. -webkit-box-shadow:none;
  3167. box-shadow:none;
  3168. font-family:'Microsoft YaHei', sans-serif;
  3169. font-weight:400;
  3170. font-style:normal;
  3171. font-size:14px;
  3172. color:#CCCCCC;
  3173. text-align:left;
  3174. }
  3175. #u60533 {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:527px;
  3179. top:103px;
  3180. width:160px;
  3181. height:30px;
  3182. display:flex;
  3183. font-family:'Microsoft YaHei', sans-serif;
  3184. font-weight:400;
  3185. font-style:normal;
  3186. font-size:14px;
  3187. color:#CCCCCC;
  3188. text-align:left;
  3189. }
  3190. #u60533 .text {
  3191. position:absolute;
  3192. align-self:center;
  3193. padding:2px 8px 2px 8px;
  3194. box-sizing:border-box;
  3195. width:100%;
  3196. }
  3197. #u60533_text {
  3198. border-width:0px;
  3199. word-wrap:break-word;
  3200. text-transform:none;
  3201. visibility:hidden;
  3202. }
  3203. #u60534_input {
  3204. position:absolute;
  3205. left:0px;
  3206. top:0px;
  3207. width:150px;
  3208. height:28px;
  3209. padding:2px 2px 2px 2px;
  3210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3211. font-weight:400;
  3212. font-style:normal;
  3213. font-size:14px;
  3214. letter-spacing:normal;
  3215. color:#000000;
  3216. vertical-align:none;
  3217. text-align:left;
  3218. text-transform:none;
  3219. background-color:transparent;
  3220. border-color:transparent;
  3221. }
  3222. #u60534_input.disabled {
  3223. position:absolute;
  3224. left:0px;
  3225. top:0px;
  3226. width:150px;
  3227. height:28px;
  3228. padding:2px 2px 2px 2px;
  3229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3230. font-weight:400;
  3231. font-style:normal;
  3232. font-size:14px;
  3233. letter-spacing:normal;
  3234. color:#000000;
  3235. vertical-align:none;
  3236. text-align:left;
  3237. text-transform:none;
  3238. background-color:transparent;
  3239. border-color:transparent;
  3240. }
  3241. #u60534_div {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:0px;
  3245. top:0px;
  3246. width:150px;
  3247. height:28px;
  3248. background:inherit;
  3249. background-color:rgba(255, 255, 255, 1);
  3250. border:none;
  3251. border-radius:0px;
  3252. -moz-box-shadow:none;
  3253. -webkit-box-shadow:none;
  3254. box-shadow:none;
  3255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3256. font-weight:400;
  3257. font-style:normal;
  3258. font-size:14px;
  3259. }
  3260. #u60534 {
  3261. border-width:0px;
  3262. position:absolute;
  3263. left:533px;
  3264. top:104px;
  3265. width:150px;
  3266. height:28px;
  3267. display:flex;
  3268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3269. font-weight:400;
  3270. font-style:normal;
  3271. font-size:14px;
  3272. }
  3273. #u60534 .text {
  3274. position:absolute;
  3275. align-self:center;
  3276. padding:2px 2px 2px 2px;
  3277. box-sizing:border-box;
  3278. width:100%;
  3279. }
  3280. #u60534_div.disabled {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:0px;
  3284. top:0px;
  3285. width:150px;
  3286. height:28px;
  3287. background:inherit;
  3288. background-color:rgba(240, 240, 240, 1);
  3289. border:none;
  3290. border-radius:0px;
  3291. -moz-box-shadow:none;
  3292. -webkit-box-shadow:none;
  3293. box-shadow:none;
  3294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3295. font-weight:400;
  3296. font-style:normal;
  3297. font-size:14px;
  3298. }
  3299. #u60534.disabled {
  3300. }
  3301. #u60535 {
  3302. border-width:0px;
  3303. position:absolute;
  3304. left:0px;
  3305. top:0px;
  3306. width:0px;
  3307. height:0px;
  3308. }
  3309. #u60536_div {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:0px;
  3313. top:0px;
  3314. width:60px;
  3315. height:30px;
  3316. background:inherit;
  3317. background-color:rgba(24, 144, 255, 1);
  3318. border:none;
  3319. border-radius:4px;
  3320. -moz-box-shadow:none;
  3321. -webkit-box-shadow:none;
  3322. box-shadow:none;
  3323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3324. font-weight:400;
  3325. font-style:normal;
  3326. font-size:14px;
  3327. color:#FFFFFF;
  3328. }
  3329. #u60536 {
  3330. border-width:0px;
  3331. position:absolute;
  3332. left:877px;
  3333. top:103px;
  3334. width:60px;
  3335. height:30px;
  3336. display:flex;
  3337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3338. font-weight:400;
  3339. font-style:normal;
  3340. font-size:14px;
  3341. color:#FFFFFF;
  3342. }
  3343. #u60536 .text {
  3344. position:absolute;
  3345. align-self:center;
  3346. padding:2px 2px 2px 2px;
  3347. box-sizing:border-box;
  3348. width:100%;
  3349. }
  3350. #u60536_text {
  3351. border-width:0px;
  3352. word-wrap:break-word;
  3353. text-transform:none;
  3354. }
  3355. #u60537_div {
  3356. border-width:0px;
  3357. position:absolute;
  3358. left:0px;
  3359. top:0px;
  3360. width:60px;
  3361. height:30px;
  3362. background:inherit;
  3363. background-color:rgba(255, 255, 255, 1);
  3364. box-sizing:border-box;
  3365. border-width:1px;
  3366. border-style:solid;
  3367. border-color:rgba(170, 170, 170, 1);
  3368. border-radius:4px;
  3369. -moz-box-shadow:none;
  3370. -webkit-box-shadow:none;
  3371. box-shadow:none;
  3372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3373. font-weight:400;
  3374. font-style:normal;
  3375. font-size:14px;
  3376. }
  3377. #u60537 {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:947px;
  3381. top:103px;
  3382. width:60px;
  3383. height:30px;
  3384. display:flex;
  3385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3386. font-weight:400;
  3387. font-style:normal;
  3388. font-size:14px;
  3389. }
  3390. #u60537 .text {
  3391. position:absolute;
  3392. align-self:center;
  3393. padding:2px 2px 2px 2px;
  3394. box-sizing:border-box;
  3395. width:100%;
  3396. }
  3397. #u60537_text {
  3398. border-width:0px;
  3399. word-wrap:break-word;
  3400. text-transform:none;
  3401. }
  3402. #u60538 {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:0px;
  3406. top:0px;
  3407. width:0px;
  3408. height:0px;
  3409. }
  3410. #u60539_div {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:0px;
  3414. top:0px;
  3415. width:160px;
  3416. height:30px;
  3417. background:inherit;
  3418. background-color:rgba(255, 255, 255, 1);
  3419. box-sizing:border-box;
  3420. border-width:1px;
  3421. border-style:solid;
  3422. border-color:rgba(215, 215, 215, 1);
  3423. border-radius:4px;
  3424. -moz-box-shadow:none;
  3425. -webkit-box-shadow:none;
  3426. box-shadow:none;
  3427. font-size:14px;
  3428. }
  3429. #u60539 {
  3430. border-width:0px;
  3431. position:absolute;
  3432. left:697px;
  3433. top:103px;
  3434. width:160px;
  3435. height:30px;
  3436. display:flex;
  3437. font-size:14px;
  3438. }
  3439. #u60539 .text {
  3440. position:absolute;
  3441. align-self:center;
  3442. padding:2px 2px 2px 2px;
  3443. box-sizing:border-box;
  3444. width:100%;
  3445. }
  3446. #u60539_text {
  3447. border-width:0px;
  3448. word-wrap:break-word;
  3449. text-transform:none;
  3450. visibility:hidden;
  3451. }
  3452. #u60540_input {
  3453. position:absolute;
  3454. left:0px;
  3455. top:0px;
  3456. width:153px;
  3457. height:23px;
  3458. padding:2px 2px 2px 2px;
  3459. font-family:'ArialMT', 'Arial', sans-serif;
  3460. font-weight:400;
  3461. font-style:normal;
  3462. font-size:14px;
  3463. letter-spacing:normal;
  3464. color:#AAAAAA;
  3465. vertical-align:none;
  3466. text-align:left;
  3467. text-transform:none;
  3468. background-color:transparent;
  3469. border-color:transparent;
  3470. }
  3471. #u60540_input.disabled {
  3472. position:absolute;
  3473. left:0px;
  3474. top:0px;
  3475. width:153px;
  3476. height:23px;
  3477. padding:2px 2px 2px 2px;
  3478. font-family:'ArialMT', 'Arial', sans-serif;
  3479. font-weight:400;
  3480. font-style:normal;
  3481. font-size:14px;
  3482. letter-spacing:normal;
  3483. color:#AAAAAA;
  3484. vertical-align:none;
  3485. text-align:left;
  3486. text-transform:none;
  3487. background-color:transparent;
  3488. border-color:transparent;
  3489. }
  3490. #u60540_div {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:0px;
  3494. top:0px;
  3495. width:153px;
  3496. height:23px;
  3497. background:inherit;
  3498. background-color:rgba(255, 255, 255, 1);
  3499. border:none;
  3500. border-radius:0px;
  3501. -moz-box-shadow:none;
  3502. -webkit-box-shadow:none;
  3503. box-shadow:none;
  3504. font-size:14px;
  3505. color:#AAAAAA;
  3506. }
  3507. #u60540 {
  3508. border-width:0px;
  3509. position:absolute;
  3510. left:702px;
  3511. top:105px;
  3512. width:153px;
  3513. height:23px;
  3514. display:flex;
  3515. font-size:14px;
  3516. color:#AAAAAA;
  3517. }
  3518. #u60540 .text {
  3519. position:absolute;
  3520. align-self:flex-start;
  3521. padding:2px 2px 2px 2px;
  3522. box-sizing:border-box;
  3523. width:100%;
  3524. }
  3525. #u60540_div.disabled {
  3526. border-width:0px;
  3527. position:absolute;
  3528. left:0px;
  3529. top:0px;
  3530. width:153px;
  3531. height:23px;
  3532. background:inherit;
  3533. background-color:rgba(240, 240, 240, 1);
  3534. border:none;
  3535. border-radius:0px;
  3536. -moz-box-shadow:none;
  3537. -webkit-box-shadow:none;
  3538. box-shadow:none;
  3539. font-size:14px;
  3540. color:#AAAAAA;
  3541. }
  3542. #u60540.disabled {
  3543. }
  3544. .u60540_input_option {
  3545. font-size:14px;
  3546. }
  3547. #u60541_div {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:0px;
  3551. top:0px;
  3552. width:73px;
  3553. height:50px;
  3554. background:inherit;
  3555. background-color:rgba(255, 255, 255, 0);
  3556. border:none;
  3557. border-left:0px;
  3558. border-top:0px;
  3559. border-right:0px;
  3560. border-radius:0px;
  3561. border-bottom-right-radius:0px;
  3562. border-bottom-left-radius:0px;
  3563. -moz-box-shadow:none;
  3564. -webkit-box-shadow:none;
  3565. box-shadow:none;
  3566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3567. font-weight:400;
  3568. font-style:normal;
  3569. font-size:18px;
  3570. line-height:40px;
  3571. }
  3572. #u60541 {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:356px;
  3576. top:53px;
  3577. width:73px;
  3578. height:50px;
  3579. display:flex;
  3580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3581. font-weight:400;
  3582. font-style:normal;
  3583. font-size:18px;
  3584. line-height:40px;
  3585. }
  3586. #u60541 .text {
  3587. position:absolute;
  3588. align-self:center;
  3589. padding:0px 0px 0px 0px;
  3590. box-sizing:border-box;
  3591. width:100%;
  3592. }
  3593. #u60541_text {
  3594. border-width:0px;
  3595. white-space:nowrap;
  3596. text-transform:none;
  3597. }
  3598. #u60542 {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:0px;
  3602. top:0px;
  3603. width:0px;
  3604. height:0px;
  3605. }
  3606. #u60543_div {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:0px;
  3610. top:0px;
  3611. width:160px;
  3612. height:30px;
  3613. background:inherit;
  3614. background-color:rgba(255, 255, 255, 1);
  3615. box-sizing:border-box;
  3616. border-width:1px;
  3617. border-style:solid;
  3618. border-color:rgba(215, 215, 215, 1);
  3619. border-radius:4px;
  3620. -moz-box-shadow:none;
  3621. -webkit-box-shadow:none;
  3622. box-shadow:none;
  3623. font-size:14px;
  3624. }
  3625. #u60543 {
  3626. border-width:0px;
  3627. position:absolute;
  3628. left:357px;
  3629. top:101px;
  3630. width:160px;
  3631. height:30px;
  3632. display:flex;
  3633. font-size:14px;
  3634. }
  3635. #u60543 .text {
  3636. position:absolute;
  3637. align-self:center;
  3638. padding:2px 2px 2px 2px;
  3639. box-sizing:border-box;
  3640. width:100%;
  3641. }
  3642. #u60543_text {
  3643. border-width:0px;
  3644. word-wrap:break-word;
  3645. text-transform:none;
  3646. visibility:hidden;
  3647. }
  3648. #u60544_input {
  3649. position:absolute;
  3650. left:0px;
  3651. top:0px;
  3652. width:153px;
  3653. height:23px;
  3654. padding:2px 2px 2px 2px;
  3655. font-family:'ArialMT', 'Arial', sans-serif;
  3656. font-weight:400;
  3657. font-style:normal;
  3658. font-size:14px;
  3659. letter-spacing:normal;
  3660. color:#AAAAAA;
  3661. vertical-align:none;
  3662. text-align:left;
  3663. text-transform:none;
  3664. background-color:transparent;
  3665. border-color:transparent;
  3666. }
  3667. #u60544_input.disabled {
  3668. position:absolute;
  3669. left:0px;
  3670. top:0px;
  3671. width:153px;
  3672. height:23px;
  3673. padding:2px 2px 2px 2px;
  3674. font-family:'ArialMT', 'Arial', sans-serif;
  3675. font-weight:400;
  3676. font-style:normal;
  3677. font-size:14px;
  3678. letter-spacing:normal;
  3679. color:#AAAAAA;
  3680. vertical-align:none;
  3681. text-align:left;
  3682. text-transform:none;
  3683. background-color:transparent;
  3684. border-color:transparent;
  3685. }
  3686. #u60544_div {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:0px;
  3690. top:0px;
  3691. width:153px;
  3692. height:23px;
  3693. background:inherit;
  3694. background-color:rgba(255, 255, 255, 1);
  3695. border:none;
  3696. border-radius:0px;
  3697. -moz-box-shadow:none;
  3698. -webkit-box-shadow:none;
  3699. box-shadow:none;
  3700. font-size:14px;
  3701. color:#AAAAAA;
  3702. }
  3703. #u60544 {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:362px;
  3707. top:103px;
  3708. width:153px;
  3709. height:23px;
  3710. display:flex;
  3711. font-size:14px;
  3712. color:#AAAAAA;
  3713. }
  3714. #u60544 .text {
  3715. position:absolute;
  3716. align-self:flex-start;
  3717. padding:2px 2px 2px 2px;
  3718. box-sizing:border-box;
  3719. width:100%;
  3720. }
  3721. #u60544_div.disabled {
  3722. border-width:0px;
  3723. position:absolute;
  3724. left:0px;
  3725. top:0px;
  3726. width:153px;
  3727. height:23px;
  3728. background:inherit;
  3729. background-color:rgba(240, 240, 240, 1);
  3730. border:none;
  3731. border-radius:0px;
  3732. -moz-box-shadow:none;
  3733. -webkit-box-shadow:none;
  3734. box-shadow:none;
  3735. font-size:14px;
  3736. color:#AAAAAA;
  3737. }
  3738. #u60544.disabled {
  3739. }
  3740. .u60544_input_option {
  3741. font-size:14px;
  3742. }
  3743. #u60545 {
  3744. border-width:0px;
  3745. position:absolute;
  3746. left:0px;
  3747. top:0px;
  3748. width:0px;
  3749. height:0px;
  3750. }
  3751. #u60546_div {
  3752. border-width:0px;
  3753. position:absolute;
  3754. left:0px;
  3755. top:0px;
  3756. width:680px;
  3757. height:1198px;
  3758. background:inherit;
  3759. background-color:rgba(255, 255, 255, 1);
  3760. box-sizing:border-box;
  3761. border-width:1px;
  3762. border-style:solid;
  3763. border-color:rgba(215, 215, 215, 1);
  3764. border-radius:0px;
  3765. -moz-box-shadow:none;
  3766. -webkit-box-shadow:none;
  3767. box-shadow:none;
  3768. }
  3769. #u60546 {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:1645px;
  3773. top:53px;
  3774. width:680px;
  3775. height:1198px;
  3776. display:flex;
  3777. }
  3778. #u60546 .text {
  3779. position:absolute;
  3780. align-self:center;
  3781. padding:2px 2px 2px 2px;
  3782. box-sizing:border-box;
  3783. width:100%;
  3784. }
  3785. #u60546_text {
  3786. border-width:0px;
  3787. word-wrap:break-word;
  3788. text-transform:none;
  3789. visibility:hidden;
  3790. }
  3791. #u60547_div {
  3792. border-width:0px;
  3793. position:absolute;
  3794. left:0px;
  3795. top:0px;
  3796. width:73px;
  3797. height:30px;
  3798. background:inherit;
  3799. background-color:rgba(255, 255, 255, 0);
  3800. border:none;
  3801. border-radius:0px;
  3802. -moz-box-shadow:none;
  3803. -webkit-box-shadow:none;
  3804. box-shadow:none;
  3805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3806. font-weight:400;
  3807. font-style:normal;
  3808. font-size:18px;
  3809. color:#000000;
  3810. line-height:30px;
  3811. }
  3812. #u60547 {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:1665px;
  3816. top:73px;
  3817. width:73px;
  3818. height:30px;
  3819. display:flex;
  3820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3821. font-weight:400;
  3822. font-style:normal;
  3823. font-size:18px;
  3824. color:#000000;
  3825. line-height:30px;
  3826. }
  3827. #u60547 .text {
  3828. position:absolute;
  3829. align-self:flex-start;
  3830. padding:0px 0px 0px 0px;
  3831. box-sizing:border-box;
  3832. width:100%;
  3833. }
  3834. #u60547_text {
  3835. border-width:0px;
  3836. white-space:nowrap;
  3837. text-transform:none;
  3838. }
  3839. #u60548_div {
  3840. border-width:0px;
  3841. position:absolute;
  3842. left:0px;
  3843. top:0px;
  3844. width:53px;
  3845. height:30px;
  3846. background:inherit;
  3847. background-color:rgba(255, 255, 255, 0);
  3848. border:none;
  3849. border-top:0px;
  3850. border-right:0px;
  3851. border-bottom:0px;
  3852. border-radius:0px;
  3853. border-top-left-radius:0px;
  3854. border-bottom-left-radius:0px;
  3855. -moz-box-shadow:none;
  3856. -webkit-box-shadow:none;
  3857. box-shadow:none;
  3858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3859. font-weight:400;
  3860. font-style:normal;
  3861. font-size:14px;
  3862. }
  3863. #u60548 {
  3864. border-width:0px;
  3865. position:absolute;
  3866. left:1694px;
  3867. top:337px;
  3868. width:53px;
  3869. height:30px;
  3870. display:flex;
  3871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3872. font-weight:400;
  3873. font-style:normal;
  3874. font-size:14px;
  3875. }
  3876. #u60548 .text {
  3877. position:absolute;
  3878. align-self:center;
  3879. padding:5px 10px 5px 0px;
  3880. box-sizing:border-box;
  3881. width:100%;
  3882. }
  3883. #u60548_text {
  3884. border-width:0px;
  3885. white-space:nowrap;
  3886. text-transform:none;
  3887. }
  3888. #u60549 {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:0px;
  3892. top:0px;
  3893. width:0px;
  3894. height:0px;
  3895. }
  3896. #u60550_div {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:0px;
  3900. top:0px;
  3901. width:400px;
  3902. height:40px;
  3903. background:inherit;
  3904. background-color:rgba(255, 255, 255, 1);
  3905. box-sizing:border-box;
  3906. border-width:1px;
  3907. border-style:solid;
  3908. border-color:rgba(170, 170, 170, 1);
  3909. border-radius:4px;
  3910. -moz-box-shadow:none;
  3911. -webkit-box-shadow:none;
  3912. box-shadow:none;
  3913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3914. font-weight:400;
  3915. font-style:normal;
  3916. text-align:left;
  3917. }
  3918. #u60550 {
  3919. border-width:0px;
  3920. position:absolute;
  3921. left:1797px;
  3922. top:332px;
  3923. width:400px;
  3924. height:40px;
  3925. display:flex;
  3926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3927. font-weight:400;
  3928. font-style:normal;
  3929. text-align:left;
  3930. }
  3931. #u60550 .text {
  3932. position:absolute;
  3933. align-self:center;
  3934. padding:2px 2px 2px 10px;
  3935. box-sizing:border-box;
  3936. width:100%;
  3937. }
  3938. #u60550_text {
  3939. border-width:0px;
  3940. word-wrap:break-word;
  3941. text-transform:none;
  3942. visibility:hidden;
  3943. }
  3944. #u60551_input {
  3945. position:absolute;
  3946. left:0px;
  3947. top:0px;
  3948. width:188px;
  3949. height:31px;
  3950. padding:2px 2px 2px 2px;
  3951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3952. font-weight:400;
  3953. font-style:normal;
  3954. font-size:13px;
  3955. letter-spacing:normal;
  3956. color:#AAAAAA;
  3957. vertical-align:none;
  3958. text-align:left;
  3959. text-transform:none;
  3960. background-color:transparent;
  3961. border-color:transparent;
  3962. }
  3963. #u60551_input.disabled {
  3964. position:absolute;
  3965. left:0px;
  3966. top:0px;
  3967. width:188px;
  3968. height:31px;
  3969. padding:2px 2px 2px 2px;
  3970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3971. font-weight:400;
  3972. font-style:normal;
  3973. font-size:13px;
  3974. letter-spacing:normal;
  3975. color:#AAAAAA;
  3976. vertical-align:none;
  3977. text-align:left;
  3978. text-transform:none;
  3979. background-color:transparent;
  3980. border-color:transparent;
  3981. }
  3982. #u60551_div {
  3983. border-width:0px;
  3984. position:absolute;
  3985. left:0px;
  3986. top:0px;
  3987. width:188px;
  3988. height:31px;
  3989. background:inherit;
  3990. background-color:rgba(255, 255, 255, 0);
  3991. border:none;
  3992. border-radius:0px;
  3993. -moz-box-shadow:none;
  3994. -webkit-box-shadow:none;
  3995. box-shadow:none;
  3996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3997. font-weight:400;
  3998. font-style:normal;
  3999. color:#AAAAAA;
  4000. }
  4001. #u60551 {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:1807px;
  4005. top:337px;
  4006. width:188px;
  4007. height:31px;
  4008. display:flex;
  4009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4010. font-weight:400;
  4011. font-style:normal;
  4012. color:#AAAAAA;
  4013. }
  4014. #u60551 .text {
  4015. position:absolute;
  4016. align-self:center;
  4017. padding:2px 2px 2px 2px;
  4018. box-sizing:border-box;
  4019. width:100%;
  4020. }
  4021. #u60551_div.disabled {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:0px;
  4025. top:0px;
  4026. width:188px;
  4027. height:31px;
  4028. background:inherit;
  4029. background-color:rgba(240, 240, 240, 1);
  4030. border:none;
  4031. border-radius:0px;
  4032. -moz-box-shadow:none;
  4033. -webkit-box-shadow:none;
  4034. box-shadow:none;
  4035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4036. font-weight:400;
  4037. font-style:normal;
  4038. color:#AAAAAA;
  4039. }
  4040. #u60551.disabled {
  4041. }
  4042. #u60552_div {
  4043. border-width:0px;
  4044. position:absolute;
  4045. left:0px;
  4046. top:0px;
  4047. width:81px;
  4048. height:30px;
  4049. background:inherit;
  4050. background-color:rgba(255, 255, 255, 0);
  4051. border:none;
  4052. border-top:0px;
  4053. border-right:0px;
  4054. border-bottom:0px;
  4055. border-radius:0px;
  4056. border-top-left-radius:0px;
  4057. border-bottom-left-radius:0px;
  4058. -moz-box-shadow:none;
  4059. -webkit-box-shadow:none;
  4060. box-shadow:none;
  4061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4062. font-weight:400;
  4063. font-style:normal;
  4064. font-size:14px;
  4065. }
  4066. #u60552 {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:1694px;
  4070. top:287px;
  4071. width:81px;
  4072. height:30px;
  4073. display:flex;
  4074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4075. font-weight:400;
  4076. font-style:normal;
  4077. font-size:14px;
  4078. }
  4079. #u60552 .text {
  4080. position:absolute;
  4081. align-self:center;
  4082. padding:5px 10px 5px 0px;
  4083. box-sizing:border-box;
  4084. width:100%;
  4085. }
  4086. #u60552_text {
  4087. border-width:0px;
  4088. white-space:nowrap;
  4089. text-transform:none;
  4090. }
  4091. #u60553_div {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:0px;
  4095. top:0px;
  4096. width:400px;
  4097. height:40px;
  4098. background:inherit;
  4099. background-color:rgba(242, 242, 242, 1);
  4100. box-sizing:border-box;
  4101. border-width:1px;
  4102. border-style:solid;
  4103. border-color:rgba(170, 170, 170, 1);
  4104. border-radius:4px;
  4105. -moz-box-shadow:none;
  4106. -webkit-box-shadow:none;
  4107. box-shadow:none;
  4108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4109. font-weight:400;
  4110. font-style:normal;
  4111. font-size:14px;
  4112. color:#AAAAAA;
  4113. text-align:left;
  4114. }
  4115. #u60553 {
  4116. border-width:0px;
  4117. position:absolute;
  4118. left:1797px;
  4119. top:282px;
  4120. width:400px;
  4121. height:40px;
  4122. display:flex;
  4123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4124. font-weight:400;
  4125. font-style:normal;
  4126. font-size:14px;
  4127. color:#AAAAAA;
  4128. text-align:left;
  4129. }
  4130. #u60553 .text {
  4131. position:absolute;
  4132. align-self:center;
  4133. padding:2px 2px 2px 10px;
  4134. box-sizing:border-box;
  4135. width:100%;
  4136. }
  4137. #u60553_text {
  4138. border-width:0px;
  4139. word-wrap:break-word;
  4140. text-transform:none;
  4141. }
  4142. #u60554 {
  4143. border-width:0px;
  4144. position:absolute;
  4145. left:0px;
  4146. top:0px;
  4147. width:0px;
  4148. height:0px;
  4149. }
  4150. #u60555_div {
  4151. border-width:0px;
  4152. position:absolute;
  4153. left:0px;
  4154. top:0px;
  4155. width:40px;
  4156. height:40px;
  4157. background:inherit;
  4158. background-color:rgba(255, 255, 255, 0);
  4159. border:none;
  4160. border-top:0px;
  4161. border-right:0px;
  4162. border-bottom:0px;
  4163. border-radius:0px;
  4164. border-top-left-radius:0px;
  4165. border-bottom-left-radius:0px;
  4166. -moz-box-shadow:none;
  4167. -webkit-box-shadow:none;
  4168. box-shadow:none;
  4169. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4170. font-weight:500;
  4171. font-style:normal;
  4172. font-size:18px;
  4173. text-align:center;
  4174. }
  4175. #u60555 {
  4176. border-width:0px;
  4177. position:absolute;
  4178. left:2285px;
  4179. top:53px;
  4180. width:40px;
  4181. height:40px;
  4182. display:flex;
  4183. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4184. font-weight:500;
  4185. font-style:normal;
  4186. font-size:18px;
  4187. text-align:center;
  4188. }
  4189. #u60555 .text {
  4190. position:absolute;
  4191. align-self:center;
  4192. padding:5px 10px 5px 0px;
  4193. box-sizing:border-box;
  4194. width:100%;
  4195. }
  4196. #u60555_text {
  4197. border-width:0px;
  4198. word-wrap:break-word;
  4199. text-transform:none;
  4200. }
  4201. #u60556_img {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:0px;
  4205. top:0px;
  4206. width:13px;
  4207. height:17px;
  4208. }
  4209. #u60556 {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:2272px;
  4213. top:65px;
  4214. width:13px;
  4215. height:17px;
  4216. display:flex;
  4217. }
  4218. #u60556 .text {
  4219. position:absolute;
  4220. align-self:center;
  4221. padding:2px 2px 2px 2px;
  4222. box-sizing:border-box;
  4223. width:100%;
  4224. }
  4225. #u60556_text {
  4226. border-width:0px;
  4227. word-wrap:break-word;
  4228. text-transform:none;
  4229. visibility:hidden;
  4230. }
  4231. #u60557 {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:0px;
  4235. top:0px;
  4236. width:0px;
  4237. height:0px;
  4238. }
  4239. #u60558_div {
  4240. border-width:0px;
  4241. position:absolute;
  4242. left:0px;
  4243. top:0px;
  4244. width:680px;
  4245. height:60px;
  4246. background:inherit;
  4247. background-color:rgba(255, 255, 255, 1);
  4248. box-sizing:border-box;
  4249. border-width:1px;
  4250. border-style:solid;
  4251. border-color:rgba(215, 215, 215, 1);
  4252. border-radius:0px;
  4253. -moz-box-shadow:none;
  4254. -webkit-box-shadow:none;
  4255. box-shadow:none;
  4256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4257. font-weight:400;
  4258. font-style:normal;
  4259. font-size:14px;
  4260. color:#AAAAAA;
  4261. text-align:center;
  4262. line-height:30px;
  4263. }
  4264. #u60558 {
  4265. border-width:0px;
  4266. position:absolute;
  4267. left:1645px;
  4268. top:1191px;
  4269. width:680px;
  4270. height:60px;
  4271. display:flex;
  4272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4273. font-weight:400;
  4274. font-style:normal;
  4275. font-size:14px;
  4276. color:#AAAAAA;
  4277. text-align:center;
  4278. line-height:30px;
  4279. }
  4280. #u60558 .text {
  4281. position:absolute;
  4282. align-self:center;
  4283. padding:5px 10px 5px 10px;
  4284. box-sizing:border-box;
  4285. width:100%;
  4286. }
  4287. #u60558_text {
  4288. border-width:0px;
  4289. word-wrap:break-word;
  4290. text-transform:none;
  4291. visibility:hidden;
  4292. }
  4293. #u60559_div {
  4294. border-width:0px;
  4295. position:absolute;
  4296. left:0px;
  4297. top:0px;
  4298. width:80px;
  4299. height:30px;
  4300. background:inherit;
  4301. background-color:rgba(24, 144, 255, 1);
  4302. border:none;
  4303. border-radius:4px;
  4304. -moz-box-shadow:none;
  4305. -webkit-box-shadow:none;
  4306. box-shadow:none;
  4307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4308. font-weight:400;
  4309. font-style:normal;
  4310. font-size:14px;
  4311. color:#FFFFFF;
  4312. }
  4313. #u60559 {
  4314. border-width:0px;
  4315. position:absolute;
  4316. left:2200px;
  4317. top:1206px;
  4318. width:80px;
  4319. height:30px;
  4320. display:flex;
  4321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4322. font-weight:400;
  4323. font-style:normal;
  4324. font-size:14px;
  4325. color:#FFFFFF;
  4326. }
  4327. #u60559 .text {
  4328. position:absolute;
  4329. align-self:center;
  4330. padding:2px 2px 2px 2px;
  4331. box-sizing:border-box;
  4332. width:100%;
  4333. }
  4334. #u60559_text {
  4335. border-width:0px;
  4336. word-wrap:break-word;
  4337. text-transform:none;
  4338. }
  4339. #u60560_div {
  4340. border-width:0px;
  4341. position:absolute;
  4342. left:0px;
  4343. top:0px;
  4344. width:80px;
  4345. height:30px;
  4346. background:inherit;
  4347. background-color:rgba(255, 255, 255, 1);
  4348. box-sizing:border-box;
  4349. border-width:1px;
  4350. border-style:solid;
  4351. border-color:rgba(170, 170, 170, 1);
  4352. border-radius:4px;
  4353. -moz-box-shadow:none;
  4354. -webkit-box-shadow:none;
  4355. box-shadow:none;
  4356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4357. font-weight:400;
  4358. font-style:normal;
  4359. font-size:14px;
  4360. }
  4361. #u60560 {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:2101px;
  4365. top:1206px;
  4366. width:80px;
  4367. height:30px;
  4368. display:flex;
  4369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4370. font-weight:400;
  4371. font-style:normal;
  4372. font-size:14px;
  4373. }
  4374. #u60560 .text {
  4375. position:absolute;
  4376. align-self:center;
  4377. padding:2px 2px 2px 2px;
  4378. box-sizing:border-box;
  4379. width:100%;
  4380. }
  4381. #u60560_text {
  4382. border-width:0px;
  4383. word-wrap:break-word;
  4384. text-transform:none;
  4385. }
  4386. #u60561_div {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:0px;
  4390. top:0px;
  4391. width:400px;
  4392. height:210px;
  4393. background:inherit;
  4394. background-color:rgba(242, 242, 242, 1);
  4395. border:none;
  4396. border-radius:0px;
  4397. -moz-box-shadow:none;
  4398. -webkit-box-shadow:none;
  4399. box-shadow:none;
  4400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4401. font-weight:400;
  4402. font-style:normal;
  4403. font-size:38px;
  4404. color:#D7D7D7;
  4405. }
  4406. #u60561 {
  4407. border-width:0px;
  4408. position:absolute;
  4409. left:1797px;
  4410. top:382px;
  4411. width:400px;
  4412. height:210px;
  4413. display:flex;
  4414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4415. font-weight:400;
  4416. font-style:normal;
  4417. font-size:38px;
  4418. color:#D7D7D7;
  4419. }
  4420. #u60561 .text {
  4421. position:absolute;
  4422. align-self:center;
  4423. padding:2px 2px 2px 2px;
  4424. box-sizing:border-box;
  4425. width:100%;
  4426. }
  4427. #u60561_text {
  4428. border-width:0px;
  4429. word-wrap:break-word;
  4430. text-transform:none;
  4431. }
  4432. #u60562_div {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:0px;
  4436. top:0px;
  4437. width:81px;
  4438. height:30px;
  4439. background:inherit;
  4440. background-color:rgba(255, 255, 255, 0);
  4441. border:none;
  4442. border-top:0px;
  4443. border-right:0px;
  4444. border-bottom:0px;
  4445. border-radius:0px;
  4446. border-top-left-radius:0px;
  4447. border-bottom-left-radius:0px;
  4448. -moz-box-shadow:none;
  4449. -webkit-box-shadow:none;
  4450. box-shadow:none;
  4451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4452. font-weight:400;
  4453. font-style:normal;
  4454. font-size:14px;
  4455. }
  4456. #u60562 {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:1694px;
  4460. top:607px;
  4461. width:81px;
  4462. height:30px;
  4463. display:flex;
  4464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4465. font-weight:400;
  4466. font-style:normal;
  4467. font-size:14px;
  4468. }
  4469. #u60562 .text {
  4470. position:absolute;
  4471. align-self:center;
  4472. padding:5px 10px 5px 0px;
  4473. box-sizing:border-box;
  4474. width:100%;
  4475. }
  4476. #u60562_text {
  4477. border-width:0px;
  4478. white-space:nowrap;
  4479. text-transform:none;
  4480. }
  4481. #u60563 {
  4482. border-width:0px;
  4483. position:absolute;
  4484. left:0px;
  4485. top:0px;
  4486. width:0px;
  4487. height:0px;
  4488. }
  4489. #u60564_div {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:0px;
  4493. top:0px;
  4494. width:400px;
  4495. height:80px;
  4496. background:inherit;
  4497. background-color:rgba(255, 255, 255, 1);
  4498. box-sizing:border-box;
  4499. border-width:1px;
  4500. border-style:solid;
  4501. border-color:rgba(170, 170, 170, 1);
  4502. border-radius:4px;
  4503. -moz-box-shadow:none;
  4504. -webkit-box-shadow:none;
  4505. box-shadow:none;
  4506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4507. font-weight:400;
  4508. font-style:normal;
  4509. text-align:left;
  4510. }
  4511. #u60564 {
  4512. border-width:0px;
  4513. position:absolute;
  4514. left:1797px;
  4515. top:602px;
  4516. width:400px;
  4517. height:80px;
  4518. display:flex;
  4519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4520. font-weight:400;
  4521. font-style:normal;
  4522. text-align:left;
  4523. }
  4524. #u60564 .text {
  4525. position:absolute;
  4526. align-self:center;
  4527. padding:2px 2px 2px 10px;
  4528. box-sizing:border-box;
  4529. width:100%;
  4530. }
  4531. #u60564_text {
  4532. border-width:0px;
  4533. word-wrap:break-word;
  4534. text-transform:none;
  4535. visibility:hidden;
  4536. }
  4537. #u60565_input {
  4538. position:absolute;
  4539. left:0px;
  4540. top:0px;
  4541. width:188px;
  4542. height:31px;
  4543. padding:2px 2px 2px 2px;
  4544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4545. font-weight:400;
  4546. font-style:normal;
  4547. font-size:13px;
  4548. letter-spacing:normal;
  4549. color:#AAAAAA;
  4550. vertical-align:none;
  4551. text-align:left;
  4552. text-transform:none;
  4553. background-color:transparent;
  4554. border-color:transparent;
  4555. }
  4556. #u60565_input.disabled {
  4557. position:absolute;
  4558. left:0px;
  4559. top:0px;
  4560. width:188px;
  4561. height:31px;
  4562. padding:2px 2px 2px 2px;
  4563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4564. font-weight:400;
  4565. font-style:normal;
  4566. font-size:13px;
  4567. letter-spacing:normal;
  4568. color:#AAAAAA;
  4569. vertical-align:none;
  4570. text-align:left;
  4571. text-transform:none;
  4572. background-color:transparent;
  4573. border-color:transparent;
  4574. }
  4575. #u60565_div {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:0px;
  4579. top:0px;
  4580. width:188px;
  4581. height:31px;
  4582. background:inherit;
  4583. background-color:rgba(255, 255, 255, 0);
  4584. border:none;
  4585. border-radius:0px;
  4586. -moz-box-shadow:none;
  4587. -webkit-box-shadow:none;
  4588. box-shadow:none;
  4589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4590. font-weight:400;
  4591. font-style:normal;
  4592. color:#AAAAAA;
  4593. }
  4594. #u60565 {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:1807px;
  4598. top:607px;
  4599. width:188px;
  4600. height:31px;
  4601. display:flex;
  4602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4603. font-weight:400;
  4604. font-style:normal;
  4605. color:#AAAAAA;
  4606. }
  4607. #u60565 .text {
  4608. position:absolute;
  4609. align-self:center;
  4610. padding:2px 2px 2px 2px;
  4611. box-sizing:border-box;
  4612. width:100%;
  4613. }
  4614. #u60565_div.disabled {
  4615. border-width:0px;
  4616. position:absolute;
  4617. left:0px;
  4618. top:0px;
  4619. width:188px;
  4620. height:31px;
  4621. background:inherit;
  4622. background-color:rgba(240, 240, 240, 1);
  4623. border:none;
  4624. border-radius:0px;
  4625. -moz-box-shadow:none;
  4626. -webkit-box-shadow:none;
  4627. box-shadow:none;
  4628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4629. font-weight:400;
  4630. font-style:normal;
  4631. color:#AAAAAA;
  4632. }
  4633. #u60565.disabled {
  4634. }
  4635. #u60566_div {
  4636. border-width:0px;
  4637. position:absolute;
  4638. left:0px;
  4639. top:0px;
  4640. width:39px;
  4641. height:24px;
  4642. background:inherit;
  4643. background-color:rgba(255, 255, 255, 0);
  4644. border:none;
  4645. border-top:0px;
  4646. border-right:0px;
  4647. border-bottom:0px;
  4648. border-radius:0px;
  4649. border-top-left-radius:0px;
  4650. border-bottom-left-radius:0px;
  4651. -moz-box-shadow:none;
  4652. -webkit-box-shadow:none;
  4653. box-shadow:none;
  4654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4655. font-weight:400;
  4656. font-style:normal;
  4657. font-size:10px;
  4658. color:#AAAAAA;
  4659. text-align:right;
  4660. }
  4661. #u60566 {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:2155px;
  4665. top:657px;
  4666. width:39px;
  4667. height:24px;
  4668. display:flex;
  4669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4670. font-weight:400;
  4671. font-style:normal;
  4672. font-size:10px;
  4673. color:#AAAAAA;
  4674. text-align:right;
  4675. }
  4676. #u60566 .text {
  4677. position:absolute;
  4678. align-self:center;
  4679. padding:5px 0px 5px 0px;
  4680. box-sizing:border-box;
  4681. width:100%;
  4682. }
  4683. #u60566_text {
  4684. border-width:0px;
  4685. white-space:nowrap;
  4686. text-transform:none;
  4687. }
  4688. #u60567_div {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:0px;
  4692. top:0px;
  4693. width:88px;
  4694. height:30px;
  4695. background:inherit;
  4696. background-color:rgba(255, 255, 255, 0);
  4697. border:none;
  4698. border-top:0px;
  4699. border-right:0px;
  4700. border-bottom:0px;
  4701. border-radius:0px;
  4702. border-top-left-radius:0px;
  4703. border-bottom-left-radius:0px;
  4704. -moz-box-shadow:none;
  4705. -webkit-box-shadow:none;
  4706. box-shadow:none;
  4707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4708. font-weight:400;
  4709. font-style:normal;
  4710. font-size:14px;
  4711. }
  4712. #u60567 {
  4713. border-width:0px;
  4714. position:absolute;
  4715. left:1694px;
  4716. top:237px;
  4717. width:88px;
  4718. height:30px;
  4719. display:flex;
  4720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4721. font-weight:400;
  4722. font-style:normal;
  4723. font-size:14px;
  4724. }
  4725. #u60567 .text {
  4726. position:absolute;
  4727. align-self:center;
  4728. padding:5px 10px 5px 0px;
  4729. box-sizing:border-box;
  4730. width:100%;
  4731. }
  4732. #u60567_text {
  4733. border-width:0px;
  4734. white-space:nowrap;
  4735. text-transform:none;
  4736. }
  4737. #u60568 {
  4738. border-width:0px;
  4739. position:absolute;
  4740. left:0px;
  4741. top:0px;
  4742. width:0px;
  4743. height:0px;
  4744. }
  4745. #u60569_div {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:0px;
  4749. top:0px;
  4750. width:400px;
  4751. height:40px;
  4752. background:inherit;
  4753. background-color:rgba(255, 255, 255, 1);
  4754. box-sizing:border-box;
  4755. border-width:1px;
  4756. border-style:solid;
  4757. border-color:rgba(170, 170, 170, 1);
  4758. border-radius:4px;
  4759. -moz-box-shadow:none;
  4760. -webkit-box-shadow:none;
  4761. box-shadow:none;
  4762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4763. font-weight:400;
  4764. font-style:normal;
  4765. text-align:left;
  4766. }
  4767. #u60569 {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:1797px;
  4771. top:232px;
  4772. width:400px;
  4773. height:40px;
  4774. display:flex;
  4775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4776. font-weight:400;
  4777. font-style:normal;
  4778. text-align:left;
  4779. }
  4780. #u60569 .text {
  4781. position:absolute;
  4782. align-self:center;
  4783. padding:2px 2px 2px 10px;
  4784. box-sizing:border-box;
  4785. width:100%;
  4786. }
  4787. #u60569_text {
  4788. border-width:0px;
  4789. word-wrap:break-word;
  4790. text-transform:none;
  4791. visibility:hidden;
  4792. }
  4793. #u60570_input {
  4794. position:absolute;
  4795. left:0px;
  4796. top:0px;
  4797. width:380px;
  4798. height:31px;
  4799. padding:2px 2px 2px 2px;
  4800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4801. font-weight:400;
  4802. font-style:normal;
  4803. font-size:13px;
  4804. letter-spacing:normal;
  4805. color:#AAAAAA;
  4806. vertical-align:none;
  4807. text-align:left;
  4808. text-transform:none;
  4809. background-color:transparent;
  4810. border-color:transparent;
  4811. }
  4812. #u60570_input.disabled {
  4813. position:absolute;
  4814. left:0px;
  4815. top:0px;
  4816. width:380px;
  4817. height:31px;
  4818. padding:2px 2px 2px 2px;
  4819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4820. font-weight:400;
  4821. font-style:normal;
  4822. font-size:13px;
  4823. letter-spacing:normal;
  4824. color:#AAAAAA;
  4825. vertical-align:none;
  4826. text-align:left;
  4827. text-transform:none;
  4828. background-color:transparent;
  4829. border-color:transparent;
  4830. }
  4831. #u60570_div {
  4832. border-width:0px;
  4833. position:absolute;
  4834. left:0px;
  4835. top:0px;
  4836. width:380px;
  4837. height:31px;
  4838. background:inherit;
  4839. background-color:rgba(255, 255, 255, 0);
  4840. border:none;
  4841. border-radius:0px;
  4842. -moz-box-shadow:none;
  4843. -webkit-box-shadow:none;
  4844. box-shadow:none;
  4845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4846. font-weight:400;
  4847. font-style:normal;
  4848. color:#AAAAAA;
  4849. }
  4850. #u60570 {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:1807px;
  4854. top:237px;
  4855. width:380px;
  4856. height:31px;
  4857. display:flex;
  4858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4859. font-weight:400;
  4860. font-style:normal;
  4861. color:#AAAAAA;
  4862. }
  4863. #u60570 .text {
  4864. position:absolute;
  4865. align-self:center;
  4866. padding:2px 2px 2px 2px;
  4867. box-sizing:border-box;
  4868. width:100%;
  4869. }
  4870. #u60570_div.disabled {
  4871. border-width:0px;
  4872. position:absolute;
  4873. left:0px;
  4874. top:0px;
  4875. width:380px;
  4876. height:31px;
  4877. background:inherit;
  4878. background-color:rgba(240, 240, 240, 1);
  4879. border:none;
  4880. border-radius:0px;
  4881. -moz-box-shadow:none;
  4882. -webkit-box-shadow:none;
  4883. box-shadow:none;
  4884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4885. font-weight:400;
  4886. font-style:normal;
  4887. color:#AAAAAA;
  4888. }
  4889. #u60570.disabled {
  4890. }
  4891. #u60571_div {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:0px;
  4895. top:0px;
  4896. width:59px;
  4897. height:27px;
  4898. background:inherit;
  4899. background-color:rgba(255, 255, 255, 0);
  4900. border:none;
  4901. border-top:0px;
  4902. border-right:0px;
  4903. border-bottom:0px;
  4904. border-radius:0px;
  4905. border-top-left-radius:0px;
  4906. border-bottom-left-radius:0px;
  4907. -moz-box-shadow:none;
  4908. -webkit-box-shadow:none;
  4909. box-shadow:none;
  4910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4911. font-weight:400;
  4912. font-style:normal;
  4913. font-size:12px;
  4914. color:#1890FF;
  4915. }
  4916. #u60571 {
  4917. border-width:0px;
  4918. position:absolute;
  4919. left:2204px;
  4920. top:289px;
  4921. width:59px;
  4922. height:27px;
  4923. display:flex;
  4924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4925. font-weight:400;
  4926. font-style:normal;
  4927. font-size:12px;
  4928. color:#1890FF;
  4929. }
  4930. #u60571 .text {
  4931. position:absolute;
  4932. align-self:center;
  4933. padding:5px 10px 5px 0px;
  4934. box-sizing:border-box;
  4935. width:100%;
  4936. }
  4937. #u60571_text {
  4938. border-width:0px;
  4939. white-space:nowrap;
  4940. text-transform:none;
  4941. }
  4942. #u60572_div {
  4943. border-width:0px;
  4944. position:absolute;
  4945. left:0px;
  4946. top:0px;
  4947. width:49px;
  4948. height:30px;
  4949. background:inherit;
  4950. background-color:rgba(255, 255, 255, 1);
  4951. box-sizing:border-box;
  4952. border-width:1px;
  4953. border-style:solid;
  4954. border-color:rgba(170, 170, 170, 1);
  4955. border-radius:4px;
  4956. -moz-box-shadow:none;
  4957. -webkit-box-shadow:none;
  4958. box-shadow:none;
  4959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4960. font-weight:400;
  4961. font-style:normal;
  4962. font-size:12px;
  4963. }
  4964. #u60572 {
  4965. border-width:0px;
  4966. position:absolute;
  4967. left:2204px;
  4968. top:337px;
  4969. width:49px;
  4970. height:30px;
  4971. display:flex;
  4972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4973. font-weight:400;
  4974. font-style:normal;
  4975. font-size:12px;
  4976. }
  4977. #u60572 .text {
  4978. position:absolute;
  4979. align-self:center;
  4980. padding:2px 2px 2px 2px;
  4981. box-sizing:border-box;
  4982. width:100%;
  4983. }
  4984. #u60572_text {
  4985. border-width:0px;
  4986. word-wrap:break-word;
  4987. text-transform:none;
  4988. }
  4989. #u60573_div {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:0px;
  4993. top:0px;
  4994. width:88px;
  4995. height:30px;
  4996. background:inherit;
  4997. background-color:rgba(255, 255, 255, 0);
  4998. border:none;
  4999. border-top:0px;
  5000. border-right:0px;
  5001. border-bottom:0px;
  5002. border-radius:0px;
  5003. border-top-left-radius:0px;
  5004. border-bottom-left-radius:0px;
  5005. -moz-box-shadow:none;
  5006. -webkit-box-shadow:none;
  5007. box-shadow:none;
  5008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5009. font-weight:400;
  5010. font-style:normal;
  5011. font-size:14px;
  5012. }
  5013. #u60573 {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:1694px;
  5017. top:137px;
  5018. width:88px;
  5019. height:30px;
  5020. display:flex;
  5021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5022. font-weight:400;
  5023. font-style:normal;
  5024. font-size:14px;
  5025. }
  5026. #u60573 .text {
  5027. position:absolute;
  5028. align-self:center;
  5029. padding:5px 10px 5px 0px;
  5030. box-sizing:border-box;
  5031. width:100%;
  5032. }
  5033. #u60573_text {
  5034. border-width:0px;
  5035. white-space:nowrap;
  5036. text-transform:none;
  5037. }
  5038. #u60574_div {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:0px;
  5042. top:0px;
  5043. width:88px;
  5044. height:30px;
  5045. background:inherit;
  5046. background-color:rgba(255, 255, 255, 0);
  5047. border:none;
  5048. border-top:0px;
  5049. border-right:0px;
  5050. border-bottom:0px;
  5051. border-radius:0px;
  5052. border-top-left-radius:0px;
  5053. border-bottom-left-radius:0px;
  5054. -moz-box-shadow:none;
  5055. -webkit-box-shadow:none;
  5056. box-shadow:none;
  5057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5058. font-weight:400;
  5059. font-style:normal;
  5060. font-size:14px;
  5061. }
  5062. #u60574 {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:1694px;
  5066. top:187px;
  5067. width:88px;
  5068. height:30px;
  5069. display:flex;
  5070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5071. font-weight:400;
  5072. font-style:normal;
  5073. font-size:14px;
  5074. }
  5075. #u60574 .text {
  5076. position:absolute;
  5077. align-self:center;
  5078. padding:5px 10px 5px 0px;
  5079. box-sizing:border-box;
  5080. width:100%;
  5081. }
  5082. #u60574_text {
  5083. border-width:0px;
  5084. white-space:nowrap;
  5085. text-transform:none;
  5086. }
  5087. #u60575 {
  5088. border-width:0px;
  5089. position:absolute;
  5090. left:0px;
  5091. top:0px;
  5092. width:0px;
  5093. height:0px;
  5094. }
  5095. #u60576_div {
  5096. border-width:0px;
  5097. position:absolute;
  5098. left:0px;
  5099. top:0px;
  5100. width:400px;
  5101. height:40px;
  5102. background:inherit;
  5103. background-color:rgba(255, 255, 255, 1);
  5104. box-sizing:border-box;
  5105. border-width:1px;
  5106. border-style:solid;
  5107. border-color:rgba(170, 170, 170, 1);
  5108. border-radius:4px;
  5109. -moz-box-shadow:none;
  5110. -webkit-box-shadow:none;
  5111. box-shadow:none;
  5112. }
  5113. #u60576 {
  5114. border-width:0px;
  5115. position:absolute;
  5116. left:1797px;
  5117. top:132px;
  5118. width:400px;
  5119. height:40px;
  5120. display:flex;
  5121. }
  5122. #u60576 .text {
  5123. position:absolute;
  5124. align-self:center;
  5125. padding:2px 2px 2px 0px;
  5126. box-sizing:border-box;
  5127. width:100%;
  5128. }
  5129. #u60576_text {
  5130. border-width:0px;
  5131. word-wrap:break-word;
  5132. text-transform:none;
  5133. visibility:hidden;
  5134. }
  5135. #u60577_input {
  5136. position:absolute;
  5137. left:0px;
  5138. top:0px;
  5139. width:380px;
  5140. height:30px;
  5141. padding:2px 2px 2px 0px;
  5142. font-family:'ArialMT', 'Arial', sans-serif;
  5143. font-weight:400;
  5144. font-style:normal;
  5145. font-size:13px;
  5146. letter-spacing:normal;
  5147. color:#AAAAAA;
  5148. vertical-align:none;
  5149. text-align:left;
  5150. text-transform:none;
  5151. background-color:transparent;
  5152. border-color:transparent;
  5153. }
  5154. #u60577_input.disabled {
  5155. position:absolute;
  5156. left:0px;
  5157. top:0px;
  5158. width:380px;
  5159. height:30px;
  5160. padding:2px 2px 2px 0px;
  5161. font-family:'ArialMT', 'Arial', sans-serif;
  5162. font-weight:400;
  5163. font-style:normal;
  5164. font-size:13px;
  5165. letter-spacing:normal;
  5166. color:#AAAAAA;
  5167. vertical-align:none;
  5168. text-align:left;
  5169. text-transform:none;
  5170. background-color:transparent;
  5171. border-color:transparent;
  5172. }
  5173. #u60577_div {
  5174. border-width:0px;
  5175. position:absolute;
  5176. left:0px;
  5177. top:0px;
  5178. width:380px;
  5179. height:30px;
  5180. background:inherit;
  5181. background-color:rgba(255, 255, 255, 1);
  5182. border:none;
  5183. border-radius:0px;
  5184. -moz-box-shadow:none;
  5185. -webkit-box-shadow:none;
  5186. box-shadow:none;
  5187. color:#AAAAAA;
  5188. }
  5189. #u60577 {
  5190. border-width:0px;
  5191. position:absolute;
  5192. left:1807px;
  5193. top:138px;
  5194. width:380px;
  5195. height:30px;
  5196. display:flex;
  5197. color:#AAAAAA;
  5198. }
  5199. #u60577 .text {
  5200. position:absolute;
  5201. align-self:flex-start;
  5202. padding:2px 2px 2px 0px;
  5203. box-sizing:border-box;
  5204. width:100%;
  5205. }
  5206. #u60577_div.disabled {
  5207. border-width:0px;
  5208. position:absolute;
  5209. left:0px;
  5210. top:0px;
  5211. width:380px;
  5212. height:30px;
  5213. background:inherit;
  5214. background-color:rgba(240, 240, 240, 1);
  5215. border:none;
  5216. border-radius:0px;
  5217. -moz-box-shadow:none;
  5218. -webkit-box-shadow:none;
  5219. box-shadow:none;
  5220. color:#AAAAAA;
  5221. }
  5222. #u60577.disabled {
  5223. }
  5224. .u60577_input_option {
  5225. }
  5226. #u60578 {
  5227. border-width:0px;
  5228. position:absolute;
  5229. left:0px;
  5230. top:0px;
  5231. width:0px;
  5232. height:0px;
  5233. }
  5234. #u60579_div {
  5235. border-width:0px;
  5236. position:absolute;
  5237. left:0px;
  5238. top:0px;
  5239. width:400px;
  5240. height:40px;
  5241. background:inherit;
  5242. background-color:rgba(255, 255, 255, 1);
  5243. box-sizing:border-box;
  5244. border-width:1px;
  5245. border-style:solid;
  5246. border-color:rgba(170, 170, 170, 1);
  5247. border-radius:4px;
  5248. -moz-box-shadow:none;
  5249. -webkit-box-shadow:none;
  5250. box-shadow:none;
  5251. }
  5252. #u60579 {
  5253. border-width:0px;
  5254. position:absolute;
  5255. left:1797px;
  5256. top:182px;
  5257. width:400px;
  5258. height:40px;
  5259. display:flex;
  5260. }
  5261. #u60579 .text {
  5262. position:absolute;
  5263. align-self:center;
  5264. padding:2px 2px 2px 0px;
  5265. box-sizing:border-box;
  5266. width:100%;
  5267. }
  5268. #u60579_text {
  5269. border-width:0px;
  5270. word-wrap:break-word;
  5271. text-transform:none;
  5272. visibility:hidden;
  5273. }
  5274. #u60580_input {
  5275. position:absolute;
  5276. left:0px;
  5277. top:0px;
  5278. width:380px;
  5279. height:30px;
  5280. padding:2px 2px 2px 0px;
  5281. font-family:'ArialMT', 'Arial', sans-serif;
  5282. font-weight:400;
  5283. font-style:normal;
  5284. font-size:13px;
  5285. letter-spacing:normal;
  5286. color:#AAAAAA;
  5287. vertical-align:none;
  5288. text-align:left;
  5289. text-transform:none;
  5290. background-color:transparent;
  5291. border-color:transparent;
  5292. }
  5293. #u60580_input.disabled {
  5294. position:absolute;
  5295. left:0px;
  5296. top:0px;
  5297. width:380px;
  5298. height:30px;
  5299. padding:2px 2px 2px 0px;
  5300. font-family:'ArialMT', 'Arial', sans-serif;
  5301. font-weight:400;
  5302. font-style:normal;
  5303. font-size:13px;
  5304. letter-spacing:normal;
  5305. color:#AAAAAA;
  5306. vertical-align:none;
  5307. text-align:left;
  5308. text-transform:none;
  5309. background-color:transparent;
  5310. border-color:transparent;
  5311. }
  5312. #u60580_div {
  5313. border-width:0px;
  5314. position:absolute;
  5315. left:0px;
  5316. top:0px;
  5317. width:380px;
  5318. height:30px;
  5319. background:inherit;
  5320. background-color:rgba(255, 255, 255, 1);
  5321. border:none;
  5322. border-radius:0px;
  5323. -moz-box-shadow:none;
  5324. -webkit-box-shadow:none;
  5325. box-shadow:none;
  5326. color:#AAAAAA;
  5327. }
  5328. #u60580 {
  5329. border-width:0px;
  5330. position:absolute;
  5331. left:1807px;
  5332. top:188px;
  5333. width:380px;
  5334. height:30px;
  5335. display:flex;
  5336. color:#AAAAAA;
  5337. }
  5338. #u60580 .text {
  5339. position:absolute;
  5340. align-self:flex-start;
  5341. padding:2px 2px 2px 0px;
  5342. box-sizing:border-box;
  5343. width:100%;
  5344. }
  5345. #u60580_div.disabled {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:0px;
  5349. top:0px;
  5350. width:380px;
  5351. height:30px;
  5352. background:inherit;
  5353. background-color:rgba(240, 240, 240, 1);
  5354. border:none;
  5355. border-radius:0px;
  5356. -moz-box-shadow:none;
  5357. -webkit-box-shadow:none;
  5358. box-shadow:none;
  5359. color:#AAAAAA;
  5360. }
  5361. #u60580.disabled {
  5362. }
  5363. .u60580_input_option {
  5364. }
  5365. #u60581 {
  5366. border-width:0px;
  5367. position:absolute;
  5368. left:0px;
  5369. top:0px;
  5370. width:0px;
  5371. height:0px;
  5372. }
  5373. #u60582_div {
  5374. border-width:0px;
  5375. position:absolute;
  5376. left:0px;
  5377. top:0px;
  5378. width:200px;
  5379. height:1180px;
  5380. background:inherit;
  5381. background-color:rgba(255, 255, 255, 1);
  5382. border:none;
  5383. border-radius:0px;
  5384. -moz-box-shadow:none;
  5385. -webkit-box-shadow:none;
  5386. box-shadow:none;
  5387. }
  5388. #u60582 {
  5389. border-width:0px;
  5390. position:absolute;
  5391. left:120px;
  5392. top:50px;
  5393. width:200px;
  5394. height:1180px;
  5395. display:flex;
  5396. }
  5397. #u60582 .text {
  5398. position:absolute;
  5399. align-self:center;
  5400. padding:2px 2px 2px 2px;
  5401. box-sizing:border-box;
  5402. width:100%;
  5403. }
  5404. #u60582_text {
  5405. border-width:0px;
  5406. word-wrap:break-word;
  5407. text-transform:none;
  5408. visibility:hidden;
  5409. }
  5410. #u60583_div {
  5411. border-width:0px;
  5412. position:absolute;
  5413. left:0px;
  5414. top:0px;
  5415. width:200px;
  5416. height:60px;
  5417. background:inherit;
  5418. background-color:rgba(224, 231, 247, 1);
  5419. border:none;
  5420. border-radius:0px;
  5421. -moz-box-shadow:none;
  5422. -webkit-box-shadow:none;
  5423. box-shadow:none;
  5424. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5425. font-weight:500;
  5426. font-style:normal;
  5427. font-size:18px;
  5428. }
  5429. #u60583 {
  5430. border-width:0px;
  5431. position:absolute;
  5432. left:120px;
  5433. top:50px;
  5434. width:200px;
  5435. height:60px;
  5436. display:flex;
  5437. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5438. font-weight:500;
  5439. font-style:normal;
  5440. font-size:18px;
  5441. }
  5442. #u60583 .text {
  5443. position:absolute;
  5444. align-self:center;
  5445. padding:0px 0px 0px 20px;
  5446. box-sizing:border-box;
  5447. width:100%;
  5448. }
  5449. #u60583_text {
  5450. border-width:0px;
  5451. word-wrap:break-word;
  5452. text-transform:none;
  5453. }
  5454. #u60584_div {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:0px;
  5458. top:0px;
  5459. width:65px;
  5460. height:22px;
  5461. background:inherit;
  5462. background-color:rgba(255, 255, 255, 0);
  5463. border:none;
  5464. border-radius:0px;
  5465. -moz-box-shadow:none;
  5466. -webkit-box-shadow:none;
  5467. box-shadow:none;
  5468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5469. font-weight:400;
  5470. font-style:normal;
  5471. font-size:16px;
  5472. }
  5473. #u60584 {
  5474. border-width:0px;
  5475. position:absolute;
  5476. left:147px;
  5477. top:160px;
  5478. width:65px;
  5479. height:22px;
  5480. display:flex;
  5481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5482. font-weight:400;
  5483. font-style:normal;
  5484. font-size:16px;
  5485. }
  5486. #u60584 .text {
  5487. position:absolute;
  5488. align-self:flex-start;
  5489. padding:0px 0px 0px 0px;
  5490. box-sizing:border-box;
  5491. width:100%;
  5492. }
  5493. #u60584_text {
  5494. border-width:0px;
  5495. white-space:nowrap;
  5496. text-transform:none;
  5497. }
  5498. #u60585_img {
  5499. border-width:0px;
  5500. position:absolute;
  5501. left:0px;
  5502. top:0px;
  5503. width:201px;
  5504. height:2px;
  5505. }
  5506. #u60585 {
  5507. border-width:0px;
  5508. position:absolute;
  5509. left:120px;
  5510. top:279px;
  5511. width:200px;
  5512. height:1px;
  5513. display:flex;
  5514. }
  5515. #u60585 .text {
  5516. position:absolute;
  5517. align-self:center;
  5518. padding:2px 2px 2px 2px;
  5519. box-sizing:border-box;
  5520. width:100%;
  5521. }
  5522. #u60585_text {
  5523. border-width:0px;
  5524. word-wrap:break-word;
  5525. text-transform:none;
  5526. visibility:hidden;
  5527. }
  5528. #u60586_div {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:0px;
  5532. top:0px;
  5533. width:65px;
  5534. height:22px;
  5535. background:inherit;
  5536. background-color:rgba(255, 255, 255, 0);
  5537. border:none;
  5538. border-radius:0px;
  5539. -moz-box-shadow:none;
  5540. -webkit-box-shadow:none;
  5541. box-shadow:none;
  5542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5543. font-weight:400;
  5544. font-style:normal;
  5545. font-size:16px;
  5546. }
  5547. #u60586 {
  5548. border-width:0px;
  5549. position:absolute;
  5550. left:147px;
  5551. top:336px;
  5552. width:65px;
  5553. height:22px;
  5554. display:flex;
  5555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5556. font-weight:400;
  5557. font-style:normal;
  5558. font-size:16px;
  5559. }
  5560. #u60586 .text {
  5561. position:absolute;
  5562. align-self:flex-start;
  5563. padding:0px 0px 0px 0px;
  5564. box-sizing:border-box;
  5565. width:100%;
  5566. }
  5567. #u60586_text {
  5568. border-width:0px;
  5569. white-space:nowrap;
  5570. text-transform:none;
  5571. }
  5572. #u60587_div {
  5573. border-width:0px;
  5574. position:absolute;
  5575. left:0px;
  5576. top:0px;
  5577. width:49px;
  5578. height:17px;
  5579. background:inherit;
  5580. background-color:rgba(255, 255, 255, 0);
  5581. border:none;
  5582. border-radius:0px;
  5583. -moz-box-shadow:none;
  5584. -webkit-box-shadow:none;
  5585. box-shadow:none;
  5586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5587. font-weight:400;
  5588. font-style:normal;
  5589. font-size:12px;
  5590. color:#AAAAAA;
  5591. }
  5592. #u60587 {
  5593. border-width:0px;
  5594. position:absolute;
  5595. left:147px;
  5596. top:300px;
  5597. width:49px;
  5598. height:17px;
  5599. display:flex;
  5600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5601. font-weight:400;
  5602. font-style:normal;
  5603. font-size:12px;
  5604. color:#AAAAAA;
  5605. }
  5606. #u60587 .text {
  5607. position:absolute;
  5608. align-self:flex-start;
  5609. padding:0px 0px 0px 0px;
  5610. box-sizing:border-box;
  5611. width:100%;
  5612. }
  5613. #u60587_text {
  5614. border-width:0px;
  5615. white-space:nowrap;
  5616. text-transform:none;
  5617. }
  5618. #u60588_div {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:0px;
  5622. top:0px;
  5623. width:65px;
  5624. height:22px;
  5625. background:inherit;
  5626. background-color:rgba(255, 255, 255, 0);
  5627. border:none;
  5628. border-radius:0px;
  5629. -moz-box-shadow:none;
  5630. -webkit-box-shadow:none;
  5631. box-shadow:none;
  5632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5633. font-weight:400;
  5634. font-style:normal;
  5635. font-size:16px;
  5636. }
  5637. #u60588 {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:147px;
  5641. top:202px;
  5642. width:65px;
  5643. height:22px;
  5644. display:flex;
  5645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5646. font-weight:400;
  5647. font-style:normal;
  5648. font-size:16px;
  5649. }
  5650. #u60588 .text {
  5651. position:absolute;
  5652. align-self:flex-start;
  5653. padding:0px 0px 0px 0px;
  5654. box-sizing:border-box;
  5655. width:100%;
  5656. }
  5657. #u60588_text {
  5658. border-width:0px;
  5659. white-space:nowrap;
  5660. text-transform:none;
  5661. }
  5662. #u60589_div {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:0px;
  5666. top:0px;
  5667. width:65px;
  5668. height:22px;
  5669. background:inherit;
  5670. background-color:rgba(255, 255, 255, 0);
  5671. border:none;
  5672. border-radius:0px;
  5673. -moz-box-shadow:none;
  5674. -webkit-box-shadow:none;
  5675. box-shadow:none;
  5676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5677. font-weight:400;
  5678. font-style:normal;
  5679. font-size:16px;
  5680. }
  5681. #u60589 {
  5682. border-width:0px;
  5683. position:absolute;
  5684. left:147px;
  5685. top:244px;
  5686. width:65px;
  5687. height:22px;
  5688. display:flex;
  5689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5690. font-weight:400;
  5691. font-style:normal;
  5692. font-size:16px;
  5693. }
  5694. #u60589 .text {
  5695. position:absolute;
  5696. align-self:flex-start;
  5697. padding:0px 0px 0px 0px;
  5698. box-sizing:border-box;
  5699. width:100%;
  5700. }
  5701. #u60589_text {
  5702. border-width:0px;
  5703. white-space:nowrap;
  5704. text-transform:none;
  5705. }
  5706. #u60590_img {
  5707. border-width:0px;
  5708. position:absolute;
  5709. left:0px;
  5710. top:0px;
  5711. width:201px;
  5712. height:2px;
  5713. }
  5714. #u60590 {
  5715. border-width:0px;
  5716. position:absolute;
  5717. left:120px;
  5718. top:422px;
  5719. width:200px;
  5720. height:1px;
  5721. display:flex;
  5722. }
  5723. #u60590 .text {
  5724. position:absolute;
  5725. align-self:center;
  5726. padding:2px 2px 2px 2px;
  5727. box-sizing:border-box;
  5728. width:100%;
  5729. }
  5730. #u60590_text {
  5731. border-width:0px;
  5732. word-wrap:break-word;
  5733. text-transform:none;
  5734. visibility:hidden;
  5735. }
  5736. #u60591_div {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:0px;
  5740. top:0px;
  5741. width:65px;
  5742. height:22px;
  5743. background:inherit;
  5744. background-color:rgba(255, 255, 255, 0);
  5745. border:none;
  5746. border-radius:0px;
  5747. -moz-box-shadow:none;
  5748. -webkit-box-shadow:none;
  5749. box-shadow:none;
  5750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5751. font-weight:400;
  5752. font-style:normal;
  5753. font-size:16px;
  5754. }
  5755. #u60591 {
  5756. border-width:0px;
  5757. position:absolute;
  5758. left:147px;
  5759. top:479px;
  5760. width:65px;
  5761. height:22px;
  5762. display:flex;
  5763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5764. font-weight:400;
  5765. font-style:normal;
  5766. font-size:16px;
  5767. }
  5768. #u60591 .text {
  5769. position:absolute;
  5770. align-self:flex-start;
  5771. padding:0px 0px 0px 0px;
  5772. box-sizing:border-box;
  5773. width:100%;
  5774. }
  5775. #u60591_text {
  5776. border-width:0px;
  5777. white-space:nowrap;
  5778. text-transform:none;
  5779. }
  5780. #u60592_div {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:0px;
  5784. top:0px;
  5785. width:49px;
  5786. height:17px;
  5787. background:inherit;
  5788. background-color:rgba(255, 255, 255, 0);
  5789. border:none;
  5790. border-radius:0px;
  5791. -moz-box-shadow:none;
  5792. -webkit-box-shadow:none;
  5793. box-shadow:none;
  5794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5795. font-weight:400;
  5796. font-style:normal;
  5797. font-size:12px;
  5798. color:#AAAAAA;
  5799. }
  5800. #u60592 {
  5801. border-width:0px;
  5802. position:absolute;
  5803. left:147px;
  5804. top:443px;
  5805. width:49px;
  5806. height:17px;
  5807. display:flex;
  5808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5809. font-weight:400;
  5810. font-style:normal;
  5811. font-size:12px;
  5812. color:#AAAAAA;
  5813. }
  5814. #u60592 .text {
  5815. position:absolute;
  5816. align-self:flex-start;
  5817. padding:0px 0px 0px 0px;
  5818. box-sizing:border-box;
  5819. width:100%;
  5820. }
  5821. #u60592_text {
  5822. border-width:0px;
  5823. white-space:nowrap;
  5824. text-transform:none;
  5825. }
  5826. #u60593_div {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:0px;
  5830. top:0px;
  5831. width:65px;
  5832. height:22px;
  5833. background:inherit;
  5834. background-color:rgba(255, 255, 255, 0);
  5835. border:none;
  5836. border-radius:0px;
  5837. -moz-box-shadow:none;
  5838. -webkit-box-shadow:none;
  5839. box-shadow:none;
  5840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5841. font-weight:400;
  5842. font-style:normal;
  5843. font-size:16px;
  5844. }
  5845. #u60593 {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:147px;
  5849. top:561px;
  5850. width:65px;
  5851. height:22px;
  5852. display:flex;
  5853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5854. font-weight:400;
  5855. font-style:normal;
  5856. font-size:16px;
  5857. }
  5858. #u60593 .text {
  5859. position:absolute;
  5860. align-self:flex-start;
  5861. padding:0px 0px 0px 0px;
  5862. box-sizing:border-box;
  5863. width:100%;
  5864. }
  5865. #u60593_text {
  5866. border-width:0px;
  5867. white-space:nowrap;
  5868. text-transform:none;
  5869. }
  5870. #u60594_div {
  5871. border-width:0px;
  5872. position:absolute;
  5873. left:0px;
  5874. top:0px;
  5875. width:65px;
  5876. height:22px;
  5877. background:inherit;
  5878. background-color:rgba(255, 255, 255, 0);
  5879. border:none;
  5880. border-radius:0px;
  5881. -moz-box-shadow:none;
  5882. -webkit-box-shadow:none;
  5883. box-shadow:none;
  5884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5885. font-weight:400;
  5886. font-style:normal;
  5887. font-size:16px;
  5888. }
  5889. #u60594 {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:147px;
  5893. top:603px;
  5894. width:65px;
  5895. height:22px;
  5896. display:flex;
  5897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5898. font-weight:400;
  5899. font-style:normal;
  5900. font-size:16px;
  5901. }
  5902. #u60594 .text {
  5903. position:absolute;
  5904. align-self:flex-start;
  5905. padding:0px 0px 0px 0px;
  5906. box-sizing:border-box;
  5907. width:100%;
  5908. }
  5909. #u60594_text {
  5910. border-width:0px;
  5911. white-space:nowrap;
  5912. text-transform:none;
  5913. }
  5914. #u60595_div {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:0px;
  5918. top:0px;
  5919. width:65px;
  5920. height:22px;
  5921. background:inherit;
  5922. background-color:rgba(255, 255, 255, 0);
  5923. border:none;
  5924. border-radius:0px;
  5925. -moz-box-shadow:none;
  5926. -webkit-box-shadow:none;
  5927. box-shadow:none;
  5928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5929. font-weight:400;
  5930. font-style:normal;
  5931. font-size:16px;
  5932. }
  5933. #u60595 {
  5934. border-width:0px;
  5935. position:absolute;
  5936. left:147px;
  5937. top:378px;
  5938. width:65px;
  5939. height:22px;
  5940. display:flex;
  5941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5942. font-weight:400;
  5943. font-style:normal;
  5944. font-size:16px;
  5945. }
  5946. #u60595 .text {
  5947. position:absolute;
  5948. align-self:flex-start;
  5949. padding:0px 0px 0px 0px;
  5950. box-sizing:border-box;
  5951. width:100%;
  5952. }
  5953. #u60595_text {
  5954. border-width:0px;
  5955. white-space:nowrap;
  5956. text-transform:none;
  5957. }
  5958. #u60596_div {
  5959. border-width:0px;
  5960. position:absolute;
  5961. left:0px;
  5962. top:0px;
  5963. width:49px;
  5964. height:17px;
  5965. background:inherit;
  5966. background-color:rgba(255, 255, 255, 0);
  5967. border:none;
  5968. border-radius:0px;
  5969. -moz-box-shadow:none;
  5970. -webkit-box-shadow:none;
  5971. box-shadow:none;
  5972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5973. font-weight:400;
  5974. font-style:normal;
  5975. font-size:12px;
  5976. color:#AAAAAA;
  5977. }
  5978. #u60596 {
  5979. border-width:0px;
  5980. position:absolute;
  5981. left:147px;
  5982. top:123px;
  5983. width:49px;
  5984. height:17px;
  5985. display:flex;
  5986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5987. font-weight:400;
  5988. font-style:normal;
  5989. font-size:12px;
  5990. color:#AAAAAA;
  5991. }
  5992. #u60596 .text {
  5993. position:absolute;
  5994. align-self:flex-start;
  5995. padding:0px 0px 0px 0px;
  5996. box-sizing:border-box;
  5997. width:100%;
  5998. }
  5999. #u60596_text {
  6000. border-width:0px;
  6001. white-space:nowrap;
  6002. text-transform:none;
  6003. }
  6004. #u60597_div {
  6005. border-width:0px;
  6006. position:absolute;
  6007. left:0px;
  6008. top:0px;
  6009. width:65px;
  6010. height:22px;
  6011. background:inherit;
  6012. background-color:rgba(255, 255, 255, 0);
  6013. border:none;
  6014. border-radius:0px;
  6015. -moz-box-shadow:none;
  6016. -webkit-box-shadow:none;
  6017. box-shadow:none;
  6018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6019. font-weight:400;
  6020. font-style:normal;
  6021. font-size:16px;
  6022. }
  6023. #u60597 {
  6024. border-width:0px;
  6025. position:absolute;
  6026. left:147px;
  6027. top:521px;
  6028. width:65px;
  6029. height:22px;
  6030. display:flex;
  6031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6032. font-weight:400;
  6033. font-style:normal;
  6034. font-size:16px;
  6035. }
  6036. #u60597 .text {
  6037. position:absolute;
  6038. align-self:flex-start;
  6039. padding:0px 0px 0px 0px;
  6040. box-sizing:border-box;
  6041. width:100%;
  6042. }
  6043. #u60597_text {
  6044. border-width:0px;
  6045. white-space:nowrap;
  6046. text-transform:none;
  6047. }