styles.css 110 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1779px;
  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. #u152118_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u152118 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u152118 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u152118_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u152119_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. #u152119 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u152119 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u152119_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u152120 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u152121_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. #u152121 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u152121 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u152121_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u152122 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u152123_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u152123 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u152123 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u152123_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u152124_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u152124 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u152124 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u152124_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u152125 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u152126_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u152126 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u152126 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u152126_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u152127_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u152127 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u152127 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u152127_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u152128_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u152128 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u152128 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u152128_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u152129_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u152129 {
  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. #u152129 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u152129_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u152130_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u152130 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u152130 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u152130_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u152131_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. #u152131 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u152131 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u152131_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u152132 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u152133_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u152133 {
  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. #u152133 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u152133_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u152134_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. #u152134 {
  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. #u152134 .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. #u152134_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u152135 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u152136_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u152136 {
  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. #u152136 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u152136_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u152137_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. #u152137 {
  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. #u152137 .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. #u152137_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u152138_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. #u152138 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u152138 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u152138_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u152139 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u152140_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u152140 {
  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. #u152140 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u152140_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u152141_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. #u152141 {
  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. #u152141 .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. #u152141_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u152142 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u152143_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u152143 {
  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. #u152143 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u152143_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u152144_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. #u152144 {
  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. #u152144 .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. #u152144_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u152145_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:735px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:25px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. }
  797. #u152145 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:105px;
  802. width:375px;
  803. height:735px;
  804. display:flex;
  805. }
  806. #u152145 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u152145_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u152146_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:375px;
  825. height:735px;
  826. background:inherit;
  827. background-color:rgba(242, 242, 242, 1);
  828. border:none;
  829. border-top:0px;
  830. border-radius:22px;
  831. border-top-left-radius:0px;
  832. border-top-right-radius:0px;
  833. -moz-box-shadow:none;
  834. -webkit-box-shadow:none;
  835. box-shadow:none;
  836. }
  837. #u152146 {
  838. border-width:0px;
  839. position:absolute;
  840. left:29px;
  841. top:105px;
  842. width:375px;
  843. height:735px;
  844. display:flex;
  845. }
  846. #u152146 .text {
  847. position:absolute;
  848. align-self:center;
  849. padding:2px 2px 2px 2px;
  850. box-sizing:border-box;
  851. width:100%;
  852. }
  853. #u152146_text {
  854. border-width:0px;
  855. word-wrap:break-word;
  856. text-transform:none;
  857. visibility:hidden;
  858. }
  859. #u152147_img {
  860. border-width:0px;
  861. position:absolute;
  862. left:0px;
  863. top:0px;
  864. width:11px;
  865. height:18px;
  866. }
  867. #u152147 {
  868. border-width:0px;
  869. position:absolute;
  870. left:42px;
  871. top:79px;
  872. width:11px;
  873. height:18px;
  874. display:flex;
  875. }
  876. #u152147 .text {
  877. position:absolute;
  878. align-self:center;
  879. padding:2px 2px 2px 2px;
  880. box-sizing:border-box;
  881. width:100%;
  882. }
  883. #u152147_text {
  884. border-width:0px;
  885. word-wrap:break-word;
  886. text-transform:none;
  887. visibility:hidden;
  888. }
  889. #u152148_div {
  890. border-width:0px;
  891. position:absolute;
  892. left:0px;
  893. top:0px;
  894. width:109px;
  895. height:30px;
  896. background:inherit;
  897. background-color:rgba(255, 255, 255, 0);
  898. border:none;
  899. border-left:0px;
  900. border-top:0px;
  901. border-right:0px;
  902. border-radius:0px;
  903. border-bottom-right-radius:0px;
  904. border-bottom-left-radius:0px;
  905. -moz-box-shadow:none;
  906. -webkit-box-shadow:none;
  907. box-shadow:none;
  908. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  909. font-weight:500;
  910. font-style:normal;
  911. font-size:18px;
  912. line-height:30px;
  913. }
  914. #u152148 {
  915. border-width:0px;
  916. position:absolute;
  917. left:71px;
  918. top:73px;
  919. width:109px;
  920. height:30px;
  921. display:flex;
  922. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  923. font-weight:500;
  924. font-style:normal;
  925. font-size:18px;
  926. line-height:30px;
  927. }
  928. #u152148 .text {
  929. position:absolute;
  930. align-self:flex-start;
  931. padding:0px 0px 0px 0px;
  932. box-sizing:border-box;
  933. width:100%;
  934. }
  935. #u152148_text {
  936. border-width:0px;
  937. white-space:nowrap;
  938. text-transform:none;
  939. }
  940. #u152149 {
  941. border-width:0px;
  942. position:absolute;
  943. left:0px;
  944. top:0px;
  945. width:0px;
  946. height:0px;
  947. }
  948. #u152150_div {
  949. border-width:0px;
  950. position:absolute;
  951. left:0px;
  952. top:0px;
  953. width:375px;
  954. height:449px;
  955. background:inherit;
  956. background-color:rgba(255, 255, 255, 1);
  957. border:none;
  958. border-top:0px;
  959. border-bottom:0px;
  960. border-radius:0px;
  961. border-top-left-radius:0px;
  962. border-top-right-radius:0px;
  963. border-bottom-right-radius:0px;
  964. border-bottom-left-radius:0px;
  965. -moz-box-shadow:none;
  966. -webkit-box-shadow:none;
  967. box-shadow:none;
  968. }
  969. #u152150 {
  970. border-width:0px;
  971. position:absolute;
  972. left:29px;
  973. top:335px;
  974. width:375px;
  975. height:449px;
  976. display:flex;
  977. }
  978. #u152150 .text {
  979. position:absolute;
  980. align-self:center;
  981. padding:2px 2px 2px 2px;
  982. box-sizing:border-box;
  983. width:100%;
  984. }
  985. #u152150_text {
  986. border-width:0px;
  987. word-wrap:break-word;
  988. text-transform:none;
  989. visibility:hidden;
  990. }
  991. #u152151_div {
  992. border-width:0px;
  993. position:absolute;
  994. left:0px;
  995. top:0px;
  996. width:73px;
  997. height:30px;
  998. background:inherit;
  999. background-color:rgba(255, 255, 255, 0);
  1000. border:none;
  1001. border-left:0px;
  1002. border-top:0px;
  1003. border-right:0px;
  1004. border-radius:0px;
  1005. border-bottom-right-radius:0px;
  1006. border-bottom-left-radius:0px;
  1007. -moz-box-shadow:none;
  1008. -webkit-box-shadow:none;
  1009. box-shadow:none;
  1010. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1011. font-weight:500;
  1012. font-style:normal;
  1013. font-size:18px;
  1014. line-height:30px;
  1015. }
  1016. #u152151 {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:48px;
  1020. top:350px;
  1021. width:73px;
  1022. height:30px;
  1023. display:flex;
  1024. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1025. font-weight:500;
  1026. font-style:normal;
  1027. font-size:18px;
  1028. line-height:30px;
  1029. }
  1030. #u152151 .text {
  1031. position:absolute;
  1032. align-self:flex-start;
  1033. padding:0px 0px 0px 0px;
  1034. box-sizing:border-box;
  1035. width:100%;
  1036. }
  1037. #u152151_text {
  1038. border-width:0px;
  1039. white-space:nowrap;
  1040. text-transform:none;
  1041. }
  1042. #u152152_img {
  1043. border-width:0px;
  1044. position:absolute;
  1045. left:0px;
  1046. top:0px;
  1047. width:70px;
  1048. height:60px;
  1049. }
  1050. #u152152 {
  1051. border-width:0px;
  1052. position:absolute;
  1053. left:50px;
  1054. top:557px;
  1055. width:70px;
  1056. height:60px;
  1057. display:flex;
  1058. }
  1059. #u152152 .text {
  1060. position:absolute;
  1061. align-self:center;
  1062. padding:2px 2px 2px 2px;
  1063. box-sizing:border-box;
  1064. width:100%;
  1065. }
  1066. #u152152_text {
  1067. border-width:0px;
  1068. word-wrap:break-word;
  1069. text-transform:none;
  1070. visibility:hidden;
  1071. }
  1072. #u152153_img {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:0px;
  1076. top:0px;
  1077. width:70px;
  1078. height:60px;
  1079. }
  1080. #u152153 {
  1081. border-width:0px;
  1082. position:absolute;
  1083. left:135px;
  1084. top:557px;
  1085. width:70px;
  1086. height:60px;
  1087. display:flex;
  1088. }
  1089. #u152153 .text {
  1090. position:absolute;
  1091. align-self:center;
  1092. padding:2px 2px 2px 2px;
  1093. box-sizing:border-box;
  1094. width:100%;
  1095. }
  1096. #u152153_text {
  1097. border-width:0px;
  1098. word-wrap:break-word;
  1099. text-transform:none;
  1100. visibility:hidden;
  1101. }
  1102. #u152154_img {
  1103. border-width:0px;
  1104. position:absolute;
  1105. left:0px;
  1106. top:0px;
  1107. width:70px;
  1108. height:60px;
  1109. }
  1110. #u152154 {
  1111. border-width:0px;
  1112. position:absolute;
  1113. left:220px;
  1114. top:557px;
  1115. width:70px;
  1116. height:60px;
  1117. display:flex;
  1118. }
  1119. #u152154 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:2px 2px 2px 2px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u152154_text {
  1127. border-width:0px;
  1128. word-wrap:break-word;
  1129. text-transform:none;
  1130. visibility:hidden;
  1131. }
  1132. #u152155_img {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:0px;
  1136. top:0px;
  1137. width:70px;
  1138. height:60px;
  1139. }
  1140. #u152155 {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:305px;
  1144. top:557px;
  1145. width:70px;
  1146. height:60px;
  1147. display:flex;
  1148. }
  1149. #u152155 .text {
  1150. position:absolute;
  1151. align-self:center;
  1152. padding:2px 2px 2px 2px;
  1153. box-sizing:border-box;
  1154. width:100%;
  1155. }
  1156. #u152155_text {
  1157. border-width:0px;
  1158. word-wrap:break-word;
  1159. text-transform:none;
  1160. visibility:hidden;
  1161. }
  1162. #u152156_img {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:70px;
  1168. height:60px;
  1169. }
  1170. #u152156 {
  1171. border-width:0px;
  1172. position:absolute;
  1173. left:50px;
  1174. top:631px;
  1175. width:70px;
  1176. height:60px;
  1177. display:flex;
  1178. }
  1179. #u152156 .text {
  1180. position:absolute;
  1181. align-self:center;
  1182. padding:2px 2px 2px 2px;
  1183. box-sizing:border-box;
  1184. width:100%;
  1185. }
  1186. #u152156_text {
  1187. border-width:0px;
  1188. word-wrap:break-word;
  1189. text-transform:none;
  1190. visibility:hidden;
  1191. }
  1192. #u152157_img {
  1193. border-width:0px;
  1194. position:absolute;
  1195. left:0px;
  1196. top:0px;
  1197. width:70px;
  1198. height:60px;
  1199. }
  1200. #u152157 {
  1201. border-width:0px;
  1202. position:absolute;
  1203. left:135px;
  1204. top:631px;
  1205. width:70px;
  1206. height:60px;
  1207. display:flex;
  1208. }
  1209. #u152157 .text {
  1210. position:absolute;
  1211. align-self:center;
  1212. padding:2px 2px 2px 2px;
  1213. box-sizing:border-box;
  1214. width:100%;
  1215. }
  1216. #u152157_text {
  1217. border-width:0px;
  1218. word-wrap:break-word;
  1219. text-transform:none;
  1220. visibility:hidden;
  1221. }
  1222. #u152158_img {
  1223. border-width:0px;
  1224. position:absolute;
  1225. left:0px;
  1226. top:0px;
  1227. width:70px;
  1228. height:60px;
  1229. }
  1230. #u152158 {
  1231. border-width:0px;
  1232. position:absolute;
  1233. left:220px;
  1234. top:631px;
  1235. width:70px;
  1236. height:60px;
  1237. display:flex;
  1238. }
  1239. #u152158 .text {
  1240. position:absolute;
  1241. align-self:center;
  1242. padding:2px 2px 2px 2px;
  1243. box-sizing:border-box;
  1244. width:100%;
  1245. }
  1246. #u152158_text {
  1247. border-width:0px;
  1248. word-wrap:break-word;
  1249. text-transform:none;
  1250. visibility:hidden;
  1251. }
  1252. #u152159 {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:0px;
  1256. top:0px;
  1257. width:0px;
  1258. height:0px;
  1259. }
  1260. #u152160_div {
  1261. border-width:0px;
  1262. position:absolute;
  1263. left:0px;
  1264. top:0px;
  1265. width:342px;
  1266. height:50px;
  1267. background:inherit;
  1268. background-color:rgba(242, 242, 242, 1);
  1269. border:none;
  1270. border-radius:5px;
  1271. -moz-box-shadow:none;
  1272. -webkit-box-shadow:none;
  1273. box-shadow:none;
  1274. }
  1275. #u152160 {
  1276. border-width:0px;
  1277. position:absolute;
  1278. left:46px;
  1279. top:388px;
  1280. width:342px;
  1281. height:50px;
  1282. display:flex;
  1283. }
  1284. #u152160 .text {
  1285. position:absolute;
  1286. align-self:center;
  1287. padding:2px 2px 2px 2px;
  1288. box-sizing:border-box;
  1289. width:100%;
  1290. }
  1291. #u152160_text {
  1292. border-width:0px;
  1293. word-wrap:break-word;
  1294. text-transform:none;
  1295. visibility:hidden;
  1296. }
  1297. #u152161_div {
  1298. border-width:0px;
  1299. position:absolute;
  1300. left:0px;
  1301. top:0px;
  1302. width:29px;
  1303. height:30px;
  1304. background:inherit;
  1305. background-color:rgba(255, 255, 255, 0);
  1306. border:none;
  1307. border-left:0px;
  1308. border-top:0px;
  1309. border-right:0px;
  1310. border-radius:0px;
  1311. border-bottom-right-radius:0px;
  1312. border-bottom-left-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:14px;
  1320. line-height:30px;
  1321. }
  1322. #u152161 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:67px;
  1326. top:398px;
  1327. width:29px;
  1328. height:30px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:14px;
  1334. line-height:30px;
  1335. }
  1336. #u152161 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u152161_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u152162_div {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:18px;
  1354. height:30px;
  1355. background:inherit;
  1356. background-color:rgba(255, 255, 255, 0);
  1357. border:none;
  1358. border-left:0px;
  1359. border-top:0px;
  1360. border-right:0px;
  1361. border-radius:0px;
  1362. border-bottom-right-radius:0px;
  1363. border-bottom-left-radius:0px;
  1364. -moz-box-shadow:none;
  1365. -webkit-box-shadow:none;
  1366. box-shadow:none;
  1367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1368. font-weight:400;
  1369. font-style:normal;
  1370. font-size:14px;
  1371. line-height:30px;
  1372. }
  1373. #u152162 {
  1374. border-width:0px;
  1375. position:absolute;
  1376. left:355px;
  1377. top:398px;
  1378. width:18px;
  1379. height:30px;
  1380. display:flex;
  1381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1382. font-weight:400;
  1383. font-style:normal;
  1384. font-size:14px;
  1385. line-height:30px;
  1386. }
  1387. #u152162 .text {
  1388. position:absolute;
  1389. align-self:flex-start;
  1390. padding:0px 0px 0px 0px;
  1391. box-sizing:border-box;
  1392. width:100%;
  1393. }
  1394. #u152162_text {
  1395. border-width:0px;
  1396. white-space:nowrap;
  1397. text-transform:none;
  1398. }
  1399. #u152163 {
  1400. border-width:0px;
  1401. position:absolute;
  1402. left:0px;
  1403. top:0px;
  1404. width:0px;
  1405. height:0px;
  1406. }
  1407. #u152164_div {
  1408. border-width:0px;
  1409. position:absolute;
  1410. left:0px;
  1411. top:0px;
  1412. width:342px;
  1413. height:50px;
  1414. background:inherit;
  1415. background-color:rgba(242, 242, 242, 1);
  1416. border:none;
  1417. border-radius:5px;
  1418. -moz-box-shadow:none;
  1419. -webkit-box-shadow:none;
  1420. box-shadow:none;
  1421. }
  1422. #u152164 {
  1423. border-width:0px;
  1424. position:absolute;
  1425. left:46px;
  1426. top:439px;
  1427. width:342px;
  1428. height:50px;
  1429. display:flex;
  1430. }
  1431. #u152164 .text {
  1432. position:absolute;
  1433. align-self:center;
  1434. padding:2px 2px 2px 2px;
  1435. box-sizing:border-box;
  1436. width:100%;
  1437. }
  1438. #u152164_text {
  1439. border-width:0px;
  1440. word-wrap:break-word;
  1441. text-transform:none;
  1442. visibility:hidden;
  1443. }
  1444. #u152165_div {
  1445. border-width:0px;
  1446. position:absolute;
  1447. left:0px;
  1448. top:0px;
  1449. width:29px;
  1450. height:30px;
  1451. background:inherit;
  1452. background-color:rgba(255, 255, 255, 0);
  1453. border:none;
  1454. border-left:0px;
  1455. border-top:0px;
  1456. border-right:0px;
  1457. border-radius:0px;
  1458. border-bottom-right-radius:0px;
  1459. border-bottom-left-radius:0px;
  1460. -moz-box-shadow:none;
  1461. -webkit-box-shadow:none;
  1462. box-shadow:none;
  1463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1464. font-weight:400;
  1465. font-style:normal;
  1466. font-size:14px;
  1467. line-height:30px;
  1468. }
  1469. #u152165 {
  1470. border-width:0px;
  1471. position:absolute;
  1472. left:67px;
  1473. top:449px;
  1474. width:29px;
  1475. height:30px;
  1476. display:flex;
  1477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1478. font-weight:400;
  1479. font-style:normal;
  1480. font-size:14px;
  1481. line-height:30px;
  1482. }
  1483. #u152165 .text {
  1484. position:absolute;
  1485. align-self:flex-start;
  1486. padding:0px 0px 0px 0px;
  1487. box-sizing:border-box;
  1488. width:100%;
  1489. }
  1490. #u152165_text {
  1491. border-width:0px;
  1492. white-space:nowrap;
  1493. text-transform:none;
  1494. }
  1495. #u152166_div {
  1496. border-width:0px;
  1497. position:absolute;
  1498. left:0px;
  1499. top:0px;
  1500. width:18px;
  1501. height:30px;
  1502. background:inherit;
  1503. background-color:rgba(255, 255, 255, 0);
  1504. border:none;
  1505. border-left:0px;
  1506. border-top:0px;
  1507. border-right:0px;
  1508. border-radius:0px;
  1509. border-bottom-right-radius:0px;
  1510. border-bottom-left-radius:0px;
  1511. -moz-box-shadow:none;
  1512. -webkit-box-shadow:none;
  1513. box-shadow:none;
  1514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1515. font-weight:400;
  1516. font-style:normal;
  1517. font-size:14px;
  1518. line-height:30px;
  1519. }
  1520. #u152166 {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:355px;
  1524. top:449px;
  1525. width:18px;
  1526. height:30px;
  1527. display:flex;
  1528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1529. font-weight:400;
  1530. font-style:normal;
  1531. font-size:14px;
  1532. line-height:30px;
  1533. }
  1534. #u152166 .text {
  1535. position:absolute;
  1536. align-self:flex-start;
  1537. padding:0px 0px 0px 0px;
  1538. box-sizing:border-box;
  1539. width:100%;
  1540. }
  1541. #u152166_text {
  1542. border-width:0px;
  1543. white-space:nowrap;
  1544. text-transform:none;
  1545. }
  1546. #u152167 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u152168_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:342px;
  1560. height:50px;
  1561. background:inherit;
  1562. background-color:rgba(242, 242, 242, 1);
  1563. border:none;
  1564. border-radius:5px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. }
  1569. #u152168 {
  1570. border-width:0px;
  1571. position:absolute;
  1572. left:46px;
  1573. top:490px;
  1574. width:342px;
  1575. height:50px;
  1576. display:flex;
  1577. }
  1578. #u152168 .text {
  1579. position:absolute;
  1580. align-self:center;
  1581. padding:2px 2px 2px 2px;
  1582. box-sizing:border-box;
  1583. width:100%;
  1584. }
  1585. #u152168_text {
  1586. border-width:0px;
  1587. word-wrap:break-word;
  1588. text-transform:none;
  1589. visibility:hidden;
  1590. }
  1591. #u152169_div {
  1592. border-width:0px;
  1593. position:absolute;
  1594. left:0px;
  1595. top:0px;
  1596. width:29px;
  1597. height:30px;
  1598. background:inherit;
  1599. background-color:rgba(255, 255, 255, 0);
  1600. border:none;
  1601. border-left:0px;
  1602. border-top:0px;
  1603. border-right:0px;
  1604. border-radius:0px;
  1605. border-bottom-right-radius:0px;
  1606. border-bottom-left-radius:0px;
  1607. -moz-box-shadow:none;
  1608. -webkit-box-shadow:none;
  1609. box-shadow:none;
  1610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1611. font-weight:400;
  1612. font-style:normal;
  1613. font-size:14px;
  1614. line-height:30px;
  1615. }
  1616. #u152169 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:67px;
  1620. top:500px;
  1621. width:29px;
  1622. height:30px;
  1623. display:flex;
  1624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1625. font-weight:400;
  1626. font-style:normal;
  1627. font-size:14px;
  1628. line-height:30px;
  1629. }
  1630. #u152169 .text {
  1631. position:absolute;
  1632. align-self:flex-start;
  1633. padding:0px 0px 0px 0px;
  1634. box-sizing:border-box;
  1635. width:100%;
  1636. }
  1637. #u152169_text {
  1638. border-width:0px;
  1639. white-space:nowrap;
  1640. text-transform:none;
  1641. }
  1642. #u152170_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:18px;
  1648. height:30px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 0);
  1651. border:none;
  1652. border-left:0px;
  1653. border-top:0px;
  1654. border-right:0px;
  1655. border-radius:0px;
  1656. border-bottom-right-radius:0px;
  1657. border-bottom-left-radius:0px;
  1658. -moz-box-shadow:none;
  1659. -webkit-box-shadow:none;
  1660. box-shadow:none;
  1661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1662. font-weight:400;
  1663. font-style:normal;
  1664. font-size:14px;
  1665. line-height:30px;
  1666. }
  1667. #u152170 {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:355px;
  1671. top:500px;
  1672. width:18px;
  1673. height:30px;
  1674. display:flex;
  1675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1676. font-weight:400;
  1677. font-style:normal;
  1678. font-size:14px;
  1679. line-height:30px;
  1680. }
  1681. #u152170 .text {
  1682. position:absolute;
  1683. align-self:flex-start;
  1684. padding:0px 0px 0px 0px;
  1685. box-sizing:border-box;
  1686. width:100%;
  1687. }
  1688. #u152170_text {
  1689. border-width:0px;
  1690. white-space:nowrap;
  1691. text-transform:none;
  1692. }
  1693. #u152171 {
  1694. border-width:0px;
  1695. position:absolute;
  1696. left:0px;
  1697. top:0px;
  1698. width:0px;
  1699. height:0px;
  1700. }
  1701. #u152172_img {
  1702. border-width:0px;
  1703. position:absolute;
  1704. left:0px;
  1705. top:0px;
  1706. width:375px;
  1707. height:220px;
  1708. }
  1709. #u152172 {
  1710. border-width:0px;
  1711. position:absolute;
  1712. left:29px;
  1713. top:105px;
  1714. width:375px;
  1715. height:220px;
  1716. display:flex;
  1717. }
  1718. #u152172 .text {
  1719. position:absolute;
  1720. align-self:center;
  1721. padding:2px 2px 2px 2px;
  1722. box-sizing:border-box;
  1723. width:100%;
  1724. }
  1725. #u152172_text {
  1726. border-width:0px;
  1727. word-wrap:break-word;
  1728. text-transform:none;
  1729. visibility:hidden;
  1730. }
  1731. #u152173_div {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:0px;
  1735. top:0px;
  1736. width:325px;
  1737. height:25px;
  1738. background:inherit;
  1739. background-color:rgba(255, 255, 255, 0);
  1740. border:none;
  1741. border-left:0px;
  1742. border-top:0px;
  1743. border-right:0px;
  1744. border-radius:0px;
  1745. border-bottom-right-radius:0px;
  1746. border-bottom-left-radius:0px;
  1747. -moz-box-shadow:none;
  1748. -webkit-box-shadow:none;
  1749. box-shadow:none;
  1750. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1751. font-weight:500;
  1752. font-style:normal;
  1753. font-size:18px;
  1754. line-height:25px;
  1755. }
  1756. #u152173 {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:50px;
  1760. top:120px;
  1761. width:325px;
  1762. height:25px;
  1763. display:flex;
  1764. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1765. font-weight:500;
  1766. font-style:normal;
  1767. font-size:18px;
  1768. line-height:25px;
  1769. }
  1770. #u152173 .text {
  1771. position:absolute;
  1772. align-self:flex-start;
  1773. padding:0px 0px 0px 0px;
  1774. box-sizing:border-box;
  1775. width:100%;
  1776. }
  1777. #u152173_text {
  1778. border-width:0px;
  1779. word-wrap:break-word;
  1780. text-transform:none;
  1781. }
  1782. #u152174_div {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:0px;
  1786. top:0px;
  1787. width:37px;
  1788. height:24px;
  1789. background:inherit;
  1790. background-color:rgba(255, 255, 255, 0);
  1791. border:none;
  1792. border-left:0px;
  1793. border-top:0px;
  1794. border-right:0px;
  1795. border-radius:0px;
  1796. border-bottom-right-radius:0px;
  1797. border-bottom-left-radius:0px;
  1798. -moz-box-shadow:none;
  1799. -webkit-box-shadow:none;
  1800. box-shadow:none;
  1801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1802. font-weight:400;
  1803. font-style:normal;
  1804. font-size:12px;
  1805. color:#1890FF;
  1806. text-align:right;
  1807. line-height:24px;
  1808. }
  1809. #u152174 {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:357px;
  1813. top:121px;
  1814. width:37px;
  1815. height:24px;
  1816. display:flex;
  1817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1818. font-weight:400;
  1819. font-style:normal;
  1820. font-size:12px;
  1821. color:#1890FF;
  1822. text-align:right;
  1823. line-height:24px;
  1824. }
  1825. #u152174 .text {
  1826. position:absolute;
  1827. align-self:flex-start;
  1828. padding:0px 0px 0px 0px;
  1829. box-sizing:border-box;
  1830. width:100%;
  1831. }
  1832. #u152174_text {
  1833. border-width:0px;
  1834. white-space:nowrap;
  1835. text-transform:none;
  1836. }
  1837. #u152175_div {
  1838. border-width:0px;
  1839. position:absolute;
  1840. left:0px;
  1841. top:0px;
  1842. width:117px;
  1843. height:25px;
  1844. background:inherit;
  1845. background-color:rgba(255, 255, 255, 0);
  1846. border:none;
  1847. border-radius:0px;
  1848. -moz-box-shadow:none;
  1849. -webkit-box-shadow:none;
  1850. box-shadow:none;
  1851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1852. font-weight:400;
  1853. font-style:normal;
  1854. font-size:12px;
  1855. color:#7F7F7F;
  1856. line-height:25px;
  1857. }
  1858. #u152175 {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:50px;
  1862. top:145px;
  1863. width:117px;
  1864. height:25px;
  1865. display:flex;
  1866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1867. font-weight:400;
  1868. font-style:normal;
  1869. font-size:12px;
  1870. color:#7F7F7F;
  1871. line-height:25px;
  1872. }
  1873. #u152175 .text {
  1874. position:absolute;
  1875. align-self:flex-start;
  1876. padding:0px 0px 0px 0px;
  1877. box-sizing:border-box;
  1878. width:100%;
  1879. }
  1880. #u152175_text {
  1881. border-width:0px;
  1882. white-space:nowrap;
  1883. text-transform:none;
  1884. }
  1885. #u152176_div {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:0px;
  1889. top:0px;
  1890. width:325px;
  1891. height:125px;
  1892. background:inherit;
  1893. background-color:rgba(255, 255, 255, 0);
  1894. border:none;
  1895. border-left:0px;
  1896. border-top:0px;
  1897. border-right:0px;
  1898. border-radius:0px;
  1899. border-bottom-right-radius:0px;
  1900. border-bottom-left-radius:0px;
  1901. -moz-box-shadow:none;
  1902. -webkit-box-shadow:none;
  1903. box-shadow:none;
  1904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1905. font-weight:400;
  1906. font-style:normal;
  1907. font-size:12px;
  1908. color:#555555;
  1909. line-height:25px;
  1910. }
  1911. #u152176 {
  1912. border-width:0px;
  1913. position:absolute;
  1914. left:50px;
  1915. top:180px;
  1916. width:325px;
  1917. height:125px;
  1918. display:flex;
  1919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1920. font-weight:400;
  1921. font-style:normal;
  1922. font-size:12px;
  1923. color:#555555;
  1924. line-height:25px;
  1925. }
  1926. #u152176 .text {
  1927. position:absolute;
  1928. align-self:flex-start;
  1929. padding:0px 0px 0px 0px;
  1930. box-sizing:border-box;
  1931. width:100%;
  1932. }
  1933. #u152176_text {
  1934. border-width:0px;
  1935. word-wrap:break-word;
  1936. text-transform:none;
  1937. }
  1938. #u152178_img {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:0px;
  1942. top:0px;
  1943. width:433px;
  1944. height:865px;
  1945. }
  1946. #u152178 {
  1947. border-width:0px;
  1948. position:absolute;
  1949. left:878px;
  1950. top:0px;
  1951. width:433px;
  1952. height:865px;
  1953. display:flex;
  1954. }
  1955. #u152178 .text {
  1956. position:absolute;
  1957. align-self:center;
  1958. padding:2px 2px 2px 2px;
  1959. box-sizing:border-box;
  1960. width:100%;
  1961. }
  1962. #u152178_text {
  1963. border-width:0px;
  1964. word-wrap:break-word;
  1965. text-transform:none;
  1966. visibility:hidden;
  1967. }
  1968. #u152179_div {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:0px;
  1972. top:0px;
  1973. width:375px;
  1974. height:40px;
  1975. background:inherit;
  1976. background-color:rgba(255, 255, 255, 1);
  1977. box-sizing:border-box;
  1978. border-width:1px;
  1979. border-style:solid;
  1980. border-color:rgba(215, 215, 215, 1);
  1981. border-left:0px;
  1982. border-top:0px;
  1983. border-right:0px;
  1984. border-radius:0px;
  1985. border-bottom-right-radius:0px;
  1986. border-bottom-left-radius:0px;
  1987. -moz-box-shadow:none;
  1988. -webkit-box-shadow:none;
  1989. box-shadow:none;
  1990. }
  1991. #u152179 {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:907px;
  1995. top:67px;
  1996. width:375px;
  1997. height:40px;
  1998. display:flex;
  1999. }
  2000. #u152179 .text {
  2001. position:absolute;
  2002. align-self:center;
  2003. padding:2px 2px 2px 2px;
  2004. box-sizing:border-box;
  2005. width:100%;
  2006. }
  2007. #u152179_text {
  2008. border-width:0px;
  2009. word-wrap:break-word;
  2010. text-transform:none;
  2011. visibility:hidden;
  2012. }
  2013. #u152180 {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:0px;
  2017. top:0px;
  2018. width:0px;
  2019. height:0px;
  2020. }
  2021. #u152181_div {
  2022. border-width:0px;
  2023. position:absolute;
  2024. left:0px;
  2025. top:0px;
  2026. width:88px;
  2027. height:32px;
  2028. background:inherit;
  2029. background-color:rgba(255, 255, 255, 1);
  2030. box-sizing:border-box;
  2031. border-width:1px;
  2032. border-style:solid;
  2033. border-color:rgba(242, 242, 242, 1);
  2034. border-radius:33px;
  2035. -moz-box-shadow:none;
  2036. -webkit-box-shadow:none;
  2037. box-shadow:none;
  2038. }
  2039. #u152181 {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:1187px;
  2043. top:71px;
  2044. width:88px;
  2045. height:32px;
  2046. display:flex;
  2047. }
  2048. #u152181 .text {
  2049. position:absolute;
  2050. align-self:center;
  2051. padding:2px 2px 2px 2px;
  2052. box-sizing:border-box;
  2053. width:100%;
  2054. }
  2055. #u152181_text {
  2056. border-width:0px;
  2057. word-wrap:break-word;
  2058. text-transform:none;
  2059. visibility:hidden;
  2060. }
  2061. #u152182 {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:0px;
  2065. top:0px;
  2066. width:0px;
  2067. height:0px;
  2068. }
  2069. #u152183_img {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:18px;
  2075. height:18px;
  2076. }
  2077. #u152183 {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:1250px;
  2081. top:78px;
  2082. width:18px;
  2083. height:18px;
  2084. display:flex;
  2085. }
  2086. #u152183 .text {
  2087. position:absolute;
  2088. align-self:center;
  2089. padding:2px 2px 2px 2px;
  2090. box-sizing:border-box;
  2091. width:100%;
  2092. }
  2093. #u152183_text {
  2094. border-width:0px;
  2095. word-wrap:break-word;
  2096. text-transform:none;
  2097. visibility:hidden;
  2098. }
  2099. #u152184_img {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:0px;
  2103. top:0px;
  2104. width:6px;
  2105. height:6px;
  2106. }
  2107. #u152184 {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:1256px;
  2111. top:84px;
  2112. width:6px;
  2113. height:6px;
  2114. display:flex;
  2115. }
  2116. #u152184 .text {
  2117. position:absolute;
  2118. align-self:center;
  2119. padding:2px 2px 2px 2px;
  2120. box-sizing:border-box;
  2121. width:100%;
  2122. }
  2123. #u152184_text {
  2124. border-width:0px;
  2125. word-wrap:break-word;
  2126. text-transform:none;
  2127. visibility:hidden;
  2128. }
  2129. #u152185 {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:0px;
  2133. top:0px;
  2134. width:0px;
  2135. height:0px;
  2136. }
  2137. #u152186_img {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:0px;
  2141. top:0px;
  2142. width:5px;
  2143. height:5px;
  2144. }
  2145. #u152186 {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:1201px;
  2149. top:85px;
  2150. width:5px;
  2151. height:5px;
  2152. display:flex;
  2153. }
  2154. #u152186 .text {
  2155. position:absolute;
  2156. align-self:center;
  2157. padding:2px 2px 2px 2px;
  2158. box-sizing:border-box;
  2159. width:100%;
  2160. }
  2161. #u152186_text {
  2162. border-width:0px;
  2163. word-wrap:break-word;
  2164. text-transform:none;
  2165. visibility:hidden;
  2166. }
  2167. #u152187_img {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:0px;
  2171. top:0px;
  2172. width:5px;
  2173. height:5px;
  2174. }
  2175. #u152187 {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:1217px;
  2179. top:85px;
  2180. width:5px;
  2181. height:5px;
  2182. display:flex;
  2183. }
  2184. #u152187 .text {
  2185. position:absolute;
  2186. align-self:center;
  2187. padding:2px 2px 2px 2px;
  2188. box-sizing:border-box;
  2189. width:100%;
  2190. }
  2191. #u152187_text {
  2192. border-width:0px;
  2193. word-wrap:break-word;
  2194. text-transform:none;
  2195. visibility:hidden;
  2196. }
  2197. #u152188_img {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:0px;
  2201. top:0px;
  2202. width:7px;
  2203. height:7px;
  2204. }
  2205. #u152188 {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:1208px;
  2209. top:84px;
  2210. width:7px;
  2211. height:7px;
  2212. display:flex;
  2213. }
  2214. #u152188 .text {
  2215. position:absolute;
  2216. align-self:center;
  2217. padding:2px 2px 2px 2px;
  2218. box-sizing:border-box;
  2219. width:100%;
  2220. }
  2221. #u152188_text {
  2222. border-width:0px;
  2223. word-wrap:break-word;
  2224. text-transform:none;
  2225. visibility:hidden;
  2226. }
  2227. #u152189_img {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:0px;
  2231. top:0px;
  2232. width:19px;
  2233. height:2px;
  2234. }
  2235. #u152189 {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:1225px;
  2239. top:87px;
  2240. width:18px;
  2241. height:1px;
  2242. display:flex;
  2243. -webkit-transform:rotate(90deg);
  2244. -moz-transform:rotate(90deg);
  2245. -ms-transform:rotate(90deg);
  2246. transform:rotate(90deg);
  2247. }
  2248. #u152189 .text {
  2249. position:absolute;
  2250. align-self:center;
  2251. padding:2px 2px 2px 2px;
  2252. box-sizing:border-box;
  2253. width:100%;
  2254. }
  2255. #u152189_text {
  2256. border-width:0px;
  2257. word-wrap:break-word;
  2258. text-transform:none;
  2259. visibility:hidden;
  2260. }
  2261. #u152190_img {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:0px;
  2265. top:0px;
  2266. width:375px;
  2267. height:44px;
  2268. }
  2269. #u152190 {
  2270. border-width:0px;
  2271. position:absolute;
  2272. left:907px;
  2273. top:24px;
  2274. width:375px;
  2275. height:44px;
  2276. display:flex;
  2277. }
  2278. #u152190 .text {
  2279. position:absolute;
  2280. align-self:center;
  2281. padding:2px 2px 2px 2px;
  2282. box-sizing:border-box;
  2283. width:100%;
  2284. }
  2285. #u152190_text {
  2286. border-width:0px;
  2287. word-wrap:break-word;
  2288. text-transform:none;
  2289. visibility:hidden;
  2290. }
  2291. #u152191_div {
  2292. border-width:0px;
  2293. position:absolute;
  2294. left:0px;
  2295. top:0px;
  2296. width:375px;
  2297. height:50px;
  2298. background:inherit;
  2299. background-color:rgba(255, 255, 255, 1);
  2300. box-sizing:border-box;
  2301. border-width:1px;
  2302. border-style:solid;
  2303. border-color:rgba(242, 242, 242, 1);
  2304. border-radius:26px;
  2305. border-top-left-radius:0px;
  2306. border-top-right-radius:0px;
  2307. -moz-box-shadow:none;
  2308. -webkit-box-shadow:none;
  2309. box-shadow:none;
  2310. }
  2311. #u152191 {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:907px;
  2315. top:788px;
  2316. width:375px;
  2317. height:50px;
  2318. display:flex;
  2319. }
  2320. #u152191 .text {
  2321. position:absolute;
  2322. align-self:center;
  2323. padding:2px 2px 2px 2px;
  2324. box-sizing:border-box;
  2325. width:100%;
  2326. }
  2327. #u152191_text {
  2328. border-width:0px;
  2329. word-wrap:break-word;
  2330. text-transform:none;
  2331. visibility:hidden;
  2332. }
  2333. #u152192 {
  2334. border-width:0px;
  2335. position:absolute;
  2336. left:0px;
  2337. top:0px;
  2338. width:0px;
  2339. height:0px;
  2340. }
  2341. #u152193_img {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:0px;
  2345. top:0px;
  2346. width:24px;
  2347. height:24px;
  2348. }
  2349. #u152193 {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:947px;
  2353. top:792px;
  2354. width:24px;
  2355. height:24px;
  2356. display:flex;
  2357. font-size:8px;
  2358. }
  2359. #u152193 .text {
  2360. position:absolute;
  2361. align-self:center;
  2362. padding:2px 2px 2px 2px;
  2363. box-sizing:border-box;
  2364. width:100%;
  2365. }
  2366. #u152193_text {
  2367. border-width:0px;
  2368. word-wrap:break-word;
  2369. text-transform:none;
  2370. }
  2371. #u152194_div {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:0px;
  2375. top:0px;
  2376. width:25px;
  2377. height:17px;
  2378. background:inherit;
  2379. background-color:rgba(255, 255, 255, 0);
  2380. border:none;
  2381. border-radius:0px;
  2382. -moz-box-shadow:none;
  2383. -webkit-box-shadow:none;
  2384. box-shadow:none;
  2385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2386. font-weight:400;
  2387. font-style:normal;
  2388. font-size:12px;
  2389. }
  2390. #u152194 {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:947px;
  2394. top:817px;
  2395. width:25px;
  2396. height:17px;
  2397. display:flex;
  2398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2399. font-weight:400;
  2400. font-style:normal;
  2401. font-size:12px;
  2402. }
  2403. #u152194 .text {
  2404. position:absolute;
  2405. align-self:flex-start;
  2406. padding:0px 0px 0px 0px;
  2407. box-sizing:border-box;
  2408. width:100%;
  2409. }
  2410. #u152194_text {
  2411. border-width:0px;
  2412. white-space:nowrap;
  2413. text-transform:none;
  2414. }
  2415. #u152195 {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:0px;
  2419. top:0px;
  2420. width:0px;
  2421. height:0px;
  2422. }
  2423. #u152196_img {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:0px;
  2427. top:0px;
  2428. width:24px;
  2429. height:24px;
  2430. }
  2431. #u152196 {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:1217px;
  2435. top:794px;
  2436. width:24px;
  2437. height:24px;
  2438. display:flex;
  2439. font-size:8px;
  2440. }
  2441. #u152196 .text {
  2442. position:absolute;
  2443. align-self:center;
  2444. padding:2px 2px 2px 2px;
  2445. box-sizing:border-box;
  2446. width:100%;
  2447. }
  2448. #u152196_text {
  2449. border-width:0px;
  2450. word-wrap:break-word;
  2451. text-transform:none;
  2452. }
  2453. #u152197_div {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:0px;
  2457. top:0px;
  2458. width:25px;
  2459. height:17px;
  2460. background:inherit;
  2461. background-color:rgba(255, 255, 255, 0);
  2462. border:none;
  2463. border-radius:0px;
  2464. -moz-box-shadow:none;
  2465. -webkit-box-shadow:none;
  2466. box-shadow:none;
  2467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2468. font-weight:400;
  2469. font-style:normal;
  2470. font-size:12px;
  2471. }
  2472. #u152197 {
  2473. border-width:0px;
  2474. position:absolute;
  2475. left:1217px;
  2476. top:819px;
  2477. width:25px;
  2478. height:17px;
  2479. display:flex;
  2480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2481. font-weight:400;
  2482. font-style:normal;
  2483. font-size:12px;
  2484. }
  2485. #u152197 .text {
  2486. position:absolute;
  2487. align-self:flex-start;
  2488. padding:0px 0px 0px 0px;
  2489. box-sizing:border-box;
  2490. width:100%;
  2491. }
  2492. #u152197_text {
  2493. border-width:0px;
  2494. white-space:nowrap;
  2495. text-transform:none;
  2496. }
  2497. #u152198_div {
  2498. border-width:0px;
  2499. position:absolute;
  2500. left:0px;
  2501. top:0px;
  2502. width:375px;
  2503. height:681px;
  2504. background:inherit;
  2505. background-color:rgba(242, 242, 242, 0.462745098039216);
  2506. border:none;
  2507. border-radius:0px;
  2508. -moz-box-shadow:none;
  2509. -webkit-box-shadow:none;
  2510. box-shadow:none;
  2511. }
  2512. #u152198 {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:907px;
  2516. top:107px;
  2517. width:375px;
  2518. height:681px;
  2519. display:flex;
  2520. }
  2521. #u152198 .text {
  2522. position:absolute;
  2523. align-self:center;
  2524. padding:2px 2px 2px 2px;
  2525. box-sizing:border-box;
  2526. width:100%;
  2527. }
  2528. #u152198_text {
  2529. border-width:0px;
  2530. word-wrap:break-word;
  2531. text-transform:none;
  2532. visibility:hidden;
  2533. }
  2534. #u152199 {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:0px;
  2538. top:0px;
  2539. width:0px;
  2540. height:0px;
  2541. }
  2542. #u152200_img {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:0px;
  2546. top:0px;
  2547. width:24px;
  2548. height:24px;
  2549. }
  2550. #u152200 {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:1129px;
  2554. top:792px;
  2555. width:24px;
  2556. height:24px;
  2557. display:flex;
  2558. font-size:8px;
  2559. }
  2560. #u152200 .text {
  2561. position:absolute;
  2562. align-self:center;
  2563. padding:2px 2px 2px 2px;
  2564. box-sizing:border-box;
  2565. width:100%;
  2566. }
  2567. #u152200_text {
  2568. border-width:0px;
  2569. word-wrap:break-word;
  2570. text-transform:none;
  2571. }
  2572. #u152201_div {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:0px;
  2576. top:0px;
  2577. width:37px;
  2578. height:17px;
  2579. background:inherit;
  2580. background-color:rgba(255, 255, 255, 0);
  2581. border:none;
  2582. border-radius:0px;
  2583. -moz-box-shadow:none;
  2584. -webkit-box-shadow:none;
  2585. box-shadow:none;
  2586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2587. font-weight:400;
  2588. font-style:normal;
  2589. font-size:12px;
  2590. }
  2591. #u152201 {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:1123px;
  2595. top:817px;
  2596. width:37px;
  2597. height:17px;
  2598. display:flex;
  2599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2600. font-weight:400;
  2601. font-style:normal;
  2602. font-size:12px;
  2603. }
  2604. #u152201 .text {
  2605. position:absolute;
  2606. align-self:flex-start;
  2607. padding:0px 0px 0px 0px;
  2608. box-sizing:border-box;
  2609. width:100%;
  2610. }
  2611. #u152201_text {
  2612. border-width:0px;
  2613. white-space:nowrap;
  2614. text-transform:none;
  2615. }
  2616. #u152202 {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:0px;
  2620. top:0px;
  2621. width:0px;
  2622. height:0px;
  2623. }
  2624. #u152203_img {
  2625. border-width:0px;
  2626. position:absolute;
  2627. left:0px;
  2628. top:0px;
  2629. width:24px;
  2630. height:24px;
  2631. }
  2632. #u152203 {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:1035px;
  2636. top:792px;
  2637. width:24px;
  2638. height:24px;
  2639. display:flex;
  2640. font-size:8px;
  2641. }
  2642. #u152203 .text {
  2643. position:absolute;
  2644. align-self:center;
  2645. padding:2px 2px 2px 2px;
  2646. box-sizing:border-box;
  2647. width:100%;
  2648. }
  2649. #u152203_text {
  2650. border-width:0px;
  2651. word-wrap:break-word;
  2652. text-transform:none;
  2653. }
  2654. #u152204_div {
  2655. border-width:0px;
  2656. position:absolute;
  2657. left:0px;
  2658. top:0px;
  2659. width:37px;
  2660. height:17px;
  2661. background:inherit;
  2662. background-color:rgba(255, 255, 255, 0);
  2663. border:none;
  2664. border-radius:0px;
  2665. -moz-box-shadow:none;
  2666. -webkit-box-shadow:none;
  2667. box-shadow:none;
  2668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2669. font-weight:400;
  2670. font-style:normal;
  2671. font-size:12px;
  2672. }
  2673. #u152204 {
  2674. border-width:0px;
  2675. position:absolute;
  2676. left:1029px;
  2677. top:817px;
  2678. width:37px;
  2679. height:17px;
  2680. display:flex;
  2681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2682. font-weight:400;
  2683. font-style:normal;
  2684. font-size:12px;
  2685. }
  2686. #u152204 .text {
  2687. position:absolute;
  2688. align-self:flex-start;
  2689. padding:0px 0px 0px 0px;
  2690. box-sizing:border-box;
  2691. width:100%;
  2692. }
  2693. #u152204_text {
  2694. border-width:0px;
  2695. white-space:nowrap;
  2696. text-transform:none;
  2697. }
  2698. #u152205_div {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:0px;
  2702. top:0px;
  2703. width:375px;
  2704. height:735px;
  2705. background:inherit;
  2706. background-color:rgba(242, 242, 242, 1);
  2707. border:none;
  2708. border-top:0px;
  2709. border-radius:25px;
  2710. border-top-left-radius:0px;
  2711. border-top-right-radius:0px;
  2712. -moz-box-shadow:none;
  2713. -webkit-box-shadow:none;
  2714. box-shadow:none;
  2715. }
  2716. #u152205 {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:907px;
  2720. top:105px;
  2721. width:375px;
  2722. height:735px;
  2723. display:flex;
  2724. }
  2725. #u152205 .text {
  2726. position:absolute;
  2727. align-self:center;
  2728. padding:2px 2px 2px 2px;
  2729. box-sizing:border-box;
  2730. width:100%;
  2731. }
  2732. #u152205_text {
  2733. border-width:0px;
  2734. word-wrap:break-word;
  2735. text-transform:none;
  2736. visibility:hidden;
  2737. }
  2738. #u152206_div {
  2739. border-width:0px;
  2740. position:absolute;
  2741. left:0px;
  2742. top:0px;
  2743. width:375px;
  2744. height:960px;
  2745. background:inherit;
  2746. background-color:rgba(242, 242, 242, 1);
  2747. border:none;
  2748. border-top:0px;
  2749. border-radius:22px;
  2750. border-top-left-radius:0px;
  2751. border-top-right-radius:0px;
  2752. -moz-box-shadow:none;
  2753. -webkit-box-shadow:none;
  2754. box-shadow:none;
  2755. }
  2756. #u152206 {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:907px;
  2760. top:105px;
  2761. width:375px;
  2762. height:960px;
  2763. display:flex;
  2764. }
  2765. #u152206 .text {
  2766. position:absolute;
  2767. align-self:center;
  2768. padding:2px 2px 2px 2px;
  2769. box-sizing:border-box;
  2770. width:100%;
  2771. }
  2772. #u152206_text {
  2773. border-width:0px;
  2774. word-wrap:break-word;
  2775. text-transform:none;
  2776. visibility:hidden;
  2777. }
  2778. #u152207_img {
  2779. border-width:0px;
  2780. position:absolute;
  2781. left:0px;
  2782. top:0px;
  2783. width:11px;
  2784. height:18px;
  2785. }
  2786. #u152207 {
  2787. border-width:0px;
  2788. position:absolute;
  2789. left:920px;
  2790. top:79px;
  2791. width:11px;
  2792. height:18px;
  2793. display:flex;
  2794. }
  2795. #u152207 .text {
  2796. position:absolute;
  2797. align-self:center;
  2798. padding:2px 2px 2px 2px;
  2799. box-sizing:border-box;
  2800. width:100%;
  2801. }
  2802. #u152207_text {
  2803. border-width:0px;
  2804. word-wrap:break-word;
  2805. text-transform:none;
  2806. visibility:hidden;
  2807. }
  2808. #u152208_div {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:0px;
  2812. top:0px;
  2813. width:109px;
  2814. height:30px;
  2815. background:inherit;
  2816. background-color:rgba(255, 255, 255, 0);
  2817. border:none;
  2818. border-left:0px;
  2819. border-top:0px;
  2820. border-right:0px;
  2821. border-radius:0px;
  2822. border-bottom-right-radius:0px;
  2823. border-bottom-left-radius:0px;
  2824. -moz-box-shadow:none;
  2825. -webkit-box-shadow:none;
  2826. box-shadow:none;
  2827. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2828. font-weight:500;
  2829. font-style:normal;
  2830. font-size:18px;
  2831. line-height:30px;
  2832. }
  2833. #u152208 {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:949px;
  2837. top:73px;
  2838. width:109px;
  2839. height:30px;
  2840. display:flex;
  2841. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2842. font-weight:500;
  2843. font-style:normal;
  2844. font-size:18px;
  2845. line-height:30px;
  2846. }
  2847. #u152208 .text {
  2848. position:absolute;
  2849. align-self:flex-start;
  2850. padding:0px 0px 0px 0px;
  2851. box-sizing:border-box;
  2852. width:100%;
  2853. }
  2854. #u152208_text {
  2855. border-width:0px;
  2856. white-space:nowrap;
  2857. text-transform:none;
  2858. }
  2859. #u152209 {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:0px;
  2863. top:0px;
  2864. width:0px;
  2865. height:0px;
  2866. }
  2867. #u152210_img {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:0px;
  2872. width:375px;
  2873. height:220px;
  2874. }
  2875. #u152210 {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:907px;
  2879. top:105px;
  2880. width:375px;
  2881. height:220px;
  2882. display:flex;
  2883. }
  2884. #u152210 .text {
  2885. position:absolute;
  2886. align-self:center;
  2887. padding:2px 2px 2px 2px;
  2888. box-sizing:border-box;
  2889. width:100%;
  2890. }
  2891. #u152210_text {
  2892. border-width:0px;
  2893. word-wrap:break-word;
  2894. text-transform:none;
  2895. visibility:hidden;
  2896. }
  2897. #u152211_div {
  2898. border-width:0px;
  2899. position:absolute;
  2900. left:0px;
  2901. top:0px;
  2902. width:325px;
  2903. height:25px;
  2904. background:inherit;
  2905. background-color:rgba(255, 255, 255, 0);
  2906. border:none;
  2907. border-left:0px;
  2908. border-top:0px;
  2909. border-right:0px;
  2910. border-radius:0px;
  2911. border-bottom-right-radius:0px;
  2912. border-bottom-left-radius:0px;
  2913. -moz-box-shadow:none;
  2914. -webkit-box-shadow:none;
  2915. box-shadow:none;
  2916. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2917. font-weight:500;
  2918. font-style:normal;
  2919. font-size:18px;
  2920. line-height:25px;
  2921. }
  2922. #u152211 {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:928px;
  2926. top:120px;
  2927. width:325px;
  2928. height:25px;
  2929. display:flex;
  2930. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2931. font-weight:500;
  2932. font-style:normal;
  2933. font-size:18px;
  2934. line-height:25px;
  2935. }
  2936. #u152211 .text {
  2937. position:absolute;
  2938. align-self:flex-start;
  2939. padding:0px 0px 0px 0px;
  2940. box-sizing:border-box;
  2941. width:100%;
  2942. }
  2943. #u152211_text {
  2944. border-width:0px;
  2945. word-wrap:break-word;
  2946. text-transform:none;
  2947. }
  2948. #u152212_div {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:0px;
  2952. top:0px;
  2953. width:37px;
  2954. height:24px;
  2955. background:inherit;
  2956. background-color:rgba(255, 255, 255, 0);
  2957. border:none;
  2958. border-left:0px;
  2959. border-top:0px;
  2960. border-right:0px;
  2961. border-radius:0px;
  2962. border-bottom-right-radius:0px;
  2963. border-bottom-left-radius:0px;
  2964. -moz-box-shadow:none;
  2965. -webkit-box-shadow:none;
  2966. box-shadow:none;
  2967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2968. font-weight:400;
  2969. font-style:normal;
  2970. font-size:12px;
  2971. color:#1890FF;
  2972. text-align:right;
  2973. line-height:24px;
  2974. }
  2975. #u152212 {
  2976. border-width:0px;
  2977. position:absolute;
  2978. left:1235px;
  2979. top:121px;
  2980. width:37px;
  2981. height:24px;
  2982. display:flex;
  2983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2984. font-weight:400;
  2985. font-style:normal;
  2986. font-size:12px;
  2987. color:#1890FF;
  2988. text-align:right;
  2989. line-height:24px;
  2990. }
  2991. #u152212 .text {
  2992. position:absolute;
  2993. align-self:flex-start;
  2994. padding:0px 0px 0px 0px;
  2995. box-sizing:border-box;
  2996. width:100%;
  2997. }
  2998. #u152212_text {
  2999. border-width:0px;
  3000. white-space:nowrap;
  3001. text-transform:none;
  3002. }
  3003. #u152213_div {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:0px;
  3007. top:0px;
  3008. width:117px;
  3009. height:25px;
  3010. background:inherit;
  3011. background-color:rgba(255, 255, 255, 0);
  3012. border:none;
  3013. border-radius:0px;
  3014. -moz-box-shadow:none;
  3015. -webkit-box-shadow:none;
  3016. box-shadow:none;
  3017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3018. font-weight:400;
  3019. font-style:normal;
  3020. font-size:12px;
  3021. color:#7F7F7F;
  3022. line-height:25px;
  3023. }
  3024. #u152213 {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:928px;
  3028. top:145px;
  3029. width:117px;
  3030. height:25px;
  3031. display:flex;
  3032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3033. font-weight:400;
  3034. font-style:normal;
  3035. font-size:12px;
  3036. color:#7F7F7F;
  3037. line-height:25px;
  3038. }
  3039. #u152213 .text {
  3040. position:absolute;
  3041. align-self:flex-start;
  3042. padding:0px 0px 0px 0px;
  3043. box-sizing:border-box;
  3044. width:100%;
  3045. }
  3046. #u152213_text {
  3047. border-width:0px;
  3048. white-space:nowrap;
  3049. text-transform:none;
  3050. }
  3051. #u152214_div {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:0px;
  3055. top:0px;
  3056. width:325px;
  3057. height:125px;
  3058. background:inherit;
  3059. background-color:rgba(255, 255, 255, 0);
  3060. border:none;
  3061. border-left:0px;
  3062. border-top:0px;
  3063. border-right:0px;
  3064. border-radius:0px;
  3065. border-bottom-right-radius:0px;
  3066. border-bottom-left-radius:0px;
  3067. -moz-box-shadow:none;
  3068. -webkit-box-shadow:none;
  3069. box-shadow:none;
  3070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3071. font-weight:400;
  3072. font-style:normal;
  3073. font-size:12px;
  3074. color:#555555;
  3075. line-height:25px;
  3076. }
  3077. #u152214 {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:928px;
  3081. top:180px;
  3082. width:325px;
  3083. height:125px;
  3084. display:flex;
  3085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3086. font-weight:400;
  3087. font-style:normal;
  3088. font-size:12px;
  3089. color:#555555;
  3090. line-height:25px;
  3091. }
  3092. #u152214 .text {
  3093. position:absolute;
  3094. align-self:flex-start;
  3095. padding:0px 0px 0px 0px;
  3096. box-sizing:border-box;
  3097. width:100%;
  3098. }
  3099. #u152214_text {
  3100. border-width:0px;
  3101. word-wrap:break-word;
  3102. text-transform:none;
  3103. }
  3104. #u152215_div {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:0px;
  3108. top:0px;
  3109. width:375px;
  3110. height:589px;
  3111. background:inherit;
  3112. background-color:rgba(255, 255, 255, 1);
  3113. border:none;
  3114. border-radius:0px;
  3115. -moz-box-shadow:none;
  3116. -webkit-box-shadow:none;
  3117. box-shadow:none;
  3118. }
  3119. #u152215 {
  3120. border-width:0px;
  3121. position:absolute;
  3122. left:908px;
  3123. top:335px;
  3124. width:375px;
  3125. height:589px;
  3126. display:flex;
  3127. }
  3128. #u152215 .text {
  3129. position:absolute;
  3130. align-self:center;
  3131. padding:2px 2px 2px 2px;
  3132. box-sizing:border-box;
  3133. width:100%;
  3134. }
  3135. #u152215_text {
  3136. border-width:0px;
  3137. word-wrap:break-word;
  3138. text-transform:none;
  3139. visibility:hidden;
  3140. }
  3141. #u152216_img {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:0px;
  3145. top:0px;
  3146. width:143px;
  3147. height:143px;
  3148. }
  3149. #u152216 {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:1024px;
  3153. top:405px;
  3154. width:143px;
  3155. height:143px;
  3156. display:flex;
  3157. }
  3158. #u152216 .text {
  3159. position:absolute;
  3160. align-self:center;
  3161. padding:2px 2px 2px 2px;
  3162. box-sizing:border-box;
  3163. width:100%;
  3164. }
  3165. #u152216_text {
  3166. border-width:0px;
  3167. word-wrap:break-word;
  3168. text-transform:none;
  3169. visibility:hidden;
  3170. }
  3171. #u152217_div {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:0px;
  3175. top:0px;
  3176. width:109px;
  3177. height:40px;
  3178. background:inherit;
  3179. background-color:rgba(255, 255, 255, 0);
  3180. border:none;
  3181. border-top:0px;
  3182. border-right:0px;
  3183. border-bottom:0px;
  3184. border-radius:0px;
  3185. border-top-left-radius:0px;
  3186. border-bottom-left-radius:0px;
  3187. -moz-box-shadow:none;
  3188. -webkit-box-shadow:none;
  3189. box-shadow:none;
  3190. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3191. font-weight:500;
  3192. font-style:normal;
  3193. font-size:14px;
  3194. line-height:30px;
  3195. }
  3196. #u152217 {
  3197. border-width:0px;
  3198. position:absolute;
  3199. left:1041px;
  3200. top:345px;
  3201. width:109px;
  3202. height:40px;
  3203. display:flex;
  3204. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3205. font-weight:500;
  3206. font-style:normal;
  3207. font-size:14px;
  3208. line-height:30px;
  3209. }
  3210. #u152217 .text {
  3211. position:absolute;
  3212. align-self:center;
  3213. padding:5px 10px 5px 0px;
  3214. box-sizing:border-box;
  3215. width:100%;
  3216. }
  3217. #u152217_text {
  3218. border-width:0px;
  3219. white-space:nowrap;
  3220. text-transform:none;
  3221. }
  3222. #u152218_div {
  3223. border-width:0px;
  3224. position:absolute;
  3225. left:0px;
  3226. top:0px;
  3227. width:187px;
  3228. height:14px;
  3229. background:inherit;
  3230. background-color:rgba(255, 255, 255, 0);
  3231. border:none;
  3232. border-top:0px;
  3233. border-right:0px;
  3234. border-bottom:0px;
  3235. border-radius:0px;
  3236. border-top-left-radius:0px;
  3237. border-bottom-left-radius:0px;
  3238. -moz-box-shadow:none;
  3239. -webkit-box-shadow:none;
  3240. box-shadow:none;
  3241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3242. font-weight:400;
  3243. font-style:normal;
  3244. font-size:10px;
  3245. }
  3246. #u152218 {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:1002px;
  3250. top:381px;
  3251. width:187px;
  3252. height:14px;
  3253. display:flex;
  3254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3255. font-weight:400;
  3256. font-style:normal;
  3257. font-size:10px;
  3258. }
  3259. #u152218 .text {
  3260. position:absolute;
  3261. align-self:center;
  3262. padding:0px 0px 0px 0px;
  3263. box-sizing:border-box;
  3264. width:100%;
  3265. }
  3266. #u152218_text {
  3267. border-width:0px;
  3268. white-space:nowrap;
  3269. text-transform:none;
  3270. }
  3271. #u152219 {
  3272. border-width:0px;
  3273. position:absolute;
  3274. left:0px;
  3275. top:0px;
  3276. width:0px;
  3277. height:0px;
  3278. }
  3279. #u152220_div {
  3280. border-width:0px;
  3281. position:absolute;
  3282. left:0px;
  3283. top:0px;
  3284. width:73px;
  3285. height:30px;
  3286. background:inherit;
  3287. background-color:rgba(255, 255, 255, 0);
  3288. border:none;
  3289. border-left:0px;
  3290. border-top:0px;
  3291. border-right:0px;
  3292. border-radius:0px;
  3293. border-bottom-right-radius:0px;
  3294. border-bottom-left-radius:0px;
  3295. -moz-box-shadow:none;
  3296. -webkit-box-shadow:none;
  3297. box-shadow:none;
  3298. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3299. font-weight:500;
  3300. font-style:normal;
  3301. font-size:18px;
  3302. line-height:30px;
  3303. }
  3304. #u152220 {
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:926px;
  3308. top:563px;
  3309. width:73px;
  3310. height:30px;
  3311. display:flex;
  3312. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3313. font-weight:500;
  3314. font-style:normal;
  3315. font-size:18px;
  3316. line-height:30px;
  3317. }
  3318. #u152220 .text {
  3319. position:absolute;
  3320. align-self:flex-start;
  3321. padding:0px 0px 0px 0px;
  3322. box-sizing:border-box;
  3323. width:100%;
  3324. }
  3325. #u152220_text {
  3326. border-width:0px;
  3327. white-space:nowrap;
  3328. text-transform:none;
  3329. }
  3330. #u152221_img {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:0px;
  3334. top:0px;
  3335. width:70px;
  3336. height:60px;
  3337. }
  3338. #u152221 {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:928px;
  3342. top:770px;
  3343. width:70px;
  3344. height:60px;
  3345. display:flex;
  3346. }
  3347. #u152221 .text {
  3348. position:absolute;
  3349. align-self:center;
  3350. padding:2px 2px 2px 2px;
  3351. box-sizing:border-box;
  3352. width:100%;
  3353. }
  3354. #u152221_text {
  3355. border-width:0px;
  3356. word-wrap:break-word;
  3357. text-transform:none;
  3358. visibility:hidden;
  3359. }
  3360. #u152222_img {
  3361. border-width:0px;
  3362. position:absolute;
  3363. left:0px;
  3364. top:0px;
  3365. width:70px;
  3366. height:60px;
  3367. }
  3368. #u152222 {
  3369. border-width:0px;
  3370. position:absolute;
  3371. left:1013px;
  3372. top:770px;
  3373. width:70px;
  3374. height:60px;
  3375. display:flex;
  3376. }
  3377. #u152222 .text {
  3378. position:absolute;
  3379. align-self:center;
  3380. padding:2px 2px 2px 2px;
  3381. box-sizing:border-box;
  3382. width:100%;
  3383. }
  3384. #u152222_text {
  3385. border-width:0px;
  3386. word-wrap:break-word;
  3387. text-transform:none;
  3388. visibility:hidden;
  3389. }
  3390. #u152223_img {
  3391. border-width:0px;
  3392. position:absolute;
  3393. left:0px;
  3394. top:0px;
  3395. width:70px;
  3396. height:60px;
  3397. }
  3398. #u152223 {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:1098px;
  3402. top:770px;
  3403. width:70px;
  3404. height:60px;
  3405. display:flex;
  3406. }
  3407. #u152223 .text {
  3408. position:absolute;
  3409. align-self:center;
  3410. padding:2px 2px 2px 2px;
  3411. box-sizing:border-box;
  3412. width:100%;
  3413. }
  3414. #u152223_text {
  3415. border-width:0px;
  3416. word-wrap:break-word;
  3417. text-transform:none;
  3418. visibility:hidden;
  3419. }
  3420. #u152224_img {
  3421. border-width:0px;
  3422. position:absolute;
  3423. left:0px;
  3424. top:0px;
  3425. width:70px;
  3426. height:60px;
  3427. }
  3428. #u152224 {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:1183px;
  3432. top:770px;
  3433. width:70px;
  3434. height:60px;
  3435. display:flex;
  3436. }
  3437. #u152224 .text {
  3438. position:absolute;
  3439. align-self:center;
  3440. padding:2px 2px 2px 2px;
  3441. box-sizing:border-box;
  3442. width:100%;
  3443. }
  3444. #u152224_text {
  3445. border-width:0px;
  3446. word-wrap:break-word;
  3447. text-transform:none;
  3448. visibility:hidden;
  3449. }
  3450. #u152225_img {
  3451. border-width:0px;
  3452. position:absolute;
  3453. left:0px;
  3454. top:0px;
  3455. width:70px;
  3456. height:60px;
  3457. }
  3458. #u152225 {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:928px;
  3462. top:844px;
  3463. width:70px;
  3464. height:60px;
  3465. display:flex;
  3466. }
  3467. #u152225 .text {
  3468. position:absolute;
  3469. align-self:center;
  3470. padding:2px 2px 2px 2px;
  3471. box-sizing:border-box;
  3472. width:100%;
  3473. }
  3474. #u152225_text {
  3475. border-width:0px;
  3476. word-wrap:break-word;
  3477. text-transform:none;
  3478. visibility:hidden;
  3479. }
  3480. #u152226_img {
  3481. border-width:0px;
  3482. position:absolute;
  3483. left:0px;
  3484. top:0px;
  3485. width:70px;
  3486. height:60px;
  3487. }
  3488. #u152226 {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:1013px;
  3492. top:844px;
  3493. width:70px;
  3494. height:60px;
  3495. display:flex;
  3496. }
  3497. #u152226 .text {
  3498. position:absolute;
  3499. align-self:center;
  3500. padding:2px 2px 2px 2px;
  3501. box-sizing:border-box;
  3502. width:100%;
  3503. }
  3504. #u152226_text {
  3505. border-width:0px;
  3506. word-wrap:break-word;
  3507. text-transform:none;
  3508. visibility:hidden;
  3509. }
  3510. #u152227_img {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:0px;
  3514. top:0px;
  3515. width:70px;
  3516. height:60px;
  3517. }
  3518. #u152227 {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:1098px;
  3522. top:844px;
  3523. width:70px;
  3524. height:60px;
  3525. display:flex;
  3526. }
  3527. #u152227 .text {
  3528. position:absolute;
  3529. align-self:center;
  3530. padding:2px 2px 2px 2px;
  3531. box-sizing:border-box;
  3532. width:100%;
  3533. }
  3534. #u152227_text {
  3535. border-width:0px;
  3536. word-wrap:break-word;
  3537. text-transform:none;
  3538. visibility:hidden;
  3539. }
  3540. #u152228 {
  3541. border-width:0px;
  3542. position:absolute;
  3543. left:0px;
  3544. top:0px;
  3545. width:0px;
  3546. height:0px;
  3547. }
  3548. #u152229_div {
  3549. border-width:0px;
  3550. position:absolute;
  3551. left:0px;
  3552. top:0px;
  3553. width:342px;
  3554. height:50px;
  3555. background:inherit;
  3556. background-color:rgba(242, 242, 242, 1);
  3557. border:none;
  3558. border-radius:5px;
  3559. -moz-box-shadow:none;
  3560. -webkit-box-shadow:none;
  3561. box-shadow:none;
  3562. }
  3563. #u152229 {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:924px;
  3567. top:601px;
  3568. width:342px;
  3569. height:50px;
  3570. display:flex;
  3571. }
  3572. #u152229 .text {
  3573. position:absolute;
  3574. align-self:center;
  3575. padding:2px 2px 2px 2px;
  3576. box-sizing:border-box;
  3577. width:100%;
  3578. }
  3579. #u152229_text {
  3580. border-width:0px;
  3581. word-wrap:break-word;
  3582. text-transform:none;
  3583. visibility:hidden;
  3584. }
  3585. #u152230_div {
  3586. border-width:0px;
  3587. position:absolute;
  3588. left:0px;
  3589. top:0px;
  3590. width:29px;
  3591. height:30px;
  3592. background:inherit;
  3593. background-color:rgba(255, 255, 255, 0);
  3594. border:none;
  3595. border-left:0px;
  3596. border-top:0px;
  3597. border-right:0px;
  3598. border-radius:0px;
  3599. border-bottom-right-radius:0px;
  3600. border-bottom-left-radius:0px;
  3601. -moz-box-shadow:none;
  3602. -webkit-box-shadow:none;
  3603. box-shadow:none;
  3604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3605. font-weight:400;
  3606. font-style:normal;
  3607. font-size:14px;
  3608. line-height:30px;
  3609. }
  3610. #u152230 {
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:945px;
  3614. top:611px;
  3615. width:29px;
  3616. height:30px;
  3617. display:flex;
  3618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3619. font-weight:400;
  3620. font-style:normal;
  3621. font-size:14px;
  3622. line-height:30px;
  3623. }
  3624. #u152230 .text {
  3625. position:absolute;
  3626. align-self:flex-start;
  3627. padding:0px 0px 0px 0px;
  3628. box-sizing:border-box;
  3629. width:100%;
  3630. }
  3631. #u152230_text {
  3632. border-width:0px;
  3633. white-space:nowrap;
  3634. text-transform:none;
  3635. }
  3636. #u152231_div {
  3637. border-width:0px;
  3638. position:absolute;
  3639. left:0px;
  3640. top:0px;
  3641. width:18px;
  3642. height:30px;
  3643. background:inherit;
  3644. background-color:rgba(255, 255, 255, 0);
  3645. border:none;
  3646. border-left:0px;
  3647. border-top:0px;
  3648. border-right:0px;
  3649. border-radius:0px;
  3650. border-bottom-right-radius:0px;
  3651. border-bottom-left-radius:0px;
  3652. -moz-box-shadow:none;
  3653. -webkit-box-shadow:none;
  3654. box-shadow:none;
  3655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3656. font-weight:400;
  3657. font-style:normal;
  3658. font-size:14px;
  3659. line-height:30px;
  3660. }
  3661. #u152231 {
  3662. border-width:0px;
  3663. position:absolute;
  3664. left:1233px;
  3665. top:611px;
  3666. width:18px;
  3667. height:30px;
  3668. display:flex;
  3669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3670. font-weight:400;
  3671. font-style:normal;
  3672. font-size:14px;
  3673. line-height:30px;
  3674. }
  3675. #u152231 .text {
  3676. position:absolute;
  3677. align-self:flex-start;
  3678. padding:0px 0px 0px 0px;
  3679. box-sizing:border-box;
  3680. width:100%;
  3681. }
  3682. #u152231_text {
  3683. border-width:0px;
  3684. white-space:nowrap;
  3685. text-transform:none;
  3686. }
  3687. #u152232 {
  3688. border-width:0px;
  3689. position:absolute;
  3690. left:0px;
  3691. top:0px;
  3692. width:0px;
  3693. height:0px;
  3694. }
  3695. #u152233_div {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:0px;
  3699. top:0px;
  3700. width:342px;
  3701. height:50px;
  3702. background:inherit;
  3703. background-color:rgba(242, 242, 242, 1);
  3704. border:none;
  3705. border-radius:5px;
  3706. -moz-box-shadow:none;
  3707. -webkit-box-shadow:none;
  3708. box-shadow:none;
  3709. }
  3710. #u152233 {
  3711. border-width:0px;
  3712. position:absolute;
  3713. left:924px;
  3714. top:652px;
  3715. width:342px;
  3716. height:50px;
  3717. display:flex;
  3718. }
  3719. #u152233 .text {
  3720. position:absolute;
  3721. align-self:center;
  3722. padding:2px 2px 2px 2px;
  3723. box-sizing:border-box;
  3724. width:100%;
  3725. }
  3726. #u152233_text {
  3727. border-width:0px;
  3728. word-wrap:break-word;
  3729. text-transform:none;
  3730. visibility:hidden;
  3731. }
  3732. #u152234_div {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:0px;
  3736. top:0px;
  3737. width:29px;
  3738. height:30px;
  3739. background:inherit;
  3740. background-color:rgba(255, 255, 255, 0);
  3741. border:none;
  3742. border-left:0px;
  3743. border-top:0px;
  3744. border-right:0px;
  3745. border-radius:0px;
  3746. border-bottom-right-radius:0px;
  3747. border-bottom-left-radius:0px;
  3748. -moz-box-shadow:none;
  3749. -webkit-box-shadow:none;
  3750. box-shadow:none;
  3751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3752. font-weight:400;
  3753. font-style:normal;
  3754. font-size:14px;
  3755. line-height:30px;
  3756. }
  3757. #u152234 {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:945px;
  3761. top:662px;
  3762. width:29px;
  3763. height:30px;
  3764. display:flex;
  3765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3766. font-weight:400;
  3767. font-style:normal;
  3768. font-size:14px;
  3769. line-height:30px;
  3770. }
  3771. #u152234 .text {
  3772. position:absolute;
  3773. align-self:flex-start;
  3774. padding:0px 0px 0px 0px;
  3775. box-sizing:border-box;
  3776. width:100%;
  3777. }
  3778. #u152234_text {
  3779. border-width:0px;
  3780. white-space:nowrap;
  3781. text-transform:none;
  3782. }
  3783. #u152235_div {
  3784. border-width:0px;
  3785. position:absolute;
  3786. left:0px;
  3787. top:0px;
  3788. width:18px;
  3789. height:30px;
  3790. background:inherit;
  3791. background-color:rgba(255, 255, 255, 0);
  3792. border:none;
  3793. border-left:0px;
  3794. border-top:0px;
  3795. border-right:0px;
  3796. border-radius:0px;
  3797. border-bottom-right-radius:0px;
  3798. border-bottom-left-radius:0px;
  3799. -moz-box-shadow:none;
  3800. -webkit-box-shadow:none;
  3801. box-shadow:none;
  3802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3803. font-weight:400;
  3804. font-style:normal;
  3805. font-size:14px;
  3806. line-height:30px;
  3807. }
  3808. #u152235 {
  3809. border-width:0px;
  3810. position:absolute;
  3811. left:1233px;
  3812. top:662px;
  3813. width:18px;
  3814. height:30px;
  3815. display:flex;
  3816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3817. font-weight:400;
  3818. font-style:normal;
  3819. font-size:14px;
  3820. line-height:30px;
  3821. }
  3822. #u152235 .text {
  3823. position:absolute;
  3824. align-self:flex-start;
  3825. padding:0px 0px 0px 0px;
  3826. box-sizing:border-box;
  3827. width:100%;
  3828. }
  3829. #u152235_text {
  3830. border-width:0px;
  3831. white-space:nowrap;
  3832. text-transform:none;
  3833. }
  3834. #u152236 {
  3835. border-width:0px;
  3836. position:absolute;
  3837. left:0px;
  3838. top:0px;
  3839. width:0px;
  3840. height:0px;
  3841. }
  3842. #u152237_div {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:0px;
  3846. top:0px;
  3847. width:342px;
  3848. height:50px;
  3849. background:inherit;
  3850. background-color:rgba(242, 242, 242, 1);
  3851. border:none;
  3852. border-radius:5px;
  3853. -moz-box-shadow:none;
  3854. -webkit-box-shadow:none;
  3855. box-shadow:none;
  3856. }
  3857. #u152237 {
  3858. border-width:0px;
  3859. position:absolute;
  3860. left:924px;
  3861. top:703px;
  3862. width:342px;
  3863. height:50px;
  3864. display:flex;
  3865. }
  3866. #u152237 .text {
  3867. position:absolute;
  3868. align-self:center;
  3869. padding:2px 2px 2px 2px;
  3870. box-sizing:border-box;
  3871. width:100%;
  3872. }
  3873. #u152237_text {
  3874. border-width:0px;
  3875. word-wrap:break-word;
  3876. text-transform:none;
  3877. visibility:hidden;
  3878. }
  3879. #u152238_div {
  3880. border-width:0px;
  3881. position:absolute;
  3882. left:0px;
  3883. top:0px;
  3884. width:29px;
  3885. height:30px;
  3886. background:inherit;
  3887. background-color:rgba(255, 255, 255, 0);
  3888. border:none;
  3889. border-left:0px;
  3890. border-top:0px;
  3891. border-right:0px;
  3892. border-radius:0px;
  3893. border-bottom-right-radius:0px;
  3894. border-bottom-left-radius:0px;
  3895. -moz-box-shadow:none;
  3896. -webkit-box-shadow:none;
  3897. box-shadow:none;
  3898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3899. font-weight:400;
  3900. font-style:normal;
  3901. font-size:14px;
  3902. line-height:30px;
  3903. }
  3904. #u152238 {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:945px;
  3908. top:713px;
  3909. width:29px;
  3910. height:30px;
  3911. display:flex;
  3912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3913. font-weight:400;
  3914. font-style:normal;
  3915. font-size:14px;
  3916. line-height:30px;
  3917. }
  3918. #u152238 .text {
  3919. position:absolute;
  3920. align-self:flex-start;
  3921. padding:0px 0px 0px 0px;
  3922. box-sizing:border-box;
  3923. width:100%;
  3924. }
  3925. #u152238_text {
  3926. border-width:0px;
  3927. white-space:nowrap;
  3928. text-transform:none;
  3929. }
  3930. #u152239_div {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:0px;
  3934. top:0px;
  3935. width:18px;
  3936. height:30px;
  3937. background:inherit;
  3938. background-color:rgba(255, 255, 255, 0);
  3939. border:none;
  3940. border-left:0px;
  3941. border-top:0px;
  3942. border-right:0px;
  3943. border-radius:0px;
  3944. border-bottom-right-radius:0px;
  3945. border-bottom-left-radius:0px;
  3946. -moz-box-shadow:none;
  3947. -webkit-box-shadow:none;
  3948. box-shadow:none;
  3949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3950. font-weight:400;
  3951. font-style:normal;
  3952. font-size:14px;
  3953. line-height:30px;
  3954. }
  3955. #u152239 {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:1233px;
  3959. top:713px;
  3960. width:18px;
  3961. height:30px;
  3962. display:flex;
  3963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3964. font-weight:400;
  3965. font-style:normal;
  3966. font-size:14px;
  3967. line-height:30px;
  3968. }
  3969. #u152239 .text {
  3970. position:absolute;
  3971. align-self:flex-start;
  3972. padding:0px 0px 0px 0px;
  3973. box-sizing:border-box;
  3974. width:100%;
  3975. }
  3976. #u152239_text {
  3977. border-width:0px;
  3978. white-space:nowrap;
  3979. text-transform:none;
  3980. }
  3981. #u152240_div {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:0px;
  3985. top:0px;
  3986. width:29px;
  3987. height:30px;
  3988. background:inherit;
  3989. background-color:rgba(255, 255, 255, 0);
  3990. border:none;
  3991. border-left:0px;
  3992. border-top:0px;
  3993. border-right:0px;
  3994. border-radius:0px;
  3995. border-bottom-right-radius:0px;
  3996. border-bottom-left-radius:0px;
  3997. -moz-box-shadow:none;
  3998. -webkit-box-shadow:none;
  3999. box-shadow:none;
  4000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4001. font-weight:400;
  4002. font-style:normal;
  4003. font-size:14px;
  4004. color:#298FFF;
  4005. line-height:30px;
  4006. }
  4007. #u152240 {
  4008. border-width:0px;
  4009. position:absolute;
  4010. left:1242px;
  4011. top:563px;
  4012. width:29px;
  4013. height:30px;
  4014. display:flex;
  4015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4016. font-weight:400;
  4017. font-style:normal;
  4018. font-size:14px;
  4019. color:#298FFF;
  4020. line-height:30px;
  4021. }
  4022. #u152240 .text {
  4023. position:absolute;
  4024. align-self:flex-start;
  4025. padding:0px 0px 0px 0px;
  4026. box-sizing:border-box;
  4027. width:100%;
  4028. }
  4029. #u152240_text {
  4030. border-width:0px;
  4031. white-space:nowrap;
  4032. text-transform:none;
  4033. }
  4034. #u152241_div {
  4035. border-width:0px;
  4036. position:absolute;
  4037. left:0px;
  4038. top:0px;
  4039. width:325px;
  4040. height:50px;
  4041. background:inherit;
  4042. background-color:rgba(255, 255, 255, 0);
  4043. border:none;
  4044. border-left:0px;
  4045. border-top:0px;
  4046. border-right:0px;
  4047. border-radius:0px;
  4048. border-bottom-right-radius:0px;
  4049. border-bottom-left-radius:0px;
  4050. -moz-box-shadow:none;
  4051. -webkit-box-shadow:none;
  4052. box-shadow:none;
  4053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4054. font-weight:400;
  4055. font-style:normal;
  4056. font-size:12px;
  4057. color:#D9001B;
  4058. line-height:25px;
  4059. }
  4060. #u152241 {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:50px;
  4064. top:899px;
  4065. width:325px;
  4066. height:50px;
  4067. display:flex;
  4068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4069. font-weight:400;
  4070. font-style:normal;
  4071. font-size:12px;
  4072. color:#D9001B;
  4073. line-height:25px;
  4074. }
  4075. #u152241 .text {
  4076. position:absolute;
  4077. align-self:flex-start;
  4078. padding:0px 0px 0px 0px;
  4079. box-sizing:border-box;
  4080. width:100%;
  4081. }
  4082. #u152241_text {
  4083. border-width:0px;
  4084. word-wrap:break-word;
  4085. text-transform:none;
  4086. }
  4087. #u152243_img {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:0px;
  4091. top:0px;
  4092. width:433px;
  4093. height:865px;
  4094. }
  4095. #u152243 {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:1346px;
  4099. top:0px;
  4100. width:433px;
  4101. height:865px;
  4102. display:flex;
  4103. }
  4104. #u152243 .text {
  4105. position:absolute;
  4106. align-self:center;
  4107. padding:2px 2px 2px 2px;
  4108. box-sizing:border-box;
  4109. width:100%;
  4110. }
  4111. #u152243_text {
  4112. border-width:0px;
  4113. word-wrap:break-word;
  4114. text-transform:none;
  4115. visibility:hidden;
  4116. }
  4117. #u152244_div {
  4118. border-width:0px;
  4119. position:absolute;
  4120. left:0px;
  4121. top:0px;
  4122. width:375px;
  4123. height:40px;
  4124. background:inherit;
  4125. background-color:rgba(255, 255, 255, 1);
  4126. box-sizing:border-box;
  4127. border-width:1px;
  4128. border-style:solid;
  4129. border-color:rgba(215, 215, 215, 1);
  4130. border-left:0px;
  4131. border-top:0px;
  4132. border-right:0px;
  4133. border-radius:0px;
  4134. border-bottom-right-radius:0px;
  4135. border-bottom-left-radius:0px;
  4136. -moz-box-shadow:none;
  4137. -webkit-box-shadow:none;
  4138. box-shadow:none;
  4139. }
  4140. #u152244 {
  4141. border-width:0px;
  4142. position:absolute;
  4143. left:1375px;
  4144. top:67px;
  4145. width:375px;
  4146. height:40px;
  4147. display:flex;
  4148. }
  4149. #u152244 .text {
  4150. position:absolute;
  4151. align-self:center;
  4152. padding:2px 2px 2px 2px;
  4153. box-sizing:border-box;
  4154. width:100%;
  4155. }
  4156. #u152244_text {
  4157. border-width:0px;
  4158. word-wrap:break-word;
  4159. text-transform:none;
  4160. visibility:hidden;
  4161. }
  4162. #u152245 {
  4163. border-width:0px;
  4164. position:absolute;
  4165. left:0px;
  4166. top:0px;
  4167. width:0px;
  4168. height:0px;
  4169. }
  4170. #u152246_div {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:0px;
  4174. top:0px;
  4175. width:88px;
  4176. height:32px;
  4177. background:inherit;
  4178. background-color:rgba(255, 255, 255, 1);
  4179. box-sizing:border-box;
  4180. border-width:1px;
  4181. border-style:solid;
  4182. border-color:rgba(242, 242, 242, 1);
  4183. border-radius:33px;
  4184. -moz-box-shadow:none;
  4185. -webkit-box-shadow:none;
  4186. box-shadow:none;
  4187. }
  4188. #u152246 {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:1655px;
  4192. top:71px;
  4193. width:88px;
  4194. height:32px;
  4195. display:flex;
  4196. }
  4197. #u152246 .text {
  4198. position:absolute;
  4199. align-self:center;
  4200. padding:2px 2px 2px 2px;
  4201. box-sizing:border-box;
  4202. width:100%;
  4203. }
  4204. #u152246_text {
  4205. border-width:0px;
  4206. word-wrap:break-word;
  4207. text-transform:none;
  4208. visibility:hidden;
  4209. }
  4210. #u152247 {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:0px;
  4214. top:0px;
  4215. width:0px;
  4216. height:0px;
  4217. }
  4218. #u152248_img {
  4219. border-width:0px;
  4220. position:absolute;
  4221. left:0px;
  4222. top:0px;
  4223. width:18px;
  4224. height:18px;
  4225. }
  4226. #u152248 {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:1718px;
  4230. top:78px;
  4231. width:18px;
  4232. height:18px;
  4233. display:flex;
  4234. }
  4235. #u152248 .text {
  4236. position:absolute;
  4237. align-self:center;
  4238. padding:2px 2px 2px 2px;
  4239. box-sizing:border-box;
  4240. width:100%;
  4241. }
  4242. #u152248_text {
  4243. border-width:0px;
  4244. word-wrap:break-word;
  4245. text-transform:none;
  4246. visibility:hidden;
  4247. }
  4248. #u152249_img {
  4249. border-width:0px;
  4250. position:absolute;
  4251. left:0px;
  4252. top:0px;
  4253. width:6px;
  4254. height:6px;
  4255. }
  4256. #u152249 {
  4257. border-width:0px;
  4258. position:absolute;
  4259. left:1724px;
  4260. top:84px;
  4261. width:6px;
  4262. height:6px;
  4263. display:flex;
  4264. }
  4265. #u152249 .text {
  4266. position:absolute;
  4267. align-self:center;
  4268. padding:2px 2px 2px 2px;
  4269. box-sizing:border-box;
  4270. width:100%;
  4271. }
  4272. #u152249_text {
  4273. border-width:0px;
  4274. word-wrap:break-word;
  4275. text-transform:none;
  4276. visibility:hidden;
  4277. }
  4278. #u152250 {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:0px;
  4282. top:0px;
  4283. width:0px;
  4284. height:0px;
  4285. }
  4286. #u152251_img {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:0px;
  4290. top:0px;
  4291. width:5px;
  4292. height:5px;
  4293. }
  4294. #u152251 {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:1669px;
  4298. top:85px;
  4299. width:5px;
  4300. height:5px;
  4301. display:flex;
  4302. }
  4303. #u152251 .text {
  4304. position:absolute;
  4305. align-self:center;
  4306. padding:2px 2px 2px 2px;
  4307. box-sizing:border-box;
  4308. width:100%;
  4309. }
  4310. #u152251_text {
  4311. border-width:0px;
  4312. word-wrap:break-word;
  4313. text-transform:none;
  4314. visibility:hidden;
  4315. }
  4316. #u152252_img {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:0px;
  4320. top:0px;
  4321. width:5px;
  4322. height:5px;
  4323. }
  4324. #u152252 {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:1685px;
  4328. top:85px;
  4329. width:5px;
  4330. height:5px;
  4331. display:flex;
  4332. }
  4333. #u152252 .text {
  4334. position:absolute;
  4335. align-self:center;
  4336. padding:2px 2px 2px 2px;
  4337. box-sizing:border-box;
  4338. width:100%;
  4339. }
  4340. #u152252_text {
  4341. border-width:0px;
  4342. word-wrap:break-word;
  4343. text-transform:none;
  4344. visibility:hidden;
  4345. }
  4346. #u152253_img {
  4347. border-width:0px;
  4348. position:absolute;
  4349. left:0px;
  4350. top:0px;
  4351. width:7px;
  4352. height:7px;
  4353. }
  4354. #u152253 {
  4355. border-width:0px;
  4356. position:absolute;
  4357. left:1676px;
  4358. top:84px;
  4359. width:7px;
  4360. height:7px;
  4361. display:flex;
  4362. }
  4363. #u152253 .text {
  4364. position:absolute;
  4365. align-self:center;
  4366. padding:2px 2px 2px 2px;
  4367. box-sizing:border-box;
  4368. width:100%;
  4369. }
  4370. #u152253_text {
  4371. border-width:0px;
  4372. word-wrap:break-word;
  4373. text-transform:none;
  4374. visibility:hidden;
  4375. }
  4376. #u152254_img {
  4377. border-width:0px;
  4378. position:absolute;
  4379. left:0px;
  4380. top:0px;
  4381. width:19px;
  4382. height:2px;
  4383. }
  4384. #u152254 {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:1693px;
  4388. top:87px;
  4389. width:18px;
  4390. height:1px;
  4391. display:flex;
  4392. -webkit-transform:rotate(90deg);
  4393. -moz-transform:rotate(90deg);
  4394. -ms-transform:rotate(90deg);
  4395. transform:rotate(90deg);
  4396. }
  4397. #u152254 .text {
  4398. position:absolute;
  4399. align-self:center;
  4400. padding:2px 2px 2px 2px;
  4401. box-sizing:border-box;
  4402. width:100%;
  4403. }
  4404. #u152254_text {
  4405. border-width:0px;
  4406. word-wrap:break-word;
  4407. text-transform:none;
  4408. visibility:hidden;
  4409. }
  4410. #u152255_img {
  4411. border-width:0px;
  4412. position:absolute;
  4413. left:0px;
  4414. top:0px;
  4415. width:375px;
  4416. height:44px;
  4417. }
  4418. #u152255 {
  4419. border-width:0px;
  4420. position:absolute;
  4421. left:1375px;
  4422. top:24px;
  4423. width:375px;
  4424. height:44px;
  4425. display:flex;
  4426. }
  4427. #u152255 .text {
  4428. position:absolute;
  4429. align-self:center;
  4430. padding:2px 2px 2px 2px;
  4431. box-sizing:border-box;
  4432. width:100%;
  4433. }
  4434. #u152255_text {
  4435. border-width:0px;
  4436. word-wrap:break-word;
  4437. text-transform:none;
  4438. visibility:hidden;
  4439. }
  4440. #u152256_div {
  4441. border-width:0px;
  4442. position:absolute;
  4443. left:0px;
  4444. top:0px;
  4445. width:375px;
  4446. height:50px;
  4447. background:inherit;
  4448. background-color:rgba(255, 255, 255, 1);
  4449. box-sizing:border-box;
  4450. border-width:1px;
  4451. border-style:solid;
  4452. border-color:rgba(242, 242, 242, 1);
  4453. border-radius:26px;
  4454. border-top-left-radius:0px;
  4455. border-top-right-radius:0px;
  4456. -moz-box-shadow:none;
  4457. -webkit-box-shadow:none;
  4458. box-shadow:none;
  4459. }
  4460. #u152256 {
  4461. border-width:0px;
  4462. position:absolute;
  4463. left:1375px;
  4464. top:788px;
  4465. width:375px;
  4466. height:50px;
  4467. display:flex;
  4468. }
  4469. #u152256 .text {
  4470. position:absolute;
  4471. align-self:center;
  4472. padding:2px 2px 2px 2px;
  4473. box-sizing:border-box;
  4474. width:100%;
  4475. }
  4476. #u152256_text {
  4477. border-width:0px;
  4478. word-wrap:break-word;
  4479. text-transform:none;
  4480. visibility:hidden;
  4481. }
  4482. #u152257 {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:0px;
  4486. top:0px;
  4487. width:0px;
  4488. height:0px;
  4489. }
  4490. #u152258_img {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:0px;
  4494. top:0px;
  4495. width:24px;
  4496. height:24px;
  4497. }
  4498. #u152258 {
  4499. border-width:0px;
  4500. position:absolute;
  4501. left:1415px;
  4502. top:792px;
  4503. width:24px;
  4504. height:24px;
  4505. display:flex;
  4506. font-size:8px;
  4507. }
  4508. #u152258 .text {
  4509. position:absolute;
  4510. align-self:center;
  4511. padding:2px 2px 2px 2px;
  4512. box-sizing:border-box;
  4513. width:100%;
  4514. }
  4515. #u152258_text {
  4516. border-width:0px;
  4517. word-wrap:break-word;
  4518. text-transform:none;
  4519. }
  4520. #u152259_div {
  4521. border-width:0px;
  4522. position:absolute;
  4523. left:0px;
  4524. top:0px;
  4525. width:25px;
  4526. height:17px;
  4527. background:inherit;
  4528. background-color:rgba(255, 255, 255, 0);
  4529. border:none;
  4530. border-radius:0px;
  4531. -moz-box-shadow:none;
  4532. -webkit-box-shadow:none;
  4533. box-shadow:none;
  4534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4535. font-weight:400;
  4536. font-style:normal;
  4537. font-size:12px;
  4538. }
  4539. #u152259 {
  4540. border-width:0px;
  4541. position:absolute;
  4542. left:1415px;
  4543. top:817px;
  4544. width:25px;
  4545. height:17px;
  4546. display:flex;
  4547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4548. font-weight:400;
  4549. font-style:normal;
  4550. font-size:12px;
  4551. }
  4552. #u152259 .text {
  4553. position:absolute;
  4554. align-self:flex-start;
  4555. padding:0px 0px 0px 0px;
  4556. box-sizing:border-box;
  4557. width:100%;
  4558. }
  4559. #u152259_text {
  4560. border-width:0px;
  4561. white-space:nowrap;
  4562. text-transform:none;
  4563. }
  4564. #u152260 {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:0px;
  4568. top:0px;
  4569. width:0px;
  4570. height:0px;
  4571. }
  4572. #u152261_img {
  4573. border-width:0px;
  4574. position:absolute;
  4575. left:0px;
  4576. top:0px;
  4577. width:24px;
  4578. height:24px;
  4579. }
  4580. #u152261 {
  4581. border-width:0px;
  4582. position:absolute;
  4583. left:1685px;
  4584. top:794px;
  4585. width:24px;
  4586. height:24px;
  4587. display:flex;
  4588. font-size:8px;
  4589. }
  4590. #u152261 .text {
  4591. position:absolute;
  4592. align-self:center;
  4593. padding:2px 2px 2px 2px;
  4594. box-sizing:border-box;
  4595. width:100%;
  4596. }
  4597. #u152261_text {
  4598. border-width:0px;
  4599. word-wrap:break-word;
  4600. text-transform:none;
  4601. }
  4602. #u152262_div {
  4603. border-width:0px;
  4604. position:absolute;
  4605. left:0px;
  4606. top:0px;
  4607. width:25px;
  4608. height:17px;
  4609. background:inherit;
  4610. background-color:rgba(255, 255, 255, 0);
  4611. border:none;
  4612. border-radius:0px;
  4613. -moz-box-shadow:none;
  4614. -webkit-box-shadow:none;
  4615. box-shadow:none;
  4616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4617. font-weight:400;
  4618. font-style:normal;
  4619. font-size:12px;
  4620. }
  4621. #u152262 {
  4622. border-width:0px;
  4623. position:absolute;
  4624. left:1685px;
  4625. top:819px;
  4626. width:25px;
  4627. height:17px;
  4628. display:flex;
  4629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4630. font-weight:400;
  4631. font-style:normal;
  4632. font-size:12px;
  4633. }
  4634. #u152262 .text {
  4635. position:absolute;
  4636. align-self:flex-start;
  4637. padding:0px 0px 0px 0px;
  4638. box-sizing:border-box;
  4639. width:100%;
  4640. }
  4641. #u152262_text {
  4642. border-width:0px;
  4643. white-space:nowrap;
  4644. text-transform:none;
  4645. }
  4646. #u152263_div {
  4647. border-width:0px;
  4648. position:absolute;
  4649. left:0px;
  4650. top:0px;
  4651. width:375px;
  4652. height:681px;
  4653. background:inherit;
  4654. background-color:rgba(242, 242, 242, 0.462745098039216);
  4655. border:none;
  4656. border-radius:0px;
  4657. -moz-box-shadow:none;
  4658. -webkit-box-shadow:none;
  4659. box-shadow:none;
  4660. }
  4661. #u152263 {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:1375px;
  4665. top:107px;
  4666. width:375px;
  4667. height:681px;
  4668. display:flex;
  4669. }
  4670. #u152263 .text {
  4671. position:absolute;
  4672. align-self:center;
  4673. padding:2px 2px 2px 2px;
  4674. box-sizing:border-box;
  4675. width:100%;
  4676. }
  4677. #u152263_text {
  4678. border-width:0px;
  4679. word-wrap:break-word;
  4680. text-transform:none;
  4681. visibility:hidden;
  4682. }
  4683. #u152264 {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:0px;
  4687. top:0px;
  4688. width:0px;
  4689. height:0px;
  4690. }
  4691. #u152265_img {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:0px;
  4695. top:0px;
  4696. width:24px;
  4697. height:24px;
  4698. }
  4699. #u152265 {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:1597px;
  4703. top:792px;
  4704. width:24px;
  4705. height:24px;
  4706. display:flex;
  4707. font-size:8px;
  4708. }
  4709. #u152265 .text {
  4710. position:absolute;
  4711. align-self:center;
  4712. padding:2px 2px 2px 2px;
  4713. box-sizing:border-box;
  4714. width:100%;
  4715. }
  4716. #u152265_text {
  4717. border-width:0px;
  4718. word-wrap:break-word;
  4719. text-transform:none;
  4720. }
  4721. #u152266_div {
  4722. border-width:0px;
  4723. position:absolute;
  4724. left:0px;
  4725. top:0px;
  4726. width:37px;
  4727. height:17px;
  4728. background:inherit;
  4729. background-color:rgba(255, 255, 255, 0);
  4730. border:none;
  4731. border-radius:0px;
  4732. -moz-box-shadow:none;
  4733. -webkit-box-shadow:none;
  4734. box-shadow:none;
  4735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4736. font-weight:400;
  4737. font-style:normal;
  4738. font-size:12px;
  4739. }
  4740. #u152266 {
  4741. border-width:0px;
  4742. position:absolute;
  4743. left:1591px;
  4744. top:817px;
  4745. width:37px;
  4746. height:17px;
  4747. display:flex;
  4748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4749. font-weight:400;
  4750. font-style:normal;
  4751. font-size:12px;
  4752. }
  4753. #u152266 .text {
  4754. position:absolute;
  4755. align-self:flex-start;
  4756. padding:0px 0px 0px 0px;
  4757. box-sizing:border-box;
  4758. width:100%;
  4759. }
  4760. #u152266_text {
  4761. border-width:0px;
  4762. white-space:nowrap;
  4763. text-transform:none;
  4764. }
  4765. #u152267 {
  4766. border-width:0px;
  4767. position:absolute;
  4768. left:0px;
  4769. top:0px;
  4770. width:0px;
  4771. height:0px;
  4772. }
  4773. #u152268_img {
  4774. border-width:0px;
  4775. position:absolute;
  4776. left:0px;
  4777. top:0px;
  4778. width:24px;
  4779. height:24px;
  4780. }
  4781. #u152268 {
  4782. border-width:0px;
  4783. position:absolute;
  4784. left:1503px;
  4785. top:792px;
  4786. width:24px;
  4787. height:24px;
  4788. display:flex;
  4789. font-size:8px;
  4790. }
  4791. #u152268 .text {
  4792. position:absolute;
  4793. align-self:center;
  4794. padding:2px 2px 2px 2px;
  4795. box-sizing:border-box;
  4796. width:100%;
  4797. }
  4798. #u152268_text {
  4799. border-width:0px;
  4800. word-wrap:break-word;
  4801. text-transform:none;
  4802. }
  4803. #u152269_div {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:0px;
  4807. top:0px;
  4808. width:37px;
  4809. height:17px;
  4810. background:inherit;
  4811. background-color:rgba(255, 255, 255, 0);
  4812. border:none;
  4813. border-radius:0px;
  4814. -moz-box-shadow:none;
  4815. -webkit-box-shadow:none;
  4816. box-shadow:none;
  4817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4818. font-weight:400;
  4819. font-style:normal;
  4820. font-size:12px;
  4821. }
  4822. #u152269 {
  4823. border-width:0px;
  4824. position:absolute;
  4825. left:1497px;
  4826. top:817px;
  4827. width:37px;
  4828. height:17px;
  4829. display:flex;
  4830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4831. font-weight:400;
  4832. font-style:normal;
  4833. font-size:12px;
  4834. }
  4835. #u152269 .text {
  4836. position:absolute;
  4837. align-self:flex-start;
  4838. padding:0px 0px 0px 0px;
  4839. box-sizing:border-box;
  4840. width:100%;
  4841. }
  4842. #u152269_text {
  4843. border-width:0px;
  4844. white-space:nowrap;
  4845. text-transform:none;
  4846. }
  4847. #u152270_div {
  4848. border-width:0px;
  4849. position:absolute;
  4850. left:0px;
  4851. top:0px;
  4852. width:375px;
  4853. height:735px;
  4854. background:inherit;
  4855. background-color:rgba(242, 242, 242, 1);
  4856. border:none;
  4857. border-top:0px;
  4858. border-radius:25px;
  4859. border-top-left-radius:0px;
  4860. border-top-right-radius:0px;
  4861. -moz-box-shadow:none;
  4862. -webkit-box-shadow:none;
  4863. box-shadow:none;
  4864. }
  4865. #u152270 {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:1375px;
  4869. top:105px;
  4870. width:375px;
  4871. height:735px;
  4872. display:flex;
  4873. }
  4874. #u152270 .text {
  4875. position:absolute;
  4876. align-self:center;
  4877. padding:2px 2px 2px 2px;
  4878. box-sizing:border-box;
  4879. width:100%;
  4880. }
  4881. #u152270_text {
  4882. border-width:0px;
  4883. word-wrap:break-word;
  4884. text-transform:none;
  4885. visibility:hidden;
  4886. }
  4887. #u152271_div {
  4888. border-width:0px;
  4889. position:absolute;
  4890. left:0px;
  4891. top:0px;
  4892. width:375px;
  4893. height:735px;
  4894. background:inherit;
  4895. background-color:rgba(242, 242, 242, 1);
  4896. border:none;
  4897. border-top:0px;
  4898. border-radius:22px;
  4899. border-top-left-radius:0px;
  4900. border-top-right-radius:0px;
  4901. -moz-box-shadow:none;
  4902. -webkit-box-shadow:none;
  4903. box-shadow:none;
  4904. }
  4905. #u152271 {
  4906. border-width:0px;
  4907. position:absolute;
  4908. left:1375px;
  4909. top:105px;
  4910. width:375px;
  4911. height:735px;
  4912. display:flex;
  4913. }
  4914. #u152271 .text {
  4915. position:absolute;
  4916. align-self:center;
  4917. padding:2px 2px 2px 2px;
  4918. box-sizing:border-box;
  4919. width:100%;
  4920. }
  4921. #u152271_text {
  4922. border-width:0px;
  4923. word-wrap:break-word;
  4924. text-transform:none;
  4925. visibility:hidden;
  4926. }
  4927. #u152272_img {
  4928. border-width:0px;
  4929. position:absolute;
  4930. left:0px;
  4931. top:0px;
  4932. width:11px;
  4933. height:18px;
  4934. }
  4935. #u152272 {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:1388px;
  4939. top:79px;
  4940. width:11px;
  4941. height:18px;
  4942. display:flex;
  4943. }
  4944. #u152272 .text {
  4945. position:absolute;
  4946. align-self:center;
  4947. padding:2px 2px 2px 2px;
  4948. box-sizing:border-box;
  4949. width:100%;
  4950. }
  4951. #u152272_text {
  4952. border-width:0px;
  4953. word-wrap:break-word;
  4954. text-transform:none;
  4955. visibility:hidden;
  4956. }
  4957. #u152273_div {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:0px;
  4961. top:0px;
  4962. width:109px;
  4963. height:30px;
  4964. background:inherit;
  4965. background-color:rgba(255, 255, 255, 0);
  4966. border:none;
  4967. border-left:0px;
  4968. border-top:0px;
  4969. border-right:0px;
  4970. border-radius:0px;
  4971. border-bottom-right-radius:0px;
  4972. border-bottom-left-radius:0px;
  4973. -moz-box-shadow:none;
  4974. -webkit-box-shadow:none;
  4975. box-shadow:none;
  4976. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4977. font-weight:500;
  4978. font-style:normal;
  4979. font-size:18px;
  4980. line-height:30px;
  4981. }
  4982. #u152273 {
  4983. border-width:0px;
  4984. position:absolute;
  4985. left:1417px;
  4986. top:73px;
  4987. width:109px;
  4988. height:30px;
  4989. display:flex;
  4990. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4991. font-weight:500;
  4992. font-style:normal;
  4993. font-size:18px;
  4994. line-height:30px;
  4995. }
  4996. #u152273 .text {
  4997. position:absolute;
  4998. align-self:flex-start;
  4999. padding:0px 0px 0px 0px;
  5000. box-sizing:border-box;
  5001. width:100%;
  5002. }
  5003. #u152273_text {
  5004. border-width:0px;
  5005. white-space:nowrap;
  5006. text-transform:none;
  5007. }
  5008. #u152274 {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:0px;
  5012. top:0px;
  5013. width:0px;
  5014. height:0px;
  5015. }
  5016. #u152275_img {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:0px;
  5020. top:0px;
  5021. width:375px;
  5022. height:220px;
  5023. }
  5024. #u152275 {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:1375px;
  5028. top:105px;
  5029. width:375px;
  5030. height:220px;
  5031. display:flex;
  5032. }
  5033. #u152275 .text {
  5034. position:absolute;
  5035. align-self:center;
  5036. padding:2px 2px 2px 2px;
  5037. box-sizing:border-box;
  5038. width:100%;
  5039. }
  5040. #u152275_text {
  5041. border-width:0px;
  5042. word-wrap:break-word;
  5043. text-transform:none;
  5044. visibility:hidden;
  5045. }
  5046. #u152276_div {
  5047. border-width:0px;
  5048. position:absolute;
  5049. left:0px;
  5050. top:0px;
  5051. width:325px;
  5052. height:25px;
  5053. background:inherit;
  5054. background-color:rgba(255, 255, 255, 0);
  5055. border:none;
  5056. border-left:0px;
  5057. border-top:0px;
  5058. border-right:0px;
  5059. border-radius:0px;
  5060. border-bottom-right-radius:0px;
  5061. border-bottom-left-radius:0px;
  5062. -moz-box-shadow:none;
  5063. -webkit-box-shadow:none;
  5064. box-shadow:none;
  5065. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5066. font-weight:500;
  5067. font-style:normal;
  5068. font-size:18px;
  5069. line-height:25px;
  5070. }
  5071. #u152276 {
  5072. border-width:0px;
  5073. position:absolute;
  5074. left:1396px;
  5075. top:120px;
  5076. width:325px;
  5077. height:25px;
  5078. display:flex;
  5079. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5080. font-weight:500;
  5081. font-style:normal;
  5082. font-size:18px;
  5083. line-height:25px;
  5084. }
  5085. #u152276 .text {
  5086. position:absolute;
  5087. align-self:flex-start;
  5088. padding:0px 0px 0px 0px;
  5089. box-sizing:border-box;
  5090. width:100%;
  5091. }
  5092. #u152276_text {
  5093. border-width:0px;
  5094. word-wrap:break-word;
  5095. text-transform:none;
  5096. }
  5097. #u152277_div {
  5098. border-width:0px;
  5099. position:absolute;
  5100. left:0px;
  5101. top:0px;
  5102. width:37px;
  5103. height:24px;
  5104. background:inherit;
  5105. background-color:rgba(255, 255, 255, 0);
  5106. border:none;
  5107. border-left:0px;
  5108. border-top:0px;
  5109. border-right:0px;
  5110. border-radius:0px;
  5111. border-bottom-right-radius:0px;
  5112. border-bottom-left-radius:0px;
  5113. -moz-box-shadow:none;
  5114. -webkit-box-shadow:none;
  5115. box-shadow:none;
  5116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5117. font-weight:400;
  5118. font-style:normal;
  5119. font-size:12px;
  5120. color:#D9001B;
  5121. text-align:right;
  5122. line-height:24px;
  5123. }
  5124. #u152277 {
  5125. border-width:0px;
  5126. position:absolute;
  5127. left:1703px;
  5128. top:121px;
  5129. width:37px;
  5130. height:24px;
  5131. display:flex;
  5132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5133. font-weight:400;
  5134. font-style:normal;
  5135. font-size:12px;
  5136. color:#D9001B;
  5137. text-align:right;
  5138. line-height:24px;
  5139. }
  5140. #u152277 .text {
  5141. position:absolute;
  5142. align-self:flex-start;
  5143. padding:0px 0px 0px 0px;
  5144. box-sizing:border-box;
  5145. width:100%;
  5146. }
  5147. #u152277_text {
  5148. border-width:0px;
  5149. white-space:nowrap;
  5150. text-transform:none;
  5151. }
  5152. #u152278_div {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:0px;
  5156. top:0px;
  5157. width:117px;
  5158. height:25px;
  5159. background:inherit;
  5160. background-color:rgba(255, 255, 255, 0);
  5161. border:none;
  5162. border-radius:0px;
  5163. -moz-box-shadow:none;
  5164. -webkit-box-shadow:none;
  5165. box-shadow:none;
  5166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5167. font-weight:400;
  5168. font-style:normal;
  5169. font-size:12px;
  5170. color:#7F7F7F;
  5171. line-height:25px;
  5172. }
  5173. #u152278 {
  5174. border-width:0px;
  5175. position:absolute;
  5176. left:1396px;
  5177. top:145px;
  5178. width:117px;
  5179. height:25px;
  5180. display:flex;
  5181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5182. font-weight:400;
  5183. font-style:normal;
  5184. font-size:12px;
  5185. color:#7F7F7F;
  5186. line-height:25px;
  5187. }
  5188. #u152278 .text {
  5189. position:absolute;
  5190. align-self:flex-start;
  5191. padding:0px 0px 0px 0px;
  5192. box-sizing:border-box;
  5193. width:100%;
  5194. }
  5195. #u152278_text {
  5196. border-width:0px;
  5197. white-space:nowrap;
  5198. text-transform:none;
  5199. }
  5200. #u152279_div {
  5201. border-width:0px;
  5202. position:absolute;
  5203. left:0px;
  5204. top:0px;
  5205. width:325px;
  5206. height:125px;
  5207. background:inherit;
  5208. background-color:rgba(255, 255, 255, 0);
  5209. border:none;
  5210. border-left:0px;
  5211. border-top:0px;
  5212. border-right:0px;
  5213. border-radius:0px;
  5214. border-bottom-right-radius:0px;
  5215. border-bottom-left-radius:0px;
  5216. -moz-box-shadow:none;
  5217. -webkit-box-shadow:none;
  5218. box-shadow:none;
  5219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5220. font-weight:400;
  5221. font-style:normal;
  5222. font-size:12px;
  5223. color:#555555;
  5224. line-height:25px;
  5225. }
  5226. #u152279 {
  5227. border-width:0px;
  5228. position:absolute;
  5229. left:1396px;
  5230. top:180px;
  5231. width:325px;
  5232. height:125px;
  5233. display:flex;
  5234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5235. font-weight:400;
  5236. font-style:normal;
  5237. font-size:12px;
  5238. color:#555555;
  5239. line-height:25px;
  5240. }
  5241. #u152279 .text {
  5242. position:absolute;
  5243. align-self:flex-start;
  5244. padding:0px 0px 0px 0px;
  5245. box-sizing:border-box;
  5246. width:100%;
  5247. }
  5248. #u152279_text {
  5249. border-width:0px;
  5250. word-wrap:break-word;
  5251. text-transform:none;
  5252. }
  5253. #u152280_div {
  5254. border-width:0px;
  5255. position:absolute;
  5256. left:0px;
  5257. top:0px;
  5258. width:375px;
  5259. height:505px;
  5260. background:inherit;
  5261. background-color:rgba(255, 255, 255, 1);
  5262. border:none;
  5263. border-top:0px;
  5264. border-radius:24px;
  5265. border-top-left-radius:0px;
  5266. border-top-right-radius:0px;
  5267. -moz-box-shadow:none;
  5268. -webkit-box-shadow:none;
  5269. box-shadow:none;
  5270. }
  5271. #u152280 {
  5272. border-width:0px;
  5273. position:absolute;
  5274. left:1376px;
  5275. top:335px;
  5276. width:375px;
  5277. height:505px;
  5278. display:flex;
  5279. }
  5280. #u152280 .text {
  5281. position:absolute;
  5282. align-self:center;
  5283. padding:2px 2px 2px 2px;
  5284. box-sizing:border-box;
  5285. width:100%;
  5286. }
  5287. #u152280_text {
  5288. border-width:0px;
  5289. word-wrap:break-word;
  5290. text-transform:none;
  5291. visibility:hidden;
  5292. }
  5293. #u152281_img {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:0px;
  5297. top:0px;
  5298. width:375px;
  5299. height:105px;
  5300. }
  5301. #u152281 {
  5302. border-width:0px;
  5303. position:absolute;
  5304. left:908px;
  5305. top:934px;
  5306. width:375px;
  5307. height:105px;
  5308. display:flex;
  5309. }
  5310. #u152281 .text {
  5311. position:absolute;
  5312. align-self:center;
  5313. padding:2px 2px 2px 2px;
  5314. box-sizing:border-box;
  5315. width:100%;
  5316. }
  5317. #u152281_text {
  5318. border-width:0px;
  5319. word-wrap:break-word;
  5320. text-transform:none;
  5321. visibility:hidden;
  5322. }
  5323. #u152282_div {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:0px;
  5327. top:0px;
  5328. width:325px;
  5329. height:75px;
  5330. background:inherit;
  5331. background-color:rgba(255, 255, 255, 0);
  5332. border:none;
  5333. border-left:0px;
  5334. border-top:0px;
  5335. border-right:0px;
  5336. border-radius:0px;
  5337. border-bottom-right-radius:0px;
  5338. border-bottom-left-radius:0px;
  5339. -moz-box-shadow:none;
  5340. -webkit-box-shadow:none;
  5341. box-shadow:none;
  5342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5343. font-weight:400;
  5344. font-style:normal;
  5345. font-size:12px;
  5346. color:#555555;
  5347. line-height:25px;
  5348. }
  5349. #u152282 {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:928px;
  5353. top:949px;
  5354. width:325px;
  5355. height:75px;
  5356. display:flex;
  5357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5358. font-weight:400;
  5359. font-style:normal;
  5360. font-size:12px;
  5361. color:#555555;
  5362. line-height:25px;
  5363. }
  5364. #u152282 .text {
  5365. position:absolute;
  5366. align-self:flex-start;
  5367. padding:0px 0px 0px 0px;
  5368. box-sizing:border-box;
  5369. width:100%;
  5370. }
  5371. #u152282_text {
  5372. border-width:0px;
  5373. word-wrap:break-word;
  5374. text-transform:none;
  5375. }
  5376. #u152283_div {
  5377. border-width:0px;
  5378. position:absolute;
  5379. left:0px;
  5380. top:0px;
  5381. width:325px;
  5382. height:100px;
  5383. background:inherit;
  5384. background-color:rgba(255, 255, 255, 0);
  5385. border:none;
  5386. border-left:0px;
  5387. border-top:0px;
  5388. border-right:0px;
  5389. border-radius:0px;
  5390. border-bottom-right-radius:0px;
  5391. border-bottom-left-radius:0px;
  5392. -moz-box-shadow:none;
  5393. -webkit-box-shadow:none;
  5394. box-shadow:none;
  5395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5396. font-weight:400;
  5397. font-style:normal;
  5398. font-size:12px;
  5399. color:#555555;
  5400. line-height:25px;
  5401. }
  5402. #u152283 {
  5403. border-width:0px;
  5404. position:absolute;
  5405. left:1396px;
  5406. top:351px;
  5407. width:325px;
  5408. height:100px;
  5409. display:flex;
  5410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5411. font-weight:400;
  5412. font-style:normal;
  5413. font-size:12px;
  5414. color:#555555;
  5415. line-height:25px;
  5416. }
  5417. #u152283 .text {
  5418. position:absolute;
  5419. align-self:flex-start;
  5420. padding:0px 0px 0px 0px;
  5421. box-sizing:border-box;
  5422. width:100%;
  5423. }
  5424. #u152283_text {
  5425. border-width:0px;
  5426. word-wrap:break-word;
  5427. text-transform:none;
  5428. }
  5429. #u152284 {
  5430. border-width:0px;
  5431. position:absolute;
  5432. left:0px;
  5433. top:0px;
  5434. width:0px;
  5435. height:0px;
  5436. }
  5437. #u152285_div {
  5438. border-width:0px;
  5439. position:absolute;
  5440. left:0px;
  5441. top:0px;
  5442. width:375px;
  5443. height:60px;
  5444. background:inherit;
  5445. background-color:rgba(255, 255, 255, 1);
  5446. box-sizing:border-box;
  5447. border-width:1px;
  5448. border-style:solid;
  5449. border-color:rgba(242, 242, 242, 1);
  5450. border-radius:20px;
  5451. border-top-left-radius:0px;
  5452. border-top-right-radius:0px;
  5453. -moz-box-shadow:none;
  5454. -webkit-box-shadow:none;
  5455. box-shadow:none;
  5456. }
  5457. #u152285 {
  5458. border-width:0px;
  5459. position:absolute;
  5460. left:29px;
  5461. top:780px;
  5462. width:375px;
  5463. height:60px;
  5464. display:flex;
  5465. }
  5466. #u152285 .text {
  5467. position:absolute;
  5468. align-self:center;
  5469. padding:2px 2px 2px 2px;
  5470. box-sizing:border-box;
  5471. width:100%;
  5472. }
  5473. #u152285_text {
  5474. border-width:0px;
  5475. word-wrap:break-word;
  5476. text-transform:none;
  5477. visibility:hidden;
  5478. }
  5479. #u152286_div {
  5480. border-width:0px;
  5481. position:absolute;
  5482. left:0px;
  5483. top:0px;
  5484. width:160px;
  5485. height:40px;
  5486. background:inherit;
  5487. background-color:rgba(0, 137, 254, 1);
  5488. border:none;
  5489. border-radius:63px;
  5490. -moz-box-shadow:none;
  5491. -webkit-box-shadow:none;
  5492. box-shadow:none;
  5493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5494. font-weight:400;
  5495. font-style:normal;
  5496. font-size:14px;
  5497. color:#FFFFFF;
  5498. }
  5499. #u152286 {
  5500. border-width:0px;
  5501. position:absolute;
  5502. left:224px;
  5503. top:790px;
  5504. width:160px;
  5505. height:40px;
  5506. display:flex;
  5507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5508. font-weight:400;
  5509. font-style:normal;
  5510. font-size:14px;
  5511. color:#FFFFFF;
  5512. }
  5513. #u152286 .text {
  5514. position:absolute;
  5515. align-self:center;
  5516. padding:2px 2px 2px 2px;
  5517. box-sizing:border-box;
  5518. width:100%;
  5519. }
  5520. #u152286_text {
  5521. border-width:0px;
  5522. word-wrap:break-word;
  5523. text-transform:none;
  5524. }
  5525. #u152287_div {
  5526. border-width:0px;
  5527. position:absolute;
  5528. left:0px;
  5529. top:0px;
  5530. width:160px;
  5531. height:40px;
  5532. background:inherit;
  5533. background-color:rgba(255, 255, 255, 1);
  5534. box-sizing:border-box;
  5535. border-width:1px;
  5536. border-style:solid;
  5537. border-color:rgba(121, 121, 121, 1);
  5538. border-radius:63px;
  5539. -moz-box-shadow:none;
  5540. -webkit-box-shadow:none;
  5541. box-shadow:none;
  5542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5543. font-weight:400;
  5544. font-style:normal;
  5545. font-size:14px;
  5546. }
  5547. #u152287 {
  5548. border-width:0px;
  5549. position:absolute;
  5550. left:49px;
  5551. top:790px;
  5552. width:160px;
  5553. height:40px;
  5554. display:flex;
  5555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5556. font-weight:400;
  5557. font-style:normal;
  5558. font-size:14px;
  5559. }
  5560. #u152287 .text {
  5561. position:absolute;
  5562. align-self:center;
  5563. padding:2px 2px 2px 2px;
  5564. box-sizing:border-box;
  5565. width:100%;
  5566. }
  5567. #u152287_text {
  5568. border-width:0px;
  5569. word-wrap:break-word;
  5570. text-transform:none;
  5571. }
  5572. #u152288 {
  5573. border-width:0px;
  5574. position:absolute;
  5575. left:0px;
  5576. top:0px;
  5577. width:0px;
  5578. height:0px;
  5579. }
  5580. #u152289_img {
  5581. border-width:0px;
  5582. position:absolute;
  5583. left:-5px;
  5584. top:-5px;
  5585. width:385px;
  5586. height:292px;
  5587. }
  5588. #u152289 {
  5589. border-width:0px;
  5590. position:absolute;
  5591. left:457px;
  5592. top:62px;
  5593. width:375px;
  5594. height:282px;
  5595. display:flex;
  5596. }
  5597. #u152289 .text {
  5598. position:absolute;
  5599. align-self:center;
  5600. padding:2px 2px 2px 2px;
  5601. box-sizing:border-box;
  5602. width:100%;
  5603. }
  5604. #u152289_text {
  5605. border-width:0px;
  5606. word-wrap:break-word;
  5607. text-transform:none;
  5608. visibility:hidden;
  5609. }
  5610. #u152290_div {
  5611. border-width:0px;
  5612. position:absolute;
  5613. left:0px;
  5614. top:0px;
  5615. width:37px;
  5616. height:30px;
  5617. background:inherit;
  5618. background-color:rgba(255, 255, 255, 0);
  5619. border:none;
  5620. border-left:0px;
  5621. border-top:0px;
  5622. border-right:0px;
  5623. border-radius:0px;
  5624. border-bottom-right-radius:0px;
  5625. border-bottom-left-radius:0px;
  5626. -moz-box-shadow:none;
  5627. -webkit-box-shadow:none;
  5628. box-shadow:none;
  5629. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5630. font-weight:500;
  5631. font-style:normal;
  5632. font-size:18px;
  5633. line-height:30px;
  5634. }
  5635. #u152290 {
  5636. border-width:0px;
  5637. position:absolute;
  5638. left:477px;
  5639. top:75px;
  5640. width:37px;
  5641. height:30px;
  5642. display:flex;
  5643. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5644. font-weight:500;
  5645. font-style:normal;
  5646. font-size:18px;
  5647. line-height:30px;
  5648. }
  5649. #u152290 .text {
  5650. position:absolute;
  5651. align-self:flex-start;
  5652. padding:0px 0px 0px 0px;
  5653. box-sizing:border-box;
  5654. width:100%;
  5655. }
  5656. #u152290_text {
  5657. border-width:0px;
  5658. white-space:nowrap;
  5659. text-transform:none;
  5660. }
  5661. #u152291 {
  5662. border-width:0px;
  5663. position:absolute;
  5664. left:0px;
  5665. top:0px;
  5666. width:0px;
  5667. height:0px;
  5668. }
  5669. #u152292_div {
  5670. border-width:0px;
  5671. position:absolute;
  5672. left:0px;
  5673. top:0px;
  5674. width:375px;
  5675. height:60px;
  5676. background:inherit;
  5677. background-color:rgba(255, 255, 255, 1);
  5678. box-sizing:border-box;
  5679. border-width:1px;
  5680. border-style:solid;
  5681. border-color:rgba(242, 242, 242, 1);
  5682. border-radius:20px;
  5683. border-top-left-radius:0px;
  5684. border-top-right-radius:0px;
  5685. -moz-box-shadow:none;
  5686. -webkit-box-shadow:none;
  5687. box-shadow:none;
  5688. }
  5689. #u152292 {
  5690. border-width:0px;
  5691. position:absolute;
  5692. left:457px;
  5693. top:284px;
  5694. width:375px;
  5695. height:60px;
  5696. display:flex;
  5697. }
  5698. #u152292 .text {
  5699. position:absolute;
  5700. align-self:center;
  5701. padding:2px 2px 2px 2px;
  5702. box-sizing:border-box;
  5703. width:100%;
  5704. }
  5705. #u152292_text {
  5706. border-width:0px;
  5707. word-wrap:break-word;
  5708. text-transform:none;
  5709. visibility:hidden;
  5710. }
  5711. #u152293_div {
  5712. border-width:0px;
  5713. position:absolute;
  5714. left:0px;
  5715. top:0px;
  5716. width:160px;
  5717. height:40px;
  5718. background:inherit;
  5719. background-color:rgba(0, 137, 254, 1);
  5720. border:none;
  5721. border-radius:63px;
  5722. -moz-box-shadow:none;
  5723. -webkit-box-shadow:none;
  5724. box-shadow:none;
  5725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5726. font-weight:400;
  5727. font-style:normal;
  5728. font-size:14px;
  5729. color:#FFFFFF;
  5730. }
  5731. #u152293 {
  5732. border-width:0px;
  5733. position:absolute;
  5734. left:652px;
  5735. top:294px;
  5736. width:160px;
  5737. height:40px;
  5738. display:flex;
  5739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5740. font-weight:400;
  5741. font-style:normal;
  5742. font-size:14px;
  5743. color:#FFFFFF;
  5744. }
  5745. #u152293 .text {
  5746. position:absolute;
  5747. align-self:center;
  5748. padding:2px 2px 2px 2px;
  5749. box-sizing:border-box;
  5750. width:100%;
  5751. }
  5752. #u152293_text {
  5753. border-width:0px;
  5754. word-wrap:break-word;
  5755. text-transform:none;
  5756. }
  5757. #u152294_div {
  5758. border-width:0px;
  5759. position:absolute;
  5760. left:0px;
  5761. top:0px;
  5762. width:160px;
  5763. height:40px;
  5764. background:inherit;
  5765. background-color:rgba(255, 255, 255, 1);
  5766. box-sizing:border-box;
  5767. border-width:1px;
  5768. border-style:solid;
  5769. border-color:rgba(121, 121, 121, 1);
  5770. border-radius:63px;
  5771. -moz-box-shadow:none;
  5772. -webkit-box-shadow:none;
  5773. box-shadow:none;
  5774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5775. font-weight:400;
  5776. font-style:normal;
  5777. font-size:14px;
  5778. }
  5779. #u152294 {
  5780. border-width:0px;
  5781. position:absolute;
  5782. left:477px;
  5783. top:294px;
  5784. width:160px;
  5785. height:40px;
  5786. display:flex;
  5787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5788. font-weight:400;
  5789. font-style:normal;
  5790. font-size:14px;
  5791. }
  5792. #u152294 .text {
  5793. position:absolute;
  5794. align-self:center;
  5795. padding:2px 2px 2px 2px;
  5796. box-sizing:border-box;
  5797. width:100%;
  5798. }
  5799. #u152294_text {
  5800. border-width:0px;
  5801. word-wrap:break-word;
  5802. text-transform:none;
  5803. }
  5804. #u152295_div {
  5805. border-width:0px;
  5806. position:absolute;
  5807. left:0px;
  5808. top:0px;
  5809. width:340px;
  5810. height:92px;
  5811. background:inherit;
  5812. background-color:rgba(255, 255, 255, 1);
  5813. box-sizing:border-box;
  5814. border-width:1px;
  5815. border-style:solid;
  5816. border-color:rgba(215, 215, 215, 1);
  5817. border-radius:4px;
  5818. -moz-box-shadow:none;
  5819. -webkit-box-shadow:none;
  5820. box-shadow:none;
  5821. }
  5822. #u152295 {
  5823. border-width:0px;
  5824. position:absolute;
  5825. left:477px;
  5826. top:115px;
  5827. width:340px;
  5828. height:92px;
  5829. display:flex;
  5830. }
  5831. #u152295 .text {
  5832. position:absolute;
  5833. align-self:center;
  5834. padding:2px 2px 2px 2px;
  5835. box-sizing:border-box;
  5836. width:100%;
  5837. }
  5838. #u152295_text {
  5839. border-width:0px;
  5840. word-wrap:break-word;
  5841. text-transform:none;
  5842. visibility:hidden;
  5843. }
  5844. #u152296_div {
  5845. border-width:0px;
  5846. position:absolute;
  5847. left:0px;
  5848. top:0px;
  5849. width:127px;
  5850. height:30px;
  5851. background:inherit;
  5852. background-color:rgba(255, 255, 255, 0);
  5853. border:none;
  5854. border-left:0px;
  5855. border-top:0px;
  5856. border-right:0px;
  5857. border-radius:0px;
  5858. border-bottom-right-radius:0px;
  5859. border-bottom-left-radius:0px;
  5860. -moz-box-shadow:none;
  5861. -webkit-box-shadow:none;
  5862. box-shadow:none;
  5863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5864. font-weight:400;
  5865. font-style:normal;
  5866. font-size:14px;
  5867. color:#AAAAAA;
  5868. line-height:30px;
  5869. }
  5870. #u152296 {
  5871. border-width:0px;
  5872. position:absolute;
  5873. left:486px;
  5874. top:123px;
  5875. width:127px;
  5876. height:30px;
  5877. display:flex;
  5878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5879. font-weight:400;
  5880. font-style:normal;
  5881. font-size:14px;
  5882. color:#AAAAAA;
  5883. line-height:30px;
  5884. }
  5885. #u152296 .text {
  5886. position:absolute;
  5887. align-self:center;
  5888. padding:0px 0px 0px 0px;
  5889. box-sizing:border-box;
  5890. width:100%;
  5891. }
  5892. #u152296_text {
  5893. border-width:0px;
  5894. white-space:nowrap;
  5895. text-transform:none;
  5896. }
  5897. #u152297 {
  5898. border-width:0px;
  5899. position:absolute;
  5900. left:0px;
  5901. top:0px;
  5902. width:0px;
  5903. height:0px;
  5904. }
  5905. #u152298_img {
  5906. border-width:0px;
  5907. position:absolute;
  5908. left:-5px;
  5909. top:-5px;
  5910. width:385px;
  5911. height:292px;
  5912. }
  5913. #u152298 {
  5914. border-width:0px;
  5915. position:absolute;
  5916. left:457px;
  5917. top:395px;
  5918. width:375px;
  5919. height:282px;
  5920. display:flex;
  5921. }
  5922. #u152298 .text {
  5923. position:absolute;
  5924. align-self:center;
  5925. padding:2px 2px 2px 2px;
  5926. box-sizing:border-box;
  5927. width:100%;
  5928. }
  5929. #u152298_text {
  5930. border-width:0px;
  5931. word-wrap:break-word;
  5932. text-transform:none;
  5933. visibility:hidden;
  5934. }
  5935. #u152299_div {
  5936. border-width:0px;
  5937. position:absolute;
  5938. left:0px;
  5939. top:0px;
  5940. width:37px;
  5941. height:30px;
  5942. background:inherit;
  5943. background-color:rgba(255, 255, 255, 0);
  5944. border:none;
  5945. border-left:0px;
  5946. border-top:0px;
  5947. border-right:0px;
  5948. border-radius:0px;
  5949. border-bottom-right-radius:0px;
  5950. border-bottom-left-radius:0px;
  5951. -moz-box-shadow:none;
  5952. -webkit-box-shadow:none;
  5953. box-shadow:none;
  5954. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5955. font-weight:500;
  5956. font-style:normal;
  5957. font-size:18px;
  5958. line-height:30px;
  5959. }
  5960. #u152299 {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:477px;
  5964. top:408px;
  5965. width:37px;
  5966. height:30px;
  5967. display:flex;
  5968. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5969. font-weight:500;
  5970. font-style:normal;
  5971. font-size:18px;
  5972. line-height:30px;
  5973. }
  5974. #u152299 .text {
  5975. position:absolute;
  5976. align-self:flex-start;
  5977. padding:0px 0px 0px 0px;
  5978. box-sizing:border-box;
  5979. width:100%;
  5980. }
  5981. #u152299_text {
  5982. border-width:0px;
  5983. white-space:nowrap;
  5984. text-transform:none;
  5985. }
  5986. #u152300 {
  5987. border-width:0px;
  5988. position:absolute;
  5989. left:0px;
  5990. top:0px;
  5991. width:0px;
  5992. height:0px;
  5993. }
  5994. #u152301_div {
  5995. border-width:0px;
  5996. position:absolute;
  5997. left:0px;
  5998. top:0px;
  5999. width:375px;
  6000. height:60px;
  6001. background:inherit;
  6002. background-color:rgba(255, 255, 255, 1);
  6003. box-sizing:border-box;
  6004. border-width:1px;
  6005. border-style:solid;
  6006. border-color:rgba(242, 242, 242, 1);
  6007. border-radius:20px;
  6008. border-top-left-radius:0px;
  6009. border-top-right-radius:0px;
  6010. -moz-box-shadow:none;
  6011. -webkit-box-shadow:none;
  6012. box-shadow:none;
  6013. }
  6014. #u152301 {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:457px;
  6018. top:617px;
  6019. width:375px;
  6020. height:60px;
  6021. display:flex;
  6022. }
  6023. #u152301 .text {
  6024. position:absolute;
  6025. align-self:center;
  6026. padding:2px 2px 2px 2px;
  6027. box-sizing:border-box;
  6028. width:100%;
  6029. }
  6030. #u152301_text {
  6031. border-width:0px;
  6032. word-wrap:break-word;
  6033. text-transform:none;
  6034. visibility:hidden;
  6035. }
  6036. #u152302_div {
  6037. border-width:0px;
  6038. position:absolute;
  6039. left:0px;
  6040. top:0px;
  6041. width:160px;
  6042. height:40px;
  6043. background:inherit;
  6044. background-color:rgba(0, 137, 254, 1);
  6045. border:none;
  6046. border-radius:63px;
  6047. -moz-box-shadow:none;
  6048. -webkit-box-shadow:none;
  6049. box-shadow:none;
  6050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6051. font-weight:400;
  6052. font-style:normal;
  6053. font-size:14px;
  6054. color:#FFFFFF;
  6055. }
  6056. #u152302 {
  6057. border-width:0px;
  6058. position:absolute;
  6059. left:652px;
  6060. top:627px;
  6061. width:160px;
  6062. height:40px;
  6063. display:flex;
  6064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6065. font-weight:400;
  6066. font-style:normal;
  6067. font-size:14px;
  6068. color:#FFFFFF;
  6069. }
  6070. #u152302 .text {
  6071. position:absolute;
  6072. align-self:center;
  6073. padding:2px 2px 2px 2px;
  6074. box-sizing:border-box;
  6075. width:100%;
  6076. }
  6077. #u152302_text {
  6078. border-width:0px;
  6079. word-wrap:break-word;
  6080. text-transform:none;
  6081. }
  6082. #u152303_div {
  6083. border-width:0px;
  6084. position:absolute;
  6085. left:0px;
  6086. top:0px;
  6087. width:160px;
  6088. height:40px;
  6089. background:inherit;
  6090. background-color:rgba(255, 255, 255, 1);
  6091. box-sizing:border-box;
  6092. border-width:1px;
  6093. border-style:solid;
  6094. border-color:rgba(121, 121, 121, 1);
  6095. border-radius:63px;
  6096. -moz-box-shadow:none;
  6097. -webkit-box-shadow:none;
  6098. box-shadow:none;
  6099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6100. font-weight:400;
  6101. font-style:normal;
  6102. font-size:14px;
  6103. }
  6104. #u152303 {
  6105. border-width:0px;
  6106. position:absolute;
  6107. left:477px;
  6108. top:627px;
  6109. width:160px;
  6110. height:40px;
  6111. display:flex;
  6112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6113. font-weight:400;
  6114. font-style:normal;
  6115. font-size:14px;
  6116. }
  6117. #u152303 .text {
  6118. position:absolute;
  6119. align-self:center;
  6120. padding:2px 2px 2px 2px;
  6121. box-sizing:border-box;
  6122. width:100%;
  6123. }
  6124. #u152303_text {
  6125. border-width:0px;
  6126. word-wrap:break-word;
  6127. text-transform:none;
  6128. }
  6129. #u152304_div {
  6130. border-width:0px;
  6131. position:absolute;
  6132. left:0px;
  6133. top:0px;
  6134. width:340px;
  6135. height:92px;
  6136. background:inherit;
  6137. background-color:rgba(255, 255, 255, 1);
  6138. box-sizing:border-box;
  6139. border-width:1px;
  6140. border-style:solid;
  6141. border-color:rgba(215, 215, 215, 1);
  6142. border-radius:4px;
  6143. -moz-box-shadow:none;
  6144. -webkit-box-shadow:none;
  6145. box-shadow:none;
  6146. }
  6147. #u152304 {
  6148. border-width:0px;
  6149. position:absolute;
  6150. left:477px;
  6151. top:448px;
  6152. width:340px;
  6153. height:92px;
  6154. display:flex;
  6155. }
  6156. #u152304 .text {
  6157. position:absolute;
  6158. align-self:center;
  6159. padding:2px 2px 2px 2px;
  6160. box-sizing:border-box;
  6161. width:100%;
  6162. }
  6163. #u152304_text {
  6164. border-width:0px;
  6165. word-wrap:break-word;
  6166. text-transform:none;
  6167. visibility:hidden;
  6168. }
  6169. #u152305_div {
  6170. border-width:0px;
  6171. position:absolute;
  6172. left:0px;
  6173. top:0px;
  6174. width:127px;
  6175. height:30px;
  6176. background:inherit;
  6177. background-color:rgba(255, 255, 255, 0);
  6178. border:none;
  6179. border-left:0px;
  6180. border-top:0px;
  6181. border-right:0px;
  6182. border-radius:0px;
  6183. border-bottom-right-radius:0px;
  6184. border-bottom-left-radius:0px;
  6185. -moz-box-shadow:none;
  6186. -webkit-box-shadow:none;
  6187. box-shadow:none;
  6188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6189. font-weight:400;
  6190. font-style:normal;
  6191. font-size:14px;
  6192. color:#AAAAAA;
  6193. line-height:30px;
  6194. }
  6195. #u152305 {
  6196. border-width:0px;
  6197. position:absolute;
  6198. left:486px;
  6199. top:456px;
  6200. width:127px;
  6201. height:30px;
  6202. display:flex;
  6203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6204. font-weight:400;
  6205. font-style:normal;
  6206. font-size:14px;
  6207. color:#AAAAAA;
  6208. line-height:30px;
  6209. }
  6210. #u152305 .text {
  6211. position:absolute;
  6212. align-self:center;
  6213. padding:0px 0px 0px 0px;
  6214. box-sizing:border-box;
  6215. width:100%;
  6216. }
  6217. #u152305_text {
  6218. border-width:0px;
  6219. white-space:nowrap;
  6220. text-transform:none;
  6221. }