styles.css 103 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  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. #u64496_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. #u64496 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u64496 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u64496_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u64497_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. #u64497 {
  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. #u64497 .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. #u64497_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u64498_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. #u64498 {
  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. #u64498 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u64498_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u64499 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u64500_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u64500 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u64500 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u64500_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u64501_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. #u64501 {
  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. #u64501 .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. #u64501_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u64502_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. #u64502 {
  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. #u64502 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u64502_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u64503 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u64504_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. #u64504_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. #u64504_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. #u64504 {
  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. #u64504 .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. #u64504_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. #u64504.disabled {
  356. }
  357. .u64504_input_option {
  358. font-size:14px;
  359. }
  360. #u64505_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u64505 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u64505 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u64505_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u64506_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. #u64506 {
  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. #u64506 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u64506_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u64507_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. #u64507 {
  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. #u64507 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u64507_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u64508 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u64509_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. #u64509 {
  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. #u64509 .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. #u64509_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u64510_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u64510 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u64510 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u64510_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u64511 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u64512_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. #u64512 {
  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. #u64512 .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. #u64512_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u64513_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u64513 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u64513 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u64513_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u64514 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u64515_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. #u64515 {
  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. #u64515 .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. #u64515_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u64516_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u64516 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u64516 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u64516_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u64517 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u64518_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. #u64518 {
  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. #u64518 .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. #u64518_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u64519_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u64519 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u64519 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u64519_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u64520 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u64521_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. #u64521 {
  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. #u64521 .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. #u64521_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u64522_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u64522 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u64522 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u64522_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u64523 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u64524_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. #u64524 {
  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. #u64524 .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. #u64524_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u64525_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u64525 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u64525 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u64525_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u64526 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u64527_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. #u64527 {
  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. #u64527 .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. #u64527_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u64528_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u64528 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u64528 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u64528_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u64529 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u64530_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. #u64530 {
  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. #u64530 .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. #u64530_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u64531_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u64531 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u64531 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u64531_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u64532 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u64533_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. #u64533 {
  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. #u64533 .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. #u64533_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u64534_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u64534 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u64534 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u64534_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u64535 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u64536_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. #u64536 {
  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. #u64536 .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. #u64536_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u64537_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u64537 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u64537 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u64537_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u64538_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. #u64538 {
  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. #u64538 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u64538_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u64539_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u64539 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u64539 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u64539_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u64540_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. #u64540 {
  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. #u64540 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u64540_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u64541_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u64541 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u64541 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u64541_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u64542 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u64543_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. #u64543 {
  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. #u64543 .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. #u64543_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u64544_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u64544 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u64544 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u64544_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u64545 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u64546_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. #u64546 {
  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. #u64546 .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. #u64546_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u64547_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u64547 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u64547 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u64547_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u64548 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u64549_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:200px;
  1652. height:1180px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 1);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. }
  1661. #u64549 {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:121px;
  1665. top:51px;
  1666. width:200px;
  1667. height:1180px;
  1668. display:flex;
  1669. }
  1670. #u64549 .text {
  1671. position:absolute;
  1672. align-self:center;
  1673. padding:2px 2px 2px 2px;
  1674. box-sizing:border-box;
  1675. width:100%;
  1676. }
  1677. #u64549_text {
  1678. border-width:0px;
  1679. word-wrap:break-word;
  1680. text-transform:none;
  1681. visibility:hidden;
  1682. }
  1683. #u64550_div {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:200px;
  1689. height:60px;
  1690. background:inherit;
  1691. background-color:rgba(224, 231, 247, 1);
  1692. border:none;
  1693. border-radius:0px;
  1694. -moz-box-shadow:none;
  1695. -webkit-box-shadow:none;
  1696. box-shadow:none;
  1697. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1698. font-weight:500;
  1699. font-style:normal;
  1700. font-size:18px;
  1701. }
  1702. #u64550 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:121px;
  1706. top:51px;
  1707. width:200px;
  1708. height:60px;
  1709. display:flex;
  1710. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1711. font-weight:500;
  1712. font-style:normal;
  1713. font-size:18px;
  1714. }
  1715. #u64550 .text {
  1716. position:absolute;
  1717. align-self:center;
  1718. padding:0px 0px 0px 20px;
  1719. box-sizing:border-box;
  1720. width:100%;
  1721. }
  1722. #u64550_text {
  1723. border-width:0px;
  1724. word-wrap:break-word;
  1725. text-transform:none;
  1726. }
  1727. #u64551_div {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:0px;
  1731. top:0px;
  1732. width:65px;
  1733. height:22px;
  1734. background:inherit;
  1735. background-color:rgba(255, 255, 255, 0);
  1736. border:none;
  1737. border-radius:0px;
  1738. -moz-box-shadow:none;
  1739. -webkit-box-shadow:none;
  1740. box-shadow:none;
  1741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1742. font-weight:400;
  1743. font-style:normal;
  1744. font-size:16px;
  1745. }
  1746. #u64551 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:148px;
  1750. top:162px;
  1751. width:65px;
  1752. height:22px;
  1753. display:flex;
  1754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1755. font-weight:400;
  1756. font-style:normal;
  1757. font-size:16px;
  1758. }
  1759. #u64551 .text {
  1760. position:absolute;
  1761. align-self:flex-start;
  1762. padding:0px 0px 0px 0px;
  1763. box-sizing:border-box;
  1764. width:100%;
  1765. }
  1766. #u64551_text {
  1767. border-width:0px;
  1768. white-space:nowrap;
  1769. text-transform:none;
  1770. }
  1771. #u64552_div {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:65px;
  1777. height:22px;
  1778. background:inherit;
  1779. background-color:rgba(255, 255, 255, 0);
  1780. border:none;
  1781. border-radius:0px;
  1782. -moz-box-shadow:none;
  1783. -webkit-box-shadow:none;
  1784. box-shadow:none;
  1785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1786. font-weight:400;
  1787. font-style:normal;
  1788. font-size:16px;
  1789. }
  1790. #u64552 {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:148px;
  1794. top:204px;
  1795. width:65px;
  1796. height:22px;
  1797. display:flex;
  1798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1799. font-weight:400;
  1800. font-style:normal;
  1801. font-size:16px;
  1802. }
  1803. #u64552 .text {
  1804. position:absolute;
  1805. align-self:flex-start;
  1806. padding:0px 0px 0px 0px;
  1807. box-sizing:border-box;
  1808. width:100%;
  1809. }
  1810. #u64552_text {
  1811. border-width:0px;
  1812. white-space:nowrap;
  1813. text-transform:none;
  1814. }
  1815. #u64553_div {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:0px;
  1819. top:0px;
  1820. width:81px;
  1821. height:22px;
  1822. background:inherit;
  1823. background-color:rgba(255, 255, 255, 0);
  1824. border:none;
  1825. border-radius:0px;
  1826. -moz-box-shadow:none;
  1827. -webkit-box-shadow:none;
  1828. box-shadow:none;
  1829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1830. font-weight:400;
  1831. font-style:normal;
  1832. font-size:16px;
  1833. }
  1834. #u64553 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:148px;
  1838. top:452px;
  1839. width:81px;
  1840. height:22px;
  1841. display:flex;
  1842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1843. font-weight:400;
  1844. font-style:normal;
  1845. font-size:16px;
  1846. }
  1847. #u64553 .text {
  1848. position:absolute;
  1849. align-self:flex-start;
  1850. padding:0px 0px 0px 0px;
  1851. box-sizing:border-box;
  1852. width:100%;
  1853. }
  1854. #u64553_text {
  1855. border-width:0px;
  1856. white-space:nowrap;
  1857. text-transform:none;
  1858. }
  1859. #u64554_div {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:0px;
  1863. top:0px;
  1864. width:81px;
  1865. height:22px;
  1866. background:inherit;
  1867. background-color:rgba(255, 255, 255, 0);
  1868. border:none;
  1869. border-radius:0px;
  1870. -moz-box-shadow:none;
  1871. -webkit-box-shadow:none;
  1872. box-shadow:none;
  1873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1874. font-weight:400;
  1875. font-style:normal;
  1876. font-size:16px;
  1877. }
  1878. #u64554 {
  1879. border-width:0px;
  1880. position:absolute;
  1881. left:148px;
  1882. top:494px;
  1883. width:81px;
  1884. height:22px;
  1885. display:flex;
  1886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1887. font-weight:400;
  1888. font-style:normal;
  1889. font-size:16px;
  1890. }
  1891. #u64554 .text {
  1892. position:absolute;
  1893. align-self:flex-start;
  1894. padding:0px 0px 0px 0px;
  1895. box-sizing:border-box;
  1896. width:100%;
  1897. }
  1898. #u64554_text {
  1899. border-width:0px;
  1900. white-space:nowrap;
  1901. text-transform:none;
  1902. }
  1903. #u64555_div {
  1904. border-width:0px;
  1905. position:absolute;
  1906. left:0px;
  1907. top:0px;
  1908. width:49px;
  1909. height:17px;
  1910. background:inherit;
  1911. background-color:rgba(255, 255, 255, 0);
  1912. border:none;
  1913. border-radius:0px;
  1914. -moz-box-shadow:none;
  1915. -webkit-box-shadow:none;
  1916. box-shadow:none;
  1917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1918. font-weight:400;
  1919. font-style:normal;
  1920. font-size:12px;
  1921. color:#AAAAAA;
  1922. }
  1923. #u64555 {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:148px;
  1927. top:126px;
  1928. width:49px;
  1929. height:17px;
  1930. display:flex;
  1931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1932. font-weight:400;
  1933. font-style:normal;
  1934. font-size:12px;
  1935. color:#AAAAAA;
  1936. }
  1937. #u64555 .text {
  1938. position:absolute;
  1939. align-self:flex-start;
  1940. padding:0px 0px 0px 0px;
  1941. box-sizing:border-box;
  1942. width:100%;
  1943. }
  1944. #u64555_text {
  1945. border-width:0px;
  1946. white-space:nowrap;
  1947. text-transform:none;
  1948. }
  1949. #u64556_img {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:0px;
  1953. top:0px;
  1954. width:201px;
  1955. height:2px;
  1956. }
  1957. #u64556 {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:121px;
  1961. top:399px;
  1962. width:200px;
  1963. height:1px;
  1964. display:flex;
  1965. }
  1966. #u64556 .text {
  1967. position:absolute;
  1968. align-self:center;
  1969. padding:2px 2px 2px 2px;
  1970. box-sizing:border-box;
  1971. width:100%;
  1972. }
  1973. #u64556_text {
  1974. border-width:0px;
  1975. word-wrap:break-word;
  1976. text-transform:none;
  1977. visibility:hidden;
  1978. }
  1979. #u64557_div {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:65px;
  1985. height:22px;
  1986. background:inherit;
  1987. background-color:rgba(255, 255, 255, 0);
  1988. border:none;
  1989. border-radius:0px;
  1990. -moz-box-shadow:none;
  1991. -webkit-box-shadow:none;
  1992. box-shadow:none;
  1993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1994. font-weight:400;
  1995. font-style:normal;
  1996. font-size:16px;
  1997. }
  1998. #u64557 {
  1999. border-width:0px;
  2000. position:absolute;
  2001. left:148px;
  2002. top:536px;
  2003. width:65px;
  2004. height:22px;
  2005. display:flex;
  2006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2007. font-weight:400;
  2008. font-style:normal;
  2009. font-size:16px;
  2010. }
  2011. #u64557 .text {
  2012. position:absolute;
  2013. align-self:flex-start;
  2014. padding:0px 0px 0px 0px;
  2015. box-sizing:border-box;
  2016. width:100%;
  2017. }
  2018. #u64557_text {
  2019. border-width:0px;
  2020. white-space:nowrap;
  2021. text-transform:none;
  2022. }
  2023. #u64558_div {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:0px;
  2027. top:0px;
  2028. width:65px;
  2029. height:22px;
  2030. background:inherit;
  2031. background-color:rgba(255, 255, 255, 0);
  2032. border:none;
  2033. border-radius:0px;
  2034. -moz-box-shadow:none;
  2035. -webkit-box-shadow:none;
  2036. box-shadow:none;
  2037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2038. font-weight:400;
  2039. font-style:normal;
  2040. font-size:16px;
  2041. }
  2042. #u64558 {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:148px;
  2046. top:619px;
  2047. width:65px;
  2048. height:22px;
  2049. display:flex;
  2050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2051. font-weight:400;
  2052. font-style:normal;
  2053. font-size:16px;
  2054. }
  2055. #u64558 .text {
  2056. position:absolute;
  2057. align-self:flex-start;
  2058. padding:0px 0px 0px 0px;
  2059. box-sizing:border-box;
  2060. width:100%;
  2061. }
  2062. #u64558_text {
  2063. border-width:0px;
  2064. white-space:nowrap;
  2065. text-transform:none;
  2066. }
  2067. #u64559_div {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:0px;
  2071. top:0px;
  2072. width:65px;
  2073. height:22px;
  2074. background:inherit;
  2075. background-color:rgba(255, 255, 255, 0);
  2076. border:none;
  2077. border-radius:0px;
  2078. -moz-box-shadow:none;
  2079. -webkit-box-shadow:none;
  2080. box-shadow:none;
  2081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2082. font-weight:400;
  2083. font-style:normal;
  2084. font-size:16px;
  2085. }
  2086. #u64559 {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:148px;
  2090. top:661px;
  2091. width:65px;
  2092. height:22px;
  2093. display:flex;
  2094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2095. font-weight:400;
  2096. font-style:normal;
  2097. font-size:16px;
  2098. }
  2099. #u64559 .text {
  2100. position:absolute;
  2101. align-self:flex-start;
  2102. padding:0px 0px 0px 0px;
  2103. box-sizing:border-box;
  2104. width:100%;
  2105. }
  2106. #u64559_text {
  2107. border-width:0px;
  2108. white-space:nowrap;
  2109. text-transform:none;
  2110. }
  2111. #u64560_div {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:0px;
  2115. top:0px;
  2116. width:49px;
  2117. height:17px;
  2118. background:inherit;
  2119. background-color:rgba(255, 255, 255, 0);
  2120. border:none;
  2121. border-radius:0px;
  2122. -moz-box-shadow:none;
  2123. -webkit-box-shadow:none;
  2124. box-shadow:none;
  2125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2126. font-weight:400;
  2127. font-style:normal;
  2128. font-size:12px;
  2129. color:#AAAAAA;
  2130. }
  2131. #u64560 {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:148px;
  2135. top:419px;
  2136. width:49px;
  2137. height:17px;
  2138. display:flex;
  2139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2140. font-weight:400;
  2141. font-style:normal;
  2142. font-size:12px;
  2143. color:#AAAAAA;
  2144. }
  2145. #u64560 .text {
  2146. position:absolute;
  2147. align-self:flex-start;
  2148. padding:0px 0px 0px 0px;
  2149. box-sizing:border-box;
  2150. width:100%;
  2151. }
  2152. #u64560_text {
  2153. border-width:0px;
  2154. white-space:nowrap;
  2155. text-transform:none;
  2156. }
  2157. #u64561_div {
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:0px;
  2161. top:0px;
  2162. width:65px;
  2163. height:22px;
  2164. background:inherit;
  2165. background-color:rgba(255, 255, 255, 0);
  2166. border:none;
  2167. border-radius:0px;
  2168. -moz-box-shadow:none;
  2169. -webkit-box-shadow:none;
  2170. box-shadow:none;
  2171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2172. font-weight:400;
  2173. font-style:normal;
  2174. font-size:16px;
  2175. }
  2176. #u64561 {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:148px;
  2180. top:311px;
  2181. width:65px;
  2182. height:22px;
  2183. display:flex;
  2184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2185. font-weight:400;
  2186. font-style:normal;
  2187. font-size:16px;
  2188. }
  2189. #u64561 .text {
  2190. position:absolute;
  2191. align-self:flex-start;
  2192. padding:0px 0px 0px 0px;
  2193. box-sizing:border-box;
  2194. width:100%;
  2195. }
  2196. #u64561_text {
  2197. border-width:0px;
  2198. white-space:nowrap;
  2199. text-transform:none;
  2200. }
  2201. #u64562_div {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:0px;
  2205. top:0px;
  2206. width:49px;
  2207. height:17px;
  2208. background:inherit;
  2209. background-color:rgba(255, 255, 255, 0);
  2210. border:none;
  2211. border-radius:0px;
  2212. -moz-box-shadow:none;
  2213. -webkit-box-shadow:none;
  2214. box-shadow:none;
  2215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2216. font-weight:400;
  2217. font-style:normal;
  2218. font-size:12px;
  2219. color:#AAAAAA;
  2220. }
  2221. #u64562 {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:148px;
  2225. top:275px;
  2226. width:49px;
  2227. height:17px;
  2228. display:flex;
  2229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2230. font-weight:400;
  2231. font-style:normal;
  2232. font-size:12px;
  2233. color:#AAAAAA;
  2234. }
  2235. #u64562 .text {
  2236. position:absolute;
  2237. align-self:flex-start;
  2238. padding:0px 0px 0px 0px;
  2239. box-sizing:border-box;
  2240. width:100%;
  2241. }
  2242. #u64562_text {
  2243. border-width:0px;
  2244. white-space:nowrap;
  2245. text-transform:none;
  2246. }
  2247. #u64563_img {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:0px;
  2251. top:0px;
  2252. width:201px;
  2253. height:2px;
  2254. }
  2255. #u64563 {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:121px;
  2259. top:253px;
  2260. width:200px;
  2261. height:1px;
  2262. display:flex;
  2263. }
  2264. #u64563 .text {
  2265. position:absolute;
  2266. align-self:center;
  2267. padding:2px 2px 2px 2px;
  2268. box-sizing:border-box;
  2269. width:100%;
  2270. }
  2271. #u64563_text {
  2272. border-width:0px;
  2273. word-wrap:break-word;
  2274. text-transform:none;
  2275. visibility:hidden;
  2276. }
  2277. #u64564_div {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:0px;
  2281. top:0px;
  2282. width:97px;
  2283. height:22px;
  2284. background:inherit;
  2285. background-color:rgba(255, 255, 255, 0);
  2286. border:none;
  2287. border-radius:0px;
  2288. -moz-box-shadow:none;
  2289. -webkit-box-shadow:none;
  2290. box-shadow:none;
  2291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2292. font-weight:400;
  2293. font-style:normal;
  2294. font-size:16px;
  2295. color:#1890FF;
  2296. }
  2297. #u64564 {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:148px;
  2301. top:353px;
  2302. width:97px;
  2303. height:22px;
  2304. display:flex;
  2305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2306. font-weight:400;
  2307. font-style:normal;
  2308. font-size:16px;
  2309. color:#1890FF;
  2310. }
  2311. #u64564 .text {
  2312. position:absolute;
  2313. align-self:flex-start;
  2314. padding:0px 0px 0px 0px;
  2315. box-sizing:border-box;
  2316. width:100%;
  2317. }
  2318. #u64564_text {
  2319. border-width:0px;
  2320. white-space:nowrap;
  2321. text-transform:none;
  2322. }
  2323. #u64565_div {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:0px;
  2327. top:0px;
  2328. width:65px;
  2329. height:22px;
  2330. background:inherit;
  2331. background-color:rgba(255, 255, 255, 0);
  2332. border:none;
  2333. border-radius:0px;
  2334. -moz-box-shadow:none;
  2335. -webkit-box-shadow:none;
  2336. box-shadow:none;
  2337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2338. font-weight:400;
  2339. font-style:normal;
  2340. font-size:16px;
  2341. }
  2342. #u64565 {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:148px;
  2346. top:577px;
  2347. width:65px;
  2348. height:22px;
  2349. display:flex;
  2350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2351. font-weight:400;
  2352. font-style:normal;
  2353. font-size:16px;
  2354. }
  2355. #u64565 .text {
  2356. position:absolute;
  2357. align-self:flex-start;
  2358. padding:0px 0px 0px 0px;
  2359. box-sizing:border-box;
  2360. width:100%;
  2361. }
  2362. #u64565_text {
  2363. border-width:0px;
  2364. white-space:nowrap;
  2365. text-transform:none;
  2366. }
  2367. #u64566 {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:0px;
  2371. top:0px;
  2372. width:0px;
  2373. height:0px;
  2374. }
  2375. #u64567_div {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:0px;
  2379. top:0px;
  2380. width:1257px;
  2381. height:1160px;
  2382. background:inherit;
  2383. background-color:rgba(255, 255, 255, 1);
  2384. box-sizing:border-box;
  2385. border-width:1px;
  2386. border-style:solid;
  2387. border-color:rgba(242, 242, 242, 1);
  2388. border-radius:0px;
  2389. -moz-box-shadow:none;
  2390. -webkit-box-shadow:none;
  2391. box-shadow:none;
  2392. }
  2393. #u64567 {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:331px;
  2397. top:52px;
  2398. width:1257px;
  2399. height:1160px;
  2400. display:flex;
  2401. }
  2402. #u64567 .text {
  2403. position:absolute;
  2404. align-self:center;
  2405. padding:2px 2px 2px 2px;
  2406. box-sizing:border-box;
  2407. width:100%;
  2408. }
  2409. #u64567_text {
  2410. border-width:0px;
  2411. word-wrap:break-word;
  2412. text-transform:none;
  2413. visibility:hidden;
  2414. }
  2415. #u64568 {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:354px;
  2419. top:161px;
  2420. width:1220px;
  2421. height:238px;
  2422. }
  2423. #u64569_img {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:0px;
  2427. top:0px;
  2428. width:134px;
  2429. height:44px;
  2430. }
  2431. #u64569 {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:0px;
  2435. top:0px;
  2436. width:134px;
  2437. height:44px;
  2438. display:flex;
  2439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2440. font-weight:400;
  2441. font-style:normal;
  2442. font-size:14px;
  2443. color:#FFFFFF;
  2444. }
  2445. #u64569 .text {
  2446. position:absolute;
  2447. align-self:center;
  2448. padding:2px 2px 2px 2px;
  2449. box-sizing:border-box;
  2450. width:100%;
  2451. }
  2452. #u64569_text {
  2453. border-width:0px;
  2454. word-wrap:break-word;
  2455. text-transform:none;
  2456. }
  2457. #u64570_img {
  2458. border-width:0px;
  2459. position:absolute;
  2460. left:0px;
  2461. top:0px;
  2462. width:134px;
  2463. height:44px;
  2464. }
  2465. #u64570 {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:134px;
  2469. top:0px;
  2470. width:134px;
  2471. height:44px;
  2472. display:flex;
  2473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2474. font-weight:400;
  2475. font-style:normal;
  2476. font-size:14px;
  2477. color:#FFFFFF;
  2478. }
  2479. #u64570 .text {
  2480. position:absolute;
  2481. align-self:center;
  2482. padding:2px 2px 2px 2px;
  2483. box-sizing:border-box;
  2484. width:100%;
  2485. }
  2486. #u64570_text {
  2487. border-width:0px;
  2488. word-wrap:break-word;
  2489. text-transform:none;
  2490. }
  2491. #u64571_img {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:0px;
  2495. top:0px;
  2496. width:83px;
  2497. height:44px;
  2498. }
  2499. #u64571 {
  2500. border-width:0px;
  2501. position:absolute;
  2502. left:268px;
  2503. top:0px;
  2504. width:83px;
  2505. height:44px;
  2506. display:flex;
  2507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2508. font-weight:400;
  2509. font-style:normal;
  2510. font-size:14px;
  2511. color:#FFFFFF;
  2512. }
  2513. #u64571 .text {
  2514. position:absolute;
  2515. align-self:center;
  2516. padding:2px 2px 2px 2px;
  2517. box-sizing:border-box;
  2518. width:100%;
  2519. }
  2520. #u64571_text {
  2521. border-width:0px;
  2522. word-wrap:break-word;
  2523. text-transform:none;
  2524. }
  2525. #u64572_img {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:0px;
  2529. top:0px;
  2530. width:83px;
  2531. height:44px;
  2532. }
  2533. #u64572 {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:351px;
  2537. top:0px;
  2538. width:83px;
  2539. height:44px;
  2540. display:flex;
  2541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2542. font-weight:400;
  2543. font-style:normal;
  2544. font-size:14px;
  2545. color:#FFFFFF;
  2546. }
  2547. #u64572 .text {
  2548. position:absolute;
  2549. align-self:center;
  2550. padding:2px 2px 2px 2px;
  2551. box-sizing:border-box;
  2552. width:100%;
  2553. }
  2554. #u64572_text {
  2555. border-width:0px;
  2556. word-wrap:break-word;
  2557. text-transform:none;
  2558. }
  2559. #u64573_img {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:0px;
  2563. top:0px;
  2564. width:90px;
  2565. height:44px;
  2566. }
  2567. #u64573 {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:434px;
  2571. top:0px;
  2572. width:90px;
  2573. height:44px;
  2574. display:flex;
  2575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2576. font-weight:400;
  2577. font-style:normal;
  2578. font-size:14px;
  2579. color:#FFFFFF;
  2580. }
  2581. #u64573 .text {
  2582. position:absolute;
  2583. align-self:center;
  2584. padding:2px 2px 2px 2px;
  2585. box-sizing:border-box;
  2586. width:100%;
  2587. }
  2588. #u64573_text {
  2589. border-width:0px;
  2590. word-wrap:break-word;
  2591. text-transform:none;
  2592. }
  2593. #u64574_img {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:0px;
  2597. top:0px;
  2598. width:90px;
  2599. height:44px;
  2600. }
  2601. #u64574 {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:524px;
  2605. top:0px;
  2606. width:90px;
  2607. height:44px;
  2608. display:flex;
  2609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2610. font-weight:400;
  2611. font-style:normal;
  2612. font-size:14px;
  2613. color:#FFFFFF;
  2614. }
  2615. #u64574 .text {
  2616. position:absolute;
  2617. align-self:center;
  2618. padding:2px 2px 2px 2px;
  2619. box-sizing:border-box;
  2620. width:100%;
  2621. }
  2622. #u64574_text {
  2623. border-width:0px;
  2624. word-wrap:break-word;
  2625. text-transform:none;
  2626. }
  2627. #u64575_img {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:0px;
  2631. top:0px;
  2632. width:83px;
  2633. height:44px;
  2634. }
  2635. #u64575 {
  2636. border-width:0px;
  2637. position:absolute;
  2638. left:614px;
  2639. top:0px;
  2640. width:83px;
  2641. height:44px;
  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. color:#FFFFFF;
  2648. }
  2649. #u64575 .text {
  2650. position:absolute;
  2651. align-self:center;
  2652. padding:2px 2px 2px 2px;
  2653. box-sizing:border-box;
  2654. width:100%;
  2655. }
  2656. #u64575_text {
  2657. border-width:0px;
  2658. word-wrap:break-word;
  2659. text-transform:none;
  2660. }
  2661. #u64576_img {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:0px;
  2665. top:0px;
  2666. width:83px;
  2667. height:44px;
  2668. }
  2669. #u64576 {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:697px;
  2673. top:0px;
  2674. width:83px;
  2675. height:44px;
  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. color:#FFFFFF;
  2682. }
  2683. #u64576 .text {
  2684. position:absolute;
  2685. align-self:center;
  2686. padding:2px 2px 2px 2px;
  2687. box-sizing:border-box;
  2688. width:100%;
  2689. }
  2690. #u64576_text {
  2691. border-width:0px;
  2692. word-wrap:break-word;
  2693. text-transform:none;
  2694. }
  2695. #u64577_img {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:0px;
  2699. top:0px;
  2700. width:90px;
  2701. height:44px;
  2702. }
  2703. #u64577 {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:780px;
  2707. top:0px;
  2708. width:90px;
  2709. height:44px;
  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. color:#FFFFFF;
  2716. }
  2717. #u64577 .text {
  2718. position:absolute;
  2719. align-self:center;
  2720. padding:2px 2px 2px 2px;
  2721. box-sizing:border-box;
  2722. width:100%;
  2723. }
  2724. #u64577_text {
  2725. border-width:0px;
  2726. word-wrap:break-word;
  2727. text-transform:none;
  2728. }
  2729. #u64578_img {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:0px;
  2733. top:0px;
  2734. width:83px;
  2735. height:44px;
  2736. }
  2737. #u64578 {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:870px;
  2741. top:0px;
  2742. width:83px;
  2743. height:44px;
  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. color:#FFFFFF;
  2750. }
  2751. #u64578 .text {
  2752. position:absolute;
  2753. align-self:center;
  2754. padding:2px 2px 2px 2px;
  2755. box-sizing:border-box;
  2756. width:100%;
  2757. }
  2758. #u64578_text {
  2759. border-width:0px;
  2760. word-wrap:break-word;
  2761. text-transform:none;
  2762. }
  2763. #u64579_img {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:83px;
  2769. height:44px;
  2770. }
  2771. #u64579 {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:953px;
  2775. top:0px;
  2776. width:83px;
  2777. height:44px;
  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. color:#FFFFFF;
  2784. }
  2785. #u64579 .text {
  2786. position:absolute;
  2787. align-self:center;
  2788. padding:2px 2px 2px 2px;
  2789. box-sizing:border-box;
  2790. width:100%;
  2791. }
  2792. #u64579_text {
  2793. border-width:0px;
  2794. word-wrap:break-word;
  2795. text-transform:none;
  2796. }
  2797. #u64580_img {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:0px;
  2802. width:90px;
  2803. height:44px;
  2804. }
  2805. #u64580 {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:1036px;
  2809. top:0px;
  2810. width:90px;
  2811. height:44px;
  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. color:#FFFFFF;
  2818. }
  2819. #u64580 .text {
  2820. position:absolute;
  2821. align-self:center;
  2822. padding:2px 2px 2px 2px;
  2823. box-sizing:border-box;
  2824. width:100%;
  2825. }
  2826. #u64580_text {
  2827. border-width:0px;
  2828. word-wrap:break-word;
  2829. text-transform:none;
  2830. }
  2831. #u64581_img {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:0px;
  2835. top:0px;
  2836. width:94px;
  2837. height:44px;
  2838. }
  2839. #u64581 {
  2840. border-width:0px;
  2841. position:absolute;
  2842. left:1126px;
  2843. top:0px;
  2844. width:94px;
  2845. height:44px;
  2846. display:flex;
  2847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2848. font-weight:400;
  2849. font-style:normal;
  2850. font-size:14px;
  2851. color:#FFFFFF;
  2852. }
  2853. #u64581 .text {
  2854. position:absolute;
  2855. align-self:center;
  2856. padding:2px 2px 2px 2px;
  2857. box-sizing:border-box;
  2858. width:100%;
  2859. }
  2860. #u64581_text {
  2861. border-width:0px;
  2862. word-wrap:break-word;
  2863. text-transform:none;
  2864. }
  2865. #u64582_img {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:0px;
  2869. top:0px;
  2870. width:134px;
  2871. height:44px;
  2872. }
  2873. #u64582 {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:0px;
  2877. top:44px;
  2878. width:134px;
  2879. height:44px;
  2880. display:flex;
  2881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2882. font-weight:400;
  2883. font-style:normal;
  2884. font-size:14px;
  2885. }
  2886. #u64582 .text {
  2887. position:absolute;
  2888. align-self:center;
  2889. padding:2px 2px 2px 2px;
  2890. box-sizing:border-box;
  2891. width:100%;
  2892. }
  2893. #u64582_text {
  2894. border-width:0px;
  2895. word-wrap:break-word;
  2896. text-transform:none;
  2897. visibility:hidden;
  2898. }
  2899. #u64583_img {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:134px;
  2905. height:44px;
  2906. }
  2907. #u64583 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:134px;
  2911. top:44px;
  2912. width:134px;
  2913. height:44px;
  2914. display:flex;
  2915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2916. font-weight:400;
  2917. font-style:normal;
  2918. font-size:14px;
  2919. }
  2920. #u64583 .text {
  2921. position:absolute;
  2922. align-self:center;
  2923. padding:2px 2px 2px 2px;
  2924. box-sizing:border-box;
  2925. width:100%;
  2926. }
  2927. #u64583_text {
  2928. border-width:0px;
  2929. word-wrap:break-word;
  2930. text-transform:none;
  2931. visibility:hidden;
  2932. }
  2933. #u64584_img {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:0px;
  2937. top:0px;
  2938. width:83px;
  2939. height:44px;
  2940. }
  2941. #u64584 {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:268px;
  2945. top:44px;
  2946. width:83px;
  2947. height:44px;
  2948. display:flex;
  2949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2950. font-weight:400;
  2951. font-style:normal;
  2952. font-size:14px;
  2953. }
  2954. #u64584 .text {
  2955. position:absolute;
  2956. align-self:center;
  2957. padding:2px 2px 2px 2px;
  2958. box-sizing:border-box;
  2959. width:100%;
  2960. }
  2961. #u64584_text {
  2962. border-width:0px;
  2963. word-wrap:break-word;
  2964. text-transform:none;
  2965. visibility:hidden;
  2966. }
  2967. #u64585_img {
  2968. border-width:0px;
  2969. position:absolute;
  2970. left:0px;
  2971. top:0px;
  2972. width:83px;
  2973. height:44px;
  2974. }
  2975. #u64585 {
  2976. border-width:0px;
  2977. position:absolute;
  2978. left:351px;
  2979. top:44px;
  2980. width:83px;
  2981. height:44px;
  2982. display:flex;
  2983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2984. font-weight:400;
  2985. font-style:normal;
  2986. font-size:14px;
  2987. }
  2988. #u64585 .text {
  2989. position:absolute;
  2990. align-self:center;
  2991. padding:2px 2px 2px 2px;
  2992. box-sizing:border-box;
  2993. width:100%;
  2994. }
  2995. #u64585_text {
  2996. border-width:0px;
  2997. word-wrap:break-word;
  2998. text-transform:none;
  2999. visibility:hidden;
  3000. }
  3001. #u64586_img {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:0px;
  3005. top:0px;
  3006. width:90px;
  3007. height:44px;
  3008. }
  3009. #u64586 {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:434px;
  3013. top:44px;
  3014. width:90px;
  3015. height:44px;
  3016. display:flex;
  3017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3018. font-weight:400;
  3019. font-style:normal;
  3020. font-size:14px;
  3021. }
  3022. #u64586 .text {
  3023. position:absolute;
  3024. align-self:center;
  3025. padding:2px 2px 2px 2px;
  3026. box-sizing:border-box;
  3027. width:100%;
  3028. }
  3029. #u64586_text {
  3030. border-width:0px;
  3031. word-wrap:break-word;
  3032. text-transform:none;
  3033. visibility:hidden;
  3034. }
  3035. #u64587_img {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:90px;
  3041. height:44px;
  3042. }
  3043. #u64587 {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:524px;
  3047. top:44px;
  3048. width:90px;
  3049. height:44px;
  3050. display:flex;
  3051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3052. font-weight:400;
  3053. font-style:normal;
  3054. font-size:14px;
  3055. }
  3056. #u64587 .text {
  3057. position:absolute;
  3058. align-self:center;
  3059. padding:2px 2px 2px 2px;
  3060. box-sizing:border-box;
  3061. width:100%;
  3062. }
  3063. #u64587_text {
  3064. border-width:0px;
  3065. word-wrap:break-word;
  3066. text-transform:none;
  3067. visibility:hidden;
  3068. }
  3069. #u64588_img {
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:0px;
  3073. top:0px;
  3074. width:83px;
  3075. height:44px;
  3076. }
  3077. #u64588 {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:614px;
  3081. top:44px;
  3082. width:83px;
  3083. height:44px;
  3084. display:flex;
  3085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3086. font-weight:400;
  3087. font-style:normal;
  3088. font-size:14px;
  3089. }
  3090. #u64588 .text {
  3091. position:absolute;
  3092. align-self:center;
  3093. padding:2px 2px 2px 2px;
  3094. box-sizing:border-box;
  3095. width:100%;
  3096. }
  3097. #u64588_text {
  3098. border-width:0px;
  3099. word-wrap:break-word;
  3100. text-transform:none;
  3101. visibility:hidden;
  3102. }
  3103. #u64589_img {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:0px;
  3107. top:0px;
  3108. width:83px;
  3109. height:44px;
  3110. }
  3111. #u64589 {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:697px;
  3115. top:44px;
  3116. width:83px;
  3117. height:44px;
  3118. display:flex;
  3119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3120. font-weight:400;
  3121. font-style:normal;
  3122. font-size:14px;
  3123. }
  3124. #u64589 .text {
  3125. position:absolute;
  3126. align-self:center;
  3127. padding:2px 2px 2px 2px;
  3128. box-sizing:border-box;
  3129. width:100%;
  3130. }
  3131. #u64589_text {
  3132. border-width:0px;
  3133. word-wrap:break-word;
  3134. text-transform:none;
  3135. visibility:hidden;
  3136. }
  3137. #u64590_img {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:0px;
  3141. top:0px;
  3142. width:90px;
  3143. height:44px;
  3144. }
  3145. #u64590 {
  3146. border-width:0px;
  3147. position:absolute;
  3148. left:780px;
  3149. top:44px;
  3150. width:90px;
  3151. height:44px;
  3152. display:flex;
  3153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3154. font-weight:400;
  3155. font-style:normal;
  3156. font-size:14px;
  3157. }
  3158. #u64590 .text {
  3159. position:absolute;
  3160. align-self:center;
  3161. padding:2px 2px 2px 2px;
  3162. box-sizing:border-box;
  3163. width:100%;
  3164. }
  3165. #u64590_text {
  3166. border-width:0px;
  3167. word-wrap:break-word;
  3168. text-transform:none;
  3169. visibility:hidden;
  3170. }
  3171. #u64591_img {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:0px;
  3175. top:0px;
  3176. width:83px;
  3177. height:44px;
  3178. }
  3179. #u64591 {
  3180. border-width:0px;
  3181. position:absolute;
  3182. left:870px;
  3183. top:44px;
  3184. width:83px;
  3185. height:44px;
  3186. display:flex;
  3187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3188. font-weight:400;
  3189. font-style:normal;
  3190. font-size:14px;
  3191. }
  3192. #u64591 .text {
  3193. position:absolute;
  3194. align-self:center;
  3195. padding:2px 2px 2px 2px;
  3196. box-sizing:border-box;
  3197. width:100%;
  3198. }
  3199. #u64591_text {
  3200. border-width:0px;
  3201. word-wrap:break-word;
  3202. text-transform:none;
  3203. visibility:hidden;
  3204. }
  3205. #u64592_img {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:0px;
  3209. top:0px;
  3210. width:83px;
  3211. height:44px;
  3212. }
  3213. #u64592 {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:953px;
  3217. top:44px;
  3218. width:83px;
  3219. height:44px;
  3220. display:flex;
  3221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3222. font-weight:400;
  3223. font-style:normal;
  3224. font-size:14px;
  3225. }
  3226. #u64592 .text {
  3227. position:absolute;
  3228. align-self:center;
  3229. padding:2px 2px 2px 2px;
  3230. box-sizing:border-box;
  3231. width:100%;
  3232. }
  3233. #u64592_text {
  3234. border-width:0px;
  3235. word-wrap:break-word;
  3236. text-transform:none;
  3237. visibility:hidden;
  3238. }
  3239. #u64593_img {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:0px;
  3243. top:0px;
  3244. width:90px;
  3245. height:44px;
  3246. }
  3247. #u64593 {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:1036px;
  3251. top:44px;
  3252. width:90px;
  3253. height:44px;
  3254. display:flex;
  3255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3256. font-weight:400;
  3257. font-style:normal;
  3258. font-size:14px;
  3259. }
  3260. #u64593 .text {
  3261. position:absolute;
  3262. align-self:center;
  3263. padding:2px 2px 2px 2px;
  3264. box-sizing:border-box;
  3265. width:100%;
  3266. }
  3267. #u64593_text {
  3268. border-width:0px;
  3269. word-wrap:break-word;
  3270. text-transform:none;
  3271. visibility:hidden;
  3272. }
  3273. #u64594_img {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:0px;
  3277. top:0px;
  3278. width:94px;
  3279. height:44px;
  3280. }
  3281. #u64594 {
  3282. border-width:0px;
  3283. position:absolute;
  3284. left:1126px;
  3285. top:44px;
  3286. width:94px;
  3287. height:44px;
  3288. display:flex;
  3289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3290. font-weight:400;
  3291. font-style:normal;
  3292. font-size:14px;
  3293. }
  3294. #u64594 .text {
  3295. position:absolute;
  3296. align-self:center;
  3297. padding:2px 2px 2px 2px;
  3298. box-sizing:border-box;
  3299. width:100%;
  3300. }
  3301. #u64594_text {
  3302. border-width:0px;
  3303. word-wrap:break-word;
  3304. text-transform:none;
  3305. visibility:hidden;
  3306. }
  3307. #u64595_img {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:0px;
  3311. top:0px;
  3312. width:134px;
  3313. height:30px;
  3314. }
  3315. #u64595 {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:0px;
  3319. top:88px;
  3320. width:134px;
  3321. height:30px;
  3322. display:flex;
  3323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3324. font-weight:400;
  3325. font-style:normal;
  3326. font-size:14px;
  3327. }
  3328. #u64595 .text {
  3329. position:absolute;
  3330. align-self:center;
  3331. padding:2px 2px 2px 2px;
  3332. box-sizing:border-box;
  3333. width:100%;
  3334. }
  3335. #u64595_text {
  3336. border-width:0px;
  3337. word-wrap:break-word;
  3338. text-transform:none;
  3339. visibility:hidden;
  3340. }
  3341. #u64596_img {
  3342. border-width:0px;
  3343. position:absolute;
  3344. left:0px;
  3345. top:0px;
  3346. width:134px;
  3347. height:30px;
  3348. }
  3349. #u64596 {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:134px;
  3353. top:88px;
  3354. width:134px;
  3355. height:30px;
  3356. display:flex;
  3357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3358. font-weight:400;
  3359. font-style:normal;
  3360. font-size:14px;
  3361. }
  3362. #u64596 .text {
  3363. position:absolute;
  3364. align-self:center;
  3365. padding:2px 2px 2px 2px;
  3366. box-sizing:border-box;
  3367. width:100%;
  3368. }
  3369. #u64596_text {
  3370. border-width:0px;
  3371. word-wrap:break-word;
  3372. text-transform:none;
  3373. visibility:hidden;
  3374. }
  3375. #u64597_img {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:0px;
  3379. top:0px;
  3380. width:83px;
  3381. height:30px;
  3382. }
  3383. #u64597 {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:268px;
  3387. top:88px;
  3388. width:83px;
  3389. height:30px;
  3390. display:flex;
  3391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3392. font-weight:400;
  3393. font-style:normal;
  3394. font-size:14px;
  3395. }
  3396. #u64597 .text {
  3397. position:absolute;
  3398. align-self:center;
  3399. padding:2px 2px 2px 2px;
  3400. box-sizing:border-box;
  3401. width:100%;
  3402. }
  3403. #u64597_text {
  3404. border-width:0px;
  3405. word-wrap:break-word;
  3406. text-transform:none;
  3407. visibility:hidden;
  3408. }
  3409. #u64598_img {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:0px;
  3413. top:0px;
  3414. width:83px;
  3415. height:30px;
  3416. }
  3417. #u64598 {
  3418. border-width:0px;
  3419. position:absolute;
  3420. left:351px;
  3421. top:88px;
  3422. width:83px;
  3423. height:30px;
  3424. display:flex;
  3425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3426. font-weight:400;
  3427. font-style:normal;
  3428. font-size:14px;
  3429. }
  3430. #u64598 .text {
  3431. position:absolute;
  3432. align-self:center;
  3433. padding:2px 2px 2px 2px;
  3434. box-sizing:border-box;
  3435. width:100%;
  3436. }
  3437. #u64598_text {
  3438. border-width:0px;
  3439. word-wrap:break-word;
  3440. text-transform:none;
  3441. visibility:hidden;
  3442. }
  3443. #u64599_img {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:0px;
  3447. top:0px;
  3448. width:90px;
  3449. height:30px;
  3450. }
  3451. #u64599 {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:434px;
  3455. top:88px;
  3456. width:90px;
  3457. height:30px;
  3458. display:flex;
  3459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3460. font-weight:400;
  3461. font-style:normal;
  3462. font-size:14px;
  3463. }
  3464. #u64599 .text {
  3465. position:absolute;
  3466. align-self:center;
  3467. padding:2px 2px 2px 2px;
  3468. box-sizing:border-box;
  3469. width:100%;
  3470. }
  3471. #u64599_text {
  3472. border-width:0px;
  3473. word-wrap:break-word;
  3474. text-transform:none;
  3475. visibility:hidden;
  3476. }
  3477. #u64600_img {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:0px;
  3481. top:0px;
  3482. width:90px;
  3483. height:30px;
  3484. }
  3485. #u64600 {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:524px;
  3489. top:88px;
  3490. width:90px;
  3491. height:30px;
  3492. display:flex;
  3493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3494. font-weight:400;
  3495. font-style:normal;
  3496. font-size:14px;
  3497. }
  3498. #u64600 .text {
  3499. position:absolute;
  3500. align-self:center;
  3501. padding:2px 2px 2px 2px;
  3502. box-sizing:border-box;
  3503. width:100%;
  3504. }
  3505. #u64600_text {
  3506. border-width:0px;
  3507. word-wrap:break-word;
  3508. text-transform:none;
  3509. visibility:hidden;
  3510. }
  3511. #u64601_img {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:0px;
  3515. top:0px;
  3516. width:83px;
  3517. height:30px;
  3518. }
  3519. #u64601 {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:614px;
  3523. top:88px;
  3524. width:83px;
  3525. height:30px;
  3526. display:flex;
  3527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3528. font-weight:400;
  3529. font-style:normal;
  3530. font-size:14px;
  3531. }
  3532. #u64601 .text {
  3533. position:absolute;
  3534. align-self:center;
  3535. padding:2px 2px 2px 2px;
  3536. box-sizing:border-box;
  3537. width:100%;
  3538. }
  3539. #u64601_text {
  3540. border-width:0px;
  3541. word-wrap:break-word;
  3542. text-transform:none;
  3543. visibility:hidden;
  3544. }
  3545. #u64602_img {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:0px;
  3549. top:0px;
  3550. width:83px;
  3551. height:30px;
  3552. }
  3553. #u64602 {
  3554. border-width:0px;
  3555. position:absolute;
  3556. left:697px;
  3557. top:88px;
  3558. width:83px;
  3559. height:30px;
  3560. display:flex;
  3561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3562. font-weight:400;
  3563. font-style:normal;
  3564. font-size:14px;
  3565. }
  3566. #u64602 .text {
  3567. position:absolute;
  3568. align-self:center;
  3569. padding:2px 2px 2px 2px;
  3570. box-sizing:border-box;
  3571. width:100%;
  3572. }
  3573. #u64602_text {
  3574. border-width:0px;
  3575. word-wrap:break-word;
  3576. text-transform:none;
  3577. visibility:hidden;
  3578. }
  3579. #u64603_img {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:0px;
  3583. top:0px;
  3584. width:90px;
  3585. height:30px;
  3586. }
  3587. #u64603 {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:780px;
  3591. top:88px;
  3592. width:90px;
  3593. height:30px;
  3594. display:flex;
  3595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3596. font-weight:400;
  3597. font-style:normal;
  3598. font-size:14px;
  3599. }
  3600. #u64603 .text {
  3601. position:absolute;
  3602. align-self:center;
  3603. padding:2px 2px 2px 2px;
  3604. box-sizing:border-box;
  3605. width:100%;
  3606. }
  3607. #u64603_text {
  3608. border-width:0px;
  3609. word-wrap:break-word;
  3610. text-transform:none;
  3611. visibility:hidden;
  3612. }
  3613. #u64604_img {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:0px;
  3617. top:0px;
  3618. width:83px;
  3619. height:30px;
  3620. }
  3621. #u64604 {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:870px;
  3625. top:88px;
  3626. width:83px;
  3627. height:30px;
  3628. display:flex;
  3629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3630. font-weight:400;
  3631. font-style:normal;
  3632. font-size:14px;
  3633. }
  3634. #u64604 .text {
  3635. position:absolute;
  3636. align-self:center;
  3637. padding:2px 2px 2px 2px;
  3638. box-sizing:border-box;
  3639. width:100%;
  3640. }
  3641. #u64604_text {
  3642. border-width:0px;
  3643. word-wrap:break-word;
  3644. text-transform:none;
  3645. visibility:hidden;
  3646. }
  3647. #u64605_img {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:0px;
  3651. top:0px;
  3652. width:83px;
  3653. height:30px;
  3654. }
  3655. #u64605 {
  3656. border-width:0px;
  3657. position:absolute;
  3658. left:953px;
  3659. top:88px;
  3660. width:83px;
  3661. height:30px;
  3662. display:flex;
  3663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3664. font-weight:400;
  3665. font-style:normal;
  3666. font-size:14px;
  3667. }
  3668. #u64605 .text {
  3669. position:absolute;
  3670. align-self:center;
  3671. padding:2px 2px 2px 2px;
  3672. box-sizing:border-box;
  3673. width:100%;
  3674. }
  3675. #u64605_text {
  3676. border-width:0px;
  3677. word-wrap:break-word;
  3678. text-transform:none;
  3679. visibility:hidden;
  3680. }
  3681. #u64606_img {
  3682. border-width:0px;
  3683. position:absolute;
  3684. left:0px;
  3685. top:0px;
  3686. width:90px;
  3687. height:30px;
  3688. }
  3689. #u64606 {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:1036px;
  3693. top:88px;
  3694. width:90px;
  3695. height:30px;
  3696. display:flex;
  3697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3698. font-weight:400;
  3699. font-style:normal;
  3700. font-size:14px;
  3701. }
  3702. #u64606 .text {
  3703. position:absolute;
  3704. align-self:center;
  3705. padding:2px 2px 2px 2px;
  3706. box-sizing:border-box;
  3707. width:100%;
  3708. }
  3709. #u64606_text {
  3710. border-width:0px;
  3711. word-wrap:break-word;
  3712. text-transform:none;
  3713. visibility:hidden;
  3714. }
  3715. #u64607_img {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:0px;
  3719. top:0px;
  3720. width:94px;
  3721. height:30px;
  3722. }
  3723. #u64607 {
  3724. border-width:0px;
  3725. position:absolute;
  3726. left:1126px;
  3727. top:88px;
  3728. width:94px;
  3729. height:30px;
  3730. display:flex;
  3731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3732. font-weight:400;
  3733. font-style:normal;
  3734. font-size:14px;
  3735. }
  3736. #u64607 .text {
  3737. position:absolute;
  3738. align-self:center;
  3739. padding:2px 2px 2px 2px;
  3740. box-sizing:border-box;
  3741. width:100%;
  3742. }
  3743. #u64607_text {
  3744. border-width:0px;
  3745. word-wrap:break-word;
  3746. text-transform:none;
  3747. visibility:hidden;
  3748. }
  3749. #u64608_img {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:0px;
  3753. top:0px;
  3754. width:134px;
  3755. height:30px;
  3756. }
  3757. #u64608 {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:0px;
  3761. top:118px;
  3762. width:134px;
  3763. height:30px;
  3764. display:flex;
  3765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3766. font-weight:400;
  3767. font-style:normal;
  3768. font-size:14px;
  3769. }
  3770. #u64608 .text {
  3771. position:absolute;
  3772. align-self:center;
  3773. padding:2px 2px 2px 2px;
  3774. box-sizing:border-box;
  3775. width:100%;
  3776. }
  3777. #u64608_text {
  3778. border-width:0px;
  3779. word-wrap:break-word;
  3780. text-transform:none;
  3781. visibility:hidden;
  3782. }
  3783. #u64609_img {
  3784. border-width:0px;
  3785. position:absolute;
  3786. left:0px;
  3787. top:0px;
  3788. width:134px;
  3789. height:30px;
  3790. }
  3791. #u64609 {
  3792. border-width:0px;
  3793. position:absolute;
  3794. left:134px;
  3795. top:118px;
  3796. width:134px;
  3797. height:30px;
  3798. display:flex;
  3799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3800. font-weight:400;
  3801. font-style:normal;
  3802. font-size:14px;
  3803. }
  3804. #u64609 .text {
  3805. position:absolute;
  3806. align-self:center;
  3807. padding:2px 2px 2px 2px;
  3808. box-sizing:border-box;
  3809. width:100%;
  3810. }
  3811. #u64609_text {
  3812. border-width:0px;
  3813. word-wrap:break-word;
  3814. text-transform:none;
  3815. visibility:hidden;
  3816. }
  3817. #u64610_img {
  3818. border-width:0px;
  3819. position:absolute;
  3820. left:0px;
  3821. top:0px;
  3822. width:83px;
  3823. height:30px;
  3824. }
  3825. #u64610 {
  3826. border-width:0px;
  3827. position:absolute;
  3828. left:268px;
  3829. top:118px;
  3830. width:83px;
  3831. height:30px;
  3832. display:flex;
  3833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3834. font-weight:400;
  3835. font-style:normal;
  3836. font-size:14px;
  3837. }
  3838. #u64610 .text {
  3839. position:absolute;
  3840. align-self:center;
  3841. padding:2px 2px 2px 2px;
  3842. box-sizing:border-box;
  3843. width:100%;
  3844. }
  3845. #u64610_text {
  3846. border-width:0px;
  3847. word-wrap:break-word;
  3848. text-transform:none;
  3849. visibility:hidden;
  3850. }
  3851. #u64611_img {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:0px;
  3855. top:0px;
  3856. width:83px;
  3857. height:30px;
  3858. }
  3859. #u64611 {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:351px;
  3863. top:118px;
  3864. width:83px;
  3865. height:30px;
  3866. display:flex;
  3867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3868. font-weight:400;
  3869. font-style:normal;
  3870. font-size:14px;
  3871. }
  3872. #u64611 .text {
  3873. position:absolute;
  3874. align-self:center;
  3875. padding:2px 2px 2px 2px;
  3876. box-sizing:border-box;
  3877. width:100%;
  3878. }
  3879. #u64611_text {
  3880. border-width:0px;
  3881. word-wrap:break-word;
  3882. text-transform:none;
  3883. visibility:hidden;
  3884. }
  3885. #u64612_img {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:0px;
  3889. top:0px;
  3890. width:90px;
  3891. height:30px;
  3892. }
  3893. #u64612 {
  3894. border-width:0px;
  3895. position:absolute;
  3896. left:434px;
  3897. top:118px;
  3898. width:90px;
  3899. height:30px;
  3900. display:flex;
  3901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3902. font-weight:400;
  3903. font-style:normal;
  3904. font-size:14px;
  3905. }
  3906. #u64612 .text {
  3907. position:absolute;
  3908. align-self:center;
  3909. padding:2px 2px 2px 2px;
  3910. box-sizing:border-box;
  3911. width:100%;
  3912. }
  3913. #u64612_text {
  3914. border-width:0px;
  3915. word-wrap:break-word;
  3916. text-transform:none;
  3917. visibility:hidden;
  3918. }
  3919. #u64613_img {
  3920. border-width:0px;
  3921. position:absolute;
  3922. left:0px;
  3923. top:0px;
  3924. width:90px;
  3925. height:30px;
  3926. }
  3927. #u64613 {
  3928. border-width:0px;
  3929. position:absolute;
  3930. left:524px;
  3931. top:118px;
  3932. width:90px;
  3933. height:30px;
  3934. display:flex;
  3935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3936. font-weight:400;
  3937. font-style:normal;
  3938. font-size:14px;
  3939. }
  3940. #u64613 .text {
  3941. position:absolute;
  3942. align-self:center;
  3943. padding:2px 2px 2px 2px;
  3944. box-sizing:border-box;
  3945. width:100%;
  3946. }
  3947. #u64613_text {
  3948. border-width:0px;
  3949. word-wrap:break-word;
  3950. text-transform:none;
  3951. visibility:hidden;
  3952. }
  3953. #u64614_img {
  3954. border-width:0px;
  3955. position:absolute;
  3956. left:0px;
  3957. top:0px;
  3958. width:83px;
  3959. height:30px;
  3960. }
  3961. #u64614 {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:614px;
  3965. top:118px;
  3966. width:83px;
  3967. height:30px;
  3968. display:flex;
  3969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3970. font-weight:400;
  3971. font-style:normal;
  3972. font-size:14px;
  3973. }
  3974. #u64614 .text {
  3975. position:absolute;
  3976. align-self:center;
  3977. padding:2px 2px 2px 2px;
  3978. box-sizing:border-box;
  3979. width:100%;
  3980. }
  3981. #u64614_text {
  3982. border-width:0px;
  3983. word-wrap:break-word;
  3984. text-transform:none;
  3985. visibility:hidden;
  3986. }
  3987. #u64615_img {
  3988. border-width:0px;
  3989. position:absolute;
  3990. left:0px;
  3991. top:0px;
  3992. width:83px;
  3993. height:30px;
  3994. }
  3995. #u64615 {
  3996. border-width:0px;
  3997. position:absolute;
  3998. left:697px;
  3999. top:118px;
  4000. width:83px;
  4001. height:30px;
  4002. display:flex;
  4003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4004. font-weight:400;
  4005. font-style:normal;
  4006. font-size:14px;
  4007. }
  4008. #u64615 .text {
  4009. position:absolute;
  4010. align-self:center;
  4011. padding:2px 2px 2px 2px;
  4012. box-sizing:border-box;
  4013. width:100%;
  4014. }
  4015. #u64615_text {
  4016. border-width:0px;
  4017. word-wrap:break-word;
  4018. text-transform:none;
  4019. visibility:hidden;
  4020. }
  4021. #u64616_img {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:0px;
  4025. top:0px;
  4026. width:90px;
  4027. height:30px;
  4028. }
  4029. #u64616 {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:780px;
  4033. top:118px;
  4034. width:90px;
  4035. height:30px;
  4036. display:flex;
  4037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4038. font-weight:400;
  4039. font-style:normal;
  4040. font-size:14px;
  4041. }
  4042. #u64616 .text {
  4043. position:absolute;
  4044. align-self:center;
  4045. padding:2px 2px 2px 2px;
  4046. box-sizing:border-box;
  4047. width:100%;
  4048. }
  4049. #u64616_text {
  4050. border-width:0px;
  4051. word-wrap:break-word;
  4052. text-transform:none;
  4053. visibility:hidden;
  4054. }
  4055. #u64617_img {
  4056. border-width:0px;
  4057. position:absolute;
  4058. left:0px;
  4059. top:0px;
  4060. width:83px;
  4061. height:30px;
  4062. }
  4063. #u64617 {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:870px;
  4067. top:118px;
  4068. width:83px;
  4069. height:30px;
  4070. display:flex;
  4071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4072. font-weight:400;
  4073. font-style:normal;
  4074. font-size:14px;
  4075. }
  4076. #u64617 .text {
  4077. position:absolute;
  4078. align-self:center;
  4079. padding:2px 2px 2px 2px;
  4080. box-sizing:border-box;
  4081. width:100%;
  4082. }
  4083. #u64617_text {
  4084. border-width:0px;
  4085. word-wrap:break-word;
  4086. text-transform:none;
  4087. visibility:hidden;
  4088. }
  4089. #u64618_img {
  4090. border-width:0px;
  4091. position:absolute;
  4092. left:0px;
  4093. top:0px;
  4094. width:83px;
  4095. height:30px;
  4096. }
  4097. #u64618 {
  4098. border-width:0px;
  4099. position:absolute;
  4100. left:953px;
  4101. top:118px;
  4102. width:83px;
  4103. height:30px;
  4104. display:flex;
  4105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4106. font-weight:400;
  4107. font-style:normal;
  4108. font-size:14px;
  4109. }
  4110. #u64618 .text {
  4111. position:absolute;
  4112. align-self:center;
  4113. padding:2px 2px 2px 2px;
  4114. box-sizing:border-box;
  4115. width:100%;
  4116. }
  4117. #u64618_text {
  4118. border-width:0px;
  4119. word-wrap:break-word;
  4120. text-transform:none;
  4121. visibility:hidden;
  4122. }
  4123. #u64619_img {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:0px;
  4127. top:0px;
  4128. width:90px;
  4129. height:30px;
  4130. }
  4131. #u64619 {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:1036px;
  4135. top:118px;
  4136. width:90px;
  4137. height:30px;
  4138. display:flex;
  4139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4140. font-weight:400;
  4141. font-style:normal;
  4142. font-size:14px;
  4143. }
  4144. #u64619 .text {
  4145. position:absolute;
  4146. align-self:center;
  4147. padding:2px 2px 2px 2px;
  4148. box-sizing:border-box;
  4149. width:100%;
  4150. }
  4151. #u64619_text {
  4152. border-width:0px;
  4153. word-wrap:break-word;
  4154. text-transform:none;
  4155. visibility:hidden;
  4156. }
  4157. #u64620_img {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:0px;
  4161. top:0px;
  4162. width:94px;
  4163. height:30px;
  4164. }
  4165. #u64620 {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:1126px;
  4169. top:118px;
  4170. width:94px;
  4171. height:30px;
  4172. display:flex;
  4173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4174. font-weight:400;
  4175. font-style:normal;
  4176. font-size:14px;
  4177. }
  4178. #u64620 .text {
  4179. position:absolute;
  4180. align-self:center;
  4181. padding:2px 2px 2px 2px;
  4182. box-sizing:border-box;
  4183. width:100%;
  4184. }
  4185. #u64620_text {
  4186. border-width:0px;
  4187. word-wrap:break-word;
  4188. text-transform:none;
  4189. visibility:hidden;
  4190. }
  4191. #u64621_img {
  4192. border-width:0px;
  4193. position:absolute;
  4194. left:0px;
  4195. top:0px;
  4196. width:134px;
  4197. height:30px;
  4198. }
  4199. #u64621 {
  4200. border-width:0px;
  4201. position:absolute;
  4202. left:0px;
  4203. top:148px;
  4204. width:134px;
  4205. height:30px;
  4206. display:flex;
  4207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4208. font-weight:400;
  4209. font-style:normal;
  4210. font-size:14px;
  4211. }
  4212. #u64621 .text {
  4213. position:absolute;
  4214. align-self:center;
  4215. padding:2px 2px 2px 2px;
  4216. box-sizing:border-box;
  4217. width:100%;
  4218. }
  4219. #u64621_text {
  4220. border-width:0px;
  4221. word-wrap:break-word;
  4222. text-transform:none;
  4223. visibility:hidden;
  4224. }
  4225. #u64622_img {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:0px;
  4229. top:0px;
  4230. width:134px;
  4231. height:30px;
  4232. }
  4233. #u64622 {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:134px;
  4237. top:148px;
  4238. width:134px;
  4239. height:30px;
  4240. display:flex;
  4241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4242. font-weight:400;
  4243. font-style:normal;
  4244. font-size:14px;
  4245. }
  4246. #u64622 .text {
  4247. position:absolute;
  4248. align-self:center;
  4249. padding:2px 2px 2px 2px;
  4250. box-sizing:border-box;
  4251. width:100%;
  4252. }
  4253. #u64622_text {
  4254. border-width:0px;
  4255. word-wrap:break-word;
  4256. text-transform:none;
  4257. visibility:hidden;
  4258. }
  4259. #u64623_img {
  4260. border-width:0px;
  4261. position:absolute;
  4262. left:0px;
  4263. top:0px;
  4264. width:83px;
  4265. height:30px;
  4266. }
  4267. #u64623 {
  4268. border-width:0px;
  4269. position:absolute;
  4270. left:268px;
  4271. top:148px;
  4272. width:83px;
  4273. height:30px;
  4274. display:flex;
  4275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4276. font-weight:400;
  4277. font-style:normal;
  4278. font-size:14px;
  4279. }
  4280. #u64623 .text {
  4281. position:absolute;
  4282. align-self:center;
  4283. padding:2px 2px 2px 2px;
  4284. box-sizing:border-box;
  4285. width:100%;
  4286. }
  4287. #u64623_text {
  4288. border-width:0px;
  4289. word-wrap:break-word;
  4290. text-transform:none;
  4291. visibility:hidden;
  4292. }
  4293. #u64624_img {
  4294. border-width:0px;
  4295. position:absolute;
  4296. left:0px;
  4297. top:0px;
  4298. width:83px;
  4299. height:30px;
  4300. }
  4301. #u64624 {
  4302. border-width:0px;
  4303. position:absolute;
  4304. left:351px;
  4305. top:148px;
  4306. width:83px;
  4307. height:30px;
  4308. display:flex;
  4309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4310. font-weight:400;
  4311. font-style:normal;
  4312. font-size:14px;
  4313. }
  4314. #u64624 .text {
  4315. position:absolute;
  4316. align-self:center;
  4317. padding:2px 2px 2px 2px;
  4318. box-sizing:border-box;
  4319. width:100%;
  4320. }
  4321. #u64624_text {
  4322. border-width:0px;
  4323. word-wrap:break-word;
  4324. text-transform:none;
  4325. visibility:hidden;
  4326. }
  4327. #u64625_img {
  4328. border-width:0px;
  4329. position:absolute;
  4330. left:0px;
  4331. top:0px;
  4332. width:90px;
  4333. height:30px;
  4334. }
  4335. #u64625 {
  4336. border-width:0px;
  4337. position:absolute;
  4338. left:434px;
  4339. top:148px;
  4340. width:90px;
  4341. height:30px;
  4342. display:flex;
  4343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4344. font-weight:400;
  4345. font-style:normal;
  4346. font-size:14px;
  4347. }
  4348. #u64625 .text {
  4349. position:absolute;
  4350. align-self:center;
  4351. padding:2px 2px 2px 2px;
  4352. box-sizing:border-box;
  4353. width:100%;
  4354. }
  4355. #u64625_text {
  4356. border-width:0px;
  4357. word-wrap:break-word;
  4358. text-transform:none;
  4359. visibility:hidden;
  4360. }
  4361. #u64626_img {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:0px;
  4365. top:0px;
  4366. width:90px;
  4367. height:30px;
  4368. }
  4369. #u64626 {
  4370. border-width:0px;
  4371. position:absolute;
  4372. left:524px;
  4373. top:148px;
  4374. width:90px;
  4375. height:30px;
  4376. display:flex;
  4377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4378. font-weight:400;
  4379. font-style:normal;
  4380. font-size:14px;
  4381. }
  4382. #u64626 .text {
  4383. position:absolute;
  4384. align-self:center;
  4385. padding:2px 2px 2px 2px;
  4386. box-sizing:border-box;
  4387. width:100%;
  4388. }
  4389. #u64626_text {
  4390. border-width:0px;
  4391. word-wrap:break-word;
  4392. text-transform:none;
  4393. visibility:hidden;
  4394. }
  4395. #u64627_img {
  4396. border-width:0px;
  4397. position:absolute;
  4398. left:0px;
  4399. top:0px;
  4400. width:83px;
  4401. height:30px;
  4402. }
  4403. #u64627 {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:614px;
  4407. top:148px;
  4408. width:83px;
  4409. height:30px;
  4410. display:flex;
  4411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4412. font-weight:400;
  4413. font-style:normal;
  4414. font-size:14px;
  4415. }
  4416. #u64627 .text {
  4417. position:absolute;
  4418. align-self:center;
  4419. padding:2px 2px 2px 2px;
  4420. box-sizing:border-box;
  4421. width:100%;
  4422. }
  4423. #u64627_text {
  4424. border-width:0px;
  4425. word-wrap:break-word;
  4426. text-transform:none;
  4427. visibility:hidden;
  4428. }
  4429. #u64628_img {
  4430. border-width:0px;
  4431. position:absolute;
  4432. left:0px;
  4433. top:0px;
  4434. width:83px;
  4435. height:30px;
  4436. }
  4437. #u64628 {
  4438. border-width:0px;
  4439. position:absolute;
  4440. left:697px;
  4441. top:148px;
  4442. width:83px;
  4443. height:30px;
  4444. display:flex;
  4445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4446. font-weight:400;
  4447. font-style:normal;
  4448. font-size:14px;
  4449. }
  4450. #u64628 .text {
  4451. position:absolute;
  4452. align-self:center;
  4453. padding:2px 2px 2px 2px;
  4454. box-sizing:border-box;
  4455. width:100%;
  4456. }
  4457. #u64628_text {
  4458. border-width:0px;
  4459. word-wrap:break-word;
  4460. text-transform:none;
  4461. visibility:hidden;
  4462. }
  4463. #u64629_img {
  4464. border-width:0px;
  4465. position:absolute;
  4466. left:0px;
  4467. top:0px;
  4468. width:90px;
  4469. height:30px;
  4470. }
  4471. #u64629 {
  4472. border-width:0px;
  4473. position:absolute;
  4474. left:780px;
  4475. top:148px;
  4476. width:90px;
  4477. height:30px;
  4478. display:flex;
  4479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4480. font-weight:400;
  4481. font-style:normal;
  4482. font-size:14px;
  4483. }
  4484. #u64629 .text {
  4485. position:absolute;
  4486. align-self:center;
  4487. padding:2px 2px 2px 2px;
  4488. box-sizing:border-box;
  4489. width:100%;
  4490. }
  4491. #u64629_text {
  4492. border-width:0px;
  4493. word-wrap:break-word;
  4494. text-transform:none;
  4495. visibility:hidden;
  4496. }
  4497. #u64630_img {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:0px;
  4501. top:0px;
  4502. width:83px;
  4503. height:30px;
  4504. }
  4505. #u64630 {
  4506. border-width:0px;
  4507. position:absolute;
  4508. left:870px;
  4509. top:148px;
  4510. width:83px;
  4511. height:30px;
  4512. display:flex;
  4513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4514. font-weight:400;
  4515. font-style:normal;
  4516. font-size:14px;
  4517. }
  4518. #u64630 .text {
  4519. position:absolute;
  4520. align-self:center;
  4521. padding:2px 2px 2px 2px;
  4522. box-sizing:border-box;
  4523. width:100%;
  4524. }
  4525. #u64630_text {
  4526. border-width:0px;
  4527. word-wrap:break-word;
  4528. text-transform:none;
  4529. visibility:hidden;
  4530. }
  4531. #u64631_img {
  4532. border-width:0px;
  4533. position:absolute;
  4534. left:0px;
  4535. top:0px;
  4536. width:83px;
  4537. height:30px;
  4538. }
  4539. #u64631 {
  4540. border-width:0px;
  4541. position:absolute;
  4542. left:953px;
  4543. top:148px;
  4544. width:83px;
  4545. height:30px;
  4546. display:flex;
  4547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4548. font-weight:400;
  4549. font-style:normal;
  4550. font-size:14px;
  4551. }
  4552. #u64631 .text {
  4553. position:absolute;
  4554. align-self:center;
  4555. padding:2px 2px 2px 2px;
  4556. box-sizing:border-box;
  4557. width:100%;
  4558. }
  4559. #u64631_text {
  4560. border-width:0px;
  4561. word-wrap:break-word;
  4562. text-transform:none;
  4563. visibility:hidden;
  4564. }
  4565. #u64632_img {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:0px;
  4569. top:0px;
  4570. width:90px;
  4571. height:30px;
  4572. }
  4573. #u64632 {
  4574. border-width:0px;
  4575. position:absolute;
  4576. left:1036px;
  4577. top:148px;
  4578. width:90px;
  4579. height:30px;
  4580. display:flex;
  4581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4582. font-weight:400;
  4583. font-style:normal;
  4584. font-size:14px;
  4585. }
  4586. #u64632 .text {
  4587. position:absolute;
  4588. align-self:center;
  4589. padding:2px 2px 2px 2px;
  4590. box-sizing:border-box;
  4591. width:100%;
  4592. }
  4593. #u64632_text {
  4594. border-width:0px;
  4595. word-wrap:break-word;
  4596. text-transform:none;
  4597. visibility:hidden;
  4598. }
  4599. #u64633_img {
  4600. border-width:0px;
  4601. position:absolute;
  4602. left:0px;
  4603. top:0px;
  4604. width:94px;
  4605. height:30px;
  4606. }
  4607. #u64633 {
  4608. border-width:0px;
  4609. position:absolute;
  4610. left:1126px;
  4611. top:148px;
  4612. width:94px;
  4613. height:30px;
  4614. display:flex;
  4615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4616. font-weight:400;
  4617. font-style:normal;
  4618. font-size:14px;
  4619. }
  4620. #u64633 .text {
  4621. position:absolute;
  4622. align-self:center;
  4623. padding:2px 2px 2px 2px;
  4624. box-sizing:border-box;
  4625. width:100%;
  4626. }
  4627. #u64633_text {
  4628. border-width:0px;
  4629. word-wrap:break-word;
  4630. text-transform:none;
  4631. visibility:hidden;
  4632. }
  4633. #u64634_img {
  4634. border-width:0px;
  4635. position:absolute;
  4636. left:0px;
  4637. top:0px;
  4638. width:134px;
  4639. height:30px;
  4640. }
  4641. #u64634 {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:0px;
  4645. top:178px;
  4646. width:134px;
  4647. height:30px;
  4648. display:flex;
  4649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4650. font-weight:400;
  4651. font-style:normal;
  4652. font-size:14px;
  4653. }
  4654. #u64634 .text {
  4655. position:absolute;
  4656. align-self:center;
  4657. padding:2px 2px 2px 2px;
  4658. box-sizing:border-box;
  4659. width:100%;
  4660. }
  4661. #u64634_text {
  4662. border-width:0px;
  4663. word-wrap:break-word;
  4664. text-transform:none;
  4665. visibility:hidden;
  4666. }
  4667. #u64635_img {
  4668. border-width:0px;
  4669. position:absolute;
  4670. left:0px;
  4671. top:0px;
  4672. width:134px;
  4673. height:30px;
  4674. }
  4675. #u64635 {
  4676. border-width:0px;
  4677. position:absolute;
  4678. left:134px;
  4679. top:178px;
  4680. width:134px;
  4681. height:30px;
  4682. display:flex;
  4683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4684. font-weight:400;
  4685. font-style:normal;
  4686. font-size:14px;
  4687. }
  4688. #u64635 .text {
  4689. position:absolute;
  4690. align-self:center;
  4691. padding:2px 2px 2px 2px;
  4692. box-sizing:border-box;
  4693. width:100%;
  4694. }
  4695. #u64635_text {
  4696. border-width:0px;
  4697. word-wrap:break-word;
  4698. text-transform:none;
  4699. visibility:hidden;
  4700. }
  4701. #u64636_img {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:0px;
  4705. top:0px;
  4706. width:83px;
  4707. height:30px;
  4708. }
  4709. #u64636 {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:268px;
  4713. top:178px;
  4714. width:83px;
  4715. height:30px;
  4716. display:flex;
  4717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4718. font-weight:400;
  4719. font-style:normal;
  4720. font-size:14px;
  4721. }
  4722. #u64636 .text {
  4723. position:absolute;
  4724. align-self:center;
  4725. padding:2px 2px 2px 2px;
  4726. box-sizing:border-box;
  4727. width:100%;
  4728. }
  4729. #u64636_text {
  4730. border-width:0px;
  4731. word-wrap:break-word;
  4732. text-transform:none;
  4733. visibility:hidden;
  4734. }
  4735. #u64637_img {
  4736. border-width:0px;
  4737. position:absolute;
  4738. left:0px;
  4739. top:0px;
  4740. width:83px;
  4741. height:30px;
  4742. }
  4743. #u64637 {
  4744. border-width:0px;
  4745. position:absolute;
  4746. left:351px;
  4747. top:178px;
  4748. width:83px;
  4749. height:30px;
  4750. display:flex;
  4751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4752. font-weight:400;
  4753. font-style:normal;
  4754. font-size:14px;
  4755. }
  4756. #u64637 .text {
  4757. position:absolute;
  4758. align-self:center;
  4759. padding:2px 2px 2px 2px;
  4760. box-sizing:border-box;
  4761. width:100%;
  4762. }
  4763. #u64637_text {
  4764. border-width:0px;
  4765. word-wrap:break-word;
  4766. text-transform:none;
  4767. visibility:hidden;
  4768. }
  4769. #u64638_img {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:0px;
  4773. top:0px;
  4774. width:90px;
  4775. height:30px;
  4776. }
  4777. #u64638 {
  4778. border-width:0px;
  4779. position:absolute;
  4780. left:434px;
  4781. top:178px;
  4782. width:90px;
  4783. height:30px;
  4784. display:flex;
  4785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4786. font-weight:400;
  4787. font-style:normal;
  4788. font-size:14px;
  4789. }
  4790. #u64638 .text {
  4791. position:absolute;
  4792. align-self:center;
  4793. padding:2px 2px 2px 2px;
  4794. box-sizing:border-box;
  4795. width:100%;
  4796. }
  4797. #u64638_text {
  4798. border-width:0px;
  4799. word-wrap:break-word;
  4800. text-transform:none;
  4801. visibility:hidden;
  4802. }
  4803. #u64639_img {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:0px;
  4807. top:0px;
  4808. width:90px;
  4809. height:30px;
  4810. }
  4811. #u64639 {
  4812. border-width:0px;
  4813. position:absolute;
  4814. left:524px;
  4815. top:178px;
  4816. width:90px;
  4817. height:30px;
  4818. display:flex;
  4819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4820. font-weight:400;
  4821. font-style:normal;
  4822. font-size:14px;
  4823. }
  4824. #u64639 .text {
  4825. position:absolute;
  4826. align-self:center;
  4827. padding:2px 2px 2px 2px;
  4828. box-sizing:border-box;
  4829. width:100%;
  4830. }
  4831. #u64639_text {
  4832. border-width:0px;
  4833. word-wrap:break-word;
  4834. text-transform:none;
  4835. visibility:hidden;
  4836. }
  4837. #u64640_img {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:0px;
  4841. top:0px;
  4842. width:83px;
  4843. height:30px;
  4844. }
  4845. #u64640 {
  4846. border-width:0px;
  4847. position:absolute;
  4848. left:614px;
  4849. top:178px;
  4850. width:83px;
  4851. height:30px;
  4852. display:flex;
  4853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4854. font-weight:400;
  4855. font-style:normal;
  4856. font-size:14px;
  4857. }
  4858. #u64640 .text {
  4859. position:absolute;
  4860. align-self:center;
  4861. padding:2px 2px 2px 2px;
  4862. box-sizing:border-box;
  4863. width:100%;
  4864. }
  4865. #u64640_text {
  4866. border-width:0px;
  4867. word-wrap:break-word;
  4868. text-transform:none;
  4869. visibility:hidden;
  4870. }
  4871. #u64641_img {
  4872. border-width:0px;
  4873. position:absolute;
  4874. left:0px;
  4875. top:0px;
  4876. width:83px;
  4877. height:30px;
  4878. }
  4879. #u64641 {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:697px;
  4883. top:178px;
  4884. width:83px;
  4885. height:30px;
  4886. display:flex;
  4887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4888. font-weight:400;
  4889. font-style:normal;
  4890. font-size:14px;
  4891. }
  4892. #u64641 .text {
  4893. position:absolute;
  4894. align-self:center;
  4895. padding:2px 2px 2px 2px;
  4896. box-sizing:border-box;
  4897. width:100%;
  4898. }
  4899. #u64641_text {
  4900. border-width:0px;
  4901. word-wrap:break-word;
  4902. text-transform:none;
  4903. visibility:hidden;
  4904. }
  4905. #u64642_img {
  4906. border-width:0px;
  4907. position:absolute;
  4908. left:0px;
  4909. top:0px;
  4910. width:90px;
  4911. height:30px;
  4912. }
  4913. #u64642 {
  4914. border-width:0px;
  4915. position:absolute;
  4916. left:780px;
  4917. top:178px;
  4918. width:90px;
  4919. height:30px;
  4920. display:flex;
  4921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4922. font-weight:400;
  4923. font-style:normal;
  4924. font-size:14px;
  4925. }
  4926. #u64642 .text {
  4927. position:absolute;
  4928. align-self:center;
  4929. padding:2px 2px 2px 2px;
  4930. box-sizing:border-box;
  4931. width:100%;
  4932. }
  4933. #u64642_text {
  4934. border-width:0px;
  4935. word-wrap:break-word;
  4936. text-transform:none;
  4937. visibility:hidden;
  4938. }
  4939. #u64643_img {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:0px;
  4943. top:0px;
  4944. width:83px;
  4945. height:30px;
  4946. }
  4947. #u64643 {
  4948. border-width:0px;
  4949. position:absolute;
  4950. left:870px;
  4951. top:178px;
  4952. width:83px;
  4953. height:30px;
  4954. display:flex;
  4955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4956. font-weight:400;
  4957. font-style:normal;
  4958. font-size:14px;
  4959. }
  4960. #u64643 .text {
  4961. position:absolute;
  4962. align-self:center;
  4963. padding:2px 2px 2px 2px;
  4964. box-sizing:border-box;
  4965. width:100%;
  4966. }
  4967. #u64643_text {
  4968. border-width:0px;
  4969. word-wrap:break-word;
  4970. text-transform:none;
  4971. visibility:hidden;
  4972. }
  4973. #u64644_img {
  4974. border-width:0px;
  4975. position:absolute;
  4976. left:0px;
  4977. top:0px;
  4978. width:83px;
  4979. height:30px;
  4980. }
  4981. #u64644 {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:953px;
  4985. top:178px;
  4986. width:83px;
  4987. height:30px;
  4988. display:flex;
  4989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4990. font-weight:400;
  4991. font-style:normal;
  4992. font-size:14px;
  4993. }
  4994. #u64644 .text {
  4995. position:absolute;
  4996. align-self:center;
  4997. padding:2px 2px 2px 2px;
  4998. box-sizing:border-box;
  4999. width:100%;
  5000. }
  5001. #u64644_text {
  5002. border-width:0px;
  5003. word-wrap:break-word;
  5004. text-transform:none;
  5005. visibility:hidden;
  5006. }
  5007. #u64645_img {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:0px;
  5011. top:0px;
  5012. width:90px;
  5013. height:30px;
  5014. }
  5015. #u64645 {
  5016. border-width:0px;
  5017. position:absolute;
  5018. left:1036px;
  5019. top:178px;
  5020. width:90px;
  5021. height:30px;
  5022. display:flex;
  5023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5024. font-weight:400;
  5025. font-style:normal;
  5026. font-size:14px;
  5027. }
  5028. #u64645 .text {
  5029. position:absolute;
  5030. align-self:center;
  5031. padding:2px 2px 2px 2px;
  5032. box-sizing:border-box;
  5033. width:100%;
  5034. }
  5035. #u64645_text {
  5036. border-width:0px;
  5037. word-wrap:break-word;
  5038. text-transform:none;
  5039. visibility:hidden;
  5040. }
  5041. #u64646_img {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:0px;
  5045. top:0px;
  5046. width:94px;
  5047. height:30px;
  5048. }
  5049. #u64646 {
  5050. border-width:0px;
  5051. position:absolute;
  5052. left:1126px;
  5053. top:178px;
  5054. width:94px;
  5055. height:30px;
  5056. display:flex;
  5057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5058. font-weight:400;
  5059. font-style:normal;
  5060. font-size:14px;
  5061. }
  5062. #u64646 .text {
  5063. position:absolute;
  5064. align-self:center;
  5065. padding:2px 2px 2px 2px;
  5066. box-sizing:border-box;
  5067. width:100%;
  5068. }
  5069. #u64646_text {
  5070. border-width:0px;
  5071. word-wrap:break-word;
  5072. text-transform:none;
  5073. visibility:hidden;
  5074. }
  5075. #u64647_img {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:0px;
  5079. top:0px;
  5080. width:134px;
  5081. height:30px;
  5082. }
  5083. #u64647 {
  5084. border-width:0px;
  5085. position:absolute;
  5086. left:0px;
  5087. top:208px;
  5088. width:134px;
  5089. height:30px;
  5090. display:flex;
  5091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5092. font-weight:400;
  5093. font-style:normal;
  5094. font-size:14px;
  5095. }
  5096. #u64647 .text {
  5097. position:absolute;
  5098. align-self:center;
  5099. padding:2px 2px 2px 2px;
  5100. box-sizing:border-box;
  5101. width:100%;
  5102. }
  5103. #u64647_text {
  5104. border-width:0px;
  5105. word-wrap:break-word;
  5106. text-transform:none;
  5107. visibility:hidden;
  5108. }
  5109. #u64648_img {
  5110. border-width:0px;
  5111. position:absolute;
  5112. left:0px;
  5113. top:0px;
  5114. width:134px;
  5115. height:30px;
  5116. }
  5117. #u64648 {
  5118. border-width:0px;
  5119. position:absolute;
  5120. left:134px;
  5121. top:208px;
  5122. width:134px;
  5123. height:30px;
  5124. display:flex;
  5125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5126. font-weight:400;
  5127. font-style:normal;
  5128. font-size:14px;
  5129. }
  5130. #u64648 .text {
  5131. position:absolute;
  5132. align-self:center;
  5133. padding:2px 2px 2px 2px;
  5134. box-sizing:border-box;
  5135. width:100%;
  5136. }
  5137. #u64648_text {
  5138. border-width:0px;
  5139. word-wrap:break-word;
  5140. text-transform:none;
  5141. visibility:hidden;
  5142. }
  5143. #u64649_img {
  5144. border-width:0px;
  5145. position:absolute;
  5146. left:0px;
  5147. top:0px;
  5148. width:83px;
  5149. height:30px;
  5150. }
  5151. #u64649 {
  5152. border-width:0px;
  5153. position:absolute;
  5154. left:268px;
  5155. top:208px;
  5156. width:83px;
  5157. height:30px;
  5158. display:flex;
  5159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5160. font-weight:400;
  5161. font-style:normal;
  5162. font-size:14px;
  5163. }
  5164. #u64649 .text {
  5165. position:absolute;
  5166. align-self:center;
  5167. padding:2px 2px 2px 2px;
  5168. box-sizing:border-box;
  5169. width:100%;
  5170. }
  5171. #u64649_text {
  5172. border-width:0px;
  5173. word-wrap:break-word;
  5174. text-transform:none;
  5175. visibility:hidden;
  5176. }
  5177. #u64650_img {
  5178. border-width:0px;
  5179. position:absolute;
  5180. left:0px;
  5181. top:0px;
  5182. width:83px;
  5183. height:30px;
  5184. }
  5185. #u64650 {
  5186. border-width:0px;
  5187. position:absolute;
  5188. left:351px;
  5189. top:208px;
  5190. width:83px;
  5191. height:30px;
  5192. display:flex;
  5193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5194. font-weight:400;
  5195. font-style:normal;
  5196. font-size:14px;
  5197. }
  5198. #u64650 .text {
  5199. position:absolute;
  5200. align-self:center;
  5201. padding:2px 2px 2px 2px;
  5202. box-sizing:border-box;
  5203. width:100%;
  5204. }
  5205. #u64650_text {
  5206. border-width:0px;
  5207. word-wrap:break-word;
  5208. text-transform:none;
  5209. visibility:hidden;
  5210. }
  5211. #u64651_img {
  5212. border-width:0px;
  5213. position:absolute;
  5214. left:0px;
  5215. top:0px;
  5216. width:90px;
  5217. height:30px;
  5218. }
  5219. #u64651 {
  5220. border-width:0px;
  5221. position:absolute;
  5222. left:434px;
  5223. top:208px;
  5224. width:90px;
  5225. height:30px;
  5226. display:flex;
  5227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5228. font-weight:400;
  5229. font-style:normal;
  5230. font-size:14px;
  5231. }
  5232. #u64651 .text {
  5233. position:absolute;
  5234. align-self:center;
  5235. padding:2px 2px 2px 2px;
  5236. box-sizing:border-box;
  5237. width:100%;
  5238. }
  5239. #u64651_text {
  5240. border-width:0px;
  5241. word-wrap:break-word;
  5242. text-transform:none;
  5243. visibility:hidden;
  5244. }
  5245. #u64652_img {
  5246. border-width:0px;
  5247. position:absolute;
  5248. left:0px;
  5249. top:0px;
  5250. width:90px;
  5251. height:30px;
  5252. }
  5253. #u64652 {
  5254. border-width:0px;
  5255. position:absolute;
  5256. left:524px;
  5257. top:208px;
  5258. width:90px;
  5259. height:30px;
  5260. display:flex;
  5261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5262. font-weight:400;
  5263. font-style:normal;
  5264. font-size:14px;
  5265. }
  5266. #u64652 .text {
  5267. position:absolute;
  5268. align-self:center;
  5269. padding:2px 2px 2px 2px;
  5270. box-sizing:border-box;
  5271. width:100%;
  5272. }
  5273. #u64652_text {
  5274. border-width:0px;
  5275. word-wrap:break-word;
  5276. text-transform:none;
  5277. visibility:hidden;
  5278. }
  5279. #u64653_img {
  5280. border-width:0px;
  5281. position:absolute;
  5282. left:0px;
  5283. top:0px;
  5284. width:83px;
  5285. height:30px;
  5286. }
  5287. #u64653 {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:614px;
  5291. top:208px;
  5292. width:83px;
  5293. height:30px;
  5294. display:flex;
  5295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5296. font-weight:400;
  5297. font-style:normal;
  5298. font-size:14px;
  5299. }
  5300. #u64653 .text {
  5301. position:absolute;
  5302. align-self:center;
  5303. padding:2px 2px 2px 2px;
  5304. box-sizing:border-box;
  5305. width:100%;
  5306. }
  5307. #u64653_text {
  5308. border-width:0px;
  5309. word-wrap:break-word;
  5310. text-transform:none;
  5311. visibility:hidden;
  5312. }
  5313. #u64654_img {
  5314. border-width:0px;
  5315. position:absolute;
  5316. left:0px;
  5317. top:0px;
  5318. width:83px;
  5319. height:30px;
  5320. }
  5321. #u64654 {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:697px;
  5325. top:208px;
  5326. width:83px;
  5327. height:30px;
  5328. display:flex;
  5329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5330. font-weight:400;
  5331. font-style:normal;
  5332. font-size:14px;
  5333. }
  5334. #u64654 .text {
  5335. position:absolute;
  5336. align-self:center;
  5337. padding:2px 2px 2px 2px;
  5338. box-sizing:border-box;
  5339. width:100%;
  5340. }
  5341. #u64654_text {
  5342. border-width:0px;
  5343. word-wrap:break-word;
  5344. text-transform:none;
  5345. visibility:hidden;
  5346. }
  5347. #u64655_img {
  5348. border-width:0px;
  5349. position:absolute;
  5350. left:0px;
  5351. top:0px;
  5352. width:90px;
  5353. height:30px;
  5354. }
  5355. #u64655 {
  5356. border-width:0px;
  5357. position:absolute;
  5358. left:780px;
  5359. top:208px;
  5360. width:90px;
  5361. height:30px;
  5362. display:flex;
  5363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5364. font-weight:400;
  5365. font-style:normal;
  5366. font-size:14px;
  5367. }
  5368. #u64655 .text {
  5369. position:absolute;
  5370. align-self:center;
  5371. padding:2px 2px 2px 2px;
  5372. box-sizing:border-box;
  5373. width:100%;
  5374. }
  5375. #u64655_text {
  5376. border-width:0px;
  5377. word-wrap:break-word;
  5378. text-transform:none;
  5379. visibility:hidden;
  5380. }
  5381. #u64656_img {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:0px;
  5385. top:0px;
  5386. width:83px;
  5387. height:30px;
  5388. }
  5389. #u64656 {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:870px;
  5393. top:208px;
  5394. width:83px;
  5395. height:30px;
  5396. display:flex;
  5397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5398. font-weight:400;
  5399. font-style:normal;
  5400. font-size:14px;
  5401. }
  5402. #u64656 .text {
  5403. position:absolute;
  5404. align-self:center;
  5405. padding:2px 2px 2px 2px;
  5406. box-sizing:border-box;
  5407. width:100%;
  5408. }
  5409. #u64656_text {
  5410. border-width:0px;
  5411. word-wrap:break-word;
  5412. text-transform:none;
  5413. visibility:hidden;
  5414. }
  5415. #u64657_img {
  5416. border-width:0px;
  5417. position:absolute;
  5418. left:0px;
  5419. top:0px;
  5420. width:83px;
  5421. height:30px;
  5422. }
  5423. #u64657 {
  5424. border-width:0px;
  5425. position:absolute;
  5426. left:953px;
  5427. top:208px;
  5428. width:83px;
  5429. height:30px;
  5430. display:flex;
  5431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5432. font-weight:400;
  5433. font-style:normal;
  5434. font-size:14px;
  5435. }
  5436. #u64657 .text {
  5437. position:absolute;
  5438. align-self:center;
  5439. padding:2px 2px 2px 2px;
  5440. box-sizing:border-box;
  5441. width:100%;
  5442. }
  5443. #u64657_text {
  5444. border-width:0px;
  5445. word-wrap:break-word;
  5446. text-transform:none;
  5447. visibility:hidden;
  5448. }
  5449. #u64658_img {
  5450. border-width:0px;
  5451. position:absolute;
  5452. left:0px;
  5453. top:0px;
  5454. width:90px;
  5455. height:30px;
  5456. }
  5457. #u64658 {
  5458. border-width:0px;
  5459. position:absolute;
  5460. left:1036px;
  5461. top:208px;
  5462. width:90px;
  5463. height:30px;
  5464. display:flex;
  5465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5466. font-weight:400;
  5467. font-style:normal;
  5468. font-size:14px;
  5469. }
  5470. #u64658 .text {
  5471. position:absolute;
  5472. align-self:center;
  5473. padding:2px 2px 2px 2px;
  5474. box-sizing:border-box;
  5475. width:100%;
  5476. }
  5477. #u64658_text {
  5478. border-width:0px;
  5479. word-wrap:break-word;
  5480. text-transform:none;
  5481. visibility:hidden;
  5482. }
  5483. #u64659_img {
  5484. border-width:0px;
  5485. position:absolute;
  5486. left:0px;
  5487. top:0px;
  5488. width:94px;
  5489. height:30px;
  5490. }
  5491. #u64659 {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:1126px;
  5495. top:208px;
  5496. width:94px;
  5497. height:30px;
  5498. display:flex;
  5499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5500. font-weight:400;
  5501. font-style:normal;
  5502. font-size:14px;
  5503. }
  5504. #u64659 .text {
  5505. position:absolute;
  5506. align-self:center;
  5507. padding:2px 2px 2px 2px;
  5508. box-sizing:border-box;
  5509. width:100%;
  5510. }
  5511. #u64659_text {
  5512. border-width:0px;
  5513. word-wrap:break-word;
  5514. text-transform:none;
  5515. visibility:hidden;
  5516. }
  5517. #u64660_div {
  5518. border-width:0px;
  5519. position:absolute;
  5520. left:0px;
  5521. top:0px;
  5522. width:60px;
  5523. height:30px;
  5524. background:inherit;
  5525. background-color:rgba(24, 144, 255, 1);
  5526. border:none;
  5527. border-radius:4px;
  5528. -moz-box-shadow:none;
  5529. -webkit-box-shadow:none;
  5530. box-shadow:none;
  5531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5532. font-weight:400;
  5533. font-style:normal;
  5534. font-size:14px;
  5535. color:#FFFFFF;
  5536. }
  5537. #u64660 {
  5538. border-width:0px;
  5539. position:absolute;
  5540. left:534px;
  5541. top:111px;
  5542. width:60px;
  5543. height:30px;
  5544. display:flex;
  5545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5546. font-weight:400;
  5547. font-style:normal;
  5548. font-size:14px;
  5549. color:#FFFFFF;
  5550. }
  5551. #u64660 .text {
  5552. position:absolute;
  5553. align-self:center;
  5554. padding:2px 2px 2px 2px;
  5555. box-sizing:border-box;
  5556. width:100%;
  5557. }
  5558. #u64660_text {
  5559. border-width:0px;
  5560. word-wrap:break-word;
  5561. text-transform:none;
  5562. }
  5563. #u64661_div {
  5564. border-width:0px;
  5565. position:absolute;
  5566. left:0px;
  5567. top:0px;
  5568. width:85px;
  5569. height:50px;
  5570. background:inherit;
  5571. background-color:rgba(255, 255, 255, 0);
  5572. border:none;
  5573. border-left:0px;
  5574. border-top:0px;
  5575. border-right:0px;
  5576. border-radius:0px;
  5577. border-bottom-right-radius:0px;
  5578. border-bottom-left-radius:0px;
  5579. -moz-box-shadow:none;
  5580. -webkit-box-shadow:none;
  5581. box-shadow:none;
  5582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5583. font-weight:400;
  5584. font-style:normal;
  5585. font-size:14px;
  5586. line-height:40px;
  5587. }
  5588. #u64661 {
  5589. border-width:0px;
  5590. position:absolute;
  5591. left:354px;
  5592. top:51px;
  5593. width:85px;
  5594. height:50px;
  5595. display:flex;
  5596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5597. font-weight:400;
  5598. font-style:normal;
  5599. font-size:14px;
  5600. line-height:40px;
  5601. }
  5602. #u64661 .text {
  5603. position:absolute;
  5604. align-self:center;
  5605. padding:0px 0px 0px 0px;
  5606. box-sizing:border-box;
  5607. width:100%;
  5608. }
  5609. #u64661_text {
  5610. border-width:0px;
  5611. white-space:nowrap;
  5612. text-transform:none;
  5613. }
  5614. #u64662 {
  5615. border-width:0px;
  5616. position:absolute;
  5617. left:0px;
  5618. top:0px;
  5619. width:0px;
  5620. height:0px;
  5621. }
  5622. #u64663_div {
  5623. border-width:0px;
  5624. position:absolute;
  5625. left:0px;
  5626. top:0px;
  5627. width:160px;
  5628. height:30px;
  5629. background:inherit;
  5630. background-color:rgba(255, 255, 255, 1);
  5631. box-sizing:border-box;
  5632. border-width:1px;
  5633. border-style:solid;
  5634. border-color:rgba(215, 215, 215, 1);
  5635. border-radius:4px;
  5636. -moz-box-shadow:none;
  5637. -webkit-box-shadow:none;
  5638. box-shadow:none;
  5639. font-size:14px;
  5640. }
  5641. #u64663 {
  5642. border-width:0px;
  5643. position:absolute;
  5644. left:354px;
  5645. top:111px;
  5646. width:160px;
  5647. height:30px;
  5648. display:flex;
  5649. font-size:14px;
  5650. }
  5651. #u64663 .text {
  5652. position:absolute;
  5653. align-self:center;
  5654. padding:2px 2px 2px 2px;
  5655. box-sizing:border-box;
  5656. width:100%;
  5657. }
  5658. #u64663_text {
  5659. border-width:0px;
  5660. word-wrap:break-word;
  5661. text-transform:none;
  5662. visibility:hidden;
  5663. }
  5664. #u64664_input {
  5665. position:absolute;
  5666. left:0px;
  5667. top:0px;
  5668. width:153px;
  5669. height:23px;
  5670. padding:2px 2px 2px 2px;
  5671. font-family:'ArialMT', 'Arial', sans-serif;
  5672. font-weight:400;
  5673. font-style:normal;
  5674. font-size:14px;
  5675. letter-spacing:normal;
  5676. color:#AAAAAA;
  5677. vertical-align:none;
  5678. text-align:left;
  5679. text-transform:none;
  5680. background-color:transparent;
  5681. border-color:transparent;
  5682. }
  5683. #u64664_input.disabled {
  5684. position:absolute;
  5685. left:0px;
  5686. top:0px;
  5687. width:153px;
  5688. height:23px;
  5689. padding:2px 2px 2px 2px;
  5690. font-family:'ArialMT', 'Arial', sans-serif;
  5691. font-weight:400;
  5692. font-style:normal;
  5693. font-size:14px;
  5694. letter-spacing:normal;
  5695. color:#AAAAAA;
  5696. vertical-align:none;
  5697. text-align:left;
  5698. text-transform:none;
  5699. background-color:transparent;
  5700. border-color:transparent;
  5701. }
  5702. #u64664_div {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:0px;
  5706. top:0px;
  5707. width:153px;
  5708. height:23px;
  5709. background:inherit;
  5710. background-color:rgba(255, 255, 255, 1);
  5711. border:none;
  5712. border-radius:0px;
  5713. -moz-box-shadow:none;
  5714. -webkit-box-shadow:none;
  5715. box-shadow:none;
  5716. font-size:14px;
  5717. color:#AAAAAA;
  5718. }
  5719. #u64664 {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:359px;
  5723. top:113px;
  5724. width:153px;
  5725. height:23px;
  5726. display:flex;
  5727. font-size:14px;
  5728. color:#AAAAAA;
  5729. }
  5730. #u64664 .text {
  5731. position:absolute;
  5732. align-self:flex-start;
  5733. padding:2px 2px 2px 2px;
  5734. box-sizing:border-box;
  5735. width:100%;
  5736. }
  5737. #u64664_div.disabled {
  5738. border-width:0px;
  5739. position:absolute;
  5740. left:0px;
  5741. top:0px;
  5742. width:153px;
  5743. height:23px;
  5744. background:inherit;
  5745. background-color:rgba(240, 240, 240, 1);
  5746. border:none;
  5747. border-radius:0px;
  5748. -moz-box-shadow:none;
  5749. -webkit-box-shadow:none;
  5750. box-shadow:none;
  5751. font-size:14px;
  5752. color:#AAAAAA;
  5753. }
  5754. #u64664.disabled {
  5755. }
  5756. .u64664_input_option {
  5757. font-size:14px;
  5758. }
  5759. #u64665_div {
  5760. border-width:0px;
  5761. position:absolute;
  5762. left:0px;
  5763. top:0px;
  5764. width:60px;
  5765. height:30px;
  5766. background:inherit;
  5767. background-color:rgba(255, 255, 255, 1);
  5768. box-sizing:border-box;
  5769. border-width:1px;
  5770. border-style:solid;
  5771. border-color:rgba(170, 170, 170, 1);
  5772. border-radius:4px;
  5773. -moz-box-shadow:none;
  5774. -webkit-box-shadow:none;
  5775. box-shadow:none;
  5776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5777. font-weight:400;
  5778. font-style:normal;
  5779. font-size:14px;
  5780. }
  5781. #u64665 {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:1507px;
  5785. top:111px;
  5786. width:60px;
  5787. height:30px;
  5788. display:flex;
  5789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5790. font-weight:400;
  5791. font-style:normal;
  5792. font-size:14px;
  5793. }
  5794. #u64665 .text {
  5795. position:absolute;
  5796. align-self:center;
  5797. padding:2px 2px 2px 2px;
  5798. box-sizing:border-box;
  5799. width:100%;
  5800. }
  5801. #u64665_text {
  5802. border-width:0px;
  5803. word-wrap:break-word;
  5804. text-transform:none;
  5805. }
  5806. #u64666_div {
  5807. border-width:0px;
  5808. position:absolute;
  5809. left:0px;
  5810. top:0px;
  5811. width:99px;
  5812. height:50px;
  5813. background:inherit;
  5814. background-color:rgba(255, 255, 255, 0);
  5815. border:none;
  5816. border-left:0px;
  5817. border-top:0px;
  5818. border-right:0px;
  5819. border-radius:0px;
  5820. border-bottom-right-radius:0px;
  5821. border-bottom-left-radius:0px;
  5822. -moz-box-shadow:none;
  5823. -webkit-box-shadow:none;
  5824. box-shadow:none;
  5825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5826. font-weight:400;
  5827. font-style:normal;
  5828. font-size:14px;
  5829. line-height:40px;
  5830. }
  5831. #u64666 {
  5832. border-width:0px;
  5833. position:absolute;
  5834. left:479px;
  5835. top:51px;
  5836. width:99px;
  5837. height:50px;
  5838. display:flex;
  5839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5840. font-weight:400;
  5841. font-style:normal;
  5842. font-size:14px;
  5843. line-height:40px;
  5844. }
  5845. #u64666 .text {
  5846. position:absolute;
  5847. align-self:center;
  5848. padding:0px 0px 0px 0px;
  5849. box-sizing:border-box;
  5850. width:100%;
  5851. }
  5852. #u64666_text {
  5853. border-width:0px;
  5854. white-space:nowrap;
  5855. text-transform:none;
  5856. }
  5857. #u64667_div {
  5858. border-width:0px;
  5859. position:absolute;
  5860. left:0px;
  5861. top:0px;
  5862. width:127px;
  5863. height:50px;
  5864. background:inherit;
  5865. background-color:rgba(255, 255, 255, 0);
  5866. border:none;
  5867. border-left:0px;
  5868. border-top:0px;
  5869. border-right:0px;
  5870. border-radius:0px;
  5871. border-bottom-right-radius:0px;
  5872. border-bottom-left-radius:0px;
  5873. -moz-box-shadow:none;
  5874. -webkit-box-shadow:none;
  5875. box-shadow:none;
  5876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5877. font-weight:400;
  5878. font-style:normal;
  5879. font-size:14px;
  5880. line-height:40px;
  5881. }
  5882. #u64667 {
  5883. border-width:0px;
  5884. position:absolute;
  5885. left:618px;
  5886. top:51px;
  5887. width:127px;
  5888. height:50px;
  5889. display:flex;
  5890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5891. font-weight:400;
  5892. font-style:normal;
  5893. font-size:14px;
  5894. line-height:40px;
  5895. }
  5896. #u64667 .text {
  5897. position:absolute;
  5898. align-self:center;
  5899. padding:0px 0px 0px 0px;
  5900. box-sizing:border-box;
  5901. width:100%;
  5902. }
  5903. #u64667_text {
  5904. border-width:0px;
  5905. white-space:nowrap;
  5906. text-transform:none;
  5907. }
  5908. #u64668_div {
  5909. border-width:0px;
  5910. position:absolute;
  5911. left:0px;
  5912. top:0px;
  5913. width:99px;
  5914. height:50px;
  5915. background:inherit;
  5916. background-color:rgba(255, 255, 255, 0);
  5917. box-sizing:border-box;
  5918. border-width:2px;
  5919. border-style:solid;
  5920. border-color:rgba(41, 143, 255, 1);
  5921. border-left:0px;
  5922. border-top:0px;
  5923. border-right:0px;
  5924. border-radius:0px;
  5925. border-bottom-right-radius:0px;
  5926. border-bottom-left-radius:0px;
  5927. -moz-box-shadow:none;
  5928. -webkit-box-shadow:none;
  5929. box-shadow:none;
  5930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5931. font-weight:400;
  5932. font-style:normal;
  5933. font-size:14px;
  5934. color:#298FFF;
  5935. line-height:40px;
  5936. }
  5937. #u64668 {
  5938. border-width:0px;
  5939. position:absolute;
  5940. left:785px;
  5941. top:51px;
  5942. width:99px;
  5943. height:50px;
  5944. display:flex;
  5945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5946. font-weight:400;
  5947. font-style:normal;
  5948. font-size:14px;
  5949. color:#298FFF;
  5950. line-height:40px;
  5951. }
  5952. #u64668 .text {
  5953. position:absolute;
  5954. align-self:center;
  5955. padding:0px 0px 0px 0px;
  5956. box-sizing:border-box;
  5957. width:100%;
  5958. }
  5959. #u64668_text {
  5960. border-width:0px;
  5961. white-space:nowrap;
  5962. text-transform:none;
  5963. }