styles.css 107 KB

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