styles.css 102 KB

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