styles.css 107 KB

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