styles.css 101 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861
  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. #u55727_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. #u55727 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u55727 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u55727_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u55728_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. #u55728 {
  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. #u55728 .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. #u55728_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u55729_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. #u55729 {
  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. #u55729 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u55729_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u55730 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u55731_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u55731 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u55731 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u55731_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u55732_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. #u55732 {
  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. #u55732 .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. #u55732_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u55733_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. #u55733 {
  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. #u55733 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u55733_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u55734 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u55735_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. #u55735 {
  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. #u55735 .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. #u55735_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u55736_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u55736 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u55736 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u55736_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u55737 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u55738_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. #u55738 {
  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. #u55738 .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. #u55738_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u55739_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u55739 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u55739 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u55739_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u55740 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u55741_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. #u55741 {
  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. #u55741 .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. #u55741_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u55742_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u55742 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u55742 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u55742_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u55743 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u55744_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. #u55744 {
  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. #u55744 .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. #u55744_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u55745_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u55745 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u55745 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u55745_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u55746 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u55747_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. #u55747 {
  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. #u55747 .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. #u55747_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u55748_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u55748 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u55748 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u55748_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u55749 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u55750_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. #u55750 {
  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. #u55750 .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. #u55750_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u55751_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u55751 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u55751 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u55751_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u55752 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u55753_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. #u55753 {
  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. #u55753 .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. #u55753_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u55754_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u55754 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u55754 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u55754_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u55755 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u55756_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. #u55756 {
  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. #u55756 .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. #u55756_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u55757_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u55757 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u55757 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u55757_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u55758 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u55759_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. #u55759 {
  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. #u55759 .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. #u55759_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u55760_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u55760 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u55760 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u55760_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u55761_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. #u55761 {
  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. #u55761 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u55761_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u55762_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u55762 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u55762 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u55762_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u55763_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. #u55763 {
  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. #u55763 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u55763_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u55764_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u55764 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u55764 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u55764_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u55765 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u55766_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. #u55766 {
  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. #u55766 .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. #u55766_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u55767_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u55767 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u55767 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u55767_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u55768 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u55769_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. #u55769 {
  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. #u55769 .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. #u55769_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u55770_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u55770 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u55770 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u55770_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u55771 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u55772_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. #u55772_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. #u55772_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. #u55772 {
  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. #u55772 .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. #u55772_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. #u55772.disabled {
  1428. }
  1429. .u55772_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u55773_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u55773 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u55773 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u55773_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u55774_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. #u55774 {
  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. #u55774 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u55774_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u55775_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u55775 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u55775 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u55775_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u55776 {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:0px;
  1544. height:0px;
  1545. }
  1546. #u55777_div {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:1257px;
  1552. height:1160px;
  1553. background:inherit;
  1554. background-color:rgba(255, 255, 255, 1);
  1555. box-sizing:border-box;
  1556. border-width:1px;
  1557. border-style:solid;
  1558. border-color:rgba(242, 242, 242, 1);
  1559. border-radius:0px;
  1560. -moz-box-shadow:none;
  1561. -webkit-box-shadow:none;
  1562. box-shadow:none;
  1563. }
  1564. #u55777 {
  1565. border-width:0px;
  1566. position:absolute;
  1567. left:330px;
  1568. top:50px;
  1569. width:1257px;
  1570. height:1160px;
  1571. display:flex;
  1572. }
  1573. #u55777 .text {
  1574. position:absolute;
  1575. align-self:center;
  1576. padding:2px 2px 2px 2px;
  1577. box-sizing:border-box;
  1578. width:100%;
  1579. }
  1580. #u55777_text {
  1581. border-width:0px;
  1582. word-wrap:break-word;
  1583. text-transform:none;
  1584. visibility:hidden;
  1585. }
  1586. #u55778 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:353px;
  1590. top:159px;
  1591. width:1220px;
  1592. height:238px;
  1593. }
  1594. #u55779_img {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:0px;
  1598. top:0px;
  1599. width:134px;
  1600. height:44px;
  1601. }
  1602. #u55779 {
  1603. border-width:0px;
  1604. position:absolute;
  1605. left:0px;
  1606. top:0px;
  1607. width:134px;
  1608. height:44px;
  1609. display:flex;
  1610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1611. font-weight:400;
  1612. font-style:normal;
  1613. font-size:14px;
  1614. color:#FFFFFF;
  1615. }
  1616. #u55779 .text {
  1617. position:absolute;
  1618. align-self:center;
  1619. padding:2px 2px 2px 2px;
  1620. box-sizing:border-box;
  1621. width:100%;
  1622. }
  1623. #u55779_text {
  1624. border-width:0px;
  1625. word-wrap:break-word;
  1626. text-transform:none;
  1627. }
  1628. #u55780_img {
  1629. border-width:0px;
  1630. position:absolute;
  1631. left:0px;
  1632. top:0px;
  1633. width:134px;
  1634. height:44px;
  1635. }
  1636. #u55780 {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:134px;
  1640. top:0px;
  1641. width:134px;
  1642. height:44px;
  1643. display:flex;
  1644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1645. font-weight:400;
  1646. font-style:normal;
  1647. font-size:14px;
  1648. color:#FFFFFF;
  1649. }
  1650. #u55780 .text {
  1651. position:absolute;
  1652. align-self:center;
  1653. padding:2px 2px 2px 2px;
  1654. box-sizing:border-box;
  1655. width:100%;
  1656. }
  1657. #u55780_text {
  1658. border-width:0px;
  1659. word-wrap:break-word;
  1660. text-transform:none;
  1661. }
  1662. #u55781_img {
  1663. border-width:0px;
  1664. position:absolute;
  1665. left:0px;
  1666. top:0px;
  1667. width:83px;
  1668. height:44px;
  1669. }
  1670. #u55781 {
  1671. border-width:0px;
  1672. position:absolute;
  1673. left:268px;
  1674. top:0px;
  1675. width:83px;
  1676. height:44px;
  1677. display:flex;
  1678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1679. font-weight:400;
  1680. font-style:normal;
  1681. font-size:14px;
  1682. color:#FFFFFF;
  1683. }
  1684. #u55781 .text {
  1685. position:absolute;
  1686. align-self:center;
  1687. padding:2px 2px 2px 2px;
  1688. box-sizing:border-box;
  1689. width:100%;
  1690. }
  1691. #u55781_text {
  1692. border-width:0px;
  1693. word-wrap:break-word;
  1694. text-transform:none;
  1695. }
  1696. #u55782_img {
  1697. border-width:0px;
  1698. position:absolute;
  1699. left:0px;
  1700. top:0px;
  1701. width:83px;
  1702. height:44px;
  1703. }
  1704. #u55782 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:351px;
  1708. top:0px;
  1709. width:83px;
  1710. height:44px;
  1711. display:flex;
  1712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1713. font-weight:400;
  1714. font-style:normal;
  1715. font-size:14px;
  1716. color:#FFFFFF;
  1717. }
  1718. #u55782 .text {
  1719. position:absolute;
  1720. align-self:center;
  1721. padding:2px 2px 2px 2px;
  1722. box-sizing:border-box;
  1723. width:100%;
  1724. }
  1725. #u55782_text {
  1726. border-width:0px;
  1727. word-wrap:break-word;
  1728. text-transform:none;
  1729. }
  1730. #u55783_img {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:0px;
  1734. top:0px;
  1735. width:90px;
  1736. height:44px;
  1737. }
  1738. #u55783 {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:434px;
  1742. top:0px;
  1743. width:90px;
  1744. height:44px;
  1745. display:flex;
  1746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1747. font-weight:400;
  1748. font-style:normal;
  1749. font-size:14px;
  1750. color:#FFFFFF;
  1751. }
  1752. #u55783 .text {
  1753. position:absolute;
  1754. align-self:center;
  1755. padding:2px 2px 2px 2px;
  1756. box-sizing:border-box;
  1757. width:100%;
  1758. }
  1759. #u55783_text {
  1760. border-width:0px;
  1761. word-wrap:break-word;
  1762. text-transform:none;
  1763. }
  1764. #u55784_img {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:90px;
  1770. height:44px;
  1771. }
  1772. #u55784 {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:524px;
  1776. top:0px;
  1777. width:90px;
  1778. height:44px;
  1779. display:flex;
  1780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1781. font-weight:400;
  1782. font-style:normal;
  1783. font-size:14px;
  1784. color:#FFFFFF;
  1785. }
  1786. #u55784 .text {
  1787. position:absolute;
  1788. align-self:center;
  1789. padding:2px 2px 2px 2px;
  1790. box-sizing:border-box;
  1791. width:100%;
  1792. }
  1793. #u55784_text {
  1794. border-width:0px;
  1795. word-wrap:break-word;
  1796. text-transform:none;
  1797. }
  1798. #u55785_img {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:0px;
  1802. top:0px;
  1803. width:83px;
  1804. height:44px;
  1805. }
  1806. #u55785 {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:614px;
  1810. top:0px;
  1811. width:83px;
  1812. height:44px;
  1813. display:flex;
  1814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1815. font-weight:400;
  1816. font-style:normal;
  1817. font-size:14px;
  1818. color:#FFFFFF;
  1819. }
  1820. #u55785 .text {
  1821. position:absolute;
  1822. align-self:center;
  1823. padding:2px 2px 2px 2px;
  1824. box-sizing:border-box;
  1825. width:100%;
  1826. }
  1827. #u55785_text {
  1828. border-width:0px;
  1829. word-wrap:break-word;
  1830. text-transform:none;
  1831. }
  1832. #u55786_img {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:0px;
  1836. top:0px;
  1837. width:83px;
  1838. height:44px;
  1839. }
  1840. #u55786 {
  1841. border-width:0px;
  1842. position:absolute;
  1843. left:697px;
  1844. top:0px;
  1845. width:83px;
  1846. height:44px;
  1847. display:flex;
  1848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1849. font-weight:400;
  1850. font-style:normal;
  1851. font-size:14px;
  1852. color:#FFFFFF;
  1853. }
  1854. #u55786 .text {
  1855. position:absolute;
  1856. align-self:center;
  1857. padding:2px 2px 2px 2px;
  1858. box-sizing:border-box;
  1859. width:100%;
  1860. }
  1861. #u55786_text {
  1862. border-width:0px;
  1863. word-wrap:break-word;
  1864. text-transform:none;
  1865. }
  1866. #u55787_img {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:0px;
  1870. top:0px;
  1871. width:90px;
  1872. height:44px;
  1873. }
  1874. #u55787 {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:780px;
  1878. top:0px;
  1879. width:90px;
  1880. height:44px;
  1881. display:flex;
  1882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1883. font-weight:400;
  1884. font-style:normal;
  1885. font-size:14px;
  1886. color:#FFFFFF;
  1887. }
  1888. #u55787 .text {
  1889. position:absolute;
  1890. align-self:center;
  1891. padding:2px 2px 2px 2px;
  1892. box-sizing:border-box;
  1893. width:100%;
  1894. }
  1895. #u55787_text {
  1896. border-width:0px;
  1897. word-wrap:break-word;
  1898. text-transform:none;
  1899. }
  1900. #u55788_img {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:0px;
  1904. top:0px;
  1905. width:83px;
  1906. height:44px;
  1907. }
  1908. #u55788 {
  1909. border-width:0px;
  1910. position:absolute;
  1911. left:870px;
  1912. top:0px;
  1913. width:83px;
  1914. height:44px;
  1915. display:flex;
  1916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1917. font-weight:400;
  1918. font-style:normal;
  1919. font-size:14px;
  1920. color:#FFFFFF;
  1921. }
  1922. #u55788 .text {
  1923. position:absolute;
  1924. align-self:center;
  1925. padding:2px 2px 2px 2px;
  1926. box-sizing:border-box;
  1927. width:100%;
  1928. }
  1929. #u55788_text {
  1930. border-width:0px;
  1931. word-wrap:break-word;
  1932. text-transform:none;
  1933. }
  1934. #u55789_img {
  1935. border-width:0px;
  1936. position:absolute;
  1937. left:0px;
  1938. top:0px;
  1939. width:83px;
  1940. height:44px;
  1941. }
  1942. #u55789 {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:953px;
  1946. top:0px;
  1947. width:83px;
  1948. height:44px;
  1949. display:flex;
  1950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1951. font-weight:400;
  1952. font-style:normal;
  1953. font-size:14px;
  1954. color:#FFFFFF;
  1955. }
  1956. #u55789 .text {
  1957. position:absolute;
  1958. align-self:center;
  1959. padding:2px 2px 2px 2px;
  1960. box-sizing:border-box;
  1961. width:100%;
  1962. }
  1963. #u55789_text {
  1964. border-width:0px;
  1965. word-wrap:break-word;
  1966. text-transform:none;
  1967. }
  1968. #u55790_img {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:0px;
  1972. top:0px;
  1973. width:90px;
  1974. height:44px;
  1975. }
  1976. #u55790 {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:1036px;
  1980. top:0px;
  1981. width:90px;
  1982. height:44px;
  1983. display:flex;
  1984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1985. font-weight:400;
  1986. font-style:normal;
  1987. font-size:14px;
  1988. color:#FFFFFF;
  1989. }
  1990. #u55790 .text {
  1991. position:absolute;
  1992. align-self:center;
  1993. padding:2px 2px 2px 2px;
  1994. box-sizing:border-box;
  1995. width:100%;
  1996. }
  1997. #u55790_text {
  1998. border-width:0px;
  1999. word-wrap:break-word;
  2000. text-transform:none;
  2001. }
  2002. #u55791_img {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:0px;
  2006. top:0px;
  2007. width:94px;
  2008. height:44px;
  2009. }
  2010. #u55791 {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:1126px;
  2014. top:0px;
  2015. width:94px;
  2016. height:44px;
  2017. display:flex;
  2018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2019. font-weight:400;
  2020. font-style:normal;
  2021. font-size:14px;
  2022. color:#FFFFFF;
  2023. }
  2024. #u55791 .text {
  2025. position:absolute;
  2026. align-self:center;
  2027. padding:2px 2px 2px 2px;
  2028. box-sizing:border-box;
  2029. width:100%;
  2030. }
  2031. #u55791_text {
  2032. border-width:0px;
  2033. word-wrap:break-word;
  2034. text-transform:none;
  2035. }
  2036. #u55792_img {
  2037. border-width:0px;
  2038. position:absolute;
  2039. left:0px;
  2040. top:0px;
  2041. width:134px;
  2042. height:44px;
  2043. }
  2044. #u55792 {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:0px;
  2048. top:44px;
  2049. width:134px;
  2050. height:44px;
  2051. display:flex;
  2052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2053. font-weight:400;
  2054. font-style:normal;
  2055. font-size:14px;
  2056. }
  2057. #u55792 .text {
  2058. position:absolute;
  2059. align-self:center;
  2060. padding:2px 2px 2px 2px;
  2061. box-sizing:border-box;
  2062. width:100%;
  2063. }
  2064. #u55792_text {
  2065. border-width:0px;
  2066. word-wrap:break-word;
  2067. text-transform:none;
  2068. visibility:hidden;
  2069. }
  2070. #u55793_img {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:0px;
  2074. top:0px;
  2075. width:134px;
  2076. height:44px;
  2077. }
  2078. #u55793 {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:134px;
  2082. top:44px;
  2083. width:134px;
  2084. height:44px;
  2085. display:flex;
  2086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2087. font-weight:400;
  2088. font-style:normal;
  2089. font-size:14px;
  2090. }
  2091. #u55793 .text {
  2092. position:absolute;
  2093. align-self:center;
  2094. padding:2px 2px 2px 2px;
  2095. box-sizing:border-box;
  2096. width:100%;
  2097. }
  2098. #u55793_text {
  2099. border-width:0px;
  2100. word-wrap:break-word;
  2101. text-transform:none;
  2102. visibility:hidden;
  2103. }
  2104. #u55794_img {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:0px;
  2108. top:0px;
  2109. width:83px;
  2110. height:44px;
  2111. }
  2112. #u55794 {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:268px;
  2116. top:44px;
  2117. width:83px;
  2118. height:44px;
  2119. display:flex;
  2120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2121. font-weight:400;
  2122. font-style:normal;
  2123. font-size:14px;
  2124. }
  2125. #u55794 .text {
  2126. position:absolute;
  2127. align-self:center;
  2128. padding:2px 2px 2px 2px;
  2129. box-sizing:border-box;
  2130. width:100%;
  2131. }
  2132. #u55794_text {
  2133. border-width:0px;
  2134. word-wrap:break-word;
  2135. text-transform:none;
  2136. visibility:hidden;
  2137. }
  2138. #u55795_img {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:0px;
  2142. top:0px;
  2143. width:83px;
  2144. height:44px;
  2145. }
  2146. #u55795 {
  2147. border-width:0px;
  2148. position:absolute;
  2149. left:351px;
  2150. top:44px;
  2151. width:83px;
  2152. height:44px;
  2153. display:flex;
  2154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2155. font-weight:400;
  2156. font-style:normal;
  2157. font-size:14px;
  2158. }
  2159. #u55795 .text {
  2160. position:absolute;
  2161. align-self:center;
  2162. padding:2px 2px 2px 2px;
  2163. box-sizing:border-box;
  2164. width:100%;
  2165. }
  2166. #u55795_text {
  2167. border-width:0px;
  2168. word-wrap:break-word;
  2169. text-transform:none;
  2170. visibility:hidden;
  2171. }
  2172. #u55796_img {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:0px;
  2176. top:0px;
  2177. width:90px;
  2178. height:44px;
  2179. }
  2180. #u55796 {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:434px;
  2184. top:44px;
  2185. width:90px;
  2186. height:44px;
  2187. display:flex;
  2188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2189. font-weight:400;
  2190. font-style:normal;
  2191. font-size:14px;
  2192. }
  2193. #u55796 .text {
  2194. position:absolute;
  2195. align-self:center;
  2196. padding:2px 2px 2px 2px;
  2197. box-sizing:border-box;
  2198. width:100%;
  2199. }
  2200. #u55796_text {
  2201. border-width:0px;
  2202. word-wrap:break-word;
  2203. text-transform:none;
  2204. visibility:hidden;
  2205. }
  2206. #u55797_img {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:0px;
  2210. top:0px;
  2211. width:90px;
  2212. height:44px;
  2213. }
  2214. #u55797 {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:524px;
  2218. top:44px;
  2219. width:90px;
  2220. height:44px;
  2221. display:flex;
  2222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2223. font-weight:400;
  2224. font-style:normal;
  2225. font-size:14px;
  2226. }
  2227. #u55797 .text {
  2228. position:absolute;
  2229. align-self:center;
  2230. padding:2px 2px 2px 2px;
  2231. box-sizing:border-box;
  2232. width:100%;
  2233. }
  2234. #u55797_text {
  2235. border-width:0px;
  2236. word-wrap:break-word;
  2237. text-transform:none;
  2238. visibility:hidden;
  2239. }
  2240. #u55798_img {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:0px;
  2244. top:0px;
  2245. width:83px;
  2246. height:44px;
  2247. }
  2248. #u55798 {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:614px;
  2252. top:44px;
  2253. width:83px;
  2254. height:44px;
  2255. display:flex;
  2256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2257. font-weight:400;
  2258. font-style:normal;
  2259. font-size:14px;
  2260. }
  2261. #u55798 .text {
  2262. position:absolute;
  2263. align-self:center;
  2264. padding:2px 2px 2px 2px;
  2265. box-sizing:border-box;
  2266. width:100%;
  2267. }
  2268. #u55798_text {
  2269. border-width:0px;
  2270. word-wrap:break-word;
  2271. text-transform:none;
  2272. visibility:hidden;
  2273. }
  2274. #u55799_img {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:0px;
  2278. top:0px;
  2279. width:83px;
  2280. height:44px;
  2281. }
  2282. #u55799 {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:697px;
  2286. top:44px;
  2287. width:83px;
  2288. height:44px;
  2289. display:flex;
  2290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2291. font-weight:400;
  2292. font-style:normal;
  2293. font-size:14px;
  2294. }
  2295. #u55799 .text {
  2296. position:absolute;
  2297. align-self:center;
  2298. padding:2px 2px 2px 2px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u55799_text {
  2303. border-width:0px;
  2304. word-wrap:break-word;
  2305. text-transform:none;
  2306. visibility:hidden;
  2307. }
  2308. #u55800_img {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:90px;
  2314. height:44px;
  2315. }
  2316. #u55800 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:780px;
  2320. top:44px;
  2321. width:90px;
  2322. height:44px;
  2323. display:flex;
  2324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2325. font-weight:400;
  2326. font-style:normal;
  2327. font-size:14px;
  2328. }
  2329. #u55800 .text {
  2330. position:absolute;
  2331. align-self:center;
  2332. padding:2px 2px 2px 2px;
  2333. box-sizing:border-box;
  2334. width:100%;
  2335. }
  2336. #u55800_text {
  2337. border-width:0px;
  2338. word-wrap:break-word;
  2339. text-transform:none;
  2340. visibility:hidden;
  2341. }
  2342. #u55801_img {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:0px;
  2346. top:0px;
  2347. width:83px;
  2348. height:44px;
  2349. }
  2350. #u55801 {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:870px;
  2354. top:44px;
  2355. width:83px;
  2356. height:44px;
  2357. display:flex;
  2358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2359. font-weight:400;
  2360. font-style:normal;
  2361. font-size:14px;
  2362. }
  2363. #u55801 .text {
  2364. position:absolute;
  2365. align-self:center;
  2366. padding:2px 2px 2px 2px;
  2367. box-sizing:border-box;
  2368. width:100%;
  2369. }
  2370. #u55801_text {
  2371. border-width:0px;
  2372. word-wrap:break-word;
  2373. text-transform:none;
  2374. visibility:hidden;
  2375. }
  2376. #u55802_img {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:0px;
  2381. width:83px;
  2382. height:44px;
  2383. }
  2384. #u55802 {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:953px;
  2388. top:44px;
  2389. width:83px;
  2390. height:44px;
  2391. display:flex;
  2392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2393. font-weight:400;
  2394. font-style:normal;
  2395. font-size:14px;
  2396. }
  2397. #u55802 .text {
  2398. position:absolute;
  2399. align-self:center;
  2400. padding:2px 2px 2px 2px;
  2401. box-sizing:border-box;
  2402. width:100%;
  2403. }
  2404. #u55802_text {
  2405. border-width:0px;
  2406. word-wrap:break-word;
  2407. text-transform:none;
  2408. visibility:hidden;
  2409. }
  2410. #u55803_img {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:0px;
  2414. top:0px;
  2415. width:90px;
  2416. height:44px;
  2417. }
  2418. #u55803 {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:1036px;
  2422. top:44px;
  2423. width:90px;
  2424. height:44px;
  2425. display:flex;
  2426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2427. font-weight:400;
  2428. font-style:normal;
  2429. font-size:14px;
  2430. }
  2431. #u55803 .text {
  2432. position:absolute;
  2433. align-self:center;
  2434. padding:2px 2px 2px 2px;
  2435. box-sizing:border-box;
  2436. width:100%;
  2437. }
  2438. #u55803_text {
  2439. border-width:0px;
  2440. word-wrap:break-word;
  2441. text-transform:none;
  2442. visibility:hidden;
  2443. }
  2444. #u55804_img {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:0px;
  2448. top:0px;
  2449. width:94px;
  2450. height:44px;
  2451. }
  2452. #u55804 {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:1126px;
  2456. top:44px;
  2457. width:94px;
  2458. height:44px;
  2459. display:flex;
  2460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2461. font-weight:400;
  2462. font-style:normal;
  2463. font-size:14px;
  2464. }
  2465. #u55804 .text {
  2466. position:absolute;
  2467. align-self:center;
  2468. padding:2px 2px 2px 2px;
  2469. box-sizing:border-box;
  2470. width:100%;
  2471. }
  2472. #u55804_text {
  2473. border-width:0px;
  2474. word-wrap:break-word;
  2475. text-transform:none;
  2476. visibility:hidden;
  2477. }
  2478. #u55805_img {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:0px;
  2482. top:0px;
  2483. width:134px;
  2484. height:30px;
  2485. }
  2486. #u55805 {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:0px;
  2490. top:88px;
  2491. width:134px;
  2492. height:30px;
  2493. display:flex;
  2494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2495. font-weight:400;
  2496. font-style:normal;
  2497. font-size:14px;
  2498. }
  2499. #u55805 .text {
  2500. position:absolute;
  2501. align-self:center;
  2502. padding:2px 2px 2px 2px;
  2503. box-sizing:border-box;
  2504. width:100%;
  2505. }
  2506. #u55805_text {
  2507. border-width:0px;
  2508. word-wrap:break-word;
  2509. text-transform:none;
  2510. visibility:hidden;
  2511. }
  2512. #u55806_img {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:0px;
  2516. top:0px;
  2517. width:134px;
  2518. height:30px;
  2519. }
  2520. #u55806 {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:134px;
  2524. top:88px;
  2525. width:134px;
  2526. height:30px;
  2527. display:flex;
  2528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2529. font-weight:400;
  2530. font-style:normal;
  2531. font-size:14px;
  2532. }
  2533. #u55806 .text {
  2534. position:absolute;
  2535. align-self:center;
  2536. padding:2px 2px 2px 2px;
  2537. box-sizing:border-box;
  2538. width:100%;
  2539. }
  2540. #u55806_text {
  2541. border-width:0px;
  2542. word-wrap:break-word;
  2543. text-transform:none;
  2544. visibility:hidden;
  2545. }
  2546. #u55807_img {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:0px;
  2550. top:0px;
  2551. width:83px;
  2552. height:30px;
  2553. }
  2554. #u55807 {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:268px;
  2558. top:88px;
  2559. width:83px;
  2560. height:30px;
  2561. display:flex;
  2562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2563. font-weight:400;
  2564. font-style:normal;
  2565. font-size:14px;
  2566. }
  2567. #u55807 .text {
  2568. position:absolute;
  2569. align-self:center;
  2570. padding:2px 2px 2px 2px;
  2571. box-sizing:border-box;
  2572. width:100%;
  2573. }
  2574. #u55807_text {
  2575. border-width:0px;
  2576. word-wrap:break-word;
  2577. text-transform:none;
  2578. visibility:hidden;
  2579. }
  2580. #u55808_img {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:0px;
  2584. top:0px;
  2585. width:83px;
  2586. height:30px;
  2587. }
  2588. #u55808 {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:351px;
  2592. top:88px;
  2593. width:83px;
  2594. height:30px;
  2595. display:flex;
  2596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2597. font-weight:400;
  2598. font-style:normal;
  2599. font-size:14px;
  2600. }
  2601. #u55808 .text {
  2602. position:absolute;
  2603. align-self:center;
  2604. padding:2px 2px 2px 2px;
  2605. box-sizing:border-box;
  2606. width:100%;
  2607. }
  2608. #u55808_text {
  2609. border-width:0px;
  2610. word-wrap:break-word;
  2611. text-transform:none;
  2612. visibility:hidden;
  2613. }
  2614. #u55809_img {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:0px;
  2618. top:0px;
  2619. width:90px;
  2620. height:30px;
  2621. }
  2622. #u55809 {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:434px;
  2626. top:88px;
  2627. width:90px;
  2628. height:30px;
  2629. display:flex;
  2630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2631. font-weight:400;
  2632. font-style:normal;
  2633. font-size:14px;
  2634. }
  2635. #u55809 .text {
  2636. position:absolute;
  2637. align-self:center;
  2638. padding:2px 2px 2px 2px;
  2639. box-sizing:border-box;
  2640. width:100%;
  2641. }
  2642. #u55809_text {
  2643. border-width:0px;
  2644. word-wrap:break-word;
  2645. text-transform:none;
  2646. visibility:hidden;
  2647. }
  2648. #u55810_img {
  2649. border-width:0px;
  2650. position:absolute;
  2651. left:0px;
  2652. top:0px;
  2653. width:90px;
  2654. height:30px;
  2655. }
  2656. #u55810 {
  2657. border-width:0px;
  2658. position:absolute;
  2659. left:524px;
  2660. top:88px;
  2661. width:90px;
  2662. height:30px;
  2663. display:flex;
  2664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2665. font-weight:400;
  2666. font-style:normal;
  2667. font-size:14px;
  2668. }
  2669. #u55810 .text {
  2670. position:absolute;
  2671. align-self:center;
  2672. padding:2px 2px 2px 2px;
  2673. box-sizing:border-box;
  2674. width:100%;
  2675. }
  2676. #u55810_text {
  2677. border-width:0px;
  2678. word-wrap:break-word;
  2679. text-transform:none;
  2680. visibility:hidden;
  2681. }
  2682. #u55811_img {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:0px;
  2686. top:0px;
  2687. width:83px;
  2688. height:30px;
  2689. }
  2690. #u55811 {
  2691. border-width:0px;
  2692. position:absolute;
  2693. left:614px;
  2694. top:88px;
  2695. width:83px;
  2696. height:30px;
  2697. display:flex;
  2698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2699. font-weight:400;
  2700. font-style:normal;
  2701. font-size:14px;
  2702. }
  2703. #u55811 .text {
  2704. position:absolute;
  2705. align-self:center;
  2706. padding:2px 2px 2px 2px;
  2707. box-sizing:border-box;
  2708. width:100%;
  2709. }
  2710. #u55811_text {
  2711. border-width:0px;
  2712. word-wrap:break-word;
  2713. text-transform:none;
  2714. visibility:hidden;
  2715. }
  2716. #u55812_img {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:0px;
  2720. top:0px;
  2721. width:83px;
  2722. height:30px;
  2723. }
  2724. #u55812 {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:697px;
  2728. top:88px;
  2729. width:83px;
  2730. height:30px;
  2731. display:flex;
  2732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2733. font-weight:400;
  2734. font-style:normal;
  2735. font-size:14px;
  2736. }
  2737. #u55812 .text {
  2738. position:absolute;
  2739. align-self:center;
  2740. padding:2px 2px 2px 2px;
  2741. box-sizing:border-box;
  2742. width:100%;
  2743. }
  2744. #u55812_text {
  2745. border-width:0px;
  2746. word-wrap:break-word;
  2747. text-transform:none;
  2748. visibility:hidden;
  2749. }
  2750. #u55813_img {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:0px;
  2754. top:0px;
  2755. width:90px;
  2756. height:30px;
  2757. }
  2758. #u55813 {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:780px;
  2762. top:88px;
  2763. width:90px;
  2764. height:30px;
  2765. display:flex;
  2766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2767. font-weight:400;
  2768. font-style:normal;
  2769. font-size:14px;
  2770. }
  2771. #u55813 .text {
  2772. position:absolute;
  2773. align-self:center;
  2774. padding:2px 2px 2px 2px;
  2775. box-sizing:border-box;
  2776. width:100%;
  2777. }
  2778. #u55813_text {
  2779. border-width:0px;
  2780. word-wrap:break-word;
  2781. text-transform:none;
  2782. visibility:hidden;
  2783. }
  2784. #u55814_img {
  2785. border-width:0px;
  2786. position:absolute;
  2787. left:0px;
  2788. top:0px;
  2789. width:83px;
  2790. height:30px;
  2791. }
  2792. #u55814 {
  2793. border-width:0px;
  2794. position:absolute;
  2795. left:870px;
  2796. top:88px;
  2797. width:83px;
  2798. height:30px;
  2799. display:flex;
  2800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2801. font-weight:400;
  2802. font-style:normal;
  2803. font-size:14px;
  2804. }
  2805. #u55814 .text {
  2806. position:absolute;
  2807. align-self:center;
  2808. padding:2px 2px 2px 2px;
  2809. box-sizing:border-box;
  2810. width:100%;
  2811. }
  2812. #u55814_text {
  2813. border-width:0px;
  2814. word-wrap:break-word;
  2815. text-transform:none;
  2816. visibility:hidden;
  2817. }
  2818. #u55815_img {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:0px;
  2822. top:0px;
  2823. width:83px;
  2824. height:30px;
  2825. }
  2826. #u55815 {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:953px;
  2830. top:88px;
  2831. width:83px;
  2832. height:30px;
  2833. display:flex;
  2834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2835. font-weight:400;
  2836. font-style:normal;
  2837. font-size:14px;
  2838. }
  2839. #u55815 .text {
  2840. position:absolute;
  2841. align-self:center;
  2842. padding:2px 2px 2px 2px;
  2843. box-sizing:border-box;
  2844. width:100%;
  2845. }
  2846. #u55815_text {
  2847. border-width:0px;
  2848. word-wrap:break-word;
  2849. text-transform:none;
  2850. visibility:hidden;
  2851. }
  2852. #u55816_img {
  2853. border-width:0px;
  2854. position:absolute;
  2855. left:0px;
  2856. top:0px;
  2857. width:90px;
  2858. height:30px;
  2859. }
  2860. #u55816 {
  2861. border-width:0px;
  2862. position:absolute;
  2863. left:1036px;
  2864. top:88px;
  2865. width:90px;
  2866. height:30px;
  2867. display:flex;
  2868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2869. font-weight:400;
  2870. font-style:normal;
  2871. font-size:14px;
  2872. }
  2873. #u55816 .text {
  2874. position:absolute;
  2875. align-self:center;
  2876. padding:2px 2px 2px 2px;
  2877. box-sizing:border-box;
  2878. width:100%;
  2879. }
  2880. #u55816_text {
  2881. border-width:0px;
  2882. word-wrap:break-word;
  2883. text-transform:none;
  2884. visibility:hidden;
  2885. }
  2886. #u55817_img {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:0px;
  2890. top:0px;
  2891. width:94px;
  2892. height:30px;
  2893. }
  2894. #u55817 {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:1126px;
  2898. top:88px;
  2899. width:94px;
  2900. height:30px;
  2901. display:flex;
  2902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2903. font-weight:400;
  2904. font-style:normal;
  2905. font-size:14px;
  2906. }
  2907. #u55817 .text {
  2908. position:absolute;
  2909. align-self:center;
  2910. padding:2px 2px 2px 2px;
  2911. box-sizing:border-box;
  2912. width:100%;
  2913. }
  2914. #u55817_text {
  2915. border-width:0px;
  2916. word-wrap:break-word;
  2917. text-transform:none;
  2918. visibility:hidden;
  2919. }
  2920. #u55818_img {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:0px;
  2924. top:0px;
  2925. width:134px;
  2926. height:30px;
  2927. }
  2928. #u55818 {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:0px;
  2932. top:118px;
  2933. width:134px;
  2934. height:30px;
  2935. display:flex;
  2936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2937. font-weight:400;
  2938. font-style:normal;
  2939. font-size:14px;
  2940. }
  2941. #u55818 .text {
  2942. position:absolute;
  2943. align-self:center;
  2944. padding:2px 2px 2px 2px;
  2945. box-sizing:border-box;
  2946. width:100%;
  2947. }
  2948. #u55818_text {
  2949. border-width:0px;
  2950. word-wrap:break-word;
  2951. text-transform:none;
  2952. visibility:hidden;
  2953. }
  2954. #u55819_img {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:0px;
  2958. top:0px;
  2959. width:134px;
  2960. height:30px;
  2961. }
  2962. #u55819 {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:134px;
  2966. top:118px;
  2967. width:134px;
  2968. height:30px;
  2969. display:flex;
  2970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2971. font-weight:400;
  2972. font-style:normal;
  2973. font-size:14px;
  2974. }
  2975. #u55819 .text {
  2976. position:absolute;
  2977. align-self:center;
  2978. padding:2px 2px 2px 2px;
  2979. box-sizing:border-box;
  2980. width:100%;
  2981. }
  2982. #u55819_text {
  2983. border-width:0px;
  2984. word-wrap:break-word;
  2985. text-transform:none;
  2986. visibility:hidden;
  2987. }
  2988. #u55820_img {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:0px;
  2992. top:0px;
  2993. width:83px;
  2994. height:30px;
  2995. }
  2996. #u55820 {
  2997. border-width:0px;
  2998. position:absolute;
  2999. left:268px;
  3000. top:118px;
  3001. width:83px;
  3002. height:30px;
  3003. display:flex;
  3004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3005. font-weight:400;
  3006. font-style:normal;
  3007. font-size:14px;
  3008. }
  3009. #u55820 .text {
  3010. position:absolute;
  3011. align-self:center;
  3012. padding:2px 2px 2px 2px;
  3013. box-sizing:border-box;
  3014. width:100%;
  3015. }
  3016. #u55820_text {
  3017. border-width:0px;
  3018. word-wrap:break-word;
  3019. text-transform:none;
  3020. visibility:hidden;
  3021. }
  3022. #u55821_img {
  3023. border-width:0px;
  3024. position:absolute;
  3025. left:0px;
  3026. top:0px;
  3027. width:83px;
  3028. height:30px;
  3029. }
  3030. #u55821 {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:351px;
  3034. top:118px;
  3035. width:83px;
  3036. height:30px;
  3037. display:flex;
  3038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3039. font-weight:400;
  3040. font-style:normal;
  3041. font-size:14px;
  3042. }
  3043. #u55821 .text {
  3044. position:absolute;
  3045. align-self:center;
  3046. padding:2px 2px 2px 2px;
  3047. box-sizing:border-box;
  3048. width:100%;
  3049. }
  3050. #u55821_text {
  3051. border-width:0px;
  3052. word-wrap:break-word;
  3053. text-transform:none;
  3054. visibility:hidden;
  3055. }
  3056. #u55822_img {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:0px;
  3060. top:0px;
  3061. width:90px;
  3062. height:30px;
  3063. }
  3064. #u55822 {
  3065. border-width:0px;
  3066. position:absolute;
  3067. left:434px;
  3068. top:118px;
  3069. width:90px;
  3070. height:30px;
  3071. display:flex;
  3072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3073. font-weight:400;
  3074. font-style:normal;
  3075. font-size:14px;
  3076. }
  3077. #u55822 .text {
  3078. position:absolute;
  3079. align-self:center;
  3080. padding:2px 2px 2px 2px;
  3081. box-sizing:border-box;
  3082. width:100%;
  3083. }
  3084. #u55822_text {
  3085. border-width:0px;
  3086. word-wrap:break-word;
  3087. text-transform:none;
  3088. visibility:hidden;
  3089. }
  3090. #u55823_img {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:0px;
  3094. top:0px;
  3095. width:90px;
  3096. height:30px;
  3097. }
  3098. #u55823 {
  3099. border-width:0px;
  3100. position:absolute;
  3101. left:524px;
  3102. top:118px;
  3103. width:90px;
  3104. height:30px;
  3105. display:flex;
  3106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3107. font-weight:400;
  3108. font-style:normal;
  3109. font-size:14px;
  3110. }
  3111. #u55823 .text {
  3112. position:absolute;
  3113. align-self:center;
  3114. padding:2px 2px 2px 2px;
  3115. box-sizing:border-box;
  3116. width:100%;
  3117. }
  3118. #u55823_text {
  3119. border-width:0px;
  3120. word-wrap:break-word;
  3121. text-transform:none;
  3122. visibility:hidden;
  3123. }
  3124. #u55824_img {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:0px;
  3128. top:0px;
  3129. width:83px;
  3130. height:30px;
  3131. }
  3132. #u55824 {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:614px;
  3136. top:118px;
  3137. width:83px;
  3138. height:30px;
  3139. display:flex;
  3140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3141. font-weight:400;
  3142. font-style:normal;
  3143. font-size:14px;
  3144. }
  3145. #u55824 .text {
  3146. position:absolute;
  3147. align-self:center;
  3148. padding:2px 2px 2px 2px;
  3149. box-sizing:border-box;
  3150. width:100%;
  3151. }
  3152. #u55824_text {
  3153. border-width:0px;
  3154. word-wrap:break-word;
  3155. text-transform:none;
  3156. visibility:hidden;
  3157. }
  3158. #u55825_img {
  3159. border-width:0px;
  3160. position:absolute;
  3161. left:0px;
  3162. top:0px;
  3163. width:83px;
  3164. height:30px;
  3165. }
  3166. #u55825 {
  3167. border-width:0px;
  3168. position:absolute;
  3169. left:697px;
  3170. top:118px;
  3171. width:83px;
  3172. height:30px;
  3173. display:flex;
  3174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3175. font-weight:400;
  3176. font-style:normal;
  3177. font-size:14px;
  3178. }
  3179. #u55825 .text {
  3180. position:absolute;
  3181. align-self:center;
  3182. padding:2px 2px 2px 2px;
  3183. box-sizing:border-box;
  3184. width:100%;
  3185. }
  3186. #u55825_text {
  3187. border-width:0px;
  3188. word-wrap:break-word;
  3189. text-transform:none;
  3190. visibility:hidden;
  3191. }
  3192. #u55826_img {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:0px;
  3196. top:0px;
  3197. width:90px;
  3198. height:30px;
  3199. }
  3200. #u55826 {
  3201. border-width:0px;
  3202. position:absolute;
  3203. left:780px;
  3204. top:118px;
  3205. width:90px;
  3206. height:30px;
  3207. display:flex;
  3208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3209. font-weight:400;
  3210. font-style:normal;
  3211. font-size:14px;
  3212. }
  3213. #u55826 .text {
  3214. position:absolute;
  3215. align-self:center;
  3216. padding:2px 2px 2px 2px;
  3217. box-sizing:border-box;
  3218. width:100%;
  3219. }
  3220. #u55826_text {
  3221. border-width:0px;
  3222. word-wrap:break-word;
  3223. text-transform:none;
  3224. visibility:hidden;
  3225. }
  3226. #u55827_img {
  3227. border-width:0px;
  3228. position:absolute;
  3229. left:0px;
  3230. top:0px;
  3231. width:83px;
  3232. height:30px;
  3233. }
  3234. #u55827 {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:870px;
  3238. top:118px;
  3239. width:83px;
  3240. height:30px;
  3241. display:flex;
  3242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3243. font-weight:400;
  3244. font-style:normal;
  3245. font-size:14px;
  3246. }
  3247. #u55827 .text {
  3248. position:absolute;
  3249. align-self:center;
  3250. padding:2px 2px 2px 2px;
  3251. box-sizing:border-box;
  3252. width:100%;
  3253. }
  3254. #u55827_text {
  3255. border-width:0px;
  3256. word-wrap:break-word;
  3257. text-transform:none;
  3258. visibility:hidden;
  3259. }
  3260. #u55828_img {
  3261. border-width:0px;
  3262. position:absolute;
  3263. left:0px;
  3264. top:0px;
  3265. width:83px;
  3266. height:30px;
  3267. }
  3268. #u55828 {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:953px;
  3272. top:118px;
  3273. width:83px;
  3274. height:30px;
  3275. display:flex;
  3276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3277. font-weight:400;
  3278. font-style:normal;
  3279. font-size:14px;
  3280. }
  3281. #u55828 .text {
  3282. position:absolute;
  3283. align-self:center;
  3284. padding:2px 2px 2px 2px;
  3285. box-sizing:border-box;
  3286. width:100%;
  3287. }
  3288. #u55828_text {
  3289. border-width:0px;
  3290. word-wrap:break-word;
  3291. text-transform:none;
  3292. visibility:hidden;
  3293. }
  3294. #u55829_img {
  3295. border-width:0px;
  3296. position:absolute;
  3297. left:0px;
  3298. top:0px;
  3299. width:90px;
  3300. height:30px;
  3301. }
  3302. #u55829 {
  3303. border-width:0px;
  3304. position:absolute;
  3305. left:1036px;
  3306. top:118px;
  3307. width:90px;
  3308. height:30px;
  3309. display:flex;
  3310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3311. font-weight:400;
  3312. font-style:normal;
  3313. font-size:14px;
  3314. }
  3315. #u55829 .text {
  3316. position:absolute;
  3317. align-self:center;
  3318. padding:2px 2px 2px 2px;
  3319. box-sizing:border-box;
  3320. width:100%;
  3321. }
  3322. #u55829_text {
  3323. border-width:0px;
  3324. word-wrap:break-word;
  3325. text-transform:none;
  3326. visibility:hidden;
  3327. }
  3328. #u55830_img {
  3329. border-width:0px;
  3330. position:absolute;
  3331. left:0px;
  3332. top:0px;
  3333. width:94px;
  3334. height:30px;
  3335. }
  3336. #u55830 {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:1126px;
  3340. top:118px;
  3341. width:94px;
  3342. height:30px;
  3343. display:flex;
  3344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3345. font-weight:400;
  3346. font-style:normal;
  3347. font-size:14px;
  3348. }
  3349. #u55830 .text {
  3350. position:absolute;
  3351. align-self:center;
  3352. padding:2px 2px 2px 2px;
  3353. box-sizing:border-box;
  3354. width:100%;
  3355. }
  3356. #u55830_text {
  3357. border-width:0px;
  3358. word-wrap:break-word;
  3359. text-transform:none;
  3360. visibility:hidden;
  3361. }
  3362. #u55831_img {
  3363. border-width:0px;
  3364. position:absolute;
  3365. left:0px;
  3366. top:0px;
  3367. width:134px;
  3368. height:30px;
  3369. }
  3370. #u55831 {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:0px;
  3374. top:148px;
  3375. width:134px;
  3376. height:30px;
  3377. display:flex;
  3378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3379. font-weight:400;
  3380. font-style:normal;
  3381. font-size:14px;
  3382. }
  3383. #u55831 .text {
  3384. position:absolute;
  3385. align-self:center;
  3386. padding:2px 2px 2px 2px;
  3387. box-sizing:border-box;
  3388. width:100%;
  3389. }
  3390. #u55831_text {
  3391. border-width:0px;
  3392. word-wrap:break-word;
  3393. text-transform:none;
  3394. visibility:hidden;
  3395. }
  3396. #u55832_img {
  3397. border-width:0px;
  3398. position:absolute;
  3399. left:0px;
  3400. top:0px;
  3401. width:134px;
  3402. height:30px;
  3403. }
  3404. #u55832 {
  3405. border-width:0px;
  3406. position:absolute;
  3407. left:134px;
  3408. top:148px;
  3409. width:134px;
  3410. height:30px;
  3411. display:flex;
  3412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3413. font-weight:400;
  3414. font-style:normal;
  3415. font-size:14px;
  3416. }
  3417. #u55832 .text {
  3418. position:absolute;
  3419. align-self:center;
  3420. padding:2px 2px 2px 2px;
  3421. box-sizing:border-box;
  3422. width:100%;
  3423. }
  3424. #u55832_text {
  3425. border-width:0px;
  3426. word-wrap:break-word;
  3427. text-transform:none;
  3428. visibility:hidden;
  3429. }
  3430. #u55833_img {
  3431. border-width:0px;
  3432. position:absolute;
  3433. left:0px;
  3434. top:0px;
  3435. width:83px;
  3436. height:30px;
  3437. }
  3438. #u55833 {
  3439. border-width:0px;
  3440. position:absolute;
  3441. left:268px;
  3442. top:148px;
  3443. width:83px;
  3444. height:30px;
  3445. display:flex;
  3446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3447. font-weight:400;
  3448. font-style:normal;
  3449. font-size:14px;
  3450. }
  3451. #u55833 .text {
  3452. position:absolute;
  3453. align-self:center;
  3454. padding:2px 2px 2px 2px;
  3455. box-sizing:border-box;
  3456. width:100%;
  3457. }
  3458. #u55833_text {
  3459. border-width:0px;
  3460. word-wrap:break-word;
  3461. text-transform:none;
  3462. visibility:hidden;
  3463. }
  3464. #u55834_img {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:0px;
  3468. top:0px;
  3469. width:83px;
  3470. height:30px;
  3471. }
  3472. #u55834 {
  3473. border-width:0px;
  3474. position:absolute;
  3475. left:351px;
  3476. top:148px;
  3477. width:83px;
  3478. height:30px;
  3479. display:flex;
  3480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3481. font-weight:400;
  3482. font-style:normal;
  3483. font-size:14px;
  3484. }
  3485. #u55834 .text {
  3486. position:absolute;
  3487. align-self:center;
  3488. padding:2px 2px 2px 2px;
  3489. box-sizing:border-box;
  3490. width:100%;
  3491. }
  3492. #u55834_text {
  3493. border-width:0px;
  3494. word-wrap:break-word;
  3495. text-transform:none;
  3496. visibility:hidden;
  3497. }
  3498. #u55835_img {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:0px;
  3502. top:0px;
  3503. width:90px;
  3504. height:30px;
  3505. }
  3506. #u55835 {
  3507. border-width:0px;
  3508. position:absolute;
  3509. left:434px;
  3510. top:148px;
  3511. width:90px;
  3512. height:30px;
  3513. display:flex;
  3514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3515. font-weight:400;
  3516. font-style:normal;
  3517. font-size:14px;
  3518. }
  3519. #u55835 .text {
  3520. position:absolute;
  3521. align-self:center;
  3522. padding:2px 2px 2px 2px;
  3523. box-sizing:border-box;
  3524. width:100%;
  3525. }
  3526. #u55835_text {
  3527. border-width:0px;
  3528. word-wrap:break-word;
  3529. text-transform:none;
  3530. visibility:hidden;
  3531. }
  3532. #u55836_img {
  3533. border-width:0px;
  3534. position:absolute;
  3535. left:0px;
  3536. top:0px;
  3537. width:90px;
  3538. height:30px;
  3539. }
  3540. #u55836 {
  3541. border-width:0px;
  3542. position:absolute;
  3543. left:524px;
  3544. top:148px;
  3545. width:90px;
  3546. height:30px;
  3547. display:flex;
  3548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3549. font-weight:400;
  3550. font-style:normal;
  3551. font-size:14px;
  3552. }
  3553. #u55836 .text {
  3554. position:absolute;
  3555. align-self:center;
  3556. padding:2px 2px 2px 2px;
  3557. box-sizing:border-box;
  3558. width:100%;
  3559. }
  3560. #u55836_text {
  3561. border-width:0px;
  3562. word-wrap:break-word;
  3563. text-transform:none;
  3564. visibility:hidden;
  3565. }
  3566. #u55837_img {
  3567. border-width:0px;
  3568. position:absolute;
  3569. left:0px;
  3570. top:0px;
  3571. width:83px;
  3572. height:30px;
  3573. }
  3574. #u55837 {
  3575. border-width:0px;
  3576. position:absolute;
  3577. left:614px;
  3578. top:148px;
  3579. width:83px;
  3580. height:30px;
  3581. display:flex;
  3582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3583. font-weight:400;
  3584. font-style:normal;
  3585. font-size:14px;
  3586. }
  3587. #u55837 .text {
  3588. position:absolute;
  3589. align-self:center;
  3590. padding:2px 2px 2px 2px;
  3591. box-sizing:border-box;
  3592. width:100%;
  3593. }
  3594. #u55837_text {
  3595. border-width:0px;
  3596. word-wrap:break-word;
  3597. text-transform:none;
  3598. visibility:hidden;
  3599. }
  3600. #u55838_img {
  3601. border-width:0px;
  3602. position:absolute;
  3603. left:0px;
  3604. top:0px;
  3605. width:83px;
  3606. height:30px;
  3607. }
  3608. #u55838 {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:697px;
  3612. top:148px;
  3613. width:83px;
  3614. height:30px;
  3615. display:flex;
  3616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3617. font-weight:400;
  3618. font-style:normal;
  3619. font-size:14px;
  3620. }
  3621. #u55838 .text {
  3622. position:absolute;
  3623. align-self:center;
  3624. padding:2px 2px 2px 2px;
  3625. box-sizing:border-box;
  3626. width:100%;
  3627. }
  3628. #u55838_text {
  3629. border-width:0px;
  3630. word-wrap:break-word;
  3631. text-transform:none;
  3632. visibility:hidden;
  3633. }
  3634. #u55839_img {
  3635. border-width:0px;
  3636. position:absolute;
  3637. left:0px;
  3638. top:0px;
  3639. width:90px;
  3640. height:30px;
  3641. }
  3642. #u55839 {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:780px;
  3646. top:148px;
  3647. width:90px;
  3648. height:30px;
  3649. display:flex;
  3650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3651. font-weight:400;
  3652. font-style:normal;
  3653. font-size:14px;
  3654. }
  3655. #u55839 .text {
  3656. position:absolute;
  3657. align-self:center;
  3658. padding:2px 2px 2px 2px;
  3659. box-sizing:border-box;
  3660. width:100%;
  3661. }
  3662. #u55839_text {
  3663. border-width:0px;
  3664. word-wrap:break-word;
  3665. text-transform:none;
  3666. visibility:hidden;
  3667. }
  3668. #u55840_img {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:0px;
  3672. top:0px;
  3673. width:83px;
  3674. height:30px;
  3675. }
  3676. #u55840 {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:870px;
  3680. top:148px;
  3681. width:83px;
  3682. height:30px;
  3683. display:flex;
  3684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3685. font-weight:400;
  3686. font-style:normal;
  3687. font-size:14px;
  3688. }
  3689. #u55840 .text {
  3690. position:absolute;
  3691. align-self:center;
  3692. padding:2px 2px 2px 2px;
  3693. box-sizing:border-box;
  3694. width:100%;
  3695. }
  3696. #u55840_text {
  3697. border-width:0px;
  3698. word-wrap:break-word;
  3699. text-transform:none;
  3700. visibility:hidden;
  3701. }
  3702. #u55841_img {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:0px;
  3706. top:0px;
  3707. width:83px;
  3708. height:30px;
  3709. }
  3710. #u55841 {
  3711. border-width:0px;
  3712. position:absolute;
  3713. left:953px;
  3714. top:148px;
  3715. width:83px;
  3716. height:30px;
  3717. display:flex;
  3718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3719. font-weight:400;
  3720. font-style:normal;
  3721. font-size:14px;
  3722. }
  3723. #u55841 .text {
  3724. position:absolute;
  3725. align-self:center;
  3726. padding:2px 2px 2px 2px;
  3727. box-sizing:border-box;
  3728. width:100%;
  3729. }
  3730. #u55841_text {
  3731. border-width:0px;
  3732. word-wrap:break-word;
  3733. text-transform:none;
  3734. visibility:hidden;
  3735. }
  3736. #u55842_img {
  3737. border-width:0px;
  3738. position:absolute;
  3739. left:0px;
  3740. top:0px;
  3741. width:90px;
  3742. height:30px;
  3743. }
  3744. #u55842 {
  3745. border-width:0px;
  3746. position:absolute;
  3747. left:1036px;
  3748. top:148px;
  3749. width:90px;
  3750. height:30px;
  3751. display:flex;
  3752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3753. font-weight:400;
  3754. font-style:normal;
  3755. font-size:14px;
  3756. }
  3757. #u55842 .text {
  3758. position:absolute;
  3759. align-self:center;
  3760. padding:2px 2px 2px 2px;
  3761. box-sizing:border-box;
  3762. width:100%;
  3763. }
  3764. #u55842_text {
  3765. border-width:0px;
  3766. word-wrap:break-word;
  3767. text-transform:none;
  3768. visibility:hidden;
  3769. }
  3770. #u55843_img {
  3771. border-width:0px;
  3772. position:absolute;
  3773. left:0px;
  3774. top:0px;
  3775. width:94px;
  3776. height:30px;
  3777. }
  3778. #u55843 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:1126px;
  3782. top:148px;
  3783. width:94px;
  3784. height:30px;
  3785. display:flex;
  3786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3787. font-weight:400;
  3788. font-style:normal;
  3789. font-size:14px;
  3790. }
  3791. #u55843 .text {
  3792. position:absolute;
  3793. align-self:center;
  3794. padding:2px 2px 2px 2px;
  3795. box-sizing:border-box;
  3796. width:100%;
  3797. }
  3798. #u55843_text {
  3799. border-width:0px;
  3800. word-wrap:break-word;
  3801. text-transform:none;
  3802. visibility:hidden;
  3803. }
  3804. #u55844_img {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:0px;
  3808. top:0px;
  3809. width:134px;
  3810. height:30px;
  3811. }
  3812. #u55844 {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:0px;
  3816. top:178px;
  3817. width:134px;
  3818. height:30px;
  3819. display:flex;
  3820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3821. font-weight:400;
  3822. font-style:normal;
  3823. font-size:14px;
  3824. }
  3825. #u55844 .text {
  3826. position:absolute;
  3827. align-self:center;
  3828. padding:2px 2px 2px 2px;
  3829. box-sizing:border-box;
  3830. width:100%;
  3831. }
  3832. #u55844_text {
  3833. border-width:0px;
  3834. word-wrap:break-word;
  3835. text-transform:none;
  3836. visibility:hidden;
  3837. }
  3838. #u55845_img {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:0px;
  3842. top:0px;
  3843. width:134px;
  3844. height:30px;
  3845. }
  3846. #u55845 {
  3847. border-width:0px;
  3848. position:absolute;
  3849. left:134px;
  3850. top:178px;
  3851. width:134px;
  3852. height:30px;
  3853. display:flex;
  3854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3855. font-weight:400;
  3856. font-style:normal;
  3857. font-size:14px;
  3858. }
  3859. #u55845 .text {
  3860. position:absolute;
  3861. align-self:center;
  3862. padding:2px 2px 2px 2px;
  3863. box-sizing:border-box;
  3864. width:100%;
  3865. }
  3866. #u55845_text {
  3867. border-width:0px;
  3868. word-wrap:break-word;
  3869. text-transform:none;
  3870. visibility:hidden;
  3871. }
  3872. #u55846_img {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:0px;
  3876. top:0px;
  3877. width:83px;
  3878. height:30px;
  3879. }
  3880. #u55846 {
  3881. border-width:0px;
  3882. position:absolute;
  3883. left:268px;
  3884. top:178px;
  3885. width:83px;
  3886. height:30px;
  3887. display:flex;
  3888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3889. font-weight:400;
  3890. font-style:normal;
  3891. font-size:14px;
  3892. }
  3893. #u55846 .text {
  3894. position:absolute;
  3895. align-self:center;
  3896. padding:2px 2px 2px 2px;
  3897. box-sizing:border-box;
  3898. width:100%;
  3899. }
  3900. #u55846_text {
  3901. border-width:0px;
  3902. word-wrap:break-word;
  3903. text-transform:none;
  3904. visibility:hidden;
  3905. }
  3906. #u55847_img {
  3907. border-width:0px;
  3908. position:absolute;
  3909. left:0px;
  3910. top:0px;
  3911. width:83px;
  3912. height:30px;
  3913. }
  3914. #u55847 {
  3915. border-width:0px;
  3916. position:absolute;
  3917. left:351px;
  3918. top:178px;
  3919. width:83px;
  3920. height:30px;
  3921. display:flex;
  3922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3923. font-weight:400;
  3924. font-style:normal;
  3925. font-size:14px;
  3926. }
  3927. #u55847 .text {
  3928. position:absolute;
  3929. align-self:center;
  3930. padding:2px 2px 2px 2px;
  3931. box-sizing:border-box;
  3932. width:100%;
  3933. }
  3934. #u55847_text {
  3935. border-width:0px;
  3936. word-wrap:break-word;
  3937. text-transform:none;
  3938. visibility:hidden;
  3939. }
  3940. #u55848_img {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:0px;
  3944. top:0px;
  3945. width:90px;
  3946. height:30px;
  3947. }
  3948. #u55848 {
  3949. border-width:0px;
  3950. position:absolute;
  3951. left:434px;
  3952. top:178px;
  3953. width:90px;
  3954. height:30px;
  3955. display:flex;
  3956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3957. font-weight:400;
  3958. font-style:normal;
  3959. font-size:14px;
  3960. }
  3961. #u55848 .text {
  3962. position:absolute;
  3963. align-self:center;
  3964. padding:2px 2px 2px 2px;
  3965. box-sizing:border-box;
  3966. width:100%;
  3967. }
  3968. #u55848_text {
  3969. border-width:0px;
  3970. word-wrap:break-word;
  3971. text-transform:none;
  3972. visibility:hidden;
  3973. }
  3974. #u55849_img {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:0px;
  3978. top:0px;
  3979. width:90px;
  3980. height:30px;
  3981. }
  3982. #u55849 {
  3983. border-width:0px;
  3984. position:absolute;
  3985. left:524px;
  3986. top:178px;
  3987. width:90px;
  3988. height:30px;
  3989. display:flex;
  3990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3991. font-weight:400;
  3992. font-style:normal;
  3993. font-size:14px;
  3994. }
  3995. #u55849 .text {
  3996. position:absolute;
  3997. align-self:center;
  3998. padding:2px 2px 2px 2px;
  3999. box-sizing:border-box;
  4000. width:100%;
  4001. }
  4002. #u55849_text {
  4003. border-width:0px;
  4004. word-wrap:break-word;
  4005. text-transform:none;
  4006. visibility:hidden;
  4007. }
  4008. #u55850_img {
  4009. border-width:0px;
  4010. position:absolute;
  4011. left:0px;
  4012. top:0px;
  4013. width:83px;
  4014. height:30px;
  4015. }
  4016. #u55850 {
  4017. border-width:0px;
  4018. position:absolute;
  4019. left:614px;
  4020. top:178px;
  4021. width:83px;
  4022. height:30px;
  4023. display:flex;
  4024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4025. font-weight:400;
  4026. font-style:normal;
  4027. font-size:14px;
  4028. }
  4029. #u55850 .text {
  4030. position:absolute;
  4031. align-self:center;
  4032. padding:2px 2px 2px 2px;
  4033. box-sizing:border-box;
  4034. width:100%;
  4035. }
  4036. #u55850_text {
  4037. border-width:0px;
  4038. word-wrap:break-word;
  4039. text-transform:none;
  4040. visibility:hidden;
  4041. }
  4042. #u55851_img {
  4043. border-width:0px;
  4044. position:absolute;
  4045. left:0px;
  4046. top:0px;
  4047. width:83px;
  4048. height:30px;
  4049. }
  4050. #u55851 {
  4051. border-width:0px;
  4052. position:absolute;
  4053. left:697px;
  4054. top:178px;
  4055. width:83px;
  4056. height:30px;
  4057. display:flex;
  4058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4059. font-weight:400;
  4060. font-style:normal;
  4061. font-size:14px;
  4062. }
  4063. #u55851 .text {
  4064. position:absolute;
  4065. align-self:center;
  4066. padding:2px 2px 2px 2px;
  4067. box-sizing:border-box;
  4068. width:100%;
  4069. }
  4070. #u55851_text {
  4071. border-width:0px;
  4072. word-wrap:break-word;
  4073. text-transform:none;
  4074. visibility:hidden;
  4075. }
  4076. #u55852_img {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:0px;
  4080. top:0px;
  4081. width:90px;
  4082. height:30px;
  4083. }
  4084. #u55852 {
  4085. border-width:0px;
  4086. position:absolute;
  4087. left:780px;
  4088. top:178px;
  4089. width:90px;
  4090. height:30px;
  4091. display:flex;
  4092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4093. font-weight:400;
  4094. font-style:normal;
  4095. font-size:14px;
  4096. }
  4097. #u55852 .text {
  4098. position:absolute;
  4099. align-self:center;
  4100. padding:2px 2px 2px 2px;
  4101. box-sizing:border-box;
  4102. width:100%;
  4103. }
  4104. #u55852_text {
  4105. border-width:0px;
  4106. word-wrap:break-word;
  4107. text-transform:none;
  4108. visibility:hidden;
  4109. }
  4110. #u55853_img {
  4111. border-width:0px;
  4112. position:absolute;
  4113. left:0px;
  4114. top:0px;
  4115. width:83px;
  4116. height:30px;
  4117. }
  4118. #u55853 {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:870px;
  4122. top:178px;
  4123. width:83px;
  4124. height:30px;
  4125. display:flex;
  4126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4127. font-weight:400;
  4128. font-style:normal;
  4129. font-size:14px;
  4130. }
  4131. #u55853 .text {
  4132. position:absolute;
  4133. align-self:center;
  4134. padding:2px 2px 2px 2px;
  4135. box-sizing:border-box;
  4136. width:100%;
  4137. }
  4138. #u55853_text {
  4139. border-width:0px;
  4140. word-wrap:break-word;
  4141. text-transform:none;
  4142. visibility:hidden;
  4143. }
  4144. #u55854_img {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:0px;
  4148. top:0px;
  4149. width:83px;
  4150. height:30px;
  4151. }
  4152. #u55854 {
  4153. border-width:0px;
  4154. position:absolute;
  4155. left:953px;
  4156. top:178px;
  4157. width:83px;
  4158. height:30px;
  4159. display:flex;
  4160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4161. font-weight:400;
  4162. font-style:normal;
  4163. font-size:14px;
  4164. }
  4165. #u55854 .text {
  4166. position:absolute;
  4167. align-self:center;
  4168. padding:2px 2px 2px 2px;
  4169. box-sizing:border-box;
  4170. width:100%;
  4171. }
  4172. #u55854_text {
  4173. border-width:0px;
  4174. word-wrap:break-word;
  4175. text-transform:none;
  4176. visibility:hidden;
  4177. }
  4178. #u55855_img {
  4179. border-width:0px;
  4180. position:absolute;
  4181. left:0px;
  4182. top:0px;
  4183. width:90px;
  4184. height:30px;
  4185. }
  4186. #u55855 {
  4187. border-width:0px;
  4188. position:absolute;
  4189. left:1036px;
  4190. top:178px;
  4191. width:90px;
  4192. height:30px;
  4193. display:flex;
  4194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4195. font-weight:400;
  4196. font-style:normal;
  4197. font-size:14px;
  4198. }
  4199. #u55855 .text {
  4200. position:absolute;
  4201. align-self:center;
  4202. padding:2px 2px 2px 2px;
  4203. box-sizing:border-box;
  4204. width:100%;
  4205. }
  4206. #u55855_text {
  4207. border-width:0px;
  4208. word-wrap:break-word;
  4209. text-transform:none;
  4210. visibility:hidden;
  4211. }
  4212. #u55856_img {
  4213. border-width:0px;
  4214. position:absolute;
  4215. left:0px;
  4216. top:0px;
  4217. width:94px;
  4218. height:30px;
  4219. }
  4220. #u55856 {
  4221. border-width:0px;
  4222. position:absolute;
  4223. left:1126px;
  4224. top:178px;
  4225. width:94px;
  4226. height:30px;
  4227. display:flex;
  4228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4229. font-weight:400;
  4230. font-style:normal;
  4231. font-size:14px;
  4232. }
  4233. #u55856 .text {
  4234. position:absolute;
  4235. align-self:center;
  4236. padding:2px 2px 2px 2px;
  4237. box-sizing:border-box;
  4238. width:100%;
  4239. }
  4240. #u55856_text {
  4241. border-width:0px;
  4242. word-wrap:break-word;
  4243. text-transform:none;
  4244. visibility:hidden;
  4245. }
  4246. #u55857_img {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:0px;
  4250. top:0px;
  4251. width:134px;
  4252. height:30px;
  4253. }
  4254. #u55857 {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:0px;
  4258. top:208px;
  4259. width:134px;
  4260. height:30px;
  4261. display:flex;
  4262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4263. font-weight:400;
  4264. font-style:normal;
  4265. font-size:14px;
  4266. }
  4267. #u55857 .text {
  4268. position:absolute;
  4269. align-self:center;
  4270. padding:2px 2px 2px 2px;
  4271. box-sizing:border-box;
  4272. width:100%;
  4273. }
  4274. #u55857_text {
  4275. border-width:0px;
  4276. word-wrap:break-word;
  4277. text-transform:none;
  4278. visibility:hidden;
  4279. }
  4280. #u55858_img {
  4281. border-width:0px;
  4282. position:absolute;
  4283. left:0px;
  4284. top:0px;
  4285. width:134px;
  4286. height:30px;
  4287. }
  4288. #u55858 {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:134px;
  4292. top:208px;
  4293. width:134px;
  4294. height:30px;
  4295. display:flex;
  4296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4297. font-weight:400;
  4298. font-style:normal;
  4299. font-size:14px;
  4300. }
  4301. #u55858 .text {
  4302. position:absolute;
  4303. align-self:center;
  4304. padding:2px 2px 2px 2px;
  4305. box-sizing:border-box;
  4306. width:100%;
  4307. }
  4308. #u55858_text {
  4309. border-width:0px;
  4310. word-wrap:break-word;
  4311. text-transform:none;
  4312. visibility:hidden;
  4313. }
  4314. #u55859_img {
  4315. border-width:0px;
  4316. position:absolute;
  4317. left:0px;
  4318. top:0px;
  4319. width:83px;
  4320. height:30px;
  4321. }
  4322. #u55859 {
  4323. border-width:0px;
  4324. position:absolute;
  4325. left:268px;
  4326. top:208px;
  4327. width:83px;
  4328. height:30px;
  4329. display:flex;
  4330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4331. font-weight:400;
  4332. font-style:normal;
  4333. font-size:14px;
  4334. }
  4335. #u55859 .text {
  4336. position:absolute;
  4337. align-self:center;
  4338. padding:2px 2px 2px 2px;
  4339. box-sizing:border-box;
  4340. width:100%;
  4341. }
  4342. #u55859_text {
  4343. border-width:0px;
  4344. word-wrap:break-word;
  4345. text-transform:none;
  4346. visibility:hidden;
  4347. }
  4348. #u55860_img {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:0px;
  4352. top:0px;
  4353. width:83px;
  4354. height:30px;
  4355. }
  4356. #u55860 {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:351px;
  4360. top:208px;
  4361. width:83px;
  4362. height:30px;
  4363. display:flex;
  4364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4365. font-weight:400;
  4366. font-style:normal;
  4367. font-size:14px;
  4368. }
  4369. #u55860 .text {
  4370. position:absolute;
  4371. align-self:center;
  4372. padding:2px 2px 2px 2px;
  4373. box-sizing:border-box;
  4374. width:100%;
  4375. }
  4376. #u55860_text {
  4377. border-width:0px;
  4378. word-wrap:break-word;
  4379. text-transform:none;
  4380. visibility:hidden;
  4381. }
  4382. #u55861_img {
  4383. border-width:0px;
  4384. position:absolute;
  4385. left:0px;
  4386. top:0px;
  4387. width:90px;
  4388. height:30px;
  4389. }
  4390. #u55861 {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:434px;
  4394. top:208px;
  4395. width:90px;
  4396. height:30px;
  4397. display:flex;
  4398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4399. font-weight:400;
  4400. font-style:normal;
  4401. font-size:14px;
  4402. }
  4403. #u55861 .text {
  4404. position:absolute;
  4405. align-self:center;
  4406. padding:2px 2px 2px 2px;
  4407. box-sizing:border-box;
  4408. width:100%;
  4409. }
  4410. #u55861_text {
  4411. border-width:0px;
  4412. word-wrap:break-word;
  4413. text-transform:none;
  4414. visibility:hidden;
  4415. }
  4416. #u55862_img {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:0px;
  4420. top:0px;
  4421. width:90px;
  4422. height:30px;
  4423. }
  4424. #u55862 {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:524px;
  4428. top:208px;
  4429. width:90px;
  4430. height:30px;
  4431. display:flex;
  4432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4433. font-weight:400;
  4434. font-style:normal;
  4435. font-size:14px;
  4436. }
  4437. #u55862 .text {
  4438. position:absolute;
  4439. align-self:center;
  4440. padding:2px 2px 2px 2px;
  4441. box-sizing:border-box;
  4442. width:100%;
  4443. }
  4444. #u55862_text {
  4445. border-width:0px;
  4446. word-wrap:break-word;
  4447. text-transform:none;
  4448. visibility:hidden;
  4449. }
  4450. #u55863_img {
  4451. border-width:0px;
  4452. position:absolute;
  4453. left:0px;
  4454. top:0px;
  4455. width:83px;
  4456. height:30px;
  4457. }
  4458. #u55863 {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:614px;
  4462. top:208px;
  4463. width:83px;
  4464. height:30px;
  4465. display:flex;
  4466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4467. font-weight:400;
  4468. font-style:normal;
  4469. font-size:14px;
  4470. }
  4471. #u55863 .text {
  4472. position:absolute;
  4473. align-self:center;
  4474. padding:2px 2px 2px 2px;
  4475. box-sizing:border-box;
  4476. width:100%;
  4477. }
  4478. #u55863_text {
  4479. border-width:0px;
  4480. word-wrap:break-word;
  4481. text-transform:none;
  4482. visibility:hidden;
  4483. }
  4484. #u55864_img {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:0px;
  4488. top:0px;
  4489. width:83px;
  4490. height:30px;
  4491. }
  4492. #u55864 {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:697px;
  4496. top:208px;
  4497. width:83px;
  4498. height:30px;
  4499. display:flex;
  4500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4501. font-weight:400;
  4502. font-style:normal;
  4503. font-size:14px;
  4504. }
  4505. #u55864 .text {
  4506. position:absolute;
  4507. align-self:center;
  4508. padding:2px 2px 2px 2px;
  4509. box-sizing:border-box;
  4510. width:100%;
  4511. }
  4512. #u55864_text {
  4513. border-width:0px;
  4514. word-wrap:break-word;
  4515. text-transform:none;
  4516. visibility:hidden;
  4517. }
  4518. #u55865_img {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:90px;
  4524. height:30px;
  4525. }
  4526. #u55865 {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:780px;
  4530. top:208px;
  4531. width:90px;
  4532. height:30px;
  4533. display:flex;
  4534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4535. font-weight:400;
  4536. font-style:normal;
  4537. font-size:14px;
  4538. }
  4539. #u55865 .text {
  4540. position:absolute;
  4541. align-self:center;
  4542. padding:2px 2px 2px 2px;
  4543. box-sizing:border-box;
  4544. width:100%;
  4545. }
  4546. #u55865_text {
  4547. border-width:0px;
  4548. word-wrap:break-word;
  4549. text-transform:none;
  4550. visibility:hidden;
  4551. }
  4552. #u55866_img {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:0px;
  4556. top:0px;
  4557. width:83px;
  4558. height:30px;
  4559. }
  4560. #u55866 {
  4561. border-width:0px;
  4562. position:absolute;
  4563. left:870px;
  4564. top:208px;
  4565. width:83px;
  4566. height:30px;
  4567. display:flex;
  4568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4569. font-weight:400;
  4570. font-style:normal;
  4571. font-size:14px;
  4572. }
  4573. #u55866 .text {
  4574. position:absolute;
  4575. align-self:center;
  4576. padding:2px 2px 2px 2px;
  4577. box-sizing:border-box;
  4578. width:100%;
  4579. }
  4580. #u55866_text {
  4581. border-width:0px;
  4582. word-wrap:break-word;
  4583. text-transform:none;
  4584. visibility:hidden;
  4585. }
  4586. #u55867_img {
  4587. border-width:0px;
  4588. position:absolute;
  4589. left:0px;
  4590. top:0px;
  4591. width:83px;
  4592. height:30px;
  4593. }
  4594. #u55867 {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:953px;
  4598. top:208px;
  4599. width:83px;
  4600. height:30px;
  4601. display:flex;
  4602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4603. font-weight:400;
  4604. font-style:normal;
  4605. font-size:14px;
  4606. }
  4607. #u55867 .text {
  4608. position:absolute;
  4609. align-self:center;
  4610. padding:2px 2px 2px 2px;
  4611. box-sizing:border-box;
  4612. width:100%;
  4613. }
  4614. #u55867_text {
  4615. border-width:0px;
  4616. word-wrap:break-word;
  4617. text-transform:none;
  4618. visibility:hidden;
  4619. }
  4620. #u55868_img {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:0px;
  4624. top:0px;
  4625. width:90px;
  4626. height:30px;
  4627. }
  4628. #u55868 {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:1036px;
  4632. top:208px;
  4633. width:90px;
  4634. height:30px;
  4635. display:flex;
  4636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4637. font-weight:400;
  4638. font-style:normal;
  4639. font-size:14px;
  4640. }
  4641. #u55868 .text {
  4642. position:absolute;
  4643. align-self:center;
  4644. padding:2px 2px 2px 2px;
  4645. box-sizing:border-box;
  4646. width:100%;
  4647. }
  4648. #u55868_text {
  4649. border-width:0px;
  4650. word-wrap:break-word;
  4651. text-transform:none;
  4652. visibility:hidden;
  4653. }
  4654. #u55869_img {
  4655. border-width:0px;
  4656. position:absolute;
  4657. left:0px;
  4658. top:0px;
  4659. width:94px;
  4660. height:30px;
  4661. }
  4662. #u55869 {
  4663. border-width:0px;
  4664. position:absolute;
  4665. left:1126px;
  4666. top:208px;
  4667. width:94px;
  4668. height:30px;
  4669. display:flex;
  4670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4671. font-weight:400;
  4672. font-style:normal;
  4673. font-size:14px;
  4674. }
  4675. #u55869 .text {
  4676. position:absolute;
  4677. align-self:center;
  4678. padding:2px 2px 2px 2px;
  4679. box-sizing:border-box;
  4680. width:100%;
  4681. }
  4682. #u55869_text {
  4683. border-width:0px;
  4684. word-wrap:break-word;
  4685. text-transform:none;
  4686. visibility:hidden;
  4687. }
  4688. #u55870_div {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:0px;
  4692. top:0px;
  4693. width:60px;
  4694. height:30px;
  4695. background:inherit;
  4696. background-color:rgba(24, 144, 255, 1);
  4697. border:none;
  4698. border-radius:4px;
  4699. -moz-box-shadow:none;
  4700. -webkit-box-shadow:none;
  4701. box-shadow:none;
  4702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4703. font-weight:400;
  4704. font-style:normal;
  4705. font-size:14px;
  4706. color:#FFFFFF;
  4707. }
  4708. #u55870 {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:533px;
  4712. top:109px;
  4713. width:60px;
  4714. height:30px;
  4715. display:flex;
  4716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4717. font-weight:400;
  4718. font-style:normal;
  4719. font-size:14px;
  4720. color:#FFFFFF;
  4721. }
  4722. #u55870 .text {
  4723. position:absolute;
  4724. align-self:center;
  4725. padding:2px 2px 2px 2px;
  4726. box-sizing:border-box;
  4727. width:100%;
  4728. }
  4729. #u55870_text {
  4730. border-width:0px;
  4731. word-wrap:break-word;
  4732. text-transform:none;
  4733. }
  4734. #u55871_div {
  4735. border-width:0px;
  4736. position:absolute;
  4737. left:0px;
  4738. top:0px;
  4739. width:71px;
  4740. height:50px;
  4741. background:inherit;
  4742. background-color:rgba(255, 255, 255, 0);
  4743. border:none;
  4744. border-left:0px;
  4745. border-top:0px;
  4746. border-right:0px;
  4747. border-radius:0px;
  4748. border-bottom-right-radius:0px;
  4749. border-bottom-left-radius:0px;
  4750. -moz-box-shadow:none;
  4751. -webkit-box-shadow:none;
  4752. box-shadow:none;
  4753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4754. font-weight:400;
  4755. font-style:normal;
  4756. font-size:14px;
  4757. line-height:40px;
  4758. }
  4759. #u55871 {
  4760. border-width:0px;
  4761. position:absolute;
  4762. left:353px;
  4763. top:50px;
  4764. width:71px;
  4765. height:50px;
  4766. display:flex;
  4767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4768. font-weight:400;
  4769. font-style:normal;
  4770. font-size:14px;
  4771. line-height:40px;
  4772. }
  4773. #u55871 .text {
  4774. position:absolute;
  4775. align-self:center;
  4776. padding:0px 0px 0px 0px;
  4777. box-sizing:border-box;
  4778. width:100%;
  4779. }
  4780. #u55871_text {
  4781. border-width:0px;
  4782. white-space:nowrap;
  4783. text-transform:none;
  4784. }
  4785. #u55872 {
  4786. border-width:0px;
  4787. position:absolute;
  4788. left:0px;
  4789. top:0px;
  4790. width:0px;
  4791. height:0px;
  4792. }
  4793. #u55873_div {
  4794. border-width:0px;
  4795. position:absolute;
  4796. left:0px;
  4797. top:0px;
  4798. width:160px;
  4799. height:30px;
  4800. background:inherit;
  4801. background-color:rgba(255, 255, 255, 1);
  4802. box-sizing:border-box;
  4803. border-width:1px;
  4804. border-style:solid;
  4805. border-color:rgba(215, 215, 215, 1);
  4806. border-radius:4px;
  4807. -moz-box-shadow:none;
  4808. -webkit-box-shadow:none;
  4809. box-shadow:none;
  4810. font-size:14px;
  4811. }
  4812. #u55873 {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:353px;
  4816. top:109px;
  4817. width:160px;
  4818. height:30px;
  4819. display:flex;
  4820. font-size:14px;
  4821. }
  4822. #u55873 .text {
  4823. position:absolute;
  4824. align-self:center;
  4825. padding:2px 2px 2px 2px;
  4826. box-sizing:border-box;
  4827. width:100%;
  4828. }
  4829. #u55873_text {
  4830. border-width:0px;
  4831. word-wrap:break-word;
  4832. text-transform:none;
  4833. visibility:hidden;
  4834. }
  4835. #u55874_input {
  4836. position:absolute;
  4837. left:0px;
  4838. top:0px;
  4839. width:153px;
  4840. height:23px;
  4841. padding:2px 2px 2px 2px;
  4842. font-family:'ArialMT', 'Arial', sans-serif;
  4843. font-weight:400;
  4844. font-style:normal;
  4845. font-size:14px;
  4846. letter-spacing:normal;
  4847. color:#AAAAAA;
  4848. vertical-align:none;
  4849. text-align:left;
  4850. text-transform:none;
  4851. background-color:transparent;
  4852. border-color:transparent;
  4853. }
  4854. #u55874_input.disabled {
  4855. position:absolute;
  4856. left:0px;
  4857. top:0px;
  4858. width:153px;
  4859. height:23px;
  4860. padding:2px 2px 2px 2px;
  4861. font-family:'ArialMT', 'Arial', sans-serif;
  4862. font-weight:400;
  4863. font-style:normal;
  4864. font-size:14px;
  4865. letter-spacing:normal;
  4866. color:#AAAAAA;
  4867. vertical-align:none;
  4868. text-align:left;
  4869. text-transform:none;
  4870. background-color:transparent;
  4871. border-color:transparent;
  4872. }
  4873. #u55874_div {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:0px;
  4877. top:0px;
  4878. width:153px;
  4879. height:23px;
  4880. background:inherit;
  4881. background-color:rgba(255, 255, 255, 1);
  4882. border:none;
  4883. border-radius:0px;
  4884. -moz-box-shadow:none;
  4885. -webkit-box-shadow:none;
  4886. box-shadow:none;
  4887. font-size:14px;
  4888. color:#AAAAAA;
  4889. }
  4890. #u55874 {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:358px;
  4894. top:111px;
  4895. width:153px;
  4896. height:23px;
  4897. display:flex;
  4898. font-size:14px;
  4899. color:#AAAAAA;
  4900. }
  4901. #u55874 .text {
  4902. position:absolute;
  4903. align-self:flex-start;
  4904. padding:2px 2px 2px 2px;
  4905. box-sizing:border-box;
  4906. width:100%;
  4907. }
  4908. #u55874_div.disabled {
  4909. border-width:0px;
  4910. position:absolute;
  4911. left:0px;
  4912. top:0px;
  4913. width:153px;
  4914. height:23px;
  4915. background:inherit;
  4916. background-color:rgba(240, 240, 240, 1);
  4917. border:none;
  4918. border-radius:0px;
  4919. -moz-box-shadow:none;
  4920. -webkit-box-shadow:none;
  4921. box-shadow:none;
  4922. font-size:14px;
  4923. color:#AAAAAA;
  4924. }
  4925. #u55874.disabled {
  4926. }
  4927. .u55874_input_option {
  4928. font-size:14px;
  4929. }
  4930. #u55875_div {
  4931. border-width:0px;
  4932. position:absolute;
  4933. left:0px;
  4934. top:0px;
  4935. width:60px;
  4936. height:30px;
  4937. background:inherit;
  4938. background-color:rgba(255, 255, 255, 1);
  4939. box-sizing:border-box;
  4940. border-width:1px;
  4941. border-style:solid;
  4942. border-color:rgba(170, 170, 170, 1);
  4943. border-radius:4px;
  4944. -moz-box-shadow:none;
  4945. -webkit-box-shadow:none;
  4946. box-shadow:none;
  4947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4948. font-weight:400;
  4949. font-style:normal;
  4950. font-size:14px;
  4951. }
  4952. #u55875 {
  4953. border-width:0px;
  4954. position:absolute;
  4955. left:1506px;
  4956. top:109px;
  4957. width:60px;
  4958. height:30px;
  4959. display:flex;
  4960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4961. font-weight:400;
  4962. font-style:normal;
  4963. font-size:14px;
  4964. }
  4965. #u55875 .text {
  4966. position:absolute;
  4967. align-self:center;
  4968. padding:2px 2px 2px 2px;
  4969. box-sizing:border-box;
  4970. width:100%;
  4971. }
  4972. #u55875_text {
  4973. border-width:0px;
  4974. word-wrap:break-word;
  4975. text-transform:none;
  4976. }
  4977. #u55876_div {
  4978. border-width:0px;
  4979. position:absolute;
  4980. left:0px;
  4981. top:0px;
  4982. width:99px;
  4983. height:50px;
  4984. background:inherit;
  4985. background-color:rgba(255, 255, 255, 0);
  4986. border:none;
  4987. border-left:0px;
  4988. border-top:0px;
  4989. border-right:0px;
  4990. border-radius:0px;
  4991. border-bottom-right-radius:0px;
  4992. border-bottom-left-radius:0px;
  4993. -moz-box-shadow:none;
  4994. -webkit-box-shadow:none;
  4995. box-shadow:none;
  4996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4997. font-weight:400;
  4998. font-style:normal;
  4999. font-size:14px;
  5000. line-height:40px;
  5001. }
  5002. #u55876 {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:478px;
  5006. top:50px;
  5007. width:99px;
  5008. height:50px;
  5009. display:flex;
  5010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5011. font-weight:400;
  5012. font-style:normal;
  5013. font-size:14px;
  5014. line-height:40px;
  5015. }
  5016. #u55876 .text {
  5017. position:absolute;
  5018. align-self:center;
  5019. padding:0px 0px 0px 0px;
  5020. box-sizing:border-box;
  5021. width:100%;
  5022. }
  5023. #u55876_text {
  5024. border-width:0px;
  5025. white-space:nowrap;
  5026. text-transform:none;
  5027. }
  5028. #u55877_div {
  5029. border-width:0px;
  5030. position:absolute;
  5031. left:0px;
  5032. top:0px;
  5033. width:127px;
  5034. height:50px;
  5035. background:inherit;
  5036. background-color:rgba(255, 255, 255, 0);
  5037. border:none;
  5038. border-left:0px;
  5039. border-top:0px;
  5040. border-right:0px;
  5041. border-radius:0px;
  5042. border-bottom-right-radius:0px;
  5043. border-bottom-left-radius:0px;
  5044. -moz-box-shadow:none;
  5045. -webkit-box-shadow:none;
  5046. box-shadow:none;
  5047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5048. font-weight:400;
  5049. font-style:normal;
  5050. font-size:14px;
  5051. line-height:40px;
  5052. }
  5053. #u55877 {
  5054. border-width:0px;
  5055. position:absolute;
  5056. left:617px;
  5057. top:50px;
  5058. width:127px;
  5059. height:50px;
  5060. display:flex;
  5061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5062. font-weight:400;
  5063. font-style:normal;
  5064. font-size:14px;
  5065. line-height:40px;
  5066. }
  5067. #u55877 .text {
  5068. position:absolute;
  5069. align-self:center;
  5070. padding:0px 0px 0px 0px;
  5071. box-sizing:border-box;
  5072. width:100%;
  5073. }
  5074. #u55877_text {
  5075. border-width:0px;
  5076. white-space:nowrap;
  5077. text-transform:none;
  5078. }
  5079. #u55878_div {
  5080. border-width:0px;
  5081. position:absolute;
  5082. left:0px;
  5083. top:0px;
  5084. width:99px;
  5085. height:50px;
  5086. background:inherit;
  5087. background-color:rgba(255, 255, 255, 0);
  5088. box-sizing:border-box;
  5089. border-width:2px;
  5090. border-style:solid;
  5091. border-color:rgba(41, 143, 255, 1);
  5092. border-left:0px;
  5093. border-top:0px;
  5094. border-right:0px;
  5095. border-radius:0px;
  5096. border-bottom-right-radius:0px;
  5097. border-bottom-left-radius:0px;
  5098. -moz-box-shadow:none;
  5099. -webkit-box-shadow:none;
  5100. box-shadow:none;
  5101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5102. font-weight:400;
  5103. font-style:normal;
  5104. font-size:14px;
  5105. color:#298FFF;
  5106. line-height:40px;
  5107. }
  5108. #u55878 {
  5109. border-width:0px;
  5110. position:absolute;
  5111. left:784px;
  5112. top:50px;
  5113. width:99px;
  5114. height:50px;
  5115. display:flex;
  5116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5117. font-weight:400;
  5118. font-style:normal;
  5119. font-size:14px;
  5120. color:#298FFF;
  5121. line-height:40px;
  5122. }
  5123. #u55878 .text {
  5124. position:absolute;
  5125. align-self:center;
  5126. padding:0px 0px 0px 0px;
  5127. box-sizing:border-box;
  5128. width:100%;
  5129. }
  5130. #u55878_text {
  5131. border-width:0px;
  5132. white-space:nowrap;
  5133. text-transform:none;
  5134. }
  5135. #u55879 {
  5136. border-width:0px;
  5137. position:absolute;
  5138. left:0px;
  5139. top:0px;
  5140. width:0px;
  5141. height:0px;
  5142. }
  5143. #u55880_div {
  5144. border-width:0px;
  5145. position:absolute;
  5146. left:0px;
  5147. top:0px;
  5148. width:200px;
  5149. height:1188px;
  5150. background:inherit;
  5151. background-color:rgba(255, 255, 255, 1);
  5152. border:none;
  5153. border-radius:0px;
  5154. -moz-box-shadow:none;
  5155. -webkit-box-shadow:none;
  5156. box-shadow:none;
  5157. }
  5158. #u55880 {
  5159. border-width:0px;
  5160. position:absolute;
  5161. left:120px;
  5162. top:50px;
  5163. width:200px;
  5164. height:1188px;
  5165. display:flex;
  5166. }
  5167. #u55880 .text {
  5168. position:absolute;
  5169. align-self:center;
  5170. padding:2px 2px 2px 2px;
  5171. box-sizing:border-box;
  5172. width:100%;
  5173. }
  5174. #u55880_text {
  5175. border-width:0px;
  5176. word-wrap:break-word;
  5177. text-transform:none;
  5178. visibility:hidden;
  5179. }
  5180. #u55881_div {
  5181. border-width:0px;
  5182. position:absolute;
  5183. left:0px;
  5184. top:0px;
  5185. width:200px;
  5186. height:60px;
  5187. background:inherit;
  5188. background-color:rgba(224, 231, 247, 1);
  5189. border:none;
  5190. border-radius:0px;
  5191. -moz-box-shadow:none;
  5192. -webkit-box-shadow:none;
  5193. box-shadow:none;
  5194. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5195. font-weight:500;
  5196. font-style:normal;
  5197. font-size:18px;
  5198. }
  5199. #u55881 {
  5200. border-width:0px;
  5201. position:absolute;
  5202. left:120px;
  5203. top:50px;
  5204. width:200px;
  5205. height:60px;
  5206. display:flex;
  5207. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5208. font-weight:500;
  5209. font-style:normal;
  5210. font-size:18px;
  5211. }
  5212. #u55881 .text {
  5213. position:absolute;
  5214. align-self:center;
  5215. padding:0px 0px 0px 20px;
  5216. box-sizing:border-box;
  5217. width:100%;
  5218. }
  5219. #u55881_text {
  5220. border-width:0px;
  5221. word-wrap:break-word;
  5222. text-transform:none;
  5223. }
  5224. #u55882_div {
  5225. border-width:0px;
  5226. position:absolute;
  5227. left:0px;
  5228. top:0px;
  5229. width:65px;
  5230. height:22px;
  5231. background:inherit;
  5232. background-color:rgba(255, 255, 255, 0);
  5233. border:none;
  5234. border-radius:0px;
  5235. -moz-box-shadow:none;
  5236. -webkit-box-shadow:none;
  5237. box-shadow:none;
  5238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5239. font-weight:400;
  5240. font-style:normal;
  5241. font-size:16px;
  5242. }
  5243. #u55882 {
  5244. border-width:0px;
  5245. position:absolute;
  5246. left:147px;
  5247. top:346px;
  5248. width:65px;
  5249. height:22px;
  5250. display:flex;
  5251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5252. font-weight:400;
  5253. font-style:normal;
  5254. font-size:16px;
  5255. }
  5256. #u55882 .text {
  5257. position:absolute;
  5258. align-self:flex-start;
  5259. padding:0px 0px 0px 0px;
  5260. box-sizing:border-box;
  5261. width:100%;
  5262. }
  5263. #u55882_text {
  5264. border-width:0px;
  5265. white-space:nowrap;
  5266. text-transform:none;
  5267. }
  5268. #u55883_div {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:0px;
  5272. top:0px;
  5273. width:65px;
  5274. height:22px;
  5275. background:inherit;
  5276. background-color:rgba(255, 255, 255, 0);
  5277. border:none;
  5278. border-radius:0px;
  5279. -moz-box-shadow:none;
  5280. -webkit-box-shadow:none;
  5281. box-shadow:none;
  5282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5283. font-weight:400;
  5284. font-style:normal;
  5285. font-size:16px;
  5286. }
  5287. #u55883 {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:147px;
  5291. top:388px;
  5292. width:65px;
  5293. height:22px;
  5294. display:flex;
  5295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5296. font-weight:400;
  5297. font-style:normal;
  5298. font-size:16px;
  5299. }
  5300. #u55883 .text {
  5301. position:absolute;
  5302. align-self:flex-start;
  5303. padding:0px 0px 0px 0px;
  5304. box-sizing:border-box;
  5305. width:100%;
  5306. }
  5307. #u55883_text {
  5308. border-width:0px;
  5309. white-space:nowrap;
  5310. text-transform:none;
  5311. }
  5312. #u55884_div {
  5313. border-width:0px;
  5314. position:absolute;
  5315. left:0px;
  5316. top:0px;
  5317. width:81px;
  5318. height:22px;
  5319. background:inherit;
  5320. background-color:rgba(255, 255, 255, 0);
  5321. border:none;
  5322. border-radius:0px;
  5323. -moz-box-shadow:none;
  5324. -webkit-box-shadow:none;
  5325. box-shadow:none;
  5326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5327. font-weight:400;
  5328. font-style:normal;
  5329. font-size:16px;
  5330. }
  5331. #u55884 {
  5332. border-width:0px;
  5333. position:absolute;
  5334. left:147px;
  5335. top:430px;
  5336. width:81px;
  5337. height:22px;
  5338. display:flex;
  5339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5340. font-weight:400;
  5341. font-style:normal;
  5342. font-size:16px;
  5343. }
  5344. #u55884 .text {
  5345. position:absolute;
  5346. align-self:flex-start;
  5347. padding:0px 0px 0px 0px;
  5348. box-sizing:border-box;
  5349. width:100%;
  5350. }
  5351. #u55884_text {
  5352. border-width:0px;
  5353. white-space:nowrap;
  5354. text-transform:none;
  5355. }
  5356. #u55885_div {
  5357. border-width:0px;
  5358. position:absolute;
  5359. left:0px;
  5360. top:0px;
  5361. width:81px;
  5362. height:22px;
  5363. background:inherit;
  5364. background-color:rgba(255, 255, 255, 0);
  5365. border:none;
  5366. border-radius:0px;
  5367. -moz-box-shadow:none;
  5368. -webkit-box-shadow:none;
  5369. box-shadow:none;
  5370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5371. font-weight:400;
  5372. font-style:normal;
  5373. font-size:16px;
  5374. }
  5375. #u55885 {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:147px;
  5379. top:472px;
  5380. width:81px;
  5381. height:22px;
  5382. display:flex;
  5383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5384. font-weight:400;
  5385. font-style:normal;
  5386. font-size:16px;
  5387. }
  5388. #u55885 .text {
  5389. position:absolute;
  5390. align-self:flex-start;
  5391. padding:0px 0px 0px 0px;
  5392. box-sizing:border-box;
  5393. width:100%;
  5394. }
  5395. #u55885_text {
  5396. border-width:0px;
  5397. white-space:nowrap;
  5398. text-transform:none;
  5399. }
  5400. #u55886_div {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:0px;
  5404. top:0px;
  5405. width:49px;
  5406. height:17px;
  5407. background:inherit;
  5408. background-color:rgba(255, 255, 255, 0);
  5409. border:none;
  5410. border-radius:0px;
  5411. -moz-box-shadow:none;
  5412. -webkit-box-shadow:none;
  5413. box-shadow:none;
  5414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5415. font-weight:400;
  5416. font-style:normal;
  5417. font-size:12px;
  5418. color:#AAAAAA;
  5419. }
  5420. #u55886 {
  5421. border-width:0px;
  5422. position:absolute;
  5423. left:147px;
  5424. top:310px;
  5425. width:49px;
  5426. height:17px;
  5427. display:flex;
  5428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5429. font-weight:400;
  5430. font-style:normal;
  5431. font-size:12px;
  5432. color:#AAAAAA;
  5433. }
  5434. #u55886 .text {
  5435. position:absolute;
  5436. align-self:flex-start;
  5437. padding:0px 0px 0px 0px;
  5438. box-sizing:border-box;
  5439. width:100%;
  5440. }
  5441. #u55886_text {
  5442. border-width:0px;
  5443. white-space:nowrap;
  5444. text-transform:none;
  5445. }
  5446. #u55887_img {
  5447. border-width:0px;
  5448. position:absolute;
  5449. left:0px;
  5450. top:0px;
  5451. width:201px;
  5452. height:2px;
  5453. }
  5454. #u55887 {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:120px;
  5458. top:598px;
  5459. width:200px;
  5460. height:1px;
  5461. display:flex;
  5462. }
  5463. #u55887 .text {
  5464. position:absolute;
  5465. align-self:center;
  5466. padding:2px 2px 2px 2px;
  5467. box-sizing:border-box;
  5468. width:100%;
  5469. }
  5470. #u55887_text {
  5471. border-width:0px;
  5472. word-wrap:break-word;
  5473. text-transform:none;
  5474. visibility:hidden;
  5475. }
  5476. #u55888_div {
  5477. border-width:0px;
  5478. position:absolute;
  5479. left:0px;
  5480. top:0px;
  5481. width:65px;
  5482. height:22px;
  5483. background:inherit;
  5484. background-color:rgba(255, 255, 255, 0);
  5485. border:none;
  5486. border-radius:0px;
  5487. -moz-box-shadow:none;
  5488. -webkit-box-shadow:none;
  5489. box-shadow:none;
  5490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5491. font-weight:400;
  5492. font-style:normal;
  5493. font-size:16px;
  5494. }
  5495. #u55888 {
  5496. border-width:0px;
  5497. position:absolute;
  5498. left:147px;
  5499. top:514px;
  5500. width:65px;
  5501. height:22px;
  5502. display:flex;
  5503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5504. font-weight:400;
  5505. font-style:normal;
  5506. font-size:16px;
  5507. }
  5508. #u55888 .text {
  5509. position:absolute;
  5510. align-self:flex-start;
  5511. padding:0px 0px 0px 0px;
  5512. box-sizing:border-box;
  5513. width:100%;
  5514. }
  5515. #u55888_text {
  5516. border-width:0px;
  5517. white-space:nowrap;
  5518. text-transform:none;
  5519. }
  5520. #u55889_div {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:0px;
  5524. top:0px;
  5525. width:65px;
  5526. height:22px;
  5527. background:inherit;
  5528. background-color:rgba(255, 255, 255, 0);
  5529. border:none;
  5530. border-radius:0px;
  5531. -moz-box-shadow:none;
  5532. -webkit-box-shadow:none;
  5533. box-shadow:none;
  5534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5535. font-weight:400;
  5536. font-style:normal;
  5537. font-size:16px;
  5538. }
  5539. #u55889 {
  5540. border-width:0px;
  5541. position:absolute;
  5542. left:147px;
  5543. top:556px;
  5544. width:65px;
  5545. height:22px;
  5546. display:flex;
  5547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5548. font-weight:400;
  5549. font-style:normal;
  5550. font-size:16px;
  5551. }
  5552. #u55889 .text {
  5553. position:absolute;
  5554. align-self:flex-start;
  5555. padding:0px 0px 0px 0px;
  5556. box-sizing:border-box;
  5557. width:100%;
  5558. }
  5559. #u55889_text {
  5560. border-width:0px;
  5561. white-space:nowrap;
  5562. text-transform:none;
  5563. }
  5564. #u55890_div {
  5565. border-width:0px;
  5566. position:absolute;
  5567. left:0px;
  5568. top:0px;
  5569. width:65px;
  5570. height:22px;
  5571. background:inherit;
  5572. background-color:rgba(255, 255, 255, 0);
  5573. border:none;
  5574. border-radius:0px;
  5575. -moz-box-shadow:none;
  5576. -webkit-box-shadow:none;
  5577. box-shadow:none;
  5578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5579. font-weight:400;
  5580. font-style:normal;
  5581. font-size:16px;
  5582. }
  5583. #u55890 {
  5584. border-width:0px;
  5585. position:absolute;
  5586. left:147px;
  5587. top:656px;
  5588. width:65px;
  5589. height:22px;
  5590. display:flex;
  5591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5592. font-weight:400;
  5593. font-style:normal;
  5594. font-size:16px;
  5595. }
  5596. #u55890 .text {
  5597. position:absolute;
  5598. align-self:flex-start;
  5599. padding:0px 0px 0px 0px;
  5600. box-sizing:border-box;
  5601. width:100%;
  5602. }
  5603. #u55890_text {
  5604. border-width:0px;
  5605. white-space:nowrap;
  5606. text-transform:none;
  5607. }
  5608. #u55891_div {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:0px;
  5612. top:0px;
  5613. width:49px;
  5614. height:17px;
  5615. background:inherit;
  5616. background-color:rgba(255, 255, 255, 0);
  5617. border:none;
  5618. border-radius:0px;
  5619. -moz-box-shadow:none;
  5620. -webkit-box-shadow:none;
  5621. box-shadow:none;
  5622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5623. font-weight:400;
  5624. font-style:normal;
  5625. font-size:12px;
  5626. color:#AAAAAA;
  5627. }
  5628. #u55891 {
  5629. border-width:0px;
  5630. position:absolute;
  5631. left:147px;
  5632. top:620px;
  5633. width:49px;
  5634. height:17px;
  5635. display:flex;
  5636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5637. font-weight:400;
  5638. font-style:normal;
  5639. font-size:12px;
  5640. color:#AAAAAA;
  5641. }
  5642. #u55891 .text {
  5643. position:absolute;
  5644. align-self:flex-start;
  5645. padding:0px 0px 0px 0px;
  5646. box-sizing:border-box;
  5647. width:100%;
  5648. }
  5649. #u55891_text {
  5650. border-width:0px;
  5651. white-space:nowrap;
  5652. text-transform:none;
  5653. }
  5654. #u55892_div {
  5655. border-width:0px;
  5656. position:absolute;
  5657. left:0px;
  5658. top:0px;
  5659. width:65px;
  5660. height:22px;
  5661. background:inherit;
  5662. background-color:rgba(255, 255, 255, 0);
  5663. border:none;
  5664. border-radius:0px;
  5665. -moz-box-shadow:none;
  5666. -webkit-box-shadow:none;
  5667. box-shadow:none;
  5668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5669. font-weight:400;
  5670. font-style:normal;
  5671. font-size:16px;
  5672. }
  5673. #u55892 {
  5674. border-width:0px;
  5675. position:absolute;
  5676. left:147px;
  5677. top:166px;
  5678. width:65px;
  5679. height:22px;
  5680. display:flex;
  5681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5682. font-weight:400;
  5683. font-style:normal;
  5684. font-size:16px;
  5685. }
  5686. #u55892 .text {
  5687. position:absolute;
  5688. align-self:flex-start;
  5689. padding:0px 0px 0px 0px;
  5690. box-sizing:border-box;
  5691. width:100%;
  5692. }
  5693. #u55892_text {
  5694. border-width:0px;
  5695. white-space:nowrap;
  5696. text-transform:none;
  5697. }
  5698. #u55893_div {
  5699. border-width:0px;
  5700. position:absolute;
  5701. left:0px;
  5702. top:0px;
  5703. width:65px;
  5704. height:22px;
  5705. background:inherit;
  5706. background-color:rgba(255, 255, 255, 0);
  5707. border:none;
  5708. border-radius:0px;
  5709. -moz-box-shadow:none;
  5710. -webkit-box-shadow:none;
  5711. box-shadow:none;
  5712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5713. font-weight:400;
  5714. font-style:normal;
  5715. font-size:16px;
  5716. }
  5717. #u55893 {
  5718. border-width:0px;
  5719. position:absolute;
  5720. left:147px;
  5721. top:248px;
  5722. width:65px;
  5723. height:22px;
  5724. display:flex;
  5725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5726. font-weight:400;
  5727. font-style:normal;
  5728. font-size:16px;
  5729. }
  5730. #u55893 .text {
  5731. position:absolute;
  5732. align-self:flex-start;
  5733. padding:0px 0px 0px 0px;
  5734. box-sizing:border-box;
  5735. width:100%;
  5736. }
  5737. #u55893_text {
  5738. border-width:0px;
  5739. white-space:nowrap;
  5740. text-transform:none;
  5741. }
  5742. #u55894_div {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:0px;
  5746. top:0px;
  5747. width:49px;
  5748. height:17px;
  5749. background:inherit;
  5750. background-color:rgba(255, 255, 255, 0);
  5751. border:none;
  5752. border-radius:0px;
  5753. -moz-box-shadow:none;
  5754. -webkit-box-shadow:none;
  5755. box-shadow:none;
  5756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5757. font-weight:400;
  5758. font-style:normal;
  5759. font-size:12px;
  5760. color:#AAAAAA;
  5761. }
  5762. #u55894 {
  5763. border-width:0px;
  5764. position:absolute;
  5765. left:147px;
  5766. top:130px;
  5767. width:49px;
  5768. height:17px;
  5769. display:flex;
  5770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5771. font-weight:400;
  5772. font-style:normal;
  5773. font-size:12px;
  5774. color:#AAAAAA;
  5775. }
  5776. #u55894 .text {
  5777. position:absolute;
  5778. align-self:flex-start;
  5779. padding:0px 0px 0px 0px;
  5780. box-sizing:border-box;
  5781. width:100%;
  5782. }
  5783. #u55894_text {
  5784. border-width:0px;
  5785. white-space:nowrap;
  5786. text-transform:none;
  5787. }
  5788. #u55895_img {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:0px;
  5792. top:0px;
  5793. width:201px;
  5794. height:2px;
  5795. }
  5796. #u55895 {
  5797. border-width:0px;
  5798. position:absolute;
  5799. left:120px;
  5800. top:289px;
  5801. width:200px;
  5802. height:1px;
  5803. display:flex;
  5804. }
  5805. #u55895 .text {
  5806. position:absolute;
  5807. align-self:center;
  5808. padding:2px 2px 2px 2px;
  5809. box-sizing:border-box;
  5810. width:100%;
  5811. }
  5812. #u55895_text {
  5813. border-width:0px;
  5814. word-wrap:break-word;
  5815. text-transform:none;
  5816. visibility:hidden;
  5817. }
  5818. #u55896_div {
  5819. border-width:0px;
  5820. position:absolute;
  5821. left:0px;
  5822. top:0px;
  5823. width:65px;
  5824. height:22px;
  5825. background:inherit;
  5826. background-color:rgba(255, 255, 255, 0);
  5827. border:none;
  5828. border-radius:0px;
  5829. -moz-box-shadow:none;
  5830. -webkit-box-shadow:none;
  5831. box-shadow:none;
  5832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5833. font-weight:400;
  5834. font-style:normal;
  5835. font-size:16px;
  5836. }
  5837. #u55896 {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:147px;
  5841. top:206px;
  5842. width:65px;
  5843. height:22px;
  5844. display:flex;
  5845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5846. font-weight:400;
  5847. font-style:normal;
  5848. font-size:16px;
  5849. }
  5850. #u55896 .text {
  5851. position:absolute;
  5852. align-self:flex-start;
  5853. padding:0px 0px 0px 0px;
  5854. box-sizing:border-box;
  5855. width:100%;
  5856. }
  5857. #u55896_text {
  5858. border-width:0px;
  5859. white-space:nowrap;
  5860. text-transform:none;
  5861. }