styles.css 101 KB

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