styles.css 178 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2245px;
  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. #u36936_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u36936 {
  28. border-width:0px;
  29. position:absolute;
  30. left:-459px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u36936 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u36936_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u36937_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. #u36937 {
  73. border-width:0px;
  74. position:absolute;
  75. left:-430px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u36937 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u36937_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u36938 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u36939_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. #u36939 {
  121. border-width:0px;
  122. position:absolute;
  123. left:-150px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u36939 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u36939_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u36940 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u36941_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u36941 {
  159. border-width:0px;
  160. position:absolute;
  161. left:-87px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u36941 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u36941_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u36942_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u36942 {
  189. border-width:0px;
  190. position:absolute;
  191. left:-81px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u36942 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u36942_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u36943 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u36944_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u36944 {
  227. border-width:0px;
  228. position:absolute;
  229. left:-136px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u36944 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u36944_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u36945_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u36945 {
  257. border-width:0px;
  258. position:absolute;
  259. left:-120px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u36945 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u36945_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u36946_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u36946 {
  287. border-width:0px;
  288. position:absolute;
  289. left:-129px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u36946 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u36946_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u36947_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u36947 {
  317. border-width:0px;
  318. position:absolute;
  319. left:-112px;
  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. #u36947 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u36947_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u36948_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u36948 {
  351. border-width:0px;
  352. position:absolute;
  353. left:-430px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u36948 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u36948_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u36949_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. #u36949 {
  393. border-width:0px;
  394. position:absolute;
  395. left:-430px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u36949 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u36949_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u36950 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u36951_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u36951 {
  431. border-width:0px;
  432. position:absolute;
  433. left:-390px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u36951 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u36951_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u36952_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. #u36952 {
  472. border-width:0px;
  473. position:absolute;
  474. left:-390px;
  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. #u36952 .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. #u36952_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u36953 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u36954_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u36954 {
  513. border-width:0px;
  514. position:absolute;
  515. left:-120px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u36954 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u36954_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u36955_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. #u36955 {
  554. border-width:0px;
  555. position:absolute;
  556. left:-120px;
  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. #u36955 .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. #u36955_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u36956_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. #u36956 {
  594. border-width:0px;
  595. position:absolute;
  596. left:-430px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u36956 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u36956_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u36957 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u36958_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u36958 {
  632. border-width:0px;
  633. position:absolute;
  634. left:-208px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u36958 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u36958_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u36959_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. #u36959 {
  673. border-width:0px;
  674. position:absolute;
  675. left:-214px;
  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. #u36959 .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. #u36959_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u36960 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u36961_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u36961 {
  714. border-width:0px;
  715. position:absolute;
  716. left:-302px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u36961 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u36961_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u36962_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. #u36962 {
  755. border-width:0px;
  756. position:absolute;
  757. left:-308px;
  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. #u36962 .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. #u36962_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u36963_img {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:44px;
  786. }
  787. #u36963 {
  788. border-width:0px;
  789. position:absolute;
  790. left:-430px;
  791. top:24px;
  792. width:375px;
  793. height:44px;
  794. display:flex;
  795. }
  796. #u36963 .text {
  797. position:absolute;
  798. align-self:center;
  799. padding:2px 2px 2px 2px;
  800. box-sizing:border-box;
  801. width:100%;
  802. }
  803. #u36963_text {
  804. border-width:0px;
  805. word-wrap:break-word;
  806. text-transform:none;
  807. visibility:hidden;
  808. }
  809. #u36964 {
  810. border-width:0px;
  811. position:absolute;
  812. left:0px;
  813. top:0px;
  814. width:0px;
  815. height:0px;
  816. }
  817. #u36965_div {
  818. border-width:0px;
  819. position:absolute;
  820. left:0px;
  821. top:0px;
  822. width:88px;
  823. height:32px;
  824. background:inherit;
  825. background-color:rgba(255, 255, 255, 1);
  826. box-sizing:border-box;
  827. border-width:1px;
  828. border-style:solid;
  829. border-color:rgba(242, 242, 242, 1);
  830. border-radius:33px;
  831. -moz-box-shadow:none;
  832. -webkit-box-shadow:none;
  833. box-shadow:none;
  834. }
  835. #u36965 {
  836. border-width:0px;
  837. position:absolute;
  838. left:-150px;
  839. top:71px;
  840. width:88px;
  841. height:32px;
  842. display:flex;
  843. }
  844. #u36965 .text {
  845. position:absolute;
  846. align-self:center;
  847. padding:2px 2px 2px 2px;
  848. box-sizing:border-box;
  849. width:100%;
  850. }
  851. #u36965_text {
  852. border-width:0px;
  853. word-wrap:break-word;
  854. text-transform:none;
  855. visibility:hidden;
  856. }
  857. #u36966 {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:0px;
  863. height:0px;
  864. }
  865. #u36967_img {
  866. border-width:0px;
  867. position:absolute;
  868. left:0px;
  869. top:0px;
  870. width:18px;
  871. height:18px;
  872. }
  873. #u36967 {
  874. border-width:0px;
  875. position:absolute;
  876. left:-87px;
  877. top:78px;
  878. width:18px;
  879. height:18px;
  880. display:flex;
  881. }
  882. #u36967 .text {
  883. position:absolute;
  884. align-self:center;
  885. padding:2px 2px 2px 2px;
  886. box-sizing:border-box;
  887. width:100%;
  888. }
  889. #u36967_text {
  890. border-width:0px;
  891. word-wrap:break-word;
  892. text-transform:none;
  893. visibility:hidden;
  894. }
  895. #u36968_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:6px;
  901. height:6px;
  902. }
  903. #u36968 {
  904. border-width:0px;
  905. position:absolute;
  906. left:-81px;
  907. top:84px;
  908. width:6px;
  909. height:6px;
  910. display:flex;
  911. }
  912. #u36968 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u36968_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u36969 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u36970_img {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:5px;
  939. height:5px;
  940. }
  941. #u36970 {
  942. border-width:0px;
  943. position:absolute;
  944. left:-136px;
  945. top:85px;
  946. width:5px;
  947. height:5px;
  948. display:flex;
  949. }
  950. #u36970 .text {
  951. position:absolute;
  952. align-self:center;
  953. padding:2px 2px 2px 2px;
  954. box-sizing:border-box;
  955. width:100%;
  956. }
  957. #u36970_text {
  958. border-width:0px;
  959. word-wrap:break-word;
  960. text-transform:none;
  961. visibility:hidden;
  962. }
  963. #u36971_img {
  964. border-width:0px;
  965. position:absolute;
  966. left:0px;
  967. top:0px;
  968. width:5px;
  969. height:5px;
  970. }
  971. #u36971 {
  972. border-width:0px;
  973. position:absolute;
  974. left:-120px;
  975. top:85px;
  976. width:5px;
  977. height:5px;
  978. display:flex;
  979. }
  980. #u36971 .text {
  981. position:absolute;
  982. align-self:center;
  983. padding:2px 2px 2px 2px;
  984. box-sizing:border-box;
  985. width:100%;
  986. }
  987. #u36971_text {
  988. border-width:0px;
  989. word-wrap:break-word;
  990. text-transform:none;
  991. visibility:hidden;
  992. }
  993. #u36972_img {
  994. border-width:0px;
  995. position:absolute;
  996. left:0px;
  997. top:0px;
  998. width:7px;
  999. height:7px;
  1000. }
  1001. #u36972 {
  1002. border-width:0px;
  1003. position:absolute;
  1004. left:-129px;
  1005. top:84px;
  1006. width:7px;
  1007. height:7px;
  1008. display:flex;
  1009. }
  1010. #u36972 .text {
  1011. position:absolute;
  1012. align-self:center;
  1013. padding:2px 2px 2px 2px;
  1014. box-sizing:border-box;
  1015. width:100%;
  1016. }
  1017. #u36972_text {
  1018. border-width:0px;
  1019. word-wrap:break-word;
  1020. text-transform:none;
  1021. visibility:hidden;
  1022. }
  1023. #u36973_img {
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:0px;
  1027. top:0px;
  1028. width:19px;
  1029. height:2px;
  1030. }
  1031. #u36973 {
  1032. border-width:0px;
  1033. position:absolute;
  1034. left:-112px;
  1035. top:87px;
  1036. width:18px;
  1037. height:1px;
  1038. display:flex;
  1039. -webkit-transform:rotate(90deg);
  1040. -moz-transform:rotate(90deg);
  1041. -ms-transform:rotate(90deg);
  1042. transform:rotate(90deg);
  1043. }
  1044. #u36973 .text {
  1045. position:absolute;
  1046. align-self:center;
  1047. padding:2px 2px 2px 2px;
  1048. box-sizing:border-box;
  1049. width:100%;
  1050. }
  1051. #u36973_text {
  1052. border-width:0px;
  1053. word-wrap:break-word;
  1054. text-transform:none;
  1055. visibility:hidden;
  1056. }
  1057. #u36974_div {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:65px;
  1063. height:22px;
  1064. background:inherit;
  1065. background-color:rgba(255, 255, 255, 0);
  1066. border:none;
  1067. border-radius:0px;
  1068. -moz-box-shadow:none;
  1069. -webkit-box-shadow:none;
  1070. box-shadow:none;
  1071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1072. font-weight:400;
  1073. font-style:normal;
  1074. font-size:16px;
  1075. color:#000000;
  1076. }
  1077. #u36974 {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:-272px;
  1081. top:78px;
  1082. width:65px;
  1083. height:22px;
  1084. display:flex;
  1085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1086. font-weight:400;
  1087. font-style:normal;
  1088. font-size:16px;
  1089. color:#000000;
  1090. }
  1091. #u36974 .text {
  1092. position:absolute;
  1093. align-self:flex-start;
  1094. padding:0px 0px 0px 0px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u36974_text {
  1099. border-width:0px;
  1100. white-space:nowrap;
  1101. text-transform:none;
  1102. }
  1103. #u36975_div {
  1104. border-width:0px;
  1105. position:absolute;
  1106. left:0px;
  1107. top:0px;
  1108. width:375px;
  1109. height:683px;
  1110. background:inherit;
  1111. background-color:rgba(242, 242, 242, 0.996078431372549);
  1112. border:none;
  1113. border-radius:0px;
  1114. -moz-box-shadow:none;
  1115. -webkit-box-shadow:none;
  1116. box-shadow:none;
  1117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1118. font-weight:400;
  1119. font-style:normal;
  1120. }
  1121. #u36975 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:-430px;
  1125. top:106px;
  1126. width:375px;
  1127. height:683px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. }
  1133. #u36975 .text {
  1134. position:absolute;
  1135. align-self:center;
  1136. padding:2px 2px 2px 2px;
  1137. box-sizing:border-box;
  1138. width:100%;
  1139. }
  1140. #u36975_text {
  1141. border-width:0px;
  1142. word-wrap:break-word;
  1143. text-transform:none;
  1144. }
  1145. #u36976_div {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:0px;
  1149. top:0px;
  1150. width:12px;
  1151. height:12px;
  1152. background:inherit;
  1153. background-color:rgba(255, 255, 255, 0);
  1154. box-sizing:border-box;
  1155. border-width:2px;
  1156. border-style:solid;
  1157. border-color:rgba(51, 51, 51, 1);
  1158. border-right:0px;
  1159. border-bottom:0px;
  1160. border-radius:0px;
  1161. border-top-right-radius:0px;
  1162. border-bottom-left-radius:0px;
  1163. -moz-box-shadow:none;
  1164. -webkit-box-shadow:none;
  1165. box-shadow:none;
  1166. }
  1167. #u36976 {
  1168. border-width:0px;
  1169. position:absolute;
  1170. left:-415px;
  1171. top:81px;
  1172. width:12px;
  1173. height:12px;
  1174. display:flex;
  1175. -webkit-transform:rotate(315deg);
  1176. -moz-transform:rotate(315deg);
  1177. -ms-transform:rotate(315deg);
  1178. transform:rotate(315deg);
  1179. }
  1180. #u36976 .text {
  1181. position:absolute;
  1182. align-self:center;
  1183. padding:2px 2px 2px 2px;
  1184. box-sizing:border-box;
  1185. width:100%;
  1186. }
  1187. #u36976_text {
  1188. border-width:0px;
  1189. word-wrap:break-word;
  1190. text-transform:none;
  1191. visibility:hidden;
  1192. }
  1193. #u36977_img {
  1194. border-width:0px;
  1195. position:absolute;
  1196. left:0px;
  1197. top:0px;
  1198. width:23px;
  1199. height:23px;
  1200. }
  1201. #u36977 {
  1202. border-width:0px;
  1203. position:absolute;
  1204. left:-388px;
  1205. top:76px;
  1206. width:23px;
  1207. height:23px;
  1208. display:flex;
  1209. }
  1210. #u36977 .text {
  1211. position:absolute;
  1212. align-self:center;
  1213. padding:2px 2px 2px 2px;
  1214. box-sizing:border-box;
  1215. width:100%;
  1216. }
  1217. #u36977_text {
  1218. border-width:0px;
  1219. word-wrap:break-word;
  1220. text-transform:none;
  1221. visibility:hidden;
  1222. }
  1223. #u36978 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:0px;
  1229. height:0px;
  1230. }
  1231. #u36979_div {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:0px;
  1235. top:0px;
  1236. width:375px;
  1237. height:50px;
  1238. background:inherit;
  1239. background-color:rgba(255, 255, 255, 1);
  1240. box-sizing:border-box;
  1241. border-width:1px;
  1242. border-style:solid;
  1243. border-color:rgba(242, 242, 242, 1);
  1244. border-radius:26px;
  1245. border-top-left-radius:0px;
  1246. border-top-right-radius:0px;
  1247. -moz-box-shadow:none;
  1248. -webkit-box-shadow:none;
  1249. box-shadow:none;
  1250. }
  1251. #u36979 {
  1252. border-width:0px;
  1253. position:absolute;
  1254. left:-431px;
  1255. top:790px;
  1256. width:375px;
  1257. height:50px;
  1258. display:flex;
  1259. }
  1260. #u36979 .text {
  1261. position:absolute;
  1262. align-self:center;
  1263. padding:2px 2px 2px 2px;
  1264. box-sizing:border-box;
  1265. width:100%;
  1266. }
  1267. #u36979_text {
  1268. border-width:0px;
  1269. word-wrap:break-word;
  1270. text-transform:none;
  1271. visibility:hidden;
  1272. }
  1273. #u36980 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:0px;
  1277. top:0px;
  1278. width:0px;
  1279. height:0px;
  1280. }
  1281. #u36981_img {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:0px;
  1285. top:0px;
  1286. width:24px;
  1287. height:24px;
  1288. }
  1289. #u36981 {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:-133px;
  1293. top:794px;
  1294. width:24px;
  1295. height:24px;
  1296. display:flex;
  1297. font-size:8px;
  1298. }
  1299. #u36981 .text {
  1300. position:absolute;
  1301. align-self:center;
  1302. padding:2px 2px 2px 2px;
  1303. box-sizing:border-box;
  1304. width:100%;
  1305. }
  1306. #u36981_text {
  1307. border-width:0px;
  1308. word-wrap:break-word;
  1309. text-transform:none;
  1310. }
  1311. #u36982_div {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:0px;
  1315. top:0px;
  1316. width:49px;
  1317. height:17px;
  1318. background:inherit;
  1319. background-color:rgba(255, 255, 255, 0);
  1320. border:none;
  1321. border-radius:0px;
  1322. -moz-box-shadow:none;
  1323. -webkit-box-shadow:none;
  1324. box-shadow:none;
  1325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1326. font-weight:400;
  1327. font-style:normal;
  1328. font-size:12px;
  1329. }
  1330. #u36982 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:-145px;
  1334. top:819px;
  1335. width:49px;
  1336. height:17px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. font-size:12px;
  1342. }
  1343. #u36982 .text {
  1344. position:absolute;
  1345. align-self:flex-start;
  1346. padding:0px 0px 0px 0px;
  1347. box-sizing:border-box;
  1348. width:100%;
  1349. }
  1350. #u36982_text {
  1351. border-width:0px;
  1352. white-space:nowrap;
  1353. text-transform:none;
  1354. }
  1355. #u36983 {
  1356. border-width:0px;
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:0px;
  1361. height:0px;
  1362. }
  1363. #u36984_div {
  1364. border-width:0px;
  1365. position:absolute;
  1366. left:0px;
  1367. top:0px;
  1368. width:49px;
  1369. height:17px;
  1370. background:inherit;
  1371. background-color:rgba(255, 255, 255, 0);
  1372. border:none;
  1373. border-radius:0px;
  1374. -moz-box-shadow:none;
  1375. -webkit-box-shadow:none;
  1376. box-shadow:none;
  1377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1378. font-weight:400;
  1379. font-style:normal;
  1380. font-size:12px;
  1381. }
  1382. #u36984 {
  1383. border-width:0px;
  1384. position:absolute;
  1385. left:-381px;
  1386. top:819px;
  1387. width:49px;
  1388. height:17px;
  1389. display:flex;
  1390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1391. font-weight:400;
  1392. font-style:normal;
  1393. font-size:12px;
  1394. }
  1395. #u36984 .text {
  1396. position:absolute;
  1397. align-self:flex-start;
  1398. padding:0px 0px 0px 0px;
  1399. box-sizing:border-box;
  1400. width:100%;
  1401. }
  1402. #u36984_text {
  1403. border-width:0px;
  1404. white-space:nowrap;
  1405. text-transform:none;
  1406. }
  1407. #u36985_img {
  1408. border-width:0px;
  1409. position:absolute;
  1410. left:0px;
  1411. top:0px;
  1412. width:24px;
  1413. height:24px;
  1414. }
  1415. #u36985 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:-369px;
  1419. top:794px;
  1420. width:24px;
  1421. height:24px;
  1422. display:flex;
  1423. font-size:8px;
  1424. color:#FFFFFF;
  1425. }
  1426. #u36985 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:2px 2px 2px 2px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u36985_text {
  1434. border-width:0px;
  1435. word-wrap:break-word;
  1436. text-transform:none;
  1437. }
  1438. #u36986 {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:0px;
  1444. height:0px;
  1445. }
  1446. #u36987_img {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:0px;
  1450. top:0px;
  1451. width:24px;
  1452. height:24px;
  1453. }
  1454. #u36987 {
  1455. border-width:0px;
  1456. position:absolute;
  1457. left:-246px;
  1458. top:794px;
  1459. width:24px;
  1460. height:24px;
  1461. display:flex;
  1462. font-size:8px;
  1463. }
  1464. #u36987 .text {
  1465. position:absolute;
  1466. align-self:center;
  1467. padding:2px 2px 2px 2px;
  1468. box-sizing:border-box;
  1469. width:100%;
  1470. }
  1471. #u36987_text {
  1472. border-width:0px;
  1473. word-wrap:break-word;
  1474. text-transform:none;
  1475. }
  1476. #u36988_div {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:0px;
  1480. top:0px;
  1481. width:49px;
  1482. height:17px;
  1483. background:inherit;
  1484. background-color:rgba(255, 255, 255, 0);
  1485. border:none;
  1486. border-radius:0px;
  1487. -moz-box-shadow:none;
  1488. -webkit-box-shadow:none;
  1489. box-shadow:none;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. font-size:12px;
  1494. }
  1495. #u36988 {
  1496. border-width:0px;
  1497. position:absolute;
  1498. left:-258px;
  1499. top:819px;
  1500. width:49px;
  1501. height:17px;
  1502. display:flex;
  1503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1504. font-weight:400;
  1505. font-style:normal;
  1506. font-size:12px;
  1507. }
  1508. #u36988 .text {
  1509. position:absolute;
  1510. align-self:flex-start;
  1511. padding:0px 0px 0px 0px;
  1512. box-sizing:border-box;
  1513. width:100%;
  1514. }
  1515. #u36988_text {
  1516. border-width:0px;
  1517. white-space:nowrap;
  1518. text-transform:none;
  1519. }
  1520. #u36989_img {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:0px;
  1524. top:0px;
  1525. width:22px;
  1526. height:33px;
  1527. }
  1528. #u36989 {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:-366px;
  1532. top:275px;
  1533. width:22px;
  1534. height:33px;
  1535. display:flex;
  1536. }
  1537. #u36989 .text {
  1538. position:absolute;
  1539. align-self:center;
  1540. padding:2px 2px 2px 2px;
  1541. box-sizing:border-box;
  1542. width:100%;
  1543. }
  1544. #u36989_text {
  1545. border-width:0px;
  1546. word-wrap:break-word;
  1547. text-transform:none;
  1548. visibility:hidden;
  1549. }
  1550. #u36990_img {
  1551. border-width:0px;
  1552. position:absolute;
  1553. left:0px;
  1554. top:0px;
  1555. width:22px;
  1556. height:33px;
  1557. }
  1558. #u36990 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:-258px;
  1562. top:383px;
  1563. width:22px;
  1564. height:33px;
  1565. display:flex;
  1566. }
  1567. #u36990 .text {
  1568. position:absolute;
  1569. align-self:center;
  1570. padding:2px 2px 2px 2px;
  1571. box-sizing:border-box;
  1572. width:100%;
  1573. }
  1574. #u36990_text {
  1575. border-width:0px;
  1576. word-wrap:break-word;
  1577. text-transform:none;
  1578. visibility:hidden;
  1579. }
  1580. #u36991 {
  1581. border-width:0px;
  1582. position:absolute;
  1583. left:0px;
  1584. top:0px;
  1585. width:0px;
  1586. height:0px;
  1587. }
  1588. #u36992_div {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:0px;
  1592. top:0px;
  1593. width:50px;
  1594. height:28px;
  1595. background:inherit;
  1596. background-color:rgba(255, 255, 255, 1);
  1597. box-sizing:border-box;
  1598. border-width:1px;
  1599. border-style:solid;
  1600. border-color:rgba(215, 215, 215, 1);
  1601. border-radius:4px;
  1602. -moz-box-shadow:none;
  1603. -webkit-box-shadow:none;
  1604. box-shadow:none;
  1605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1606. font-weight:400;
  1607. font-style:normal;
  1608. font-size:11px;
  1609. color:#7F7F7F;
  1610. text-align:left;
  1611. }
  1612. #u36992 {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:-112px;
  1616. top:433px;
  1617. width:50px;
  1618. height:28px;
  1619. display:flex;
  1620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1621. font-weight:400;
  1622. font-style:normal;
  1623. font-size:11px;
  1624. color:#7F7F7F;
  1625. text-align:left;
  1626. }
  1627. #u36992 .text {
  1628. position:absolute;
  1629. align-self:center;
  1630. padding:2px 2px 2px 40px;
  1631. box-sizing:border-box;
  1632. width:100%;
  1633. }
  1634. #u36992_text {
  1635. border-width:0px;
  1636. word-wrap:break-word;
  1637. text-transform:none;
  1638. visibility:hidden;
  1639. }
  1640. #u36993 {
  1641. border-width:0px;
  1642. position:absolute;
  1643. left:0px;
  1644. top:0px;
  1645. width:0px;
  1646. height:0px;
  1647. }
  1648. #u36994_div {
  1649. border-width:0px;
  1650. position:absolute;
  1651. left:0px;
  1652. top:0px;
  1653. width:12px;
  1654. height:25px;
  1655. background:inherit;
  1656. background-color:rgba(255, 255, 255, 0);
  1657. border:none;
  1658. border-left:0px;
  1659. border-top:0px;
  1660. border-right:0px;
  1661. border-radius:0px;
  1662. border-bottom-right-radius:0px;
  1663. border-bottom-left-radius:0px;
  1664. -moz-box-shadow:none;
  1665. -webkit-box-shadow:none;
  1666. box-shadow:none;
  1667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1668. font-weight:400;
  1669. font-style:normal;
  1670. font-size:18px;
  1671. color:#D9001B;
  1672. }
  1673. #u36994 {
  1674. border-width:0px;
  1675. position:absolute;
  1676. left:-81px;
  1677. top:435px;
  1678. width:12px;
  1679. height:25px;
  1680. display:flex;
  1681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1682. font-weight:400;
  1683. font-style:normal;
  1684. font-size:18px;
  1685. color:#D9001B;
  1686. }
  1687. #u36994 .text {
  1688. position:absolute;
  1689. align-self:center;
  1690. padding:0px 0px 0px 0px;
  1691. box-sizing:border-box;
  1692. width:100%;
  1693. }
  1694. #u36994_text {
  1695. border-width:0px;
  1696. white-space:nowrap;
  1697. text-transform:none;
  1698. }
  1699. #u36995_img {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:0px;
  1703. top:0px;
  1704. width:19px;
  1705. height:17px;
  1706. }
  1707. #u36995 {
  1708. border-width:0px;
  1709. position:absolute;
  1710. left:-105px;
  1711. top:438px;
  1712. width:19px;
  1713. height:17px;
  1714. display:flex;
  1715. }
  1716. #u36995 .text {
  1717. position:absolute;
  1718. align-self:center;
  1719. padding:2px 2px 2px 2px;
  1720. box-sizing:border-box;
  1721. width:100%;
  1722. }
  1723. #u36995_text {
  1724. border-width:0px;
  1725. word-wrap:break-word;
  1726. text-transform:none;
  1727. visibility:hidden;
  1728. }
  1729. #u36996_img {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:22px;
  1735. height:33px;
  1736. }
  1737. #u36996 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:-364px;
  1741. top:436px;
  1742. width:22px;
  1743. height:33px;
  1744. display:flex;
  1745. }
  1746. #u36996 .text {
  1747. position:absolute;
  1748. align-self:center;
  1749. padding:2px 2px 2px 2px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u36996_text {
  1754. border-width:0px;
  1755. word-wrap:break-word;
  1756. text-transform:none;
  1757. visibility:hidden;
  1758. }
  1759. #u36997_img {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:22px;
  1765. height:33px;
  1766. }
  1767. #u36997 {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:-120px;
  1771. top:463px;
  1772. width:22px;
  1773. height:33px;
  1774. display:flex;
  1775. }
  1776. #u36997 .text {
  1777. position:absolute;
  1778. align-self:center;
  1779. padding:2px 2px 2px 2px;
  1780. box-sizing:border-box;
  1781. width:100%;
  1782. }
  1783. #u36997_text {
  1784. border-width:0px;
  1785. word-wrap:break-word;
  1786. text-transform:none;
  1787. visibility:hidden;
  1788. }
  1789. #u36998_img {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:0px;
  1793. top:0px;
  1794. width:22px;
  1795. height:33px;
  1796. }
  1797. #u36998 {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:-281px;
  1801. top:581px;
  1802. width:22px;
  1803. height:33px;
  1804. display:flex;
  1805. }
  1806. #u36998 .text {
  1807. position:absolute;
  1808. align-self:center;
  1809. padding:2px 2px 2px 2px;
  1810. box-sizing:border-box;
  1811. width:100%;
  1812. }
  1813. #u36998_text {
  1814. border-width:0px;
  1815. word-wrap:break-word;
  1816. text-transform:none;
  1817. visibility:hidden;
  1818. }
  1819. #u36999_img {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:22px;
  1825. height:33px;
  1826. }
  1827. #u36999 {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:-211px;
  1831. top:631px;
  1832. width:22px;
  1833. height:33px;
  1834. display:flex;
  1835. }
  1836. #u36999 .text {
  1837. position:absolute;
  1838. align-self:center;
  1839. padding:2px 2px 2px 2px;
  1840. box-sizing:border-box;
  1841. width:100%;
  1842. }
  1843. #u36999_text {
  1844. border-width:0px;
  1845. word-wrap:break-word;
  1846. text-transform:none;
  1847. visibility:hidden;
  1848. }
  1849. #u37001_img {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:0px;
  1853. top:0px;
  1854. width:433px;
  1855. height:865px;
  1856. }
  1857. #u37001 {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:433px;
  1863. height:865px;
  1864. display:flex;
  1865. }
  1866. #u37001 .text {
  1867. position:absolute;
  1868. align-self:center;
  1869. padding:2px 2px 2px 2px;
  1870. box-sizing:border-box;
  1871. width:100%;
  1872. }
  1873. #u37001_text {
  1874. border-width:0px;
  1875. word-wrap:break-word;
  1876. text-transform:none;
  1877. visibility:hidden;
  1878. }
  1879. #u37002_div {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:0px;
  1883. top:0px;
  1884. width:375px;
  1885. height:40px;
  1886. background:inherit;
  1887. background-color:rgba(255, 255, 255, 1);
  1888. box-sizing:border-box;
  1889. border-width:1px;
  1890. border-style:solid;
  1891. border-color:rgba(215, 215, 215, 1);
  1892. border-left:0px;
  1893. border-top:0px;
  1894. border-right:0px;
  1895. border-radius:0px;
  1896. border-bottom-right-radius:0px;
  1897. border-bottom-left-radius:0px;
  1898. -moz-box-shadow:none;
  1899. -webkit-box-shadow:none;
  1900. box-shadow:none;
  1901. }
  1902. #u37002 {
  1903. border-width:0px;
  1904. position:absolute;
  1905. left:29px;
  1906. top:67px;
  1907. width:375px;
  1908. height:40px;
  1909. display:flex;
  1910. }
  1911. #u37002 .text {
  1912. position:absolute;
  1913. align-self:center;
  1914. padding:2px 2px 2px 2px;
  1915. box-sizing:border-box;
  1916. width:100%;
  1917. }
  1918. #u37002_text {
  1919. border-width:0px;
  1920. word-wrap:break-word;
  1921. text-transform:none;
  1922. visibility:hidden;
  1923. }
  1924. #u37003 {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:0px;
  1928. top:0px;
  1929. width:0px;
  1930. height:0px;
  1931. }
  1932. #u37004_div {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:0px;
  1936. top:0px;
  1937. width:88px;
  1938. height:32px;
  1939. background:inherit;
  1940. background-color:rgba(255, 255, 255, 1);
  1941. box-sizing:border-box;
  1942. border-width:1px;
  1943. border-style:solid;
  1944. border-color:rgba(242, 242, 242, 1);
  1945. border-radius:33px;
  1946. -moz-box-shadow:none;
  1947. -webkit-box-shadow:none;
  1948. box-shadow:none;
  1949. }
  1950. #u37004 {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:309px;
  1954. top:71px;
  1955. width:88px;
  1956. height:32px;
  1957. display:flex;
  1958. }
  1959. #u37004 .text {
  1960. position:absolute;
  1961. align-self:center;
  1962. padding:2px 2px 2px 2px;
  1963. box-sizing:border-box;
  1964. width:100%;
  1965. }
  1966. #u37004_text {
  1967. border-width:0px;
  1968. word-wrap:break-word;
  1969. text-transform:none;
  1970. visibility:hidden;
  1971. }
  1972. #u37005 {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:0px;
  1976. top:0px;
  1977. width:0px;
  1978. height:0px;
  1979. }
  1980. #u37006_img {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:0px;
  1984. top:0px;
  1985. width:18px;
  1986. height:18px;
  1987. }
  1988. #u37006 {
  1989. border-width:0px;
  1990. position:absolute;
  1991. left:372px;
  1992. top:78px;
  1993. width:18px;
  1994. height:18px;
  1995. display:flex;
  1996. }
  1997. #u37006 .text {
  1998. position:absolute;
  1999. align-self:center;
  2000. padding:2px 2px 2px 2px;
  2001. box-sizing:border-box;
  2002. width:100%;
  2003. }
  2004. #u37006_text {
  2005. border-width:0px;
  2006. word-wrap:break-word;
  2007. text-transform:none;
  2008. visibility:hidden;
  2009. }
  2010. #u37007_img {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:0px;
  2014. top:0px;
  2015. width:6px;
  2016. height:6px;
  2017. }
  2018. #u37007 {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:378px;
  2022. top:84px;
  2023. width:6px;
  2024. height:6px;
  2025. display:flex;
  2026. }
  2027. #u37007 .text {
  2028. position:absolute;
  2029. align-self:center;
  2030. padding:2px 2px 2px 2px;
  2031. box-sizing:border-box;
  2032. width:100%;
  2033. }
  2034. #u37007_text {
  2035. border-width:0px;
  2036. word-wrap:break-word;
  2037. text-transform:none;
  2038. visibility:hidden;
  2039. }
  2040. #u37008 {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:0px;
  2044. top:0px;
  2045. width:0px;
  2046. height:0px;
  2047. }
  2048. #u37009_img {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:0px;
  2052. top:0px;
  2053. width:5px;
  2054. height:5px;
  2055. }
  2056. #u37009 {
  2057. border-width:0px;
  2058. position:absolute;
  2059. left:323px;
  2060. top:85px;
  2061. width:5px;
  2062. height:5px;
  2063. display:flex;
  2064. }
  2065. #u37009 .text {
  2066. position:absolute;
  2067. align-self:center;
  2068. padding:2px 2px 2px 2px;
  2069. box-sizing:border-box;
  2070. width:100%;
  2071. }
  2072. #u37009_text {
  2073. border-width:0px;
  2074. word-wrap:break-word;
  2075. text-transform:none;
  2076. visibility:hidden;
  2077. }
  2078. #u37010_img {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:0px;
  2082. top:0px;
  2083. width:5px;
  2084. height:5px;
  2085. }
  2086. #u37010 {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:339px;
  2090. top:85px;
  2091. width:5px;
  2092. height:5px;
  2093. display:flex;
  2094. }
  2095. #u37010 .text {
  2096. position:absolute;
  2097. align-self:center;
  2098. padding:2px 2px 2px 2px;
  2099. box-sizing:border-box;
  2100. width:100%;
  2101. }
  2102. #u37010_text {
  2103. border-width:0px;
  2104. word-wrap:break-word;
  2105. text-transform:none;
  2106. visibility:hidden;
  2107. }
  2108. #u37011_img {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:0px;
  2112. top:0px;
  2113. width:7px;
  2114. height:7px;
  2115. }
  2116. #u37011 {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:330px;
  2120. top:84px;
  2121. width:7px;
  2122. height:7px;
  2123. display:flex;
  2124. }
  2125. #u37011 .text {
  2126. position:absolute;
  2127. align-self:center;
  2128. padding:2px 2px 2px 2px;
  2129. box-sizing:border-box;
  2130. width:100%;
  2131. }
  2132. #u37011_text {
  2133. border-width:0px;
  2134. word-wrap:break-word;
  2135. text-transform:none;
  2136. visibility:hidden;
  2137. }
  2138. #u37012_img {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:0px;
  2142. top:0px;
  2143. width:19px;
  2144. height:2px;
  2145. }
  2146. #u37012 {
  2147. border-width:0px;
  2148. position:absolute;
  2149. left:347px;
  2150. top:87px;
  2151. width:18px;
  2152. height:1px;
  2153. display:flex;
  2154. -webkit-transform:rotate(90deg);
  2155. -moz-transform:rotate(90deg);
  2156. -ms-transform:rotate(90deg);
  2157. transform:rotate(90deg);
  2158. }
  2159. #u37012 .text {
  2160. position:absolute;
  2161. align-self:center;
  2162. padding:2px 2px 2px 2px;
  2163. box-sizing:border-box;
  2164. width:100%;
  2165. }
  2166. #u37012_text {
  2167. border-width:0px;
  2168. word-wrap:break-word;
  2169. text-transform:none;
  2170. visibility:hidden;
  2171. }
  2172. #u37013_img {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:0px;
  2176. top:0px;
  2177. width:375px;
  2178. height:44px;
  2179. }
  2180. #u37013 {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:29px;
  2184. top:24px;
  2185. width:375px;
  2186. height:44px;
  2187. display:flex;
  2188. }
  2189. #u37013 .text {
  2190. position:absolute;
  2191. align-self:center;
  2192. padding:2px 2px 2px 2px;
  2193. box-sizing:border-box;
  2194. width:100%;
  2195. }
  2196. #u37013_text {
  2197. border-width:0px;
  2198. word-wrap:break-word;
  2199. text-transform:none;
  2200. visibility:hidden;
  2201. }
  2202. #u37014_div {
  2203. border-width:0px;
  2204. position:absolute;
  2205. left:0px;
  2206. top:0px;
  2207. width:375px;
  2208. height:50px;
  2209. background:inherit;
  2210. background-color:rgba(255, 255, 255, 1);
  2211. box-sizing:border-box;
  2212. border-width:1px;
  2213. border-style:solid;
  2214. border-color:rgba(242, 242, 242, 1);
  2215. border-radius:26px;
  2216. border-top-left-radius:0px;
  2217. border-top-right-radius:0px;
  2218. -moz-box-shadow:none;
  2219. -webkit-box-shadow:none;
  2220. box-shadow:none;
  2221. }
  2222. #u37014 {
  2223. border-width:0px;
  2224. position:absolute;
  2225. left:29px;
  2226. top:788px;
  2227. width:375px;
  2228. height:50px;
  2229. display:flex;
  2230. }
  2231. #u37014 .text {
  2232. position:absolute;
  2233. align-self:center;
  2234. padding:2px 2px 2px 2px;
  2235. box-sizing:border-box;
  2236. width:100%;
  2237. }
  2238. #u37014_text {
  2239. border-width:0px;
  2240. word-wrap:break-word;
  2241. text-transform:none;
  2242. visibility:hidden;
  2243. }
  2244. #u37015 {
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:0px;
  2248. top:0px;
  2249. width:0px;
  2250. height:0px;
  2251. }
  2252. #u37016_img {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:0px;
  2256. top:0px;
  2257. width:24px;
  2258. height:24px;
  2259. }
  2260. #u37016 {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:69px;
  2264. top:792px;
  2265. width:24px;
  2266. height:24px;
  2267. display:flex;
  2268. font-size:8px;
  2269. }
  2270. #u37016 .text {
  2271. position:absolute;
  2272. align-self:center;
  2273. padding:2px 2px 2px 2px;
  2274. box-sizing:border-box;
  2275. width:100%;
  2276. }
  2277. #u37016_text {
  2278. border-width:0px;
  2279. word-wrap:break-word;
  2280. text-transform:none;
  2281. }
  2282. #u37017_div {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:0px;
  2286. top:0px;
  2287. width:25px;
  2288. height:17px;
  2289. background:inherit;
  2290. background-color:rgba(255, 255, 255, 0);
  2291. border:none;
  2292. border-radius:0px;
  2293. -moz-box-shadow:none;
  2294. -webkit-box-shadow:none;
  2295. box-shadow:none;
  2296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2297. font-weight:400;
  2298. font-style:normal;
  2299. font-size:12px;
  2300. }
  2301. #u37017 {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:69px;
  2305. top:817px;
  2306. width:25px;
  2307. height:17px;
  2308. display:flex;
  2309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2310. font-weight:400;
  2311. font-style:normal;
  2312. font-size:12px;
  2313. }
  2314. #u37017 .text {
  2315. position:absolute;
  2316. align-self:flex-start;
  2317. padding:0px 0px 0px 0px;
  2318. box-sizing:border-box;
  2319. width:100%;
  2320. }
  2321. #u37017_text {
  2322. border-width:0px;
  2323. white-space:nowrap;
  2324. text-transform:none;
  2325. }
  2326. #u37018 {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:0px;
  2330. top:0px;
  2331. width:0px;
  2332. height:0px;
  2333. }
  2334. #u37019_img {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:24px;
  2340. height:24px;
  2341. }
  2342. #u37019 {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:339px;
  2346. top:794px;
  2347. width:24px;
  2348. height:24px;
  2349. display:flex;
  2350. font-size:8px;
  2351. }
  2352. #u37019 .text {
  2353. position:absolute;
  2354. align-self:center;
  2355. padding:2px 2px 2px 2px;
  2356. box-sizing:border-box;
  2357. width:100%;
  2358. }
  2359. #u37019_text {
  2360. border-width:0px;
  2361. word-wrap:break-word;
  2362. text-transform:none;
  2363. }
  2364. #u37020_div {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:0px;
  2368. top:0px;
  2369. width:25px;
  2370. height:17px;
  2371. background:inherit;
  2372. background-color:rgba(255, 255, 255, 0);
  2373. border:none;
  2374. border-radius:0px;
  2375. -moz-box-shadow:none;
  2376. -webkit-box-shadow:none;
  2377. box-shadow:none;
  2378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2379. font-weight:400;
  2380. font-style:normal;
  2381. font-size:12px;
  2382. }
  2383. #u37020 {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:339px;
  2387. top:819px;
  2388. width:25px;
  2389. height:17px;
  2390. display:flex;
  2391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2392. font-weight:400;
  2393. font-style:normal;
  2394. font-size:12px;
  2395. }
  2396. #u37020 .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. #u37020_text {
  2404. border-width:0px;
  2405. white-space:nowrap;
  2406. text-transform:none;
  2407. }
  2408. #u37021_div {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:0px;
  2412. top:0px;
  2413. width:375px;
  2414. height:681px;
  2415. background:inherit;
  2416. background-color:rgba(242, 242, 242, 0.462745098039216);
  2417. border:none;
  2418. border-radius:0px;
  2419. -moz-box-shadow:none;
  2420. -webkit-box-shadow:none;
  2421. box-shadow:none;
  2422. }
  2423. #u37021 {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:29px;
  2427. top:107px;
  2428. width:375px;
  2429. height:681px;
  2430. display:flex;
  2431. }
  2432. #u37021 .text {
  2433. position:absolute;
  2434. align-self:center;
  2435. padding:2px 2px 2px 2px;
  2436. box-sizing:border-box;
  2437. width:100%;
  2438. }
  2439. #u37021_text {
  2440. border-width:0px;
  2441. word-wrap:break-word;
  2442. text-transform:none;
  2443. visibility:hidden;
  2444. }
  2445. #u37022 {
  2446. border-width:0px;
  2447. position:absolute;
  2448. left:0px;
  2449. top:0px;
  2450. width:0px;
  2451. height:0px;
  2452. }
  2453. #u37023_img {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:0px;
  2457. top:0px;
  2458. width:24px;
  2459. height:24px;
  2460. }
  2461. #u37023 {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:251px;
  2465. top:792px;
  2466. width:24px;
  2467. height:24px;
  2468. display:flex;
  2469. font-size:8px;
  2470. }
  2471. #u37023 .text {
  2472. position:absolute;
  2473. align-self:center;
  2474. padding:2px 2px 2px 2px;
  2475. box-sizing:border-box;
  2476. width:100%;
  2477. }
  2478. #u37023_text {
  2479. border-width:0px;
  2480. word-wrap:break-word;
  2481. text-transform:none;
  2482. }
  2483. #u37024_div {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:0px;
  2487. top:0px;
  2488. width:37px;
  2489. height:17px;
  2490. background:inherit;
  2491. background-color:rgba(255, 255, 255, 0);
  2492. border:none;
  2493. border-radius:0px;
  2494. -moz-box-shadow:none;
  2495. -webkit-box-shadow:none;
  2496. box-shadow:none;
  2497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2498. font-weight:400;
  2499. font-style:normal;
  2500. font-size:12px;
  2501. }
  2502. #u37024 {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:245px;
  2506. top:817px;
  2507. width:37px;
  2508. height:17px;
  2509. display:flex;
  2510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2511. font-weight:400;
  2512. font-style:normal;
  2513. font-size:12px;
  2514. }
  2515. #u37024 .text {
  2516. position:absolute;
  2517. align-self:flex-start;
  2518. padding:0px 0px 0px 0px;
  2519. box-sizing:border-box;
  2520. width:100%;
  2521. }
  2522. #u37024_text {
  2523. border-width:0px;
  2524. white-space:nowrap;
  2525. text-transform:none;
  2526. }
  2527. #u37025 {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:0px;
  2531. top:0px;
  2532. width:0px;
  2533. height:0px;
  2534. }
  2535. #u37026_img {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:0px;
  2539. top:0px;
  2540. width:24px;
  2541. height:24px;
  2542. }
  2543. #u37026 {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:157px;
  2547. top:792px;
  2548. width:24px;
  2549. height:24px;
  2550. display:flex;
  2551. font-size:8px;
  2552. }
  2553. #u37026 .text {
  2554. position:absolute;
  2555. align-self:center;
  2556. padding:2px 2px 2px 2px;
  2557. box-sizing:border-box;
  2558. width:100%;
  2559. }
  2560. #u37026_text {
  2561. border-width:0px;
  2562. word-wrap:break-word;
  2563. text-transform:none;
  2564. }
  2565. #u37027_div {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:0px;
  2569. top:0px;
  2570. width:37px;
  2571. height:17px;
  2572. background:inherit;
  2573. background-color:rgba(255, 255, 255, 0);
  2574. border:none;
  2575. border-radius:0px;
  2576. -moz-box-shadow:none;
  2577. -webkit-box-shadow:none;
  2578. box-shadow:none;
  2579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2580. font-weight:400;
  2581. font-style:normal;
  2582. font-size:12px;
  2583. }
  2584. #u37027 {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:151px;
  2588. top:817px;
  2589. width:37px;
  2590. height:17px;
  2591. display:flex;
  2592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2593. font-weight:400;
  2594. font-style:normal;
  2595. font-size:12px;
  2596. }
  2597. #u37027 .text {
  2598. position:absolute;
  2599. align-self:flex-start;
  2600. padding:0px 0px 0px 0px;
  2601. box-sizing:border-box;
  2602. width:100%;
  2603. }
  2604. #u37027_text {
  2605. border-width:0px;
  2606. white-space:nowrap;
  2607. text-transform:none;
  2608. }
  2609. #u37028_img {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:0px;
  2613. top:0px;
  2614. width:375px;
  2615. height:44px;
  2616. }
  2617. #u37028 {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:29px;
  2621. top:24px;
  2622. width:375px;
  2623. height:44px;
  2624. display:flex;
  2625. }
  2626. #u37028 .text {
  2627. position:absolute;
  2628. align-self:center;
  2629. padding:2px 2px 2px 2px;
  2630. box-sizing:border-box;
  2631. width:100%;
  2632. }
  2633. #u37028_text {
  2634. border-width:0px;
  2635. word-wrap:break-word;
  2636. text-transform:none;
  2637. visibility:hidden;
  2638. }
  2639. #u37029 {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:0px;
  2643. top:0px;
  2644. width:0px;
  2645. height:0px;
  2646. }
  2647. #u37030_div {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:0px;
  2651. top:0px;
  2652. width:88px;
  2653. height:32px;
  2654. background:inherit;
  2655. background-color:rgba(255, 255, 255, 1);
  2656. box-sizing:border-box;
  2657. border-width:1px;
  2658. border-style:solid;
  2659. border-color:rgba(242, 242, 242, 1);
  2660. border-radius:33px;
  2661. -moz-box-shadow:none;
  2662. -webkit-box-shadow:none;
  2663. box-shadow:none;
  2664. }
  2665. #u37030 {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:309px;
  2669. top:71px;
  2670. width:88px;
  2671. height:32px;
  2672. display:flex;
  2673. }
  2674. #u37030 .text {
  2675. position:absolute;
  2676. align-self:center;
  2677. padding:2px 2px 2px 2px;
  2678. box-sizing:border-box;
  2679. width:100%;
  2680. }
  2681. #u37030_text {
  2682. border-width:0px;
  2683. word-wrap:break-word;
  2684. text-transform:none;
  2685. visibility:hidden;
  2686. }
  2687. #u37031 {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:0px;
  2691. top:0px;
  2692. width:0px;
  2693. height:0px;
  2694. }
  2695. #u37032_img {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:0px;
  2699. top:0px;
  2700. width:18px;
  2701. height:18px;
  2702. }
  2703. #u37032 {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:372px;
  2707. top:78px;
  2708. width:18px;
  2709. height:18px;
  2710. display:flex;
  2711. }
  2712. #u37032 .text {
  2713. position:absolute;
  2714. align-self:center;
  2715. padding:2px 2px 2px 2px;
  2716. box-sizing:border-box;
  2717. width:100%;
  2718. }
  2719. #u37032_text {
  2720. border-width:0px;
  2721. word-wrap:break-word;
  2722. text-transform:none;
  2723. visibility:hidden;
  2724. }
  2725. #u37033_img {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:0px;
  2729. top:0px;
  2730. width:6px;
  2731. height:6px;
  2732. }
  2733. #u37033 {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:378px;
  2737. top:84px;
  2738. width:6px;
  2739. height:6px;
  2740. display:flex;
  2741. }
  2742. #u37033 .text {
  2743. position:absolute;
  2744. align-self:center;
  2745. padding:2px 2px 2px 2px;
  2746. box-sizing:border-box;
  2747. width:100%;
  2748. }
  2749. #u37033_text {
  2750. border-width:0px;
  2751. word-wrap:break-word;
  2752. text-transform:none;
  2753. visibility:hidden;
  2754. }
  2755. #u37034 {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:0px;
  2759. top:0px;
  2760. width:0px;
  2761. height:0px;
  2762. }
  2763. #u37035_img {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:5px;
  2769. height:5px;
  2770. }
  2771. #u37035 {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:323px;
  2775. top:85px;
  2776. width:5px;
  2777. height:5px;
  2778. display:flex;
  2779. }
  2780. #u37035 .text {
  2781. position:absolute;
  2782. align-self:center;
  2783. padding:2px 2px 2px 2px;
  2784. box-sizing:border-box;
  2785. width:100%;
  2786. }
  2787. #u37035_text {
  2788. border-width:0px;
  2789. word-wrap:break-word;
  2790. text-transform:none;
  2791. visibility:hidden;
  2792. }
  2793. #u37036_img {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:0px;
  2797. top:0px;
  2798. width:5px;
  2799. height:5px;
  2800. }
  2801. #u37036 {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:339px;
  2805. top:85px;
  2806. width:5px;
  2807. height:5px;
  2808. display:flex;
  2809. }
  2810. #u37036 .text {
  2811. position:absolute;
  2812. align-self:center;
  2813. padding:2px 2px 2px 2px;
  2814. box-sizing:border-box;
  2815. width:100%;
  2816. }
  2817. #u37036_text {
  2818. border-width:0px;
  2819. word-wrap:break-word;
  2820. text-transform:none;
  2821. visibility:hidden;
  2822. }
  2823. #u37037_img {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:0px;
  2827. top:0px;
  2828. width:7px;
  2829. height:7px;
  2830. }
  2831. #u37037 {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:330px;
  2835. top:84px;
  2836. width:7px;
  2837. height:7px;
  2838. display:flex;
  2839. }
  2840. #u37037 .text {
  2841. position:absolute;
  2842. align-self:center;
  2843. padding:2px 2px 2px 2px;
  2844. box-sizing:border-box;
  2845. width:100%;
  2846. }
  2847. #u37037_text {
  2848. border-width:0px;
  2849. word-wrap:break-word;
  2850. text-transform:none;
  2851. visibility:hidden;
  2852. }
  2853. #u37038_img {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:0px;
  2857. top:0px;
  2858. width:19px;
  2859. height:2px;
  2860. }
  2861. #u37038 {
  2862. border-width:0px;
  2863. position:absolute;
  2864. left:347px;
  2865. top:87px;
  2866. width:18px;
  2867. height:1px;
  2868. display:flex;
  2869. -webkit-transform:rotate(90deg);
  2870. -moz-transform:rotate(90deg);
  2871. -ms-transform:rotate(90deg);
  2872. transform:rotate(90deg);
  2873. }
  2874. #u37038 .text {
  2875. position:absolute;
  2876. align-self:center;
  2877. padding:2px 2px 2px 2px;
  2878. box-sizing:border-box;
  2879. width:100%;
  2880. }
  2881. #u37038_text {
  2882. border-width:0px;
  2883. word-wrap:break-word;
  2884. text-transform:none;
  2885. visibility:hidden;
  2886. }
  2887. #u37039_div {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:0px;
  2891. top:0px;
  2892. width:65px;
  2893. height:22px;
  2894. background:inherit;
  2895. background-color:rgba(255, 255, 255, 0);
  2896. border:none;
  2897. border-radius:0px;
  2898. -moz-box-shadow:none;
  2899. -webkit-box-shadow:none;
  2900. box-shadow:none;
  2901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2902. font-weight:400;
  2903. font-style:normal;
  2904. font-size:16px;
  2905. color:#000000;
  2906. }
  2907. #u37039 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:187px;
  2911. top:78px;
  2912. width:65px;
  2913. height:22px;
  2914. display:flex;
  2915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2916. font-weight:400;
  2917. font-style:normal;
  2918. font-size:16px;
  2919. color:#000000;
  2920. }
  2921. #u37039 .text {
  2922. position:absolute;
  2923. align-self:flex-start;
  2924. padding:0px 0px 0px 0px;
  2925. box-sizing:border-box;
  2926. width:100%;
  2927. }
  2928. #u37039_text {
  2929. border-width:0px;
  2930. white-space:nowrap;
  2931. text-transform:none;
  2932. }
  2933. #u37040_div {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:0px;
  2937. top:0px;
  2938. width:375px;
  2939. height:683px;
  2940. background:inherit;
  2941. background-color:rgba(242, 242, 242, 0.996078431372549);
  2942. border:none;
  2943. border-radius:0px;
  2944. -moz-box-shadow:none;
  2945. -webkit-box-shadow:none;
  2946. box-shadow:none;
  2947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2948. font-weight:400;
  2949. font-style:normal;
  2950. }
  2951. #u37040 {
  2952. border-width:0px;
  2953. position:absolute;
  2954. left:29px;
  2955. top:106px;
  2956. width:375px;
  2957. height:683px;
  2958. display:flex;
  2959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2960. font-weight:400;
  2961. font-style:normal;
  2962. }
  2963. #u37040 .text {
  2964. position:absolute;
  2965. align-self:center;
  2966. padding:2px 2px 2px 2px;
  2967. box-sizing:border-box;
  2968. width:100%;
  2969. }
  2970. #u37040_text {
  2971. border-width:0px;
  2972. word-wrap:break-word;
  2973. text-transform:none;
  2974. visibility:hidden;
  2975. }
  2976. #u37041_div {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:0px;
  2980. top:0px;
  2981. width:12px;
  2982. height:12px;
  2983. background:inherit;
  2984. background-color:rgba(255, 255, 255, 0);
  2985. box-sizing:border-box;
  2986. border-width:2px;
  2987. border-style:solid;
  2988. border-color:rgba(51, 51, 51, 1);
  2989. border-right:0px;
  2990. border-bottom:0px;
  2991. border-radius:0px;
  2992. border-top-right-radius:0px;
  2993. border-bottom-left-radius:0px;
  2994. -moz-box-shadow:none;
  2995. -webkit-box-shadow:none;
  2996. box-shadow:none;
  2997. }
  2998. #u37041 {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:44px;
  3002. top:81px;
  3003. width:12px;
  3004. height:12px;
  3005. display:flex;
  3006. -webkit-transform:rotate(315deg);
  3007. -moz-transform:rotate(315deg);
  3008. -ms-transform:rotate(315deg);
  3009. transform:rotate(315deg);
  3010. }
  3011. #u37041 .text {
  3012. position:absolute;
  3013. align-self:center;
  3014. padding:2px 2px 2px 2px;
  3015. box-sizing:border-box;
  3016. width:100%;
  3017. }
  3018. #u37041_text {
  3019. border-width:0px;
  3020. word-wrap:break-word;
  3021. text-transform:none;
  3022. visibility:hidden;
  3023. }
  3024. #u37042_img {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:0px;
  3028. top:0px;
  3029. width:23px;
  3030. height:23px;
  3031. }
  3032. #u37042 {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:71px;
  3036. top:76px;
  3037. width:23px;
  3038. height:23px;
  3039. display:flex;
  3040. }
  3041. #u37042 .text {
  3042. position:absolute;
  3043. align-self:center;
  3044. padding:2px 2px 2px 2px;
  3045. box-sizing:border-box;
  3046. width:100%;
  3047. }
  3048. #u37042_text {
  3049. border-width:0px;
  3050. word-wrap:break-word;
  3051. text-transform:none;
  3052. visibility:hidden;
  3053. }
  3054. #u37043 {
  3055. border-width:0px;
  3056. position:absolute;
  3057. left:0px;
  3058. top:0px;
  3059. width:0px;
  3060. height:0px;
  3061. }
  3062. #u37044_div {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:0px;
  3066. top:0px;
  3067. width:11px;
  3068. height:10px;
  3069. background:inherit;
  3070. background-color:rgba(242, 242, 242, 1);
  3071. border:none;
  3072. border-radius:0px;
  3073. -moz-box-shadow:none;
  3074. -webkit-box-shadow:none;
  3075. box-shadow:none;
  3076. }
  3077. #u37044 {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:360px;
  3081. top:753px;
  3082. width:11px;
  3083. height:10px;
  3084. display:flex;
  3085. }
  3086. #u37044 .text {
  3087. position:absolute;
  3088. align-self:center;
  3089. padding:2px 2px 2px 2px;
  3090. box-sizing:border-box;
  3091. width:100%;
  3092. }
  3093. #u37044_text {
  3094. border-width:0px;
  3095. word-wrap:break-word;
  3096. text-transform:none;
  3097. visibility:hidden;
  3098. }
  3099. #u37045_div {
  3100. border-width:0px;
  3101. position:absolute;
  3102. left:0px;
  3103. top:0px;
  3104. width:11px;
  3105. height:10px;
  3106. background:inherit;
  3107. background-color:rgba(242, 242, 242, 1);
  3108. border:none;
  3109. border-radius:0px;
  3110. -moz-box-shadow:none;
  3111. -webkit-box-shadow:none;
  3112. box-shadow:none;
  3113. }
  3114. #u37045 {
  3115. border-width:0px;
  3116. position:absolute;
  3117. left:373px;
  3118. top:753px;
  3119. width:11px;
  3120. height:10px;
  3121. display:flex;
  3122. }
  3123. #u37045 .text {
  3124. position:absolute;
  3125. align-self:center;
  3126. padding:2px 2px 2px 2px;
  3127. box-sizing:border-box;
  3128. width:100%;
  3129. }
  3130. #u37045_text {
  3131. border-width:0px;
  3132. word-wrap:break-word;
  3133. text-transform:none;
  3134. visibility:hidden;
  3135. }
  3136. #u37046_div {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:0px;
  3140. top:0px;
  3141. width:11px;
  3142. height:10px;
  3143. background:inherit;
  3144. background-color:rgba(242, 242, 242, 1);
  3145. border:none;
  3146. border-radius:0px;
  3147. -moz-box-shadow:none;
  3148. -webkit-box-shadow:none;
  3149. box-shadow:none;
  3150. }
  3151. #u37046 {
  3152. border-width:0px;
  3153. position:absolute;
  3154. left:360px;
  3155. top:765px;
  3156. width:11px;
  3157. height:10px;
  3158. display:flex;
  3159. }
  3160. #u37046 .text {
  3161. position:absolute;
  3162. align-self:center;
  3163. padding:2px 2px 2px 2px;
  3164. box-sizing:border-box;
  3165. width:100%;
  3166. }
  3167. #u37046_text {
  3168. border-width:0px;
  3169. word-wrap:break-word;
  3170. text-transform:none;
  3171. visibility:hidden;
  3172. }
  3173. #u37047_div {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:0px;
  3177. top:0px;
  3178. width:11px;
  3179. height:10px;
  3180. background:inherit;
  3181. background-color:rgba(242, 242, 242, 1);
  3182. border:none;
  3183. border-radius:0px;
  3184. -moz-box-shadow:none;
  3185. -webkit-box-shadow:none;
  3186. box-shadow:none;
  3187. }
  3188. #u37047 {
  3189. border-width:0px;
  3190. position:absolute;
  3191. left:373px;
  3192. top:765px;
  3193. width:11px;
  3194. height:10px;
  3195. display:flex;
  3196. }
  3197. #u37047 .text {
  3198. position:absolute;
  3199. align-self:center;
  3200. padding:2px 2px 2px 2px;
  3201. box-sizing:border-box;
  3202. width:100%;
  3203. }
  3204. #u37047_text {
  3205. border-width:0px;
  3206. word-wrap:break-word;
  3207. text-transform:none;
  3208. visibility:hidden;
  3209. }
  3210. #u37048_img {
  3211. border-width:0px;
  3212. position:absolute;
  3213. left:0px;
  3214. top:0px;
  3215. width:175px;
  3216. height:119px;
  3217. }
  3218. #u37048 {
  3219. border-width:0px;
  3220. position:absolute;
  3221. left:37px;
  3222. top:217px;
  3223. width:175px;
  3224. height:119px;
  3225. display:flex;
  3226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3227. font-weight:400;
  3228. font-style:normal;
  3229. color:#FFFFFF;
  3230. }
  3231. #u37048 .text {
  3232. position:absolute;
  3233. align-self:center;
  3234. padding:2px 2px 2px 2px;
  3235. box-sizing:border-box;
  3236. width:100%;
  3237. }
  3238. #u37048_text {
  3239. border-width:0px;
  3240. word-wrap:break-word;
  3241. text-transform:none;
  3242. }
  3243. #u37049_img {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:0px;
  3247. top:0px;
  3248. width:175px;
  3249. height:119px;
  3250. }
  3251. #u37049 {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:222px;
  3255. top:217px;
  3256. width:175px;
  3257. height:119px;
  3258. display:flex;
  3259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3260. font-weight:400;
  3261. font-style:normal;
  3262. color:#FFFFFF;
  3263. }
  3264. #u37049 .text {
  3265. position:absolute;
  3266. align-self:center;
  3267. padding:2px 2px 2px 2px;
  3268. box-sizing:border-box;
  3269. width:100%;
  3270. }
  3271. #u37049_text {
  3272. border-width:0px;
  3273. word-wrap:break-word;
  3274. text-transform:none;
  3275. }
  3276. #u37050_img {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:0px;
  3280. top:0px;
  3281. width:175px;
  3282. height:119px;
  3283. }
  3284. #u37050 {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:37px;
  3288. top:346px;
  3289. width:175px;
  3290. height:119px;
  3291. display:flex;
  3292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3293. font-weight:400;
  3294. font-style:normal;
  3295. color:#FFFFFF;
  3296. }
  3297. #u37050 .text {
  3298. position:absolute;
  3299. align-self:center;
  3300. padding:2px 2px 2px 2px;
  3301. box-sizing:border-box;
  3302. width:100%;
  3303. }
  3304. #u37050_text {
  3305. border-width:0px;
  3306. word-wrap:break-word;
  3307. text-transform:none;
  3308. }
  3309. #u37051_img {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:0px;
  3313. top:0px;
  3314. width:175px;
  3315. height:119px;
  3316. }
  3317. #u37051 {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:222px;
  3321. top:346px;
  3322. width:175px;
  3323. height:119px;
  3324. display:flex;
  3325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3326. font-weight:400;
  3327. font-style:normal;
  3328. color:#FFFFFF;
  3329. }
  3330. #u37051 .text {
  3331. position:absolute;
  3332. align-self:center;
  3333. padding:2px 2px 2px 2px;
  3334. box-sizing:border-box;
  3335. width:100%;
  3336. }
  3337. #u37051_text {
  3338. border-width:0px;
  3339. word-wrap:break-word;
  3340. text-transform:none;
  3341. }
  3342. #u37052_img {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:0px;
  3346. top:0px;
  3347. width:175px;
  3348. height:119px;
  3349. }
  3350. #u37052 {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:37px;
  3354. top:475px;
  3355. width:175px;
  3356. height:119px;
  3357. display:flex;
  3358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3359. font-weight:400;
  3360. font-style:normal;
  3361. color:#FFFFFF;
  3362. }
  3363. #u37052 .text {
  3364. position:absolute;
  3365. align-self:center;
  3366. padding:2px 2px 2px 2px;
  3367. box-sizing:border-box;
  3368. width:100%;
  3369. }
  3370. #u37052_text {
  3371. border-width:0px;
  3372. word-wrap:break-word;
  3373. text-transform:none;
  3374. }
  3375. #u37053_img {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:0px;
  3379. top:0px;
  3380. width:175px;
  3381. height:119px;
  3382. }
  3383. #u37053 {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:222px;
  3387. top:475px;
  3388. width:175px;
  3389. height:119px;
  3390. display:flex;
  3391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3392. font-weight:400;
  3393. font-style:normal;
  3394. color:#FFFFFF;
  3395. }
  3396. #u37053 .text {
  3397. position:absolute;
  3398. align-self:center;
  3399. padding:2px 2px 2px 2px;
  3400. box-sizing:border-box;
  3401. width:100%;
  3402. }
  3403. #u37053_text {
  3404. border-width:0px;
  3405. word-wrap:break-word;
  3406. text-transform:none;
  3407. }
  3408. #u37054 {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:0px;
  3412. top:0px;
  3413. width:0px;
  3414. height:0px;
  3415. }
  3416. #u37056_img {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:0px;
  3420. top:0px;
  3421. width:433px;
  3422. height:865px;
  3423. }
  3424. #u37056 {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:1369px;
  3428. top:0px;
  3429. width:433px;
  3430. height:865px;
  3431. display:flex;
  3432. }
  3433. #u37056 .text {
  3434. position:absolute;
  3435. align-self:center;
  3436. padding:2px 2px 2px 2px;
  3437. box-sizing:border-box;
  3438. width:100%;
  3439. }
  3440. #u37056_text {
  3441. border-width:0px;
  3442. word-wrap:break-word;
  3443. text-transform:none;
  3444. visibility:hidden;
  3445. }
  3446. #u37057_div {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:0px;
  3450. top:0px;
  3451. width:375px;
  3452. height:40px;
  3453. background:inherit;
  3454. background-color:rgba(255, 255, 255, 1);
  3455. box-sizing:border-box;
  3456. border-width:1px;
  3457. border-style:solid;
  3458. border-color:rgba(215, 215, 215, 1);
  3459. border-left:0px;
  3460. border-top:0px;
  3461. border-right:0px;
  3462. border-radius:0px;
  3463. border-bottom-right-radius:0px;
  3464. border-bottom-left-radius:0px;
  3465. -moz-box-shadow:none;
  3466. -webkit-box-shadow:none;
  3467. box-shadow:none;
  3468. }
  3469. #u37057 {
  3470. border-width:0px;
  3471. position:absolute;
  3472. left:1398px;
  3473. top:67px;
  3474. width:375px;
  3475. height:40px;
  3476. display:flex;
  3477. }
  3478. #u37057 .text {
  3479. position:absolute;
  3480. align-self:center;
  3481. padding:2px 2px 2px 2px;
  3482. box-sizing:border-box;
  3483. width:100%;
  3484. }
  3485. #u37057_text {
  3486. border-width:0px;
  3487. word-wrap:break-word;
  3488. text-transform:none;
  3489. visibility:hidden;
  3490. }
  3491. #u37058 {
  3492. border-width:0px;
  3493. position:absolute;
  3494. left:0px;
  3495. top:0px;
  3496. width:0px;
  3497. height:0px;
  3498. }
  3499. #u37059_div {
  3500. border-width:0px;
  3501. position:absolute;
  3502. left:0px;
  3503. top:0px;
  3504. width:88px;
  3505. height:32px;
  3506. background:inherit;
  3507. background-color:rgba(255, 255, 255, 1);
  3508. box-sizing:border-box;
  3509. border-width:1px;
  3510. border-style:solid;
  3511. border-color:rgba(242, 242, 242, 1);
  3512. border-radius:33px;
  3513. -moz-box-shadow:none;
  3514. -webkit-box-shadow:none;
  3515. box-shadow:none;
  3516. }
  3517. #u37059 {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:1678px;
  3521. top:71px;
  3522. width:88px;
  3523. height:32px;
  3524. display:flex;
  3525. }
  3526. #u37059 .text {
  3527. position:absolute;
  3528. align-self:center;
  3529. padding:2px 2px 2px 2px;
  3530. box-sizing:border-box;
  3531. width:100%;
  3532. }
  3533. #u37059_text {
  3534. border-width:0px;
  3535. word-wrap:break-word;
  3536. text-transform:none;
  3537. visibility:hidden;
  3538. }
  3539. #u37060 {
  3540. border-width:0px;
  3541. position:absolute;
  3542. left:0px;
  3543. top:0px;
  3544. width:0px;
  3545. height:0px;
  3546. }
  3547. #u37061_img {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:0px;
  3551. top:0px;
  3552. width:18px;
  3553. height:18px;
  3554. }
  3555. #u37061 {
  3556. border-width:0px;
  3557. position:absolute;
  3558. left:1741px;
  3559. top:78px;
  3560. width:18px;
  3561. height:18px;
  3562. display:flex;
  3563. }
  3564. #u37061 .text {
  3565. position:absolute;
  3566. align-self:center;
  3567. padding:2px 2px 2px 2px;
  3568. box-sizing:border-box;
  3569. width:100%;
  3570. }
  3571. #u37061_text {
  3572. border-width:0px;
  3573. word-wrap:break-word;
  3574. text-transform:none;
  3575. visibility:hidden;
  3576. }
  3577. #u37062_img {
  3578. border-width:0px;
  3579. position:absolute;
  3580. left:0px;
  3581. top:0px;
  3582. width:6px;
  3583. height:6px;
  3584. }
  3585. #u37062 {
  3586. border-width:0px;
  3587. position:absolute;
  3588. left:1747px;
  3589. top:84px;
  3590. width:6px;
  3591. height:6px;
  3592. display:flex;
  3593. }
  3594. #u37062 .text {
  3595. position:absolute;
  3596. align-self:center;
  3597. padding:2px 2px 2px 2px;
  3598. box-sizing:border-box;
  3599. width:100%;
  3600. }
  3601. #u37062_text {
  3602. border-width:0px;
  3603. word-wrap:break-word;
  3604. text-transform:none;
  3605. visibility:hidden;
  3606. }
  3607. #u37063 {
  3608. border-width:0px;
  3609. position:absolute;
  3610. left:0px;
  3611. top:0px;
  3612. width:0px;
  3613. height:0px;
  3614. }
  3615. #u37064_img {
  3616. border-width:0px;
  3617. position:absolute;
  3618. left:0px;
  3619. top:0px;
  3620. width:5px;
  3621. height:5px;
  3622. }
  3623. #u37064 {
  3624. border-width:0px;
  3625. position:absolute;
  3626. left:1692px;
  3627. top:85px;
  3628. width:5px;
  3629. height:5px;
  3630. display:flex;
  3631. }
  3632. #u37064 .text {
  3633. position:absolute;
  3634. align-self:center;
  3635. padding:2px 2px 2px 2px;
  3636. box-sizing:border-box;
  3637. width:100%;
  3638. }
  3639. #u37064_text {
  3640. border-width:0px;
  3641. word-wrap:break-word;
  3642. text-transform:none;
  3643. visibility:hidden;
  3644. }
  3645. #u37065_img {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:0px;
  3649. top:0px;
  3650. width:5px;
  3651. height:5px;
  3652. }
  3653. #u37065 {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:1708px;
  3657. top:85px;
  3658. width:5px;
  3659. height:5px;
  3660. display:flex;
  3661. }
  3662. #u37065 .text {
  3663. position:absolute;
  3664. align-self:center;
  3665. padding:2px 2px 2px 2px;
  3666. box-sizing:border-box;
  3667. width:100%;
  3668. }
  3669. #u37065_text {
  3670. border-width:0px;
  3671. word-wrap:break-word;
  3672. text-transform:none;
  3673. visibility:hidden;
  3674. }
  3675. #u37066_img {
  3676. border-width:0px;
  3677. position:absolute;
  3678. left:0px;
  3679. top:0px;
  3680. width:7px;
  3681. height:7px;
  3682. }
  3683. #u37066 {
  3684. border-width:0px;
  3685. position:absolute;
  3686. left:1699px;
  3687. top:84px;
  3688. width:7px;
  3689. height:7px;
  3690. display:flex;
  3691. }
  3692. #u37066 .text {
  3693. position:absolute;
  3694. align-self:center;
  3695. padding:2px 2px 2px 2px;
  3696. box-sizing:border-box;
  3697. width:100%;
  3698. }
  3699. #u37066_text {
  3700. border-width:0px;
  3701. word-wrap:break-word;
  3702. text-transform:none;
  3703. visibility:hidden;
  3704. }
  3705. #u37067_img {
  3706. border-width:0px;
  3707. position:absolute;
  3708. left:0px;
  3709. top:0px;
  3710. width:19px;
  3711. height:2px;
  3712. }
  3713. #u37067 {
  3714. border-width:0px;
  3715. position:absolute;
  3716. left:1716px;
  3717. top:87px;
  3718. width:18px;
  3719. height:1px;
  3720. display:flex;
  3721. -webkit-transform:rotate(90deg);
  3722. -moz-transform:rotate(90deg);
  3723. -ms-transform:rotate(90deg);
  3724. transform:rotate(90deg);
  3725. }
  3726. #u37067 .text {
  3727. position:absolute;
  3728. align-self:center;
  3729. padding:2px 2px 2px 2px;
  3730. box-sizing:border-box;
  3731. width:100%;
  3732. }
  3733. #u37067_text {
  3734. border-width:0px;
  3735. word-wrap:break-word;
  3736. text-transform:none;
  3737. visibility:hidden;
  3738. }
  3739. #u37068_img {
  3740. border-width:0px;
  3741. position:absolute;
  3742. left:0px;
  3743. top:0px;
  3744. width:375px;
  3745. height:44px;
  3746. }
  3747. #u37068 {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:1398px;
  3751. top:24px;
  3752. width:375px;
  3753. height:44px;
  3754. display:flex;
  3755. }
  3756. #u37068 .text {
  3757. position:absolute;
  3758. align-self:center;
  3759. padding:2px 2px 2px 2px;
  3760. box-sizing:border-box;
  3761. width:100%;
  3762. }
  3763. #u37068_text {
  3764. border-width:0px;
  3765. word-wrap:break-word;
  3766. text-transform:none;
  3767. visibility:hidden;
  3768. }
  3769. #u37069_div {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:0px;
  3773. top:0px;
  3774. width:375px;
  3775. height:50px;
  3776. background:inherit;
  3777. background-color:rgba(255, 255, 255, 1);
  3778. box-sizing:border-box;
  3779. border-width:1px;
  3780. border-style:solid;
  3781. border-color:rgba(242, 242, 242, 1);
  3782. border-radius:26px;
  3783. border-top-left-radius:0px;
  3784. border-top-right-radius:0px;
  3785. -moz-box-shadow:none;
  3786. -webkit-box-shadow:none;
  3787. box-shadow:none;
  3788. }
  3789. #u37069 {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:1398px;
  3793. top:788px;
  3794. width:375px;
  3795. height:50px;
  3796. display:flex;
  3797. }
  3798. #u37069 .text {
  3799. position:absolute;
  3800. align-self:center;
  3801. padding:2px 2px 2px 2px;
  3802. box-sizing:border-box;
  3803. width:100%;
  3804. }
  3805. #u37069_text {
  3806. border-width:0px;
  3807. word-wrap:break-word;
  3808. text-transform:none;
  3809. visibility:hidden;
  3810. }
  3811. #u37070 {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:0px;
  3815. top:0px;
  3816. width:0px;
  3817. height:0px;
  3818. }
  3819. #u37071_img {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:0px;
  3823. top:0px;
  3824. width:24px;
  3825. height:24px;
  3826. }
  3827. #u37071 {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:1438px;
  3831. top:792px;
  3832. width:24px;
  3833. height:24px;
  3834. display:flex;
  3835. font-size:8px;
  3836. }
  3837. #u37071 .text {
  3838. position:absolute;
  3839. align-self:center;
  3840. padding:2px 2px 2px 2px;
  3841. box-sizing:border-box;
  3842. width:100%;
  3843. }
  3844. #u37071_text {
  3845. border-width:0px;
  3846. word-wrap:break-word;
  3847. text-transform:none;
  3848. }
  3849. #u37072_div {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:0px;
  3853. top:0px;
  3854. width:25px;
  3855. height:17px;
  3856. background:inherit;
  3857. background-color:rgba(255, 255, 255, 0);
  3858. border:none;
  3859. border-radius:0px;
  3860. -moz-box-shadow:none;
  3861. -webkit-box-shadow:none;
  3862. box-shadow:none;
  3863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3864. font-weight:400;
  3865. font-style:normal;
  3866. font-size:12px;
  3867. }
  3868. #u37072 {
  3869. border-width:0px;
  3870. position:absolute;
  3871. left:1438px;
  3872. top:817px;
  3873. width:25px;
  3874. height:17px;
  3875. display:flex;
  3876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3877. font-weight:400;
  3878. font-style:normal;
  3879. font-size:12px;
  3880. }
  3881. #u37072 .text {
  3882. position:absolute;
  3883. align-self:flex-start;
  3884. padding:0px 0px 0px 0px;
  3885. box-sizing:border-box;
  3886. width:100%;
  3887. }
  3888. #u37072_text {
  3889. border-width:0px;
  3890. white-space:nowrap;
  3891. text-transform:none;
  3892. }
  3893. #u37073 {
  3894. border-width:0px;
  3895. position:absolute;
  3896. left:0px;
  3897. top:0px;
  3898. width:0px;
  3899. height:0px;
  3900. }
  3901. #u37074_img {
  3902. border-width:0px;
  3903. position:absolute;
  3904. left:0px;
  3905. top:0px;
  3906. width:24px;
  3907. height:24px;
  3908. }
  3909. #u37074 {
  3910. border-width:0px;
  3911. position:absolute;
  3912. left:1708px;
  3913. top:794px;
  3914. width:24px;
  3915. height:24px;
  3916. display:flex;
  3917. font-size:8px;
  3918. }
  3919. #u37074 .text {
  3920. position:absolute;
  3921. align-self:center;
  3922. padding:2px 2px 2px 2px;
  3923. box-sizing:border-box;
  3924. width:100%;
  3925. }
  3926. #u37074_text {
  3927. border-width:0px;
  3928. word-wrap:break-word;
  3929. text-transform:none;
  3930. }
  3931. #u37075_div {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:0px;
  3935. top:0px;
  3936. width:25px;
  3937. height:17px;
  3938. background:inherit;
  3939. background-color:rgba(255, 255, 255, 0);
  3940. border:none;
  3941. border-radius:0px;
  3942. -moz-box-shadow:none;
  3943. -webkit-box-shadow:none;
  3944. box-shadow:none;
  3945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3946. font-weight:400;
  3947. font-style:normal;
  3948. font-size:12px;
  3949. }
  3950. #u37075 {
  3951. border-width:0px;
  3952. position:absolute;
  3953. left:1708px;
  3954. top:819px;
  3955. width:25px;
  3956. height:17px;
  3957. display:flex;
  3958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3959. font-weight:400;
  3960. font-style:normal;
  3961. font-size:12px;
  3962. }
  3963. #u37075 .text {
  3964. position:absolute;
  3965. align-self:flex-start;
  3966. padding:0px 0px 0px 0px;
  3967. box-sizing:border-box;
  3968. width:100%;
  3969. }
  3970. #u37075_text {
  3971. border-width:0px;
  3972. white-space:nowrap;
  3973. text-transform:none;
  3974. }
  3975. #u37076_div {
  3976. border-width:0px;
  3977. position:absolute;
  3978. left:0px;
  3979. top:0px;
  3980. width:375px;
  3981. height:681px;
  3982. background:inherit;
  3983. background-color:rgba(242, 242, 242, 0.462745098039216);
  3984. border:none;
  3985. border-radius:0px;
  3986. -moz-box-shadow:none;
  3987. -webkit-box-shadow:none;
  3988. box-shadow:none;
  3989. }
  3990. #u37076 {
  3991. border-width:0px;
  3992. position:absolute;
  3993. left:1398px;
  3994. top:107px;
  3995. width:375px;
  3996. height:681px;
  3997. display:flex;
  3998. }
  3999. #u37076 .text {
  4000. position:absolute;
  4001. align-self:center;
  4002. padding:2px 2px 2px 2px;
  4003. box-sizing:border-box;
  4004. width:100%;
  4005. }
  4006. #u37076_text {
  4007. border-width:0px;
  4008. word-wrap:break-word;
  4009. text-transform:none;
  4010. visibility:hidden;
  4011. }
  4012. #u37077 {
  4013. border-width:0px;
  4014. position:absolute;
  4015. left:0px;
  4016. top:0px;
  4017. width:0px;
  4018. height:0px;
  4019. }
  4020. #u37078_img {
  4021. border-width:0px;
  4022. position:absolute;
  4023. left:0px;
  4024. top:0px;
  4025. width:24px;
  4026. height:24px;
  4027. }
  4028. #u37078 {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:1620px;
  4032. top:792px;
  4033. width:24px;
  4034. height:24px;
  4035. display:flex;
  4036. font-size:8px;
  4037. }
  4038. #u37078 .text {
  4039. position:absolute;
  4040. align-self:center;
  4041. padding:2px 2px 2px 2px;
  4042. box-sizing:border-box;
  4043. width:100%;
  4044. }
  4045. #u37078_text {
  4046. border-width:0px;
  4047. word-wrap:break-word;
  4048. text-transform:none;
  4049. }
  4050. #u37079_div {
  4051. border-width:0px;
  4052. position:absolute;
  4053. left:0px;
  4054. top:0px;
  4055. width:37px;
  4056. height:17px;
  4057. background:inherit;
  4058. background-color:rgba(255, 255, 255, 0);
  4059. border:none;
  4060. border-radius:0px;
  4061. -moz-box-shadow:none;
  4062. -webkit-box-shadow:none;
  4063. box-shadow:none;
  4064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4065. font-weight:400;
  4066. font-style:normal;
  4067. font-size:12px;
  4068. }
  4069. #u37079 {
  4070. border-width:0px;
  4071. position:absolute;
  4072. left:1614px;
  4073. top:817px;
  4074. width:37px;
  4075. height:17px;
  4076. display:flex;
  4077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4078. font-weight:400;
  4079. font-style:normal;
  4080. font-size:12px;
  4081. }
  4082. #u37079 .text {
  4083. position:absolute;
  4084. align-self:flex-start;
  4085. padding:0px 0px 0px 0px;
  4086. box-sizing:border-box;
  4087. width:100%;
  4088. }
  4089. #u37079_text {
  4090. border-width:0px;
  4091. white-space:nowrap;
  4092. text-transform:none;
  4093. }
  4094. #u37080 {
  4095. border-width:0px;
  4096. position:absolute;
  4097. left:0px;
  4098. top:0px;
  4099. width:0px;
  4100. height:0px;
  4101. }
  4102. #u37081_img {
  4103. border-width:0px;
  4104. position:absolute;
  4105. left:0px;
  4106. top:0px;
  4107. width:24px;
  4108. height:24px;
  4109. }
  4110. #u37081 {
  4111. border-width:0px;
  4112. position:absolute;
  4113. left:1526px;
  4114. top:792px;
  4115. width:24px;
  4116. height:24px;
  4117. display:flex;
  4118. font-size:8px;
  4119. }
  4120. #u37081 .text {
  4121. position:absolute;
  4122. align-self:center;
  4123. padding:2px 2px 2px 2px;
  4124. box-sizing:border-box;
  4125. width:100%;
  4126. }
  4127. #u37081_text {
  4128. border-width:0px;
  4129. word-wrap:break-word;
  4130. text-transform:none;
  4131. }
  4132. #u37082_div {
  4133. border-width:0px;
  4134. position:absolute;
  4135. left:0px;
  4136. top:0px;
  4137. width:37px;
  4138. height:17px;
  4139. background:inherit;
  4140. background-color:rgba(255, 255, 255, 0);
  4141. border:none;
  4142. border-radius:0px;
  4143. -moz-box-shadow:none;
  4144. -webkit-box-shadow:none;
  4145. box-shadow:none;
  4146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4147. font-weight:400;
  4148. font-style:normal;
  4149. font-size:12px;
  4150. }
  4151. #u37082 {
  4152. border-width:0px;
  4153. position:absolute;
  4154. left:1520px;
  4155. top:817px;
  4156. width:37px;
  4157. height:17px;
  4158. display:flex;
  4159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4160. font-weight:400;
  4161. font-style:normal;
  4162. font-size:12px;
  4163. }
  4164. #u37082 .text {
  4165. position:absolute;
  4166. align-self:flex-start;
  4167. padding:0px 0px 0px 0px;
  4168. box-sizing:border-box;
  4169. width:100%;
  4170. }
  4171. #u37082_text {
  4172. border-width:0px;
  4173. white-space:nowrap;
  4174. text-transform:none;
  4175. }
  4176. #u37083_img {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:0px;
  4180. top:0px;
  4181. width:375px;
  4182. height:44px;
  4183. }
  4184. #u37083 {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:1398px;
  4188. top:24px;
  4189. width:375px;
  4190. height:44px;
  4191. display:flex;
  4192. }
  4193. #u37083 .text {
  4194. position:absolute;
  4195. align-self:center;
  4196. padding:2px 2px 2px 2px;
  4197. box-sizing:border-box;
  4198. width:100%;
  4199. }
  4200. #u37083_text {
  4201. border-width:0px;
  4202. word-wrap:break-word;
  4203. text-transform:none;
  4204. visibility:hidden;
  4205. }
  4206. #u37084 {
  4207. border-width:0px;
  4208. position:absolute;
  4209. left:0px;
  4210. top:0px;
  4211. width:0px;
  4212. height:0px;
  4213. }
  4214. #u37085_div {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:0px;
  4218. top:0px;
  4219. width:88px;
  4220. height:32px;
  4221. background:inherit;
  4222. background-color:rgba(255, 255, 255, 1);
  4223. box-sizing:border-box;
  4224. border-width:1px;
  4225. border-style:solid;
  4226. border-color:rgba(242, 242, 242, 1);
  4227. border-radius:33px;
  4228. -moz-box-shadow:none;
  4229. -webkit-box-shadow:none;
  4230. box-shadow:none;
  4231. }
  4232. #u37085 {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:1678px;
  4236. top:71px;
  4237. width:88px;
  4238. height:32px;
  4239. display:flex;
  4240. }
  4241. #u37085 .text {
  4242. position:absolute;
  4243. align-self:center;
  4244. padding:2px 2px 2px 2px;
  4245. box-sizing:border-box;
  4246. width:100%;
  4247. }
  4248. #u37085_text {
  4249. border-width:0px;
  4250. word-wrap:break-word;
  4251. text-transform:none;
  4252. visibility:hidden;
  4253. }
  4254. #u37086 {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:0px;
  4258. top:0px;
  4259. width:0px;
  4260. height:0px;
  4261. }
  4262. #u37087_img {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:0px;
  4266. top:0px;
  4267. width:18px;
  4268. height:18px;
  4269. }
  4270. #u37087 {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:1741px;
  4274. top:78px;
  4275. width:18px;
  4276. height:18px;
  4277. display:flex;
  4278. }
  4279. #u37087 .text {
  4280. position:absolute;
  4281. align-self:center;
  4282. padding:2px 2px 2px 2px;
  4283. box-sizing:border-box;
  4284. width:100%;
  4285. }
  4286. #u37087_text {
  4287. border-width:0px;
  4288. word-wrap:break-word;
  4289. text-transform:none;
  4290. visibility:hidden;
  4291. }
  4292. #u37088_img {
  4293. border-width:0px;
  4294. position:absolute;
  4295. left:0px;
  4296. top:0px;
  4297. width:6px;
  4298. height:6px;
  4299. }
  4300. #u37088 {
  4301. border-width:0px;
  4302. position:absolute;
  4303. left:1747px;
  4304. top:84px;
  4305. width:6px;
  4306. height:6px;
  4307. display:flex;
  4308. }
  4309. #u37088 .text {
  4310. position:absolute;
  4311. align-self:center;
  4312. padding:2px 2px 2px 2px;
  4313. box-sizing:border-box;
  4314. width:100%;
  4315. }
  4316. #u37088_text {
  4317. border-width:0px;
  4318. word-wrap:break-word;
  4319. text-transform:none;
  4320. visibility:hidden;
  4321. }
  4322. #u37089 {
  4323. border-width:0px;
  4324. position:absolute;
  4325. left:0px;
  4326. top:0px;
  4327. width:0px;
  4328. height:0px;
  4329. }
  4330. #u37090_img {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:0px;
  4334. top:0px;
  4335. width:5px;
  4336. height:5px;
  4337. }
  4338. #u37090 {
  4339. border-width:0px;
  4340. position:absolute;
  4341. left:1692px;
  4342. top:85px;
  4343. width:5px;
  4344. height:5px;
  4345. display:flex;
  4346. }
  4347. #u37090 .text {
  4348. position:absolute;
  4349. align-self:center;
  4350. padding:2px 2px 2px 2px;
  4351. box-sizing:border-box;
  4352. width:100%;
  4353. }
  4354. #u37090_text {
  4355. border-width:0px;
  4356. word-wrap:break-word;
  4357. text-transform:none;
  4358. visibility:hidden;
  4359. }
  4360. #u37091_img {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:0px;
  4364. top:0px;
  4365. width:5px;
  4366. height:5px;
  4367. }
  4368. #u37091 {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:1708px;
  4372. top:85px;
  4373. width:5px;
  4374. height:5px;
  4375. display:flex;
  4376. }
  4377. #u37091 .text {
  4378. position:absolute;
  4379. align-self:center;
  4380. padding:2px 2px 2px 2px;
  4381. box-sizing:border-box;
  4382. width:100%;
  4383. }
  4384. #u37091_text {
  4385. border-width:0px;
  4386. word-wrap:break-word;
  4387. text-transform:none;
  4388. visibility:hidden;
  4389. }
  4390. #u37092_img {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:0px;
  4394. top:0px;
  4395. width:7px;
  4396. height:7px;
  4397. }
  4398. #u37092 {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:1699px;
  4402. top:84px;
  4403. width:7px;
  4404. height:7px;
  4405. display:flex;
  4406. }
  4407. #u37092 .text {
  4408. position:absolute;
  4409. align-self:center;
  4410. padding:2px 2px 2px 2px;
  4411. box-sizing:border-box;
  4412. width:100%;
  4413. }
  4414. #u37092_text {
  4415. border-width:0px;
  4416. word-wrap:break-word;
  4417. text-transform:none;
  4418. visibility:hidden;
  4419. }
  4420. #u37093_img {
  4421. border-width:0px;
  4422. position:absolute;
  4423. left:0px;
  4424. top:0px;
  4425. width:19px;
  4426. height:2px;
  4427. }
  4428. #u37093 {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:1716px;
  4432. top:87px;
  4433. width:18px;
  4434. height:1px;
  4435. display:flex;
  4436. -webkit-transform:rotate(90deg);
  4437. -moz-transform:rotate(90deg);
  4438. -ms-transform:rotate(90deg);
  4439. transform:rotate(90deg);
  4440. }
  4441. #u37093 .text {
  4442. position:absolute;
  4443. align-self:center;
  4444. padding:2px 2px 2px 2px;
  4445. box-sizing:border-box;
  4446. width:100%;
  4447. }
  4448. #u37093_text {
  4449. border-width:0px;
  4450. word-wrap:break-word;
  4451. text-transform:none;
  4452. visibility:hidden;
  4453. }
  4454. #u37094_div {
  4455. border-width:0px;
  4456. position:absolute;
  4457. left:0px;
  4458. top:0px;
  4459. width:65px;
  4460. height:22px;
  4461. background:inherit;
  4462. background-color:rgba(255, 255, 255, 0);
  4463. border:none;
  4464. border-radius:0px;
  4465. -moz-box-shadow:none;
  4466. -webkit-box-shadow:none;
  4467. box-shadow:none;
  4468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4469. font-weight:400;
  4470. font-style:normal;
  4471. font-size:16px;
  4472. color:#000000;
  4473. }
  4474. #u37094 {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:1556px;
  4478. top:78px;
  4479. width:65px;
  4480. height:22px;
  4481. display:flex;
  4482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4483. font-weight:400;
  4484. font-style:normal;
  4485. font-size:16px;
  4486. color:#000000;
  4487. }
  4488. #u37094 .text {
  4489. position:absolute;
  4490. align-self:flex-start;
  4491. padding:0px 0px 0px 0px;
  4492. box-sizing:border-box;
  4493. width:100%;
  4494. }
  4495. #u37094_text {
  4496. border-width:0px;
  4497. white-space:nowrap;
  4498. text-transform:none;
  4499. }
  4500. #u37095_div {
  4501. border-width:0px;
  4502. position:absolute;
  4503. left:0px;
  4504. top:0px;
  4505. width:375px;
  4506. height:733px;
  4507. background:inherit;
  4508. background-color:rgba(242, 242, 242, 0.996078431372549);
  4509. border:none;
  4510. border-radius:0px;
  4511. -moz-box-shadow:none;
  4512. -webkit-box-shadow:none;
  4513. box-shadow:none;
  4514. }
  4515. #u37095 {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:1398px;
  4519. top:106px;
  4520. width:375px;
  4521. height:733px;
  4522. display:flex;
  4523. }
  4524. #u37095 .text {
  4525. position:absolute;
  4526. align-self:center;
  4527. padding:2px 2px 2px 2px;
  4528. box-sizing:border-box;
  4529. width:100%;
  4530. }
  4531. #u37095_text {
  4532. border-width:0px;
  4533. word-wrap:break-word;
  4534. text-transform:none;
  4535. visibility:hidden;
  4536. }
  4537. #u37096_img {
  4538. border-width:0px;
  4539. position:absolute;
  4540. left:0px;
  4541. top:0px;
  4542. width:375px;
  4543. height:199px;
  4544. }
  4545. #u37096 {
  4546. border-width:0px;
  4547. position:absolute;
  4548. left:1398px;
  4549. top:166px;
  4550. width:375px;
  4551. height:199px;
  4552. display:flex;
  4553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4554. font-weight:400;
  4555. font-style:normal;
  4556. color:#FFFFFF;
  4557. }
  4558. #u37096 .text {
  4559. position:absolute;
  4560. align-self:center;
  4561. padding:2px 2px 2px 2px;
  4562. box-sizing:border-box;
  4563. width:100%;
  4564. }
  4565. #u37096_text {
  4566. border-width:0px;
  4567. word-wrap:break-word;
  4568. text-transform:none;
  4569. }
  4570. #u37097 {
  4571. border-width:0px;
  4572. position:absolute;
  4573. left:0px;
  4574. top:0px;
  4575. width:0px;
  4576. height:0px;
  4577. }
  4578. #u37098_div {
  4579. border-width:0px;
  4580. position:absolute;
  4581. left:0px;
  4582. top:0px;
  4583. width:375px;
  4584. height:50px;
  4585. background:inherit;
  4586. background-color:rgba(255, 255, 255, 1);
  4587. border:none;
  4588. border-radius:0px;
  4589. -moz-box-shadow:none;
  4590. -webkit-box-shadow:none;
  4591. box-shadow:none;
  4592. }
  4593. #u37098 {
  4594. border-width:0px;
  4595. position:absolute;
  4596. left:1398px;
  4597. top:415px;
  4598. width:375px;
  4599. height:50px;
  4600. display:flex;
  4601. }
  4602. #u37098 .text {
  4603. position:absolute;
  4604. align-self:center;
  4605. padding:2px 2px 2px 2px;
  4606. box-sizing:border-box;
  4607. width:100%;
  4608. }
  4609. #u37098_text {
  4610. border-width:0px;
  4611. word-wrap:break-word;
  4612. text-transform:none;
  4613. visibility:hidden;
  4614. }
  4615. #u37099_div {
  4616. border-width:0px;
  4617. position:absolute;
  4618. left:0px;
  4619. top:0px;
  4620. width:33px;
  4621. height:22px;
  4622. background:inherit;
  4623. background-color:rgba(255, 255, 255, 0);
  4624. border:none;
  4625. border-radius:0px;
  4626. -moz-box-shadow:none;
  4627. -webkit-box-shadow:none;
  4628. box-shadow:none;
  4629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4630. font-weight:400;
  4631. font-style:normal;
  4632. font-size:16px;
  4633. }
  4634. #u37099 {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:1438px;
  4638. top:429px;
  4639. width:33px;
  4640. height:22px;
  4641. display:flex;
  4642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4643. font-weight:400;
  4644. font-style:normal;
  4645. font-size:16px;
  4646. }
  4647. #u37099 .text {
  4648. position:absolute;
  4649. align-self:flex-start;
  4650. padding:0px 0px 0px 0px;
  4651. box-sizing:border-box;
  4652. width:100%;
  4653. }
  4654. #u37099_text {
  4655. border-width:0px;
  4656. white-space:nowrap;
  4657. text-transform:none;
  4658. }
  4659. #u37100_img {
  4660. border-width:0px;
  4661. position:absolute;
  4662. left:0px;
  4663. top:0px;
  4664. width:18px;
  4665. height:14px;
  4666. }
  4667. #u37100 {
  4668. border-width:0px;
  4669. position:absolute;
  4670. left:1410px;
  4671. top:433px;
  4672. width:18px;
  4673. height:14px;
  4674. display:flex;
  4675. }
  4676. #u37100 .text {
  4677. position:absolute;
  4678. align-self:center;
  4679. padding:2px 2px 2px 2px;
  4680. box-sizing:border-box;
  4681. width:100%;
  4682. }
  4683. #u37100_text {
  4684. border-width:0px;
  4685. word-wrap:break-word;
  4686. text-transform:none;
  4687. visibility:hidden;
  4688. }
  4689. #u37101_div {
  4690. border-width:0px;
  4691. position:absolute;
  4692. left:0px;
  4693. top:0px;
  4694. width:376px;
  4695. height:50px;
  4696. background:inherit;
  4697. background-color:rgba(0, 0, 0, 1);
  4698. border:none;
  4699. border-radius:0px;
  4700. -moz-box-shadow:none;
  4701. -webkit-box-shadow:none;
  4702. box-shadow:none;
  4703. }
  4704. #u37101 {
  4705. border-width:0px;
  4706. position:absolute;
  4707. left:1397px;
  4708. top:365px;
  4709. width:376px;
  4710. height:50px;
  4711. display:flex;
  4712. }
  4713. #u37101 .text {
  4714. position:absolute;
  4715. align-self:center;
  4716. padding:2px 2px 2px 2px;
  4717. box-sizing:border-box;
  4718. width:100%;
  4719. }
  4720. #u37101_text {
  4721. border-width:0px;
  4722. word-wrap:break-word;
  4723. text-transform:none;
  4724. visibility:hidden;
  4725. }
  4726. #u37102 {
  4727. border-width:0px;
  4728. position:absolute;
  4729. left:0px;
  4730. top:0px;
  4731. width:0px;
  4732. height:0px;
  4733. }
  4734. #u37103_div {
  4735. border-width:0px;
  4736. position:absolute;
  4737. left:0px;
  4738. top:0px;
  4739. width:11px;
  4740. height:10px;
  4741. background:inherit;
  4742. background-color:rgba(242, 242, 242, 1);
  4743. border:none;
  4744. border-radius:0px;
  4745. -moz-box-shadow:none;
  4746. -webkit-box-shadow:none;
  4747. box-shadow:none;
  4748. }
  4749. #u37103 {
  4750. border-width:0px;
  4751. position:absolute;
  4752. left:1568px;
  4753. top:379px;
  4754. width:11px;
  4755. height:10px;
  4756. display:flex;
  4757. }
  4758. #u37103 .text {
  4759. position:absolute;
  4760. align-self:center;
  4761. padding:2px 2px 2px 2px;
  4762. box-sizing:border-box;
  4763. width:100%;
  4764. }
  4765. #u37103_text {
  4766. border-width:0px;
  4767. word-wrap:break-word;
  4768. text-transform:none;
  4769. visibility:hidden;
  4770. }
  4771. #u37104_div {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:0px;
  4775. top:0px;
  4776. width:11px;
  4777. height:10px;
  4778. background:inherit;
  4779. background-color:rgba(242, 242, 242, 1);
  4780. border:none;
  4781. border-radius:0px;
  4782. -moz-box-shadow:none;
  4783. -webkit-box-shadow:none;
  4784. box-shadow:none;
  4785. }
  4786. #u37104 {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:1581px;
  4790. top:379px;
  4791. width:11px;
  4792. height:10px;
  4793. display:flex;
  4794. }
  4795. #u37104 .text {
  4796. position:absolute;
  4797. align-self:center;
  4798. padding:2px 2px 2px 2px;
  4799. box-sizing:border-box;
  4800. width:100%;
  4801. }
  4802. #u37104_text {
  4803. border-width:0px;
  4804. word-wrap:break-word;
  4805. text-transform:none;
  4806. visibility:hidden;
  4807. }
  4808. #u37105_div {
  4809. border-width:0px;
  4810. position:absolute;
  4811. left:0px;
  4812. top:0px;
  4813. width:11px;
  4814. height:10px;
  4815. background:inherit;
  4816. background-color:rgba(242, 242, 242, 1);
  4817. border:none;
  4818. border-radius:0px;
  4819. -moz-box-shadow:none;
  4820. -webkit-box-shadow:none;
  4821. box-shadow:none;
  4822. }
  4823. #u37105 {
  4824. border-width:0px;
  4825. position:absolute;
  4826. left:1568px;
  4827. top:391px;
  4828. width:11px;
  4829. height:10px;
  4830. display:flex;
  4831. }
  4832. #u37105 .text {
  4833. position:absolute;
  4834. align-self:center;
  4835. padding:2px 2px 2px 2px;
  4836. box-sizing:border-box;
  4837. width:100%;
  4838. }
  4839. #u37105_text {
  4840. border-width:0px;
  4841. word-wrap:break-word;
  4842. text-transform:none;
  4843. visibility:hidden;
  4844. }
  4845. #u37106_div {
  4846. border-width:0px;
  4847. position:absolute;
  4848. left:0px;
  4849. top:0px;
  4850. width:11px;
  4851. height:10px;
  4852. background:inherit;
  4853. background-color:rgba(242, 242, 242, 1);
  4854. border:none;
  4855. border-radius:0px;
  4856. -moz-box-shadow:none;
  4857. -webkit-box-shadow:none;
  4858. box-shadow:none;
  4859. }
  4860. #u37106 {
  4861. border-width:0px;
  4862. position:absolute;
  4863. left:1581px;
  4864. top:391px;
  4865. width:11px;
  4866. height:10px;
  4867. display:flex;
  4868. }
  4869. #u37106 .text {
  4870. position:absolute;
  4871. align-self:center;
  4872. padding:2px 2px 2px 2px;
  4873. box-sizing:border-box;
  4874. width:100%;
  4875. }
  4876. #u37106_text {
  4877. border-width:0px;
  4878. word-wrap:break-word;
  4879. text-transform:none;
  4880. visibility:hidden;
  4881. }
  4882. #u37107 {
  4883. border-width:0px;
  4884. position:absolute;
  4885. left:0px;
  4886. top:0px;
  4887. width:0px;
  4888. height:0px;
  4889. }
  4890. #u37108_div {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:0px;
  4894. top:0px;
  4895. width:7px;
  4896. height:22px;
  4897. background:inherit;
  4898. background-color:rgba(242, 242, 242, 1);
  4899. border:none;
  4900. border-radius:0px;
  4901. -moz-box-shadow:none;
  4902. -webkit-box-shadow:none;
  4903. box-shadow:none;
  4904. }
  4905. #u37108 {
  4906. border-width:0px;
  4907. position:absolute;
  4908. left:1420px;
  4909. top:379px;
  4910. width:7px;
  4911. height:22px;
  4912. display:flex;
  4913. }
  4914. #u37108 .text {
  4915. position:absolute;
  4916. align-self:center;
  4917. padding:2px 2px 2px 2px;
  4918. box-sizing:border-box;
  4919. width:100%;
  4920. }
  4921. #u37108_text {
  4922. border-width:0px;
  4923. word-wrap:break-word;
  4924. text-transform:none;
  4925. visibility:hidden;
  4926. }
  4927. #u37109_div {
  4928. border-width:0px;
  4929. position:absolute;
  4930. left:0px;
  4931. top:0px;
  4932. width:7px;
  4933. height:22px;
  4934. background:inherit;
  4935. background-color:rgba(242, 242, 242, 1);
  4936. border:none;
  4937. border-radius:0px;
  4938. -moz-box-shadow:none;
  4939. -webkit-box-shadow:none;
  4940. box-shadow:none;
  4941. }
  4942. #u37109 {
  4943. border-width:0px;
  4944. position:absolute;
  4945. left:1431px;
  4946. top:379px;
  4947. width:7px;
  4948. height:22px;
  4949. display:flex;
  4950. }
  4951. #u37109 .text {
  4952. position:absolute;
  4953. align-self:center;
  4954. padding:2px 2px 2px 2px;
  4955. box-sizing:border-box;
  4956. width:100%;
  4957. }
  4958. #u37109_text {
  4959. border-width:0px;
  4960. word-wrap:break-word;
  4961. text-transform:none;
  4962. visibility:hidden;
  4963. }
  4964. #u37110_div {
  4965. border-width:0px;
  4966. position:absolute;
  4967. left:0px;
  4968. top:0px;
  4969. width:40px;
  4970. height:24px;
  4971. background:inherit;
  4972. background-color:rgba(255, 255, 255, 0);
  4973. box-sizing:border-box;
  4974. border-width:1px;
  4975. border-style:solid;
  4976. border-color:rgba(255, 255, 255, 1);
  4977. border-radius:4px;
  4978. -moz-box-shadow:none;
  4979. -webkit-box-shadow:none;
  4980. box-shadow:none;
  4981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4982. font-weight:400;
  4983. font-style:normal;
  4984. font-size:12px;
  4985. color:#FFFFFF;
  4986. text-align:center;
  4987. }
  4988. #u37110 {
  4989. border-width:0px;
  4990. position:absolute;
  4991. left:1483px;
  4992. top:379px;
  4993. width:40px;
  4994. height:24px;
  4995. display:flex;
  4996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4997. font-weight:400;
  4998. font-style:normal;
  4999. font-size:12px;
  5000. color:#FFFFFF;
  5001. text-align:center;
  5002. }
  5003. #u37110 .text {
  5004. position:absolute;
  5005. align-self:center;
  5006. padding:0px 0px 0px 0px;
  5007. box-sizing:border-box;
  5008. width:100%;
  5009. }
  5010. #u37110_text {
  5011. border-width:0px;
  5012. word-wrap:break-word;
  5013. text-transform:none;
  5014. }
  5015. #u37111_img {
  5016. border-width:0px;
  5017. position:absolute;
  5018. left:0px;
  5019. top:0px;
  5020. width:44px;
  5021. height:33px;
  5022. }
  5023. #u37111 {
  5024. border-width:0px;
  5025. position:absolute;
  5026. left:1636px;
  5027. top:374px;
  5028. width:44px;
  5029. height:33px;
  5030. display:flex;
  5031. }
  5032. #u37111 .text {
  5033. position:absolute;
  5034. align-self:center;
  5035. padding:2px 2px 2px 2px;
  5036. box-sizing:border-box;
  5037. width:100%;
  5038. }
  5039. #u37111_text {
  5040. border-width:0px;
  5041. word-wrap:break-word;
  5042. text-transform:none;
  5043. visibility:hidden;
  5044. }
  5045. #u37112_img {
  5046. border-width:0px;
  5047. position:absolute;
  5048. left:0px;
  5049. top:0px;
  5050. width:28px;
  5051. height:26px;
  5052. }
  5053. #u37112 {
  5054. border-width:0px;
  5055. position:absolute;
  5056. left:1725px;
  5057. top:377px;
  5058. width:28px;
  5059. height:26px;
  5060. display:flex;
  5061. }
  5062. #u37112 .text {
  5063. position:absolute;
  5064. align-self:center;
  5065. padding:2px 2px 2px 2px;
  5066. box-sizing:border-box;
  5067. width:100%;
  5068. }
  5069. #u37112_text {
  5070. border-width:0px;
  5071. word-wrap:break-word;
  5072. text-transform:none;
  5073. visibility:hidden;
  5074. }
  5075. #u37113_div {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:0px;
  5079. top:0px;
  5080. width:12px;
  5081. height:12px;
  5082. background:inherit;
  5083. background-color:rgba(255, 255, 255, 0);
  5084. box-sizing:border-box;
  5085. border-width:2px;
  5086. border-style:solid;
  5087. border-color:rgba(51, 51, 51, 1);
  5088. border-right:0px;
  5089. border-bottom:0px;
  5090. border-radius:0px;
  5091. border-top-right-radius:0px;
  5092. border-bottom-left-radius:0px;
  5093. -moz-box-shadow:none;
  5094. -webkit-box-shadow:none;
  5095. box-shadow:none;
  5096. }
  5097. #u37113 {
  5098. border-width:0px;
  5099. position:absolute;
  5100. left:1413px;
  5101. top:81px;
  5102. width:12px;
  5103. height:12px;
  5104. display:flex;
  5105. -webkit-transform:rotate(315deg);
  5106. -moz-transform:rotate(315deg);
  5107. -ms-transform:rotate(315deg);
  5108. transform:rotate(315deg);
  5109. }
  5110. #u37113 .text {
  5111. position:absolute;
  5112. align-self:center;
  5113. padding:2px 2px 2px 2px;
  5114. box-sizing:border-box;
  5115. width:100%;
  5116. }
  5117. #u37113_text {
  5118. border-width:0px;
  5119. word-wrap:break-word;
  5120. text-transform:none;
  5121. visibility:hidden;
  5122. }
  5123. #u37114_img {
  5124. border-width:0px;
  5125. position:absolute;
  5126. left:0px;
  5127. top:0px;
  5128. width:23px;
  5129. height:23px;
  5130. }
  5131. #u37114 {
  5132. border-width:0px;
  5133. position:absolute;
  5134. left:1440px;
  5135. top:76px;
  5136. width:23px;
  5137. height:23px;
  5138. display:flex;
  5139. }
  5140. #u37114 .text {
  5141. position:absolute;
  5142. align-self:center;
  5143. padding:2px 2px 2px 2px;
  5144. box-sizing:border-box;
  5145. width:100%;
  5146. }
  5147. #u37114_text {
  5148. border-width:0px;
  5149. word-wrap:break-word;
  5150. text-transform:none;
  5151. visibility:hidden;
  5152. }
  5153. #u37115_img {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:0px;
  5157. top:0px;
  5158. width:101px;
  5159. height:67px;
  5160. }
  5161. #u37115 {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:1410px;
  5165. top:481px;
  5166. width:101px;
  5167. height:67px;
  5168. display:flex;
  5169. }
  5170. #u37115 .text {
  5171. position:absolute;
  5172. align-self:center;
  5173. padding:2px 2px 2px 2px;
  5174. box-sizing:border-box;
  5175. width:100%;
  5176. }
  5177. #u37115_text {
  5178. border-width:0px;
  5179. word-wrap:break-word;
  5180. text-transform:none;
  5181. visibility:hidden;
  5182. }
  5183. #u37116_img {
  5184. border-width:0px;
  5185. position:absolute;
  5186. left:0px;
  5187. top:0px;
  5188. width:101px;
  5189. height:67px;
  5190. }
  5191. #u37116 {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:1528px;
  5195. top:481px;
  5196. width:101px;
  5197. height:67px;
  5198. display:flex;
  5199. }
  5200. #u37116 .text {
  5201. position:absolute;
  5202. align-self:center;
  5203. padding:2px 2px 2px 2px;
  5204. box-sizing:border-box;
  5205. width:100%;
  5206. }
  5207. #u37116_text {
  5208. border-width:0px;
  5209. word-wrap:break-word;
  5210. text-transform:none;
  5211. visibility:hidden;
  5212. }
  5213. #u37117_img {
  5214. border-width:0px;
  5215. position:absolute;
  5216. left:0px;
  5217. top:0px;
  5218. width:101px;
  5219. height:67px;
  5220. }
  5221. #u37117 {
  5222. border-width:0px;
  5223. position:absolute;
  5224. left:1646px;
  5225. top:481px;
  5226. width:101px;
  5227. height:67px;
  5228. display:flex;
  5229. }
  5230. #u37117 .text {
  5231. position:absolute;
  5232. align-self:center;
  5233. padding:2px 2px 2px 2px;
  5234. box-sizing:border-box;
  5235. width:100%;
  5236. }
  5237. #u37117_text {
  5238. border-width:0px;
  5239. word-wrap:break-word;
  5240. text-transform:none;
  5241. visibility:hidden;
  5242. }
  5243. #u37118_img {
  5244. border-width:0px;
  5245. position:absolute;
  5246. left:0px;
  5247. top:0px;
  5248. width:101px;
  5249. height:67px;
  5250. }
  5251. #u37118 {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:1410px;
  5255. top:574px;
  5256. width:101px;
  5257. height:67px;
  5258. display:flex;
  5259. }
  5260. #u37118 .text {
  5261. position:absolute;
  5262. align-self:center;
  5263. padding:2px 2px 2px 2px;
  5264. box-sizing:border-box;
  5265. width:100%;
  5266. }
  5267. #u37118_text {
  5268. border-width:0px;
  5269. word-wrap:break-word;
  5270. text-transform:none;
  5271. visibility:hidden;
  5272. }
  5273. #u37119_img {
  5274. border-width:0px;
  5275. position:absolute;
  5276. left:0px;
  5277. top:0px;
  5278. width:101px;
  5279. height:67px;
  5280. }
  5281. #u37119 {
  5282. border-width:0px;
  5283. position:absolute;
  5284. left:1528px;
  5285. top:574px;
  5286. width:101px;
  5287. height:67px;
  5288. display:flex;
  5289. }
  5290. #u37119 .text {
  5291. position:absolute;
  5292. align-self:center;
  5293. padding:2px 2px 2px 2px;
  5294. box-sizing:border-box;
  5295. width:100%;
  5296. }
  5297. #u37119_text {
  5298. border-width:0px;
  5299. word-wrap:break-word;
  5300. text-transform:none;
  5301. visibility:hidden;
  5302. }
  5303. #u37120_img {
  5304. border-width:0px;
  5305. position:absolute;
  5306. left:0px;
  5307. top:0px;
  5308. width:101px;
  5309. height:67px;
  5310. }
  5311. #u37120 {
  5312. border-width:0px;
  5313. position:absolute;
  5314. left:1646px;
  5315. top:574px;
  5316. width:101px;
  5317. height:67px;
  5318. display:flex;
  5319. }
  5320. #u37120 .text {
  5321. position:absolute;
  5322. align-self:center;
  5323. padding:2px 2px 2px 2px;
  5324. box-sizing:border-box;
  5325. width:100%;
  5326. }
  5327. #u37120_text {
  5328. border-width:0px;
  5329. word-wrap:break-word;
  5330. text-transform:none;
  5331. visibility:hidden;
  5332. }
  5333. #u37121_div {
  5334. border-width:0px;
  5335. position:absolute;
  5336. left:0px;
  5337. top:0px;
  5338. width:54px;
  5339. height:17px;
  5340. background:inherit;
  5341. background-color:rgba(255, 255, 255, 0);
  5342. border:none;
  5343. border-radius:0px;
  5344. -moz-box-shadow:none;
  5345. -webkit-box-shadow:none;
  5346. box-shadow:none;
  5347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5348. font-weight:400;
  5349. font-style:normal;
  5350. font-size:12px;
  5351. color:#555555;
  5352. }
  5353. #u37121 {
  5354. border-width:0px;
  5355. position:absolute;
  5356. left:1410px;
  5357. top:548px;
  5358. width:54px;
  5359. height:17px;
  5360. display:flex;
  5361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5362. font-weight:400;
  5363. font-style:normal;
  5364. font-size:12px;
  5365. color:#555555;
  5366. }
  5367. #u37121 .text {
  5368. position:absolute;
  5369. align-self:flex-start;
  5370. padding:0px 0px 0px 0px;
  5371. box-sizing:border-box;
  5372. width:100%;
  5373. }
  5374. #u37121_text {
  5375. border-width:0px;
  5376. white-space:nowrap;
  5377. text-transform:none;
  5378. }
  5379. #u37122_div {
  5380. border-width:0px;
  5381. position:absolute;
  5382. left:0px;
  5383. top:0px;
  5384. width:49px;
  5385. height:17px;
  5386. background:inherit;
  5387. background-color:rgba(255, 255, 255, 0);
  5388. border:none;
  5389. border-radius:0px;
  5390. -moz-box-shadow:none;
  5391. -webkit-box-shadow:none;
  5392. box-shadow:none;
  5393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5394. font-weight:400;
  5395. font-style:normal;
  5396. font-size:12px;
  5397. color:#555555;
  5398. }
  5399. #u37122 {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:1528px;
  5403. top:548px;
  5404. width:49px;
  5405. height:17px;
  5406. display:flex;
  5407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5408. font-weight:400;
  5409. font-style:normal;
  5410. font-size:12px;
  5411. color:#555555;
  5412. }
  5413. #u37122 .text {
  5414. position:absolute;
  5415. align-self:flex-start;
  5416. padding:0px 0px 0px 0px;
  5417. box-sizing:border-box;
  5418. width:100%;
  5419. }
  5420. #u37122_text {
  5421. border-width:0px;
  5422. white-space:nowrap;
  5423. text-transform:none;
  5424. }
  5425. #u37123_div {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:0px;
  5429. top:0px;
  5430. width:49px;
  5431. height:17px;
  5432. background:inherit;
  5433. background-color:rgba(255, 255, 255, 0);
  5434. border:none;
  5435. border-radius:0px;
  5436. -moz-box-shadow:none;
  5437. -webkit-box-shadow:none;
  5438. box-shadow:none;
  5439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5440. font-weight:400;
  5441. font-style:normal;
  5442. font-size:12px;
  5443. color:#555555;
  5444. }
  5445. #u37123 {
  5446. border-width:0px;
  5447. position:absolute;
  5448. left:1646px;
  5449. top:548px;
  5450. width:49px;
  5451. height:17px;
  5452. display:flex;
  5453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5454. font-weight:400;
  5455. font-style:normal;
  5456. font-size:12px;
  5457. color:#555555;
  5458. }
  5459. #u37123 .text {
  5460. position:absolute;
  5461. align-self:flex-start;
  5462. padding:0px 0px 0px 0px;
  5463. box-sizing:border-box;
  5464. width:100%;
  5465. }
  5466. #u37123_text {
  5467. border-width:0px;
  5468. white-space:nowrap;
  5469. text-transform:none;
  5470. }
  5471. #u37124_div {
  5472. border-width:0px;
  5473. position:absolute;
  5474. left:0px;
  5475. top:0px;
  5476. width:56px;
  5477. height:17px;
  5478. background:inherit;
  5479. background-color:rgba(255, 255, 255, 0);
  5480. border:none;
  5481. border-radius:0px;
  5482. -moz-box-shadow:none;
  5483. -webkit-box-shadow:none;
  5484. box-shadow:none;
  5485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5486. font-weight:400;
  5487. font-style:normal;
  5488. font-size:12px;
  5489. color:#555555;
  5490. }
  5491. #u37124 {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:1410px;
  5495. top:641px;
  5496. width:56px;
  5497. height:17px;
  5498. display:flex;
  5499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5500. font-weight:400;
  5501. font-style:normal;
  5502. font-size:12px;
  5503. color:#555555;
  5504. }
  5505. #u37124 .text {
  5506. position:absolute;
  5507. align-self:flex-start;
  5508. padding:0px 0px 0px 0px;
  5509. box-sizing:border-box;
  5510. width:100%;
  5511. }
  5512. #u37124_text {
  5513. border-width:0px;
  5514. white-space:nowrap;
  5515. text-transform:none;
  5516. }
  5517. #u37125_div {
  5518. border-width:0px;
  5519. position:absolute;
  5520. left:0px;
  5521. top:0px;
  5522. width:49px;
  5523. height:17px;
  5524. background:inherit;
  5525. background-color:rgba(255, 255, 255, 0);
  5526. border:none;
  5527. border-radius:0px;
  5528. -moz-box-shadow:none;
  5529. -webkit-box-shadow:none;
  5530. box-shadow:none;
  5531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5532. font-weight:400;
  5533. font-style:normal;
  5534. font-size:12px;
  5535. color:#555555;
  5536. }
  5537. #u37125 {
  5538. border-width:0px;
  5539. position:absolute;
  5540. left:1528px;
  5541. top:641px;
  5542. width:49px;
  5543. height:17px;
  5544. display:flex;
  5545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5546. font-weight:400;
  5547. font-style:normal;
  5548. font-size:12px;
  5549. color:#555555;
  5550. }
  5551. #u37125 .text {
  5552. position:absolute;
  5553. align-self:flex-start;
  5554. padding:0px 0px 0px 0px;
  5555. box-sizing:border-box;
  5556. width:100%;
  5557. }
  5558. #u37125_text {
  5559. border-width:0px;
  5560. white-space:nowrap;
  5561. text-transform:none;
  5562. }
  5563. #u37126_div {
  5564. border-width:0px;
  5565. position:absolute;
  5566. left:0px;
  5567. top:0px;
  5568. width:49px;
  5569. height:17px;
  5570. background:inherit;
  5571. background-color:rgba(255, 255, 255, 0);
  5572. border:none;
  5573. border-radius:0px;
  5574. -moz-box-shadow:none;
  5575. -webkit-box-shadow:none;
  5576. box-shadow:none;
  5577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5578. font-weight:400;
  5579. font-style:normal;
  5580. font-size:12px;
  5581. color:#555555;
  5582. }
  5583. #u37126 {
  5584. border-width:0px;
  5585. position:absolute;
  5586. left:1646px;
  5587. top:641px;
  5588. width:49px;
  5589. height:17px;
  5590. display:flex;
  5591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5592. font-weight:400;
  5593. font-style:normal;
  5594. font-size:12px;
  5595. color:#555555;
  5596. }
  5597. #u37126 .text {
  5598. position:absolute;
  5599. align-self:flex-start;
  5600. padding:0px 0px 0px 0px;
  5601. box-sizing:border-box;
  5602. width:100%;
  5603. }
  5604. #u37126_text {
  5605. border-width:0px;
  5606. white-space:nowrap;
  5607. text-transform:none;
  5608. }
  5609. #u37127 {
  5610. border-width:0px;
  5611. position:absolute;
  5612. left:0px;
  5613. top:0px;
  5614. width:0px;
  5615. height:0px;
  5616. }
  5617. #u37128_div {
  5618. border-width:0px;
  5619. position:absolute;
  5620. left:0px;
  5621. top:0px;
  5622. width:375px;
  5623. height:50px;
  5624. background:inherit;
  5625. background-color:rgba(255, 255, 255, 1);
  5626. border:none;
  5627. border-radius:0px;
  5628. -moz-box-shadow:none;
  5629. -webkit-box-shadow:none;
  5630. box-shadow:none;
  5631. }
  5632. #u37128 {
  5633. border-width:0px;
  5634. position:absolute;
  5635. left:1399px;
  5636. top:106px;
  5637. width:375px;
  5638. height:50px;
  5639. display:flex;
  5640. }
  5641. #u37128 .text {
  5642. position:absolute;
  5643. align-self:center;
  5644. padding:2px 2px 2px 2px;
  5645. box-sizing:border-box;
  5646. width:100%;
  5647. }
  5648. #u37128_text {
  5649. border-width:0px;
  5650. word-wrap:break-word;
  5651. text-transform:none;
  5652. visibility:hidden;
  5653. }
  5654. #u37129 {
  5655. border-width:0px;
  5656. position:absolute;
  5657. left:0px;
  5658. top:0px;
  5659. width:0px;
  5660. height:0px;
  5661. }
  5662. #u37130 {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:0px;
  5666. top:0px;
  5667. width:0px;
  5668. height:0px;
  5669. }
  5670. #u37131_div {
  5671. border-width:0px;
  5672. position:absolute;
  5673. left:0px;
  5674. top:0px;
  5675. width:280px;
  5676. height:30px;
  5677. background:inherit;
  5678. background-color:rgba(242, 242, 242, 1);
  5679. border:none;
  5680. border-radius:20px;
  5681. -moz-box-shadow:none;
  5682. -webkit-box-shadow:none;
  5683. box-shadow:none;
  5684. }
  5685. #u37131 {
  5686. border-width:0px;
  5687. position:absolute;
  5688. left:1412px;
  5689. top:116px;
  5690. width:280px;
  5691. height:30px;
  5692. display:flex;
  5693. }
  5694. #u37131 .text {
  5695. position:absolute;
  5696. align-self:center;
  5697. padding:2px 2px 2px 2px;
  5698. box-sizing:border-box;
  5699. width:100%;
  5700. }
  5701. #u37131_text {
  5702. border-width:0px;
  5703. word-wrap:break-word;
  5704. text-transform:none;
  5705. visibility:hidden;
  5706. }
  5707. #u37132_input {
  5708. position:absolute;
  5709. left:0px;
  5710. top:0px;
  5711. width:252px;
  5712. height:22px;
  5713. padding:2px 2px 2px 2px;
  5714. font-family:'ArialMT', 'Arial', sans-serif;
  5715. font-weight:400;
  5716. font-style:normal;
  5717. font-size:12px;
  5718. letter-spacing:normal;
  5719. color:#7F7F7F;
  5720. vertical-align:none;
  5721. text-align:left;
  5722. text-transform:none;
  5723. background-color:transparent;
  5724. border-color:transparent;
  5725. }
  5726. #u37132_input.disabled {
  5727. position:absolute;
  5728. left:0px;
  5729. top:0px;
  5730. width:252px;
  5731. height:22px;
  5732. padding:2px 2px 2px 2px;
  5733. font-family:'ArialMT', 'Arial', sans-serif;
  5734. font-weight:400;
  5735. font-style:normal;
  5736. font-size:12px;
  5737. letter-spacing:normal;
  5738. color:#7F7F7F;
  5739. vertical-align:none;
  5740. text-align:left;
  5741. text-transform:none;
  5742. background-color:transparent;
  5743. border-color:transparent;
  5744. }
  5745. #u37132_div {
  5746. border-width:0px;
  5747. position:absolute;
  5748. left:0px;
  5749. top:0px;
  5750. width:252px;
  5751. height:22px;
  5752. background:inherit;
  5753. background-color:rgba(255, 255, 255, 0);
  5754. border:none;
  5755. border-radius:0px;
  5756. -moz-box-shadow:none;
  5757. -webkit-box-shadow:none;
  5758. box-shadow:none;
  5759. font-size:12px;
  5760. color:#7F7F7F;
  5761. }
  5762. #u37132 {
  5763. border-width:0px;
  5764. position:absolute;
  5765. left:1426px;
  5766. top:120px;
  5767. width:252px;
  5768. height:22px;
  5769. display:flex;
  5770. font-size:12px;
  5771. color:#7F7F7F;
  5772. }
  5773. #u37132 .text {
  5774. position:absolute;
  5775. align-self:flex-start;
  5776. padding:2px 2px 2px 2px;
  5777. box-sizing:border-box;
  5778. width:100%;
  5779. }
  5780. #u37132_div.disabled {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:0px;
  5784. top:0px;
  5785. width:252px;
  5786. height:22px;
  5787. background:inherit;
  5788. background-color:rgba(240, 240, 240, 1);
  5789. border:none;
  5790. border-radius:0px;
  5791. -moz-box-shadow:none;
  5792. -webkit-box-shadow:none;
  5793. box-shadow:none;
  5794. font-size:12px;
  5795. color:#7F7F7F;
  5796. }
  5797. #u37132.disabled {
  5798. }
  5799. .u37132_input_option {
  5800. font-size:12px;
  5801. }
  5802. #u37133_div {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:0px;
  5806. top:0px;
  5807. width:64px;
  5808. height:30px;
  5809. background:inherit;
  5810. background-color:rgba(255, 255, 255, 0);
  5811. border:none;
  5812. border-left:0px;
  5813. border-top:0px;
  5814. border-right:0px;
  5815. border-radius:0px;
  5816. border-bottom-right-radius:0px;
  5817. border-bottom-left-radius:0px;
  5818. -moz-box-shadow:none;
  5819. -webkit-box-shadow:none;
  5820. box-shadow:none;
  5821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5822. font-weight:400;
  5823. font-style:normal;
  5824. font-size:12px;
  5825. color:#1890FF;
  5826. line-height:30px;
  5827. }
  5828. #u37133 {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:1702px;
  5832. top:116px;
  5833. width:64px;
  5834. height:30px;
  5835. display:flex;
  5836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5837. font-weight:400;
  5838. font-style:normal;
  5839. font-size:12px;
  5840. color:#1890FF;
  5841. line-height:30px;
  5842. }
  5843. #u37133 .text {
  5844. position:absolute;
  5845. align-self:flex-start;
  5846. padding:0px 0px 0px 0px;
  5847. box-sizing:border-box;
  5848. width:100%;
  5849. }
  5850. #u37133_text {
  5851. border-width:0px;
  5852. white-space:nowrap;
  5853. text-transform:none;
  5854. }
  5855. #u37134_div {
  5856. border-width:0px;
  5857. position:absolute;
  5858. left:0px;
  5859. top:0px;
  5860. width:62px;
  5861. height:30px;
  5862. background:inherit;
  5863. background-color:rgba(92, 122, 253, 1);
  5864. box-sizing:border-box;
  5865. border-width:1px;
  5866. border-style:solid;
  5867. border-color:rgba(121, 121, 121, 1);
  5868. border-right:0px;
  5869. border-radius:4px;
  5870. border-top-right-radius:0px;
  5871. border-bottom-right-radius:0px;
  5872. -moz-box-shadow:none;
  5873. -webkit-box-shadow:none;
  5874. box-shadow:none;
  5875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5876. font-weight:400;
  5877. font-style:normal;
  5878. font-size:12px;
  5879. color:#FFFFFF;
  5880. }
  5881. #u37134 {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:-301px;
  5885. top:740px;
  5886. width:62px;
  5887. height:30px;
  5888. display:flex;
  5889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5890. font-weight:400;
  5891. font-style:normal;
  5892. font-size:12px;
  5893. color:#FFFFFF;
  5894. }
  5895. #u37134 .text {
  5896. position:absolute;
  5897. align-self:center;
  5898. padding:2px 2px 2px 2px;
  5899. box-sizing:border-box;
  5900. width:100%;
  5901. }
  5902. #u37134_text {
  5903. border-width:0px;
  5904. word-wrap:break-word;
  5905. text-transform:none;
  5906. }
  5907. #u37135_div {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:0px;
  5911. top:0px;
  5912. width:62px;
  5913. height:30px;
  5914. background:inherit;
  5915. background-color:rgba(255, 255, 255, 1);
  5916. box-sizing:border-box;
  5917. border-width:1px;
  5918. border-style:solid;
  5919. border-color:rgba(121, 121, 121, 1);
  5920. border-radius:4px;
  5921. border-top-left-radius:0px;
  5922. border-bottom-left-radius:0px;
  5923. -moz-box-shadow:none;
  5924. -webkit-box-shadow:none;
  5925. box-shadow:none;
  5926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5927. font-weight:400;
  5928. font-style:normal;
  5929. font-size:12px;
  5930. }
  5931. #u37135 {
  5932. border-width:0px;
  5933. position:absolute;
  5934. left:-240px;
  5935. top:740px;
  5936. width:62px;
  5937. height:30px;
  5938. display:flex;
  5939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5940. font-weight:400;
  5941. font-style:normal;
  5942. font-size:12px;
  5943. }
  5944. #u37135 .text {
  5945. position:absolute;
  5946. align-self:center;
  5947. padding:2px 2px 2px 2px;
  5948. box-sizing:border-box;
  5949. width:100%;
  5950. }
  5951. #u37135_text {
  5952. border-width:0px;
  5953. word-wrap:break-word;
  5954. text-transform:none;
  5955. }
  5956. #u37136 {
  5957. border-width:0px;
  5958. position:absolute;
  5959. left:0px;
  5960. top:0px;
  5961. width:0px;
  5962. height:0px;
  5963. }
  5964. #u37137_div {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:0px;
  5968. top:0px;
  5969. width:62px;
  5970. height:30px;
  5971. background:inherit;
  5972. background-color:rgba(255, 255, 255, 1);
  5973. box-sizing:border-box;
  5974. border-width:1px;
  5975. border-style:solid;
  5976. border-color:rgba(121, 121, 121, 1);
  5977. border-right:0px;
  5978. border-radius:4px;
  5979. border-top-right-radius:0px;
  5980. border-bottom-right-radius:0px;
  5981. -moz-box-shadow:none;
  5982. -webkit-box-shadow:none;
  5983. box-shadow:none;
  5984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5985. font-weight:400;
  5986. font-style:normal;
  5987. font-size:12px;
  5988. }
  5989. #u37137 {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:154px;
  5993. top:740px;
  5994. width:62px;
  5995. height:30px;
  5996. display:flex;
  5997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5998. font-weight:400;
  5999. font-style:normal;
  6000. font-size:12px;
  6001. }
  6002. #u37137 .text {
  6003. position:absolute;
  6004. align-self:center;
  6005. padding:2px 2px 2px 2px;
  6006. box-sizing:border-box;
  6007. width:100%;
  6008. }
  6009. #u37137_text {
  6010. border-width:0px;
  6011. word-wrap:break-word;
  6012. text-transform:none;
  6013. }
  6014. #u37138_div {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:0px;
  6018. top:0px;
  6019. width:62px;
  6020. height:30px;
  6021. background:inherit;
  6022. background-color:rgba(92, 122, 253, 1);
  6023. box-sizing:border-box;
  6024. border-width:1px;
  6025. border-style:solid;
  6026. border-color:rgba(121, 121, 121, 1);
  6027. border-radius:4px;
  6028. border-top-left-radius:0px;
  6029. border-bottom-left-radius:0px;
  6030. -moz-box-shadow:none;
  6031. -webkit-box-shadow:none;
  6032. box-shadow:none;
  6033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6034. font-weight:400;
  6035. font-style:normal;
  6036. font-size:12px;
  6037. color:#FFFFFF;
  6038. }
  6039. #u37138 {
  6040. border-width:0px;
  6041. position:absolute;
  6042. left:215px;
  6043. top:740px;
  6044. width:62px;
  6045. height:30px;
  6046. display:flex;
  6047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6048. font-weight:400;
  6049. font-style:normal;
  6050. font-size:12px;
  6051. color:#FFFFFF;
  6052. }
  6053. #u37138 .text {
  6054. position:absolute;
  6055. align-self:center;
  6056. padding:2px 2px 2px 2px;
  6057. box-sizing:border-box;
  6058. width:100%;
  6059. }
  6060. #u37138_text {
  6061. border-width:0px;
  6062. word-wrap:break-word;
  6063. text-transform:none;
  6064. }
  6065. #u37139 {
  6066. border-width:0px;
  6067. position:absolute;
  6068. left:0px;
  6069. top:0px;
  6070. width:0px;
  6071. height:0px;
  6072. }
  6073. #u37140_div {
  6074. border-width:0px;
  6075. position:absolute;
  6076. left:0px;
  6077. top:0px;
  6078. width:375px;
  6079. height:50px;
  6080. background:inherit;
  6081. background-color:rgba(255, 255, 255, 1);
  6082. border:none;
  6083. border-radius:0px;
  6084. -moz-box-shadow:none;
  6085. -webkit-box-shadow:none;
  6086. box-shadow:none;
  6087. }
  6088. #u37140 {
  6089. border-width:0px;
  6090. position:absolute;
  6091. left:29px;
  6092. top:106px;
  6093. width:375px;
  6094. height:50px;
  6095. display:flex;
  6096. }
  6097. #u37140 .text {
  6098. position:absolute;
  6099. align-self:center;
  6100. padding:2px 2px 2px 2px;
  6101. box-sizing:border-box;
  6102. width:100%;
  6103. }
  6104. #u37140_text {
  6105. border-width:0px;
  6106. word-wrap:break-word;
  6107. text-transform:none;
  6108. visibility:hidden;
  6109. }
  6110. #u37141 {
  6111. border-width:0px;
  6112. position:absolute;
  6113. left:0px;
  6114. top:0px;
  6115. width:0px;
  6116. height:0px;
  6117. }
  6118. #u37142 {
  6119. border-width:0px;
  6120. position:absolute;
  6121. left:0px;
  6122. top:0px;
  6123. width:0px;
  6124. height:0px;
  6125. }
  6126. #u37143_div {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:0px;
  6130. top:0px;
  6131. width:283px;
  6132. height:30px;
  6133. background:inherit;
  6134. background-color:rgba(242, 242, 242, 1);
  6135. border:none;
  6136. border-radius:20px;
  6137. -moz-box-shadow:none;
  6138. -webkit-box-shadow:none;
  6139. box-shadow:none;
  6140. }
  6141. #u37143 {
  6142. border-width:0px;
  6143. position:absolute;
  6144. left:42px;
  6145. top:116px;
  6146. width:283px;
  6147. height:30px;
  6148. display:flex;
  6149. }
  6150. #u37143 .text {
  6151. position:absolute;
  6152. align-self:center;
  6153. padding:2px 2px 2px 2px;
  6154. box-sizing:border-box;
  6155. width:100%;
  6156. }
  6157. #u37143_text {
  6158. border-width:0px;
  6159. word-wrap:break-word;
  6160. text-transform:none;
  6161. visibility:hidden;
  6162. }
  6163. #u37144_input {
  6164. position:absolute;
  6165. left:0px;
  6166. top:0px;
  6167. width:255px;
  6168. height:22px;
  6169. padding:2px 2px 2px 2px;
  6170. font-family:'ArialMT', 'Arial', sans-serif;
  6171. font-weight:400;
  6172. font-style:normal;
  6173. font-size:12px;
  6174. letter-spacing:normal;
  6175. color:#7F7F7F;
  6176. vertical-align:none;
  6177. text-align:left;
  6178. text-transform:none;
  6179. background-color:transparent;
  6180. border-color:transparent;
  6181. }
  6182. #u37144_input.disabled {
  6183. position:absolute;
  6184. left:0px;
  6185. top:0px;
  6186. width:255px;
  6187. height:22px;
  6188. padding:2px 2px 2px 2px;
  6189. font-family:'ArialMT', 'Arial', sans-serif;
  6190. font-weight:400;
  6191. font-style:normal;
  6192. font-size:12px;
  6193. letter-spacing:normal;
  6194. color:#7F7F7F;
  6195. vertical-align:none;
  6196. text-align:left;
  6197. text-transform:none;
  6198. background-color:transparent;
  6199. border-color:transparent;
  6200. }
  6201. #u37144_div {
  6202. border-width:0px;
  6203. position:absolute;
  6204. left:0px;
  6205. top:0px;
  6206. width:255px;
  6207. height:22px;
  6208. background:inherit;
  6209. background-color:rgba(255, 255, 255, 0);
  6210. border:none;
  6211. border-radius:0px;
  6212. -moz-box-shadow:none;
  6213. -webkit-box-shadow:none;
  6214. box-shadow:none;
  6215. font-size:12px;
  6216. color:#7F7F7F;
  6217. }
  6218. #u37144 {
  6219. border-width:0px;
  6220. position:absolute;
  6221. left:56px;
  6222. top:120px;
  6223. width:255px;
  6224. height:22px;
  6225. display:flex;
  6226. font-size:12px;
  6227. color:#7F7F7F;
  6228. }
  6229. #u37144 .text {
  6230. position:absolute;
  6231. align-self:flex-start;
  6232. padding:2px 2px 2px 2px;
  6233. box-sizing:border-box;
  6234. width:100%;
  6235. }
  6236. #u37144_div.disabled {
  6237. border-width:0px;
  6238. position:absolute;
  6239. left:0px;
  6240. top:0px;
  6241. width:255px;
  6242. height:22px;
  6243. background:inherit;
  6244. background-color:rgba(240, 240, 240, 1);
  6245. border:none;
  6246. border-radius:0px;
  6247. -moz-box-shadow:none;
  6248. -webkit-box-shadow:none;
  6249. box-shadow:none;
  6250. font-size:12px;
  6251. color:#7F7F7F;
  6252. }
  6253. #u37144.disabled {
  6254. }
  6255. .u37144_input_option {
  6256. font-size:12px;
  6257. }
  6258. #u37145_div {
  6259. border-width:0px;
  6260. position:absolute;
  6261. left:0px;
  6262. top:0px;
  6263. width:64px;
  6264. height:30px;
  6265. background:inherit;
  6266. background-color:rgba(255, 255, 255, 0);
  6267. border:none;
  6268. border-left:0px;
  6269. border-top:0px;
  6270. border-right:0px;
  6271. border-radius:0px;
  6272. border-bottom-right-radius:0px;
  6273. border-bottom-left-radius:0px;
  6274. -moz-box-shadow:none;
  6275. -webkit-box-shadow:none;
  6276. box-shadow:none;
  6277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6278. font-weight:400;
  6279. font-style:normal;
  6280. font-size:12px;
  6281. color:#1890FF;
  6282. line-height:30px;
  6283. }
  6284. #u37145 {
  6285. border-width:0px;
  6286. position:absolute;
  6287. left:335px;
  6288. top:116px;
  6289. width:64px;
  6290. height:30px;
  6291. display:flex;
  6292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6293. font-weight:400;
  6294. font-style:normal;
  6295. font-size:12px;
  6296. color:#1890FF;
  6297. line-height:30px;
  6298. }
  6299. #u37145 .text {
  6300. position:absolute;
  6301. align-self:flex-start;
  6302. padding:0px 0px 0px 0px;
  6303. box-sizing:border-box;
  6304. width:100%;
  6305. }
  6306. #u37145_text {
  6307. border-width:0px;
  6308. white-space:nowrap;
  6309. text-transform:none;
  6310. }
  6311. #u37146 {
  6312. border-width:0px;
  6313. position:absolute;
  6314. left:0px;
  6315. top:0px;
  6316. width:0px;
  6317. height:0px;
  6318. }
  6319. #u37147_div {
  6320. border-width:0px;
  6321. position:absolute;
  6322. left:0px;
  6323. top:0px;
  6324. width:375px;
  6325. height:40px;
  6326. background:inherit;
  6327. background-color:rgba(236, 128, 141, 0.4);
  6328. border:none;
  6329. border-radius:0px;
  6330. -moz-box-shadow:none;
  6331. -webkit-box-shadow:none;
  6332. box-shadow:none;
  6333. }
  6334. #u37147 {
  6335. border-width:0px;
  6336. position:absolute;
  6337. left:-431px;
  6338. top:156px;
  6339. width:375px;
  6340. height:40px;
  6341. display:flex;
  6342. }
  6343. #u37147 .text {
  6344. position:absolute;
  6345. align-self:center;
  6346. padding:2px 2px 2px 2px;
  6347. box-sizing:border-box;
  6348. width:100%;
  6349. }
  6350. #u37147_text {
  6351. border-width:0px;
  6352. word-wrap:break-word;
  6353. text-transform:none;
  6354. visibility:hidden;
  6355. }
  6356. #u37148_img {
  6357. border-width:0px;
  6358. position:absolute;
  6359. left:0px;
  6360. top:0px;
  6361. width:20px;
  6362. height:18px;
  6363. }
  6364. #u37148 {
  6365. border-width:0px;
  6366. position:absolute;
  6367. left:-421px;
  6368. top:167px;
  6369. width:20px;
  6370. height:18px;
  6371. display:flex;
  6372. color:#D9001B;
  6373. }
  6374. #u37148 .text {
  6375. position:absolute;
  6376. align-self:center;
  6377. padding:2px 2px 2px 2px;
  6378. box-sizing:border-box;
  6379. width:100%;
  6380. }
  6381. #u37148_text {
  6382. border-width:0px;
  6383. word-wrap:break-word;
  6384. text-transform:none;
  6385. visibility:hidden;
  6386. }
  6387. #u37149_div {
  6388. border-width:0px;
  6389. position:absolute;
  6390. left:0px;
  6391. top:0px;
  6392. width:267px;
  6393. height:20px;
  6394. background:inherit;
  6395. background-color:rgba(255, 255, 255, 0);
  6396. border:none;
  6397. border-radius:0px;
  6398. -moz-box-shadow:none;
  6399. -webkit-box-shadow:none;
  6400. box-shadow:none;
  6401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6402. font-weight:400;
  6403. font-style:normal;
  6404. color:#000000;
  6405. }
  6406. #u37149 {
  6407. border-width:0px;
  6408. position:absolute;
  6409. left:-391px;
  6410. top:166px;
  6411. width:267px;
  6412. height:20px;
  6413. display:flex;
  6414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6415. font-weight:400;
  6416. font-style:normal;
  6417. color:#000000;
  6418. }
  6419. #u37149 .text {
  6420. position:absolute;
  6421. align-self:flex-start;
  6422. padding:0px 0px 0px 0px;
  6423. box-sizing:border-box;
  6424. width:100%;
  6425. }
  6426. #u37149_text {
  6427. border-width:0px;
  6428. white-space:nowrap;
  6429. text-transform:none;
  6430. }
  6431. #u37150_div {
  6432. border-width:0px;
  6433. position:absolute;
  6434. left:0px;
  6435. top:0px;
  6436. width:12px;
  6437. height:12px;
  6438. background:inherit;
  6439. background-color:rgba(255, 255, 255, 0);
  6440. box-sizing:border-box;
  6441. border-width:1px;
  6442. border-style:solid;
  6443. border-color:rgba(51, 51, 51, 1);
  6444. border-right:0px;
  6445. border-bottom:0px;
  6446. border-radius:0px;
  6447. border-top-right-radius:0px;
  6448. border-bottom-left-radius:0px;
  6449. -moz-box-shadow:none;
  6450. -webkit-box-shadow:none;
  6451. box-shadow:none;
  6452. }
  6453. #u37150 {
  6454. border-width:0px;
  6455. position:absolute;
  6456. left:-77px;
  6457. top:170px;
  6458. width:12px;
  6459. height:12px;
  6460. display:flex;
  6461. -webkit-transform:rotate(135deg);
  6462. -moz-transform:rotate(135deg);
  6463. -ms-transform:rotate(135deg);
  6464. transform:rotate(135deg);
  6465. }
  6466. #u37150 .text {
  6467. position:absolute;
  6468. align-self:center;
  6469. padding:2px 2px 2px 2px;
  6470. box-sizing:border-box;
  6471. width:100%;
  6472. }
  6473. #u37150_text {
  6474. border-width:0px;
  6475. word-wrap:break-word;
  6476. text-transform:none;
  6477. visibility:hidden;
  6478. }
  6479. #u37151 {
  6480. border-width:0px;
  6481. position:absolute;
  6482. left:0px;
  6483. top:0px;
  6484. width:0px;
  6485. height:0px;
  6486. }
  6487. #u37152_div {
  6488. border-width:0px;
  6489. position:absolute;
  6490. left:0px;
  6491. top:0px;
  6492. width:375px;
  6493. height:50px;
  6494. background:inherit;
  6495. background-color:rgba(255, 255, 255, 1);
  6496. border:none;
  6497. border-radius:0px;
  6498. -moz-box-shadow:none;
  6499. -webkit-box-shadow:none;
  6500. box-shadow:none;
  6501. }
  6502. #u37152 {
  6503. border-width:0px;
  6504. position:absolute;
  6505. left:29px;
  6506. top:157px;
  6507. width:375px;
  6508. height:50px;
  6509. display:flex;
  6510. }
  6511. #u37152 .text {
  6512. position:absolute;
  6513. align-self:center;
  6514. padding:2px 2px 2px 2px;
  6515. box-sizing:border-box;
  6516. width:100%;
  6517. }
  6518. #u37152_text {
  6519. border-width:0px;
  6520. word-wrap:break-word;
  6521. text-transform:none;
  6522. visibility:hidden;
  6523. }
  6524. #u37153_div {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:0px;
  6528. top:0px;
  6529. width:33px;
  6530. height:22px;
  6531. background:inherit;
  6532. background-color:rgba(255, 255, 255, 0);
  6533. border:none;
  6534. border-radius:0px;
  6535. -moz-box-shadow:none;
  6536. -webkit-box-shadow:none;
  6537. box-shadow:none;
  6538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6539. font-weight:400;
  6540. font-style:normal;
  6541. font-size:16px;
  6542. }
  6543. #u37153 {
  6544. border-width:0px;
  6545. position:absolute;
  6546. left:69px;
  6547. top:171px;
  6548. width:33px;
  6549. height:22px;
  6550. display:flex;
  6551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6552. font-weight:400;
  6553. font-style:normal;
  6554. font-size:16px;
  6555. }
  6556. #u37153 .text {
  6557. position:absolute;
  6558. align-self:flex-start;
  6559. padding:0px 0px 0px 0px;
  6560. box-sizing:border-box;
  6561. width:100%;
  6562. }
  6563. #u37153_text {
  6564. border-width:0px;
  6565. white-space:nowrap;
  6566. text-transform:none;
  6567. }
  6568. #u37154_img {
  6569. border-width:0px;
  6570. position:absolute;
  6571. left:0px;
  6572. top:0px;
  6573. width:18px;
  6574. height:14px;
  6575. }
  6576. #u37154 {
  6577. border-width:0px;
  6578. position:absolute;
  6579. left:41px;
  6580. top:175px;
  6581. width:18px;
  6582. height:14px;
  6583. display:flex;
  6584. }
  6585. #u37154 .text {
  6586. position:absolute;
  6587. align-self:center;
  6588. padding:2px 2px 2px 2px;
  6589. box-sizing:border-box;
  6590. width:100%;
  6591. }
  6592. #u37154_text {
  6593. border-width:0px;
  6594. word-wrap:break-word;
  6595. text-transform:none;
  6596. visibility:hidden;
  6597. }
  6598. #u37155_img {
  6599. border-width:0px;
  6600. position:absolute;
  6601. left:0px;
  6602. top:0px;
  6603. width:175px;
  6604. height:119px;
  6605. }
  6606. #u37155 {
  6607. border-width:0px;
  6608. position:absolute;
  6609. left:37px;
  6610. top:604px;
  6611. width:175px;
  6612. height:119px;
  6613. display:flex;
  6614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6615. font-weight:400;
  6616. font-style:normal;
  6617. color:#FFFFFF;
  6618. }
  6619. #u37155 .text {
  6620. position:absolute;
  6621. align-self:center;
  6622. padding:2px 2px 2px 2px;
  6623. box-sizing:border-box;
  6624. width:100%;
  6625. }
  6626. #u37155_text {
  6627. border-width:0px;
  6628. word-wrap:break-word;
  6629. text-transform:none;
  6630. }
  6631. #u37156_img {
  6632. border-width:0px;
  6633. position:absolute;
  6634. left:0px;
  6635. top:0px;
  6636. width:175px;
  6637. height:119px;
  6638. }
  6639. #u37156 {
  6640. border-width:0px;
  6641. position:absolute;
  6642. left:222px;
  6643. top:604px;
  6644. width:175px;
  6645. height:119px;
  6646. display:flex;
  6647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6648. font-weight:400;
  6649. font-style:normal;
  6650. color:#FFFFFF;
  6651. }
  6652. #u37156 .text {
  6653. position:absolute;
  6654. align-self:center;
  6655. padding:2px 2px 2px 2px;
  6656. box-sizing:border-box;
  6657. width:100%;
  6658. }
  6659. #u37156_text {
  6660. border-width:0px;
  6661. word-wrap:break-word;
  6662. text-transform:none;
  6663. }
  6664. #u37157 {
  6665. border-width:0px;
  6666. position:absolute;
  6667. left:0px;
  6668. top:0px;
  6669. width:0px;
  6670. height:0px;
  6671. }
  6672. #u37158_div {
  6673. border-width:0px;
  6674. position:absolute;
  6675. left:0px;
  6676. top:0px;
  6677. width:375px;
  6678. height:50px;
  6679. background:inherit;
  6680. background-color:rgba(255, 255, 255, 1);
  6681. border:none;
  6682. border-radius:0px;
  6683. -moz-box-shadow:none;
  6684. -webkit-box-shadow:none;
  6685. box-shadow:none;
  6686. }
  6687. #u37158 {
  6688. border-width:0px;
  6689. position:absolute;
  6690. left:-431px;
  6691. top:196px;
  6692. width:375px;
  6693. height:50px;
  6694. display:flex;
  6695. }
  6696. #u37158 .text {
  6697. position:absolute;
  6698. align-self:center;
  6699. padding:2px 2px 2px 2px;
  6700. box-sizing:border-box;
  6701. width:100%;
  6702. }
  6703. #u37158_text {
  6704. border-width:0px;
  6705. word-wrap:break-word;
  6706. text-transform:none;
  6707. visibility:hidden;
  6708. }
  6709. #u37159_div {
  6710. border-width:0px;
  6711. position:absolute;
  6712. left:0px;
  6713. top:0px;
  6714. width:33px;
  6715. height:22px;
  6716. background:inherit;
  6717. background-color:rgba(255, 255, 255, 0);
  6718. border:none;
  6719. border-radius:0px;
  6720. -moz-box-shadow:none;
  6721. -webkit-box-shadow:none;
  6722. box-shadow:none;
  6723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6724. font-weight:400;
  6725. font-style:normal;
  6726. font-size:16px;
  6727. }
  6728. #u37159 {
  6729. border-width:0px;
  6730. position:absolute;
  6731. left:-391px;
  6732. top:210px;
  6733. width:33px;
  6734. height:22px;
  6735. display:flex;
  6736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6737. font-weight:400;
  6738. font-style:normal;
  6739. font-size:16px;
  6740. }
  6741. #u37159 .text {
  6742. position:absolute;
  6743. align-self:flex-start;
  6744. padding:0px 0px 0px 0px;
  6745. box-sizing:border-box;
  6746. width:100%;
  6747. }
  6748. #u37159_text {
  6749. border-width:0px;
  6750. white-space:nowrap;
  6751. text-transform:none;
  6752. }
  6753. #u37160_img {
  6754. border-width:0px;
  6755. position:absolute;
  6756. left:0px;
  6757. top:0px;
  6758. width:18px;
  6759. height:14px;
  6760. }
  6761. #u37160 {
  6762. border-width:0px;
  6763. position:absolute;
  6764. left:-419px;
  6765. top:214px;
  6766. width:18px;
  6767. height:14px;
  6768. display:flex;
  6769. }
  6770. #u37160 .text {
  6771. position:absolute;
  6772. align-self:center;
  6773. padding:2px 2px 2px 2px;
  6774. box-sizing:border-box;
  6775. width:100%;
  6776. }
  6777. #u37160_text {
  6778. border-width:0px;
  6779. word-wrap:break-word;
  6780. text-transform:none;
  6781. visibility:hidden;
  6782. }
  6783. #u37161 {
  6784. border-width:0px;
  6785. position:absolute;
  6786. left:0px;
  6787. top:0px;
  6788. width:0px;
  6789. height:0px;
  6790. }
  6791. #u37162_div {
  6792. border-width:0px;
  6793. position:absolute;
  6794. left:0px;
  6795. top:0px;
  6796. width:180px;
  6797. height:51px;
  6798. background:inherit;
  6799. background-color:rgba(255, 255, 255, 1);
  6800. box-sizing:border-box;
  6801. border-width:1px;
  6802. border-style:solid;
  6803. border-color:rgba(215, 215, 215, 1);
  6804. border-radius:4px;
  6805. -moz-box-shadow:none;
  6806. -webkit-box-shadow:none;
  6807. box-shadow:none;
  6808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6809. font-weight:400;
  6810. font-style:normal;
  6811. text-align:left;
  6812. }
  6813. #u37162 {
  6814. border-width:0px;
  6815. position:absolute;
  6816. left:-337px;
  6817. top:247px;
  6818. width:180px;
  6819. height:51px;
  6820. display:flex;
  6821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6822. font-weight:400;
  6823. font-style:normal;
  6824. text-align:left;
  6825. }
  6826. #u37162 .text {
  6827. position:absolute;
  6828. align-self:center;
  6829. padding:2px 2px 2px 55px;
  6830. box-sizing:border-box;
  6831. width:100%;
  6832. }
  6833. #u37162_text {
  6834. border-width:0px;
  6835. word-wrap:break-word;
  6836. text-transform:none;
  6837. }
  6838. #u37163_img {
  6839. border-width:0px;
  6840. position:absolute;
  6841. left:0px;
  6842. top:0px;
  6843. width:45px;
  6844. height:45px;
  6845. }
  6846. #u37163 {
  6847. border-width:0px;
  6848. position:absolute;
  6849. left:-334px;
  6850. top:250px;
  6851. width:45px;
  6852. height:45px;
  6853. display:flex;
  6854. }
  6855. #u37163 .text {
  6856. position:absolute;
  6857. align-self:center;
  6858. padding:2px 2px 2px 2px;
  6859. box-sizing:border-box;
  6860. width:100%;
  6861. }
  6862. #u37163_text {
  6863. border-width:0px;
  6864. word-wrap:break-word;
  6865. text-transform:none;
  6866. visibility:hidden;
  6867. }
  6868. #u37164_img {
  6869. border-width:0px;
  6870. position:absolute;
  6871. left:0px;
  6872. top:0px;
  6873. width:21px;
  6874. height:14px;
  6875. }
  6876. #u37164 {
  6877. border-width:0px;
  6878. position:absolute;
  6879. left:-322px;
  6880. top:266px;
  6881. width:21px;
  6882. height:14px;
  6883. display:flex;
  6884. }
  6885. #u37164 .text {
  6886. position:absolute;
  6887. align-self:center;
  6888. padding:2px 2px 2px 2px;
  6889. box-sizing:border-box;
  6890. width:100%;
  6891. }
  6892. #u37164_text {
  6893. border-width:0px;
  6894. word-wrap:break-word;
  6895. text-transform:none;
  6896. visibility:hidden;
  6897. }
  6898. #u37165 {
  6899. border-width:0px;
  6900. position:absolute;
  6901. left:0px;
  6902. top:0px;
  6903. width:0px;
  6904. height:0px;
  6905. }
  6906. #u37166_div {
  6907. border-width:0px;
  6908. position:absolute;
  6909. left:0px;
  6910. top:0px;
  6911. width:375px;
  6912. height:50px;
  6913. background:inherit;
  6914. background-color:rgba(255, 255, 255, 1);
  6915. border:none;
  6916. border-radius:0px;
  6917. -moz-box-shadow:none;
  6918. -webkit-box-shadow:none;
  6919. box-shadow:none;
  6920. }
  6921. #u37166 {
  6922. border-width:0px;
  6923. position:absolute;
  6924. left:-431px;
  6925. top:106px;
  6926. width:375px;
  6927. height:50px;
  6928. display:flex;
  6929. }
  6930. #u37166 .text {
  6931. position:absolute;
  6932. align-self:center;
  6933. padding:2px 2px 2px 2px;
  6934. box-sizing:border-box;
  6935. width:100%;
  6936. }
  6937. #u37166_text {
  6938. border-width:0px;
  6939. word-wrap:break-word;
  6940. text-transform:none;
  6941. visibility:hidden;
  6942. }
  6943. #u37167 {
  6944. border-width:0px;
  6945. position:absolute;
  6946. left:0px;
  6947. top:0px;
  6948. width:0px;
  6949. height:0px;
  6950. }
  6951. #u37168 {
  6952. border-width:0px;
  6953. position:absolute;
  6954. left:0px;
  6955. top:0px;
  6956. width:0px;
  6957. height:0px;
  6958. }
  6959. #u37169_div {
  6960. border-width:0px;
  6961. position:absolute;
  6962. left:0px;
  6963. top:0px;
  6964. width:283px;
  6965. height:30px;
  6966. background:inherit;
  6967. background-color:rgba(242, 242, 242, 1);
  6968. border:none;
  6969. border-radius:20px;
  6970. -moz-box-shadow:none;
  6971. -webkit-box-shadow:none;
  6972. box-shadow:none;
  6973. }
  6974. #u37169 {
  6975. border-width:0px;
  6976. position:absolute;
  6977. left:-418px;
  6978. top:116px;
  6979. width:283px;
  6980. height:30px;
  6981. display:flex;
  6982. }
  6983. #u37169 .text {
  6984. position:absolute;
  6985. align-self:center;
  6986. padding:2px 2px 2px 2px;
  6987. box-sizing:border-box;
  6988. width:100%;
  6989. }
  6990. #u37169_text {
  6991. border-width:0px;
  6992. word-wrap:break-word;
  6993. text-transform:none;
  6994. visibility:hidden;
  6995. }
  6996. #u37170_input {
  6997. position:absolute;
  6998. left:0px;
  6999. top:0px;
  7000. width:255px;
  7001. height:22px;
  7002. padding:2px 2px 2px 2px;
  7003. font-family:'ArialMT', 'Arial', sans-serif;
  7004. font-weight:400;
  7005. font-style:normal;
  7006. font-size:12px;
  7007. letter-spacing:normal;
  7008. color:#7F7F7F;
  7009. vertical-align:none;
  7010. text-align:left;
  7011. text-transform:none;
  7012. background-color:transparent;
  7013. border-color:transparent;
  7014. }
  7015. #u37170_input.disabled {
  7016. position:absolute;
  7017. left:0px;
  7018. top:0px;
  7019. width:255px;
  7020. height:22px;
  7021. padding:2px 2px 2px 2px;
  7022. font-family:'ArialMT', 'Arial', sans-serif;
  7023. font-weight:400;
  7024. font-style:normal;
  7025. font-size:12px;
  7026. letter-spacing:normal;
  7027. color:#7F7F7F;
  7028. vertical-align:none;
  7029. text-align:left;
  7030. text-transform:none;
  7031. background-color:transparent;
  7032. border-color:transparent;
  7033. }
  7034. #u37170_div {
  7035. border-width:0px;
  7036. position:absolute;
  7037. left:0px;
  7038. top:0px;
  7039. width:255px;
  7040. height:22px;
  7041. background:inherit;
  7042. background-color:rgba(255, 255, 255, 0);
  7043. border:none;
  7044. border-radius:0px;
  7045. -moz-box-shadow:none;
  7046. -webkit-box-shadow:none;
  7047. box-shadow:none;
  7048. font-size:12px;
  7049. color:#7F7F7F;
  7050. }
  7051. #u37170 {
  7052. border-width:0px;
  7053. position:absolute;
  7054. left:-404px;
  7055. top:120px;
  7056. width:255px;
  7057. height:22px;
  7058. display:flex;
  7059. font-size:12px;
  7060. color:#7F7F7F;
  7061. }
  7062. #u37170 .text {
  7063. position:absolute;
  7064. align-self:flex-start;
  7065. padding:2px 2px 2px 2px;
  7066. box-sizing:border-box;
  7067. width:100%;
  7068. }
  7069. #u37170_div.disabled {
  7070. border-width:0px;
  7071. position:absolute;
  7072. left:0px;
  7073. top:0px;
  7074. width:255px;
  7075. height:22px;
  7076. background:inherit;
  7077. background-color:rgba(240, 240, 240, 1);
  7078. border:none;
  7079. border-radius:0px;
  7080. -moz-box-shadow:none;
  7081. -webkit-box-shadow:none;
  7082. box-shadow:none;
  7083. font-size:12px;
  7084. color:#7F7F7F;
  7085. }
  7086. #u37170.disabled {
  7087. }
  7088. .u37170_input_option {
  7089. font-size:12px;
  7090. }
  7091. #u37171_div {
  7092. border-width:0px;
  7093. position:absolute;
  7094. left:0px;
  7095. top:0px;
  7096. width:64px;
  7097. height:30px;
  7098. background:inherit;
  7099. background-color:rgba(255, 255, 255, 0);
  7100. border:none;
  7101. border-left:0px;
  7102. border-top:0px;
  7103. border-right:0px;
  7104. border-radius:0px;
  7105. border-bottom-right-radius:0px;
  7106. border-bottom-left-radius:0px;
  7107. -moz-box-shadow:none;
  7108. -webkit-box-shadow:none;
  7109. box-shadow:none;
  7110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7111. font-weight:400;
  7112. font-style:normal;
  7113. font-size:12px;
  7114. color:#1890FF;
  7115. line-height:30px;
  7116. }
  7117. #u37171 {
  7118. border-width:0px;
  7119. position:absolute;
  7120. left:-125px;
  7121. top:116px;
  7122. width:64px;
  7123. height:30px;
  7124. display:flex;
  7125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7126. font-weight:400;
  7127. font-style:normal;
  7128. font-size:12px;
  7129. color:#1890FF;
  7130. line-height:30px;
  7131. }
  7132. #u37171 .text {
  7133. position:absolute;
  7134. align-self:flex-start;
  7135. padding:0px 0px 0px 0px;
  7136. box-sizing:border-box;
  7137. width:100%;
  7138. }
  7139. #u37171_text {
  7140. border-width:0px;
  7141. white-space:nowrap;
  7142. text-transform:none;
  7143. }
  7144. #u37172_img {
  7145. border-width:0px;
  7146. position:absolute;
  7147. left:0px;
  7148. top:0px;
  7149. width:433px;
  7150. height:865px;
  7151. }
  7152. #u37172 {
  7153. border-width:0px;
  7154. position:absolute;
  7155. left:448px;
  7156. top:0px;
  7157. width:433px;
  7158. height:865px;
  7159. display:flex;
  7160. }
  7161. #u37172 .text {
  7162. position:absolute;
  7163. align-self:center;
  7164. padding:2px 2px 2px 2px;
  7165. box-sizing:border-box;
  7166. width:100%;
  7167. }
  7168. #u37172_text {
  7169. border-width:0px;
  7170. word-wrap:break-word;
  7171. text-transform:none;
  7172. visibility:hidden;
  7173. }
  7174. #u37173_div {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:0px;
  7178. top:0px;
  7179. width:375px;
  7180. height:628px;
  7181. background:inherit;
  7182. background-color:rgba(51, 51, 51, 0.8);
  7183. border:none;
  7184. border-top:0px;
  7185. border-radius:23px;
  7186. border-top-left-radius:0px;
  7187. border-top-right-radius:0px;
  7188. -moz-box-shadow:none;
  7189. -webkit-box-shadow:none;
  7190. box-shadow:none;
  7191. }
  7192. #u37173 {
  7193. border-width:0px;
  7194. position:absolute;
  7195. left:477px;
  7196. top:211px;
  7197. width:375px;
  7198. height:628px;
  7199. display:flex;
  7200. }
  7201. #u37173 .text {
  7202. position:absolute;
  7203. align-self:center;
  7204. padding:2px 2px 2px 2px;
  7205. box-sizing:border-box;
  7206. width:100%;
  7207. }
  7208. #u37173_text {
  7209. border-width:0px;
  7210. word-wrap:break-word;
  7211. text-transform:none;
  7212. visibility:hidden;
  7213. }
  7214. #u37174 {
  7215. border-width:0px;
  7216. position:absolute;
  7217. left:0px;
  7218. top:0px;
  7219. width:0px;
  7220. height:0px;
  7221. }
  7222. #u37175_div {
  7223. border-width:0px;
  7224. position:absolute;
  7225. left:0px;
  7226. top:0px;
  7227. width:310px;
  7228. height:628px;
  7229. background:inherit;
  7230. background-color:rgba(255, 255, 255, 1);
  7231. border:none;
  7232. border-top:0px;
  7233. border-radius:23px;
  7234. border-top-left-radius:0px;
  7235. border-top-right-radius:0px;
  7236. border-bottom-right-radius:0px;
  7237. -moz-box-shadow:none;
  7238. -webkit-box-shadow:none;
  7239. box-shadow:none;
  7240. }
  7241. #u37175 {
  7242. border-width:0px;
  7243. position:absolute;
  7244. left:477px;
  7245. top:211px;
  7246. width:310px;
  7247. height:628px;
  7248. display:flex;
  7249. }
  7250. #u37175 .text {
  7251. position:absolute;
  7252. align-self:center;
  7253. padding:2px 2px 2px 2px;
  7254. box-sizing:border-box;
  7255. width:100%;
  7256. }
  7257. #u37175_text {
  7258. border-width:0px;
  7259. word-wrap:break-word;
  7260. text-transform:none;
  7261. visibility:hidden;
  7262. }
  7263. #u37176_div {
  7264. border-width:0px;
  7265. position:absolute;
  7266. left:0px;
  7267. top:0px;
  7268. width:232px;
  7269. height:600px;
  7270. background:inherit;
  7271. background-color:rgba(255, 255, 255, 0);
  7272. border:none;
  7273. border-radius:0px;
  7274. -moz-box-shadow:none;
  7275. -webkit-box-shadow:none;
  7276. box-shadow:none;
  7277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7278. font-weight:400;
  7279. font-style:normal;
  7280. font-size:16px;
  7281. line-height:40px;
  7282. }
  7283. #u37176 {
  7284. border-width:0px;
  7285. position:absolute;
  7286. left:497px;
  7287. top:231px;
  7288. width:232px;
  7289. height:600px;
  7290. display:flex;
  7291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7292. font-weight:400;
  7293. font-style:normal;
  7294. font-size:16px;
  7295. line-height:40px;
  7296. }
  7297. #u37176 .text {
  7298. position:absolute;
  7299. align-self:flex-start;
  7300. padding:0px 0px 0px 0px;
  7301. box-sizing:border-box;
  7302. width:100%;
  7303. }
  7304. #u37176_text {
  7305. border-width:0px;
  7306. word-wrap:break-word;
  7307. text-transform:none;
  7308. }
  7309. #u37177_div {
  7310. border-width:0px;
  7311. position:absolute;
  7312. left:0px;
  7313. top:0px;
  7314. width:10px;
  7315. height:10px;
  7316. background:inherit;
  7317. background-color:rgba(255, 255, 255, 0);
  7318. box-sizing:border-box;
  7319. border-width:1px;
  7320. border-style:solid;
  7321. border-color:rgba(170, 170, 170, 1);
  7322. border-right:0px;
  7323. border-bottom:0px;
  7324. border-radius:0px;
  7325. border-top-right-radius:0px;
  7326. border-bottom-left-radius:0px;
  7327. -moz-box-shadow:none;
  7328. -webkit-box-shadow:none;
  7329. box-shadow:none;
  7330. }
  7331. #u37177 {
  7332. border-width:0px;
  7333. position:absolute;
  7334. left:761px;
  7335. top:245px;
  7336. width:10px;
  7337. height:10px;
  7338. display:flex;
  7339. -webkit-transform:rotate(135deg);
  7340. -moz-transform:rotate(135deg);
  7341. -ms-transform:rotate(135deg);
  7342. transform:rotate(135deg);
  7343. }
  7344. #u37177 .text {
  7345. position:absolute;
  7346. align-self:center;
  7347. padding:2px 2px 2px 2px;
  7348. box-sizing:border-box;
  7349. width:100%;
  7350. }
  7351. #u37177_text {
  7352. border-width:0px;
  7353. word-wrap:break-word;
  7354. text-transform:none;
  7355. visibility:hidden;
  7356. }
  7357. #u37178_div {
  7358. border-width:0px;
  7359. position:absolute;
  7360. left:0px;
  7361. top:0px;
  7362. width:10px;
  7363. height:10px;
  7364. background:inherit;
  7365. background-color:rgba(255, 255, 255, 0);
  7366. box-sizing:border-box;
  7367. border-width:1px;
  7368. border-style:solid;
  7369. border-color:rgba(170, 170, 170, 1);
  7370. border-right:0px;
  7371. border-bottom:0px;
  7372. border-radius:0px;
  7373. border-top-right-radius:0px;
  7374. border-bottom-left-radius:0px;
  7375. -moz-box-shadow:none;
  7376. -webkit-box-shadow:none;
  7377. box-shadow:none;
  7378. }
  7379. #u37178 {
  7380. border-width:0px;
  7381. position:absolute;
  7382. left:761px;
  7383. top:289px;
  7384. width:10px;
  7385. height:10px;
  7386. display:flex;
  7387. -webkit-transform:rotate(135deg);
  7388. -moz-transform:rotate(135deg);
  7389. -ms-transform:rotate(135deg);
  7390. transform:rotate(135deg);
  7391. }
  7392. #u37178 .text {
  7393. position:absolute;
  7394. align-self:center;
  7395. padding:2px 2px 2px 2px;
  7396. box-sizing:border-box;
  7397. width:100%;
  7398. }
  7399. #u37178_text {
  7400. border-width:0px;
  7401. word-wrap:break-word;
  7402. text-transform:none;
  7403. visibility:hidden;
  7404. }
  7405. #u37179_div {
  7406. border-width:0px;
  7407. position:absolute;
  7408. left:0px;
  7409. top:0px;
  7410. width:10px;
  7411. height:10px;
  7412. background:inherit;
  7413. background-color:rgba(255, 255, 255, 0);
  7414. box-sizing:border-box;
  7415. border-width:1px;
  7416. border-style:solid;
  7417. border-color:rgba(170, 170, 170, 1);
  7418. border-right:0px;
  7419. border-bottom:0px;
  7420. border-radius:0px;
  7421. border-top-right-radius:0px;
  7422. border-bottom-left-radius:0px;
  7423. -moz-box-shadow:none;
  7424. -webkit-box-shadow:none;
  7425. box-shadow:none;
  7426. }
  7427. #u37179 {
  7428. border-width:0px;
  7429. position:absolute;
  7430. left:761px;
  7431. top:327px;
  7432. width:10px;
  7433. height:10px;
  7434. display:flex;
  7435. -webkit-transform:rotate(135deg);
  7436. -moz-transform:rotate(135deg);
  7437. -ms-transform:rotate(135deg);
  7438. transform:rotate(135deg);
  7439. }
  7440. #u37179 .text {
  7441. position:absolute;
  7442. align-self:center;
  7443. padding:2px 2px 2px 2px;
  7444. box-sizing:border-box;
  7445. width:100%;
  7446. }
  7447. #u37179_text {
  7448. border-width:0px;
  7449. word-wrap:break-word;
  7450. text-transform:none;
  7451. visibility:hidden;
  7452. }
  7453. #u37180_div {
  7454. border-width:0px;
  7455. position:absolute;
  7456. left:0px;
  7457. top:0px;
  7458. width:10px;
  7459. height:10px;
  7460. background:inherit;
  7461. background-color:rgba(255, 255, 255, 0);
  7462. box-sizing:border-box;
  7463. border-width:1px;
  7464. border-style:solid;
  7465. border-color:rgba(170, 170, 170, 1);
  7466. border-right:0px;
  7467. border-bottom:0px;
  7468. border-radius:0px;
  7469. border-top-right-radius:0px;
  7470. border-bottom-left-radius:0px;
  7471. -moz-box-shadow:none;
  7472. -webkit-box-shadow:none;
  7473. box-shadow:none;
  7474. }
  7475. #u37180 {
  7476. border-width:0px;
  7477. position:absolute;
  7478. left:761px;
  7479. top:367px;
  7480. width:10px;
  7481. height:10px;
  7482. display:flex;
  7483. -webkit-transform:rotate(135deg);
  7484. -moz-transform:rotate(135deg);
  7485. -ms-transform:rotate(135deg);
  7486. transform:rotate(135deg);
  7487. }
  7488. #u37180 .text {
  7489. position:absolute;
  7490. align-self:center;
  7491. padding:2px 2px 2px 2px;
  7492. box-sizing:border-box;
  7493. width:100%;
  7494. }
  7495. #u37180_text {
  7496. border-width:0px;
  7497. word-wrap:break-word;
  7498. text-transform:none;
  7499. visibility:hidden;
  7500. }
  7501. #u37181_div {
  7502. border-width:0px;
  7503. position:absolute;
  7504. left:0px;
  7505. top:0px;
  7506. width:10px;
  7507. height:10px;
  7508. background:inherit;
  7509. background-color:rgba(255, 255, 255, 0);
  7510. box-sizing:border-box;
  7511. border-width:1px;
  7512. border-style:solid;
  7513. border-color:rgba(170, 170, 170, 1);
  7514. border-right:0px;
  7515. border-bottom:0px;
  7516. border-radius:0px;
  7517. border-top-right-radius:0px;
  7518. border-bottom-left-radius:0px;
  7519. -moz-box-shadow:none;
  7520. -webkit-box-shadow:none;
  7521. box-shadow:none;
  7522. }
  7523. #u37181 {
  7524. border-width:0px;
  7525. position:absolute;
  7526. left:761px;
  7527. top:405px;
  7528. width:10px;
  7529. height:10px;
  7530. display:flex;
  7531. -webkit-transform:rotate(135deg);
  7532. -moz-transform:rotate(135deg);
  7533. -ms-transform:rotate(135deg);
  7534. transform:rotate(135deg);
  7535. }
  7536. #u37181 .text {
  7537. position:absolute;
  7538. align-self:center;
  7539. padding:2px 2px 2px 2px;
  7540. box-sizing:border-box;
  7541. width:100%;
  7542. }
  7543. #u37181_text {
  7544. border-width:0px;
  7545. word-wrap:break-word;
  7546. text-transform:none;
  7547. visibility:hidden;
  7548. }
  7549. #u37182_div {
  7550. border-width:0px;
  7551. position:absolute;
  7552. left:0px;
  7553. top:0px;
  7554. width:10px;
  7555. height:10px;
  7556. background:inherit;
  7557. background-color:rgba(255, 255, 255, 0);
  7558. box-sizing:border-box;
  7559. border-width:1px;
  7560. border-style:solid;
  7561. border-color:rgba(170, 170, 170, 1);
  7562. border-right:0px;
  7563. border-bottom:0px;
  7564. border-radius:0px;
  7565. border-top-right-radius:0px;
  7566. border-bottom-left-radius:0px;
  7567. -moz-box-shadow:none;
  7568. -webkit-box-shadow:none;
  7569. box-shadow:none;
  7570. }
  7571. #u37182 {
  7572. border-width:0px;
  7573. position:absolute;
  7574. left:761px;
  7575. top:449px;
  7576. width:10px;
  7577. height:10px;
  7578. display:flex;
  7579. -webkit-transform:rotate(135deg);
  7580. -moz-transform:rotate(135deg);
  7581. -ms-transform:rotate(135deg);
  7582. transform:rotate(135deg);
  7583. }
  7584. #u37182 .text {
  7585. position:absolute;
  7586. align-self:center;
  7587. padding:2px 2px 2px 2px;
  7588. box-sizing:border-box;
  7589. width:100%;
  7590. }
  7591. #u37182_text {
  7592. border-width:0px;
  7593. word-wrap:break-word;
  7594. text-transform:none;
  7595. visibility:hidden;
  7596. }
  7597. #u37183_div {
  7598. border-width:0px;
  7599. position:absolute;
  7600. left:0px;
  7601. top:0px;
  7602. width:10px;
  7603. height:10px;
  7604. background:inherit;
  7605. background-color:rgba(255, 255, 255, 0);
  7606. box-sizing:border-box;
  7607. border-width:1px;
  7608. border-style:solid;
  7609. border-color:rgba(170, 170, 170, 1);
  7610. border-right:0px;
  7611. border-bottom:0px;
  7612. border-radius:0px;
  7613. border-top-right-radius:0px;
  7614. border-bottom-left-radius:0px;
  7615. -moz-box-shadow:none;
  7616. -webkit-box-shadow:none;
  7617. box-shadow:none;
  7618. }
  7619. #u37183 {
  7620. border-width:0px;
  7621. position:absolute;
  7622. left:761px;
  7623. top:489px;
  7624. width:10px;
  7625. height:10px;
  7626. display:flex;
  7627. -webkit-transform:rotate(135deg);
  7628. -moz-transform:rotate(135deg);
  7629. -ms-transform:rotate(135deg);
  7630. transform:rotate(135deg);
  7631. }
  7632. #u37183 .text {
  7633. position:absolute;
  7634. align-self:center;
  7635. padding:2px 2px 2px 2px;
  7636. box-sizing:border-box;
  7637. width:100%;
  7638. }
  7639. #u37183_text {
  7640. border-width:0px;
  7641. word-wrap:break-word;
  7642. text-transform:none;
  7643. visibility:hidden;
  7644. }
  7645. #u37184_div {
  7646. border-width:0px;
  7647. position:absolute;
  7648. left:0px;
  7649. top:0px;
  7650. width:10px;
  7651. height:10px;
  7652. background:inherit;
  7653. background-color:rgba(255, 255, 255, 0);
  7654. box-sizing:border-box;
  7655. border-width:1px;
  7656. border-style:solid;
  7657. border-color:rgba(170, 170, 170, 1);
  7658. border-right:0px;
  7659. border-bottom:0px;
  7660. border-radius:0px;
  7661. border-top-right-radius:0px;
  7662. border-bottom-left-radius:0px;
  7663. -moz-box-shadow:none;
  7664. -webkit-box-shadow:none;
  7665. box-shadow:none;
  7666. }
  7667. #u37184 {
  7668. border-width:0px;
  7669. position:absolute;
  7670. left:761px;
  7671. top:526px;
  7672. width:10px;
  7673. height:10px;
  7674. display:flex;
  7675. -webkit-transform:rotate(135deg);
  7676. -moz-transform:rotate(135deg);
  7677. -ms-transform:rotate(135deg);
  7678. transform:rotate(135deg);
  7679. }
  7680. #u37184 .text {
  7681. position:absolute;
  7682. align-self:center;
  7683. padding:2px 2px 2px 2px;
  7684. box-sizing:border-box;
  7685. width:100%;
  7686. }
  7687. #u37184_text {
  7688. border-width:0px;
  7689. word-wrap:break-word;
  7690. text-transform:none;
  7691. visibility:hidden;
  7692. }
  7693. #u37185_div {
  7694. border-width:0px;
  7695. position:absolute;
  7696. left:0px;
  7697. top:0px;
  7698. width:10px;
  7699. height:10px;
  7700. background:inherit;
  7701. background-color:rgba(255, 255, 255, 0);
  7702. box-sizing:border-box;
  7703. border-width:1px;
  7704. border-style:solid;
  7705. border-color:rgba(170, 170, 170, 1);
  7706. border-right:0px;
  7707. border-bottom:0px;
  7708. border-radius:0px;
  7709. border-top-right-radius:0px;
  7710. border-bottom-left-radius:0px;
  7711. -moz-box-shadow:none;
  7712. -webkit-box-shadow:none;
  7713. box-shadow:none;
  7714. }
  7715. #u37185 {
  7716. border-width:0px;
  7717. position:absolute;
  7718. left:761px;
  7719. top:570px;
  7720. width:10px;
  7721. height:10px;
  7722. display:flex;
  7723. -webkit-transform:rotate(135deg);
  7724. -moz-transform:rotate(135deg);
  7725. -ms-transform:rotate(135deg);
  7726. transform:rotate(135deg);
  7727. }
  7728. #u37185 .text {
  7729. position:absolute;
  7730. align-self:center;
  7731. padding:2px 2px 2px 2px;
  7732. box-sizing:border-box;
  7733. width:100%;
  7734. }
  7735. #u37185_text {
  7736. border-width:0px;
  7737. word-wrap:break-word;
  7738. text-transform:none;
  7739. visibility:hidden;
  7740. }
  7741. #u37186_div {
  7742. border-width:0px;
  7743. position:absolute;
  7744. left:0px;
  7745. top:0px;
  7746. width:10px;
  7747. height:10px;
  7748. background:inherit;
  7749. background-color:rgba(255, 255, 255, 0);
  7750. box-sizing:border-box;
  7751. border-width:1px;
  7752. border-style:solid;
  7753. border-color:rgba(170, 170, 170, 1);
  7754. border-right:0px;
  7755. border-bottom:0px;
  7756. border-radius:0px;
  7757. border-top-right-radius:0px;
  7758. border-bottom-left-radius:0px;
  7759. -moz-box-shadow:none;
  7760. -webkit-box-shadow:none;
  7761. box-shadow:none;
  7762. }
  7763. #u37186 {
  7764. border-width:0px;
  7765. position:absolute;
  7766. left:761px;
  7767. top:613px;
  7768. width:10px;
  7769. height:10px;
  7770. display:flex;
  7771. -webkit-transform:rotate(135deg);
  7772. -moz-transform:rotate(135deg);
  7773. -ms-transform:rotate(135deg);
  7774. transform:rotate(135deg);
  7775. }
  7776. #u37186 .text {
  7777. position:absolute;
  7778. align-self:center;
  7779. padding:2px 2px 2px 2px;
  7780. box-sizing:border-box;
  7781. width:100%;
  7782. }
  7783. #u37186_text {
  7784. border-width:0px;
  7785. word-wrap:break-word;
  7786. text-transform:none;
  7787. visibility:hidden;
  7788. }
  7789. #u37187_div {
  7790. border-width:0px;
  7791. position:absolute;
  7792. left:0px;
  7793. top:0px;
  7794. width:10px;
  7795. height:10px;
  7796. background:inherit;
  7797. background-color:rgba(255, 255, 255, 0);
  7798. box-sizing:border-box;
  7799. border-width:1px;
  7800. border-style:solid;
  7801. border-color:rgba(170, 170, 170, 1);
  7802. border-right:0px;
  7803. border-bottom:0px;
  7804. border-radius:0px;
  7805. border-top-right-radius:0px;
  7806. border-bottom-left-radius:0px;
  7807. -moz-box-shadow:none;
  7808. -webkit-box-shadow:none;
  7809. box-shadow:none;
  7810. }
  7811. #u37187 {
  7812. border-width:0px;
  7813. position:absolute;
  7814. left:761px;
  7815. top:655px;
  7816. width:10px;
  7817. height:10px;
  7818. display:flex;
  7819. -webkit-transform:rotate(135deg);
  7820. -moz-transform:rotate(135deg);
  7821. -ms-transform:rotate(135deg);
  7822. transform:rotate(135deg);
  7823. }
  7824. #u37187 .text {
  7825. position:absolute;
  7826. align-self:center;
  7827. padding:2px 2px 2px 2px;
  7828. box-sizing:border-box;
  7829. width:100%;
  7830. }
  7831. #u37187_text {
  7832. border-width:0px;
  7833. word-wrap:break-word;
  7834. text-transform:none;
  7835. visibility:hidden;
  7836. }
  7837. #u37188_div {
  7838. border-width:0px;
  7839. position:absolute;
  7840. left:0px;
  7841. top:0px;
  7842. width:10px;
  7843. height:10px;
  7844. background:inherit;
  7845. background-color:rgba(255, 255, 255, 0);
  7846. box-sizing:border-box;
  7847. border-width:1px;
  7848. border-style:solid;
  7849. border-color:rgba(170, 170, 170, 1);
  7850. border-right:0px;
  7851. border-bottom:0px;
  7852. border-radius:0px;
  7853. border-top-right-radius:0px;
  7854. border-bottom-left-radius:0px;
  7855. -moz-box-shadow:none;
  7856. -webkit-box-shadow:none;
  7857. box-shadow:none;
  7858. }
  7859. #u37188 {
  7860. border-width:0px;
  7861. position:absolute;
  7862. left:761px;
  7863. top:694px;
  7864. width:10px;
  7865. height:10px;
  7866. display:flex;
  7867. -webkit-transform:rotate(135deg);
  7868. -moz-transform:rotate(135deg);
  7869. -ms-transform:rotate(135deg);
  7870. transform:rotate(135deg);
  7871. }
  7872. #u37188 .text {
  7873. position:absolute;
  7874. align-self:center;
  7875. padding:2px 2px 2px 2px;
  7876. box-sizing:border-box;
  7877. width:100%;
  7878. }
  7879. #u37188_text {
  7880. border-width:0px;
  7881. word-wrap:break-word;
  7882. text-transform:none;
  7883. visibility:hidden;
  7884. }
  7885. #u37189_div {
  7886. border-width:0px;
  7887. position:absolute;
  7888. left:0px;
  7889. top:0px;
  7890. width:10px;
  7891. height:10px;
  7892. background:inherit;
  7893. background-color:rgba(255, 255, 255, 0);
  7894. box-sizing:border-box;
  7895. border-width:1px;
  7896. border-style:solid;
  7897. border-color:rgba(170, 170, 170, 1);
  7898. border-right:0px;
  7899. border-bottom:0px;
  7900. border-radius:0px;
  7901. border-top-right-radius:0px;
  7902. border-bottom-left-radius:0px;
  7903. -moz-box-shadow:none;
  7904. -webkit-box-shadow:none;
  7905. box-shadow:none;
  7906. }
  7907. #u37189 {
  7908. border-width:0px;
  7909. position:absolute;
  7910. left:761px;
  7911. top:731px;
  7912. width:10px;
  7913. height:10px;
  7914. display:flex;
  7915. -webkit-transform:rotate(135deg);
  7916. -moz-transform:rotate(135deg);
  7917. -ms-transform:rotate(135deg);
  7918. transform:rotate(135deg);
  7919. }
  7920. #u37189 .text {
  7921. position:absolute;
  7922. align-self:center;
  7923. padding:2px 2px 2px 2px;
  7924. box-sizing:border-box;
  7925. width:100%;
  7926. }
  7927. #u37189_text {
  7928. border-width:0px;
  7929. word-wrap:break-word;
  7930. text-transform:none;
  7931. visibility:hidden;
  7932. }
  7933. #u37190_div {
  7934. border-width:0px;
  7935. position:absolute;
  7936. left:0px;
  7937. top:0px;
  7938. width:10px;
  7939. height:10px;
  7940. background:inherit;
  7941. background-color:rgba(255, 255, 255, 0);
  7942. box-sizing:border-box;
  7943. border-width:1px;
  7944. border-style:solid;
  7945. border-color:rgba(170, 170, 170, 1);
  7946. border-right:0px;
  7947. border-bottom:0px;
  7948. border-radius:0px;
  7949. border-top-right-radius:0px;
  7950. border-bottom-left-radius:0px;
  7951. -moz-box-shadow:none;
  7952. -webkit-box-shadow:none;
  7953. box-shadow:none;
  7954. }
  7955. #u37190 {
  7956. border-width:0px;
  7957. position:absolute;
  7958. left:761px;
  7959. top:771px;
  7960. width:10px;
  7961. height:10px;
  7962. display:flex;
  7963. -webkit-transform:rotate(135deg);
  7964. -moz-transform:rotate(135deg);
  7965. -ms-transform:rotate(135deg);
  7966. transform:rotate(135deg);
  7967. }
  7968. #u37190 .text {
  7969. position:absolute;
  7970. align-self:center;
  7971. padding:2px 2px 2px 2px;
  7972. box-sizing:border-box;
  7973. width:100%;
  7974. }
  7975. #u37190_text {
  7976. border-width:0px;
  7977. word-wrap:break-word;
  7978. text-transform:none;
  7979. visibility:hidden;
  7980. }
  7981. #u37191_div {
  7982. border-width:0px;
  7983. position:absolute;
  7984. left:0px;
  7985. top:0px;
  7986. width:10px;
  7987. height:10px;
  7988. background:inherit;
  7989. background-color:rgba(255, 255, 255, 0);
  7990. box-sizing:border-box;
  7991. border-width:1px;
  7992. border-style:solid;
  7993. border-color:rgba(170, 170, 170, 1);
  7994. border-right:0px;
  7995. border-bottom:0px;
  7996. border-radius:0px;
  7997. border-top-right-radius:0px;
  7998. border-bottom-left-radius:0px;
  7999. -moz-box-shadow:none;
  8000. -webkit-box-shadow:none;
  8001. box-shadow:none;
  8002. }
  8003. #u37191 {
  8004. border-width:0px;
  8005. position:absolute;
  8006. left:761px;
  8007. top:811px;
  8008. width:10px;
  8009. height:10px;
  8010. display:flex;
  8011. -webkit-transform:rotate(135deg);
  8012. -moz-transform:rotate(135deg);
  8013. -ms-transform:rotate(135deg);
  8014. transform:rotate(135deg);
  8015. }
  8016. #u37191 .text {
  8017. position:absolute;
  8018. align-self:center;
  8019. padding:2px 2px 2px 2px;
  8020. box-sizing:border-box;
  8021. width:100%;
  8022. }
  8023. #u37191_text {
  8024. border-width:0px;
  8025. word-wrap:break-word;
  8026. text-transform:none;
  8027. visibility:hidden;
  8028. }
  8029. #u37192 {
  8030. border-width:0px;
  8031. position:absolute;
  8032. left:0px;
  8033. top:0px;
  8034. width:0px;
  8035. height:0px;
  8036. }
  8037. #u37193_img {
  8038. border-width:0px;
  8039. position:absolute;
  8040. left:0px;
  8041. top:0px;
  8042. width:433px;
  8043. height:865px;
  8044. }
  8045. #u37193 {
  8046. border-width:0px;
  8047. position:absolute;
  8048. left:2055px;
  8049. top:82px;
  8050. width:433px;
  8051. height:865px;
  8052. display:flex;
  8053. -webkit-transform:rotate(90deg);
  8054. -moz-transform:rotate(90deg);
  8055. -ms-transform:rotate(90deg);
  8056. transform:rotate(90deg);
  8057. }
  8058. #u37193 .text {
  8059. position:absolute;
  8060. align-self:center;
  8061. padding:2px 2px 2px 2px;
  8062. box-sizing:border-box;
  8063. width:100%;
  8064. }
  8065. #u37193_text {
  8066. border-width:0px;
  8067. word-wrap:break-word;
  8068. text-transform:none;
  8069. visibility:hidden;
  8070. }
  8071. #u37194_img {
  8072. border-width:0px;
  8073. position:absolute;
  8074. left:0px;
  8075. top:0px;
  8076. width:818px;
  8077. height:388px;
  8078. }
  8079. #u37194 {
  8080. border-width:0px;
  8081. position:absolute;
  8082. left:1862px;
  8083. top:326px;
  8084. width:818px;
  8085. height:388px;
  8086. display:flex;
  8087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8088. font-weight:400;
  8089. font-style:normal;
  8090. color:#FFFFFF;
  8091. }
  8092. #u37194 .text {
  8093. position:absolute;
  8094. align-self:center;
  8095. padding:2px 2px 2px 2px;
  8096. box-sizing:border-box;
  8097. width:100%;
  8098. }
  8099. #u37194_text {
  8100. border-width:0px;
  8101. word-wrap:break-word;
  8102. text-transform:none;
  8103. }
  8104. #u37195_div {
  8105. border-width:0px;
  8106. position:absolute;
  8107. left:0px;
  8108. top:0px;
  8109. width:809px;
  8110. height:50px;
  8111. background:inherit;
  8112. background-color:rgba(0, 0, 0, 1);
  8113. border:none;
  8114. border-radius:0px;
  8115. -moz-box-shadow:none;
  8116. -webkit-box-shadow:none;
  8117. box-shadow:none;
  8118. }
  8119. #u37195 {
  8120. border-width:0px;
  8121. position:absolute;
  8122. left:1862px;
  8123. top:664px;
  8124. width:809px;
  8125. height:50px;
  8126. display:flex;
  8127. }
  8128. #u37195 .text {
  8129. position:absolute;
  8130. align-self:center;
  8131. padding:2px 2px 2px 2px;
  8132. box-sizing:border-box;
  8133. width:100%;
  8134. }
  8135. #u37195_text {
  8136. border-width:0px;
  8137. word-wrap:break-word;
  8138. text-transform:none;
  8139. visibility:hidden;
  8140. }
  8141. #u37196 {
  8142. border-width:0px;
  8143. position:absolute;
  8144. left:0px;
  8145. top:0px;
  8146. width:0px;
  8147. height:0px;
  8148. }
  8149. #u37197_div {
  8150. border-width:0px;
  8151. position:absolute;
  8152. left:0px;
  8153. top:0px;
  8154. width:7px;
  8155. height:22px;
  8156. background:inherit;
  8157. background-color:rgba(242, 242, 242, 1);
  8158. border:none;
  8159. border-radius:0px;
  8160. -moz-box-shadow:none;
  8161. -webkit-box-shadow:none;
  8162. box-shadow:none;
  8163. }
  8164. #u37197 {
  8165. border-width:0px;
  8166. position:absolute;
  8167. left:1885px;
  8168. top:678px;
  8169. width:7px;
  8170. height:22px;
  8171. display:flex;
  8172. }
  8173. #u37197 .text {
  8174. position:absolute;
  8175. align-self:center;
  8176. padding:2px 2px 2px 2px;
  8177. box-sizing:border-box;
  8178. width:100%;
  8179. }
  8180. #u37197_text {
  8181. border-width:0px;
  8182. word-wrap:break-word;
  8183. text-transform:none;
  8184. visibility:hidden;
  8185. }
  8186. #u37198_div {
  8187. border-width:0px;
  8188. position:absolute;
  8189. left:0px;
  8190. top:0px;
  8191. width:7px;
  8192. height:22px;
  8193. background:inherit;
  8194. background-color:rgba(242, 242, 242, 1);
  8195. border:none;
  8196. border-radius:0px;
  8197. -moz-box-shadow:none;
  8198. -webkit-box-shadow:none;
  8199. box-shadow:none;
  8200. }
  8201. #u37198 {
  8202. border-width:0px;
  8203. position:absolute;
  8204. left:1896px;
  8205. top:678px;
  8206. width:7px;
  8207. height:22px;
  8208. display:flex;
  8209. }
  8210. #u37198 .text {
  8211. position:absolute;
  8212. align-self:center;
  8213. padding:2px 2px 2px 2px;
  8214. box-sizing:border-box;
  8215. width:100%;
  8216. }
  8217. #u37198_text {
  8218. border-width:0px;
  8219. word-wrap:break-word;
  8220. text-transform:none;
  8221. visibility:hidden;
  8222. }
  8223. #u37199_div {
  8224. border-width:0px;
  8225. position:absolute;
  8226. left:0px;
  8227. top:0px;
  8228. width:40px;
  8229. height:24px;
  8230. background:inherit;
  8231. background-color:rgba(255, 255, 255, 0);
  8232. box-sizing:border-box;
  8233. border-width:1px;
  8234. border-style:solid;
  8235. border-color:rgba(255, 255, 255, 1);
  8236. border-radius:4px;
  8237. -moz-box-shadow:none;
  8238. -webkit-box-shadow:none;
  8239. box-shadow:none;
  8240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8241. font-weight:400;
  8242. font-style:normal;
  8243. font-size:12px;
  8244. color:#FFFFFF;
  8245. text-align:center;
  8246. }
  8247. #u37199 {
  8248. border-width:0px;
  8249. position:absolute;
  8250. left:1948px;
  8251. top:678px;
  8252. width:40px;
  8253. height:24px;
  8254. display:flex;
  8255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8256. font-weight:400;
  8257. font-style:normal;
  8258. font-size:12px;
  8259. color:#FFFFFF;
  8260. text-align:center;
  8261. }
  8262. #u37199 .text {
  8263. position:absolute;
  8264. align-self:center;
  8265. padding:0px 0px 0px 0px;
  8266. box-sizing:border-box;
  8267. width:100%;
  8268. }
  8269. #u37199_text {
  8270. border-width:0px;
  8271. word-wrap:break-word;
  8272. text-transform:none;
  8273. }
  8274. #u37200_img {
  8275. border-width:0px;
  8276. position:absolute;
  8277. left:0px;
  8278. top:0px;
  8279. width:44px;
  8280. height:33px;
  8281. }
  8282. #u37200 {
  8283. border-width:0px;
  8284. position:absolute;
  8285. left:2534px;
  8286. top:673px;
  8287. width:44px;
  8288. height:33px;
  8289. display:flex;
  8290. }
  8291. #u37200 .text {
  8292. position:absolute;
  8293. align-self:center;
  8294. padding:2px 2px 2px 2px;
  8295. box-sizing:border-box;
  8296. width:100%;
  8297. }
  8298. #u37200_text {
  8299. border-width:0px;
  8300. word-wrap:break-word;
  8301. text-transform:none;
  8302. visibility:hidden;
  8303. }
  8304. #u37201_img {
  8305. border-width:0px;
  8306. position:absolute;
  8307. left:0px;
  8308. top:0px;
  8309. width:28px;
  8310. height:26px;
  8311. }
  8312. #u37201 {
  8313. border-width:0px;
  8314. position:absolute;
  8315. left:2623px;
  8316. top:676px;
  8317. width:28px;
  8318. height:26px;
  8319. display:flex;
  8320. }
  8321. #u37201 .text {
  8322. position:absolute;
  8323. align-self:center;
  8324. padding:2px 2px 2px 2px;
  8325. box-sizing:border-box;
  8326. width:100%;
  8327. }
  8328. #u37201_text {
  8329. border-width:0px;
  8330. word-wrap:break-word;
  8331. text-transform:none;
  8332. visibility:hidden;
  8333. }
  8334. #u37202 {
  8335. border-width:0px;
  8336. position:absolute;
  8337. left:0px;
  8338. top:0px;
  8339. width:0px;
  8340. height:0px;
  8341. }
  8342. #u37203_div {
  8343. border-width:0px;
  8344. position:absolute;
  8345. left:0px;
  8346. top:0px;
  8347. width:11px;
  8348. height:10px;
  8349. background:inherit;
  8350. background-color:rgba(242, 242, 242, 1);
  8351. border:none;
  8352. border-radius:0px;
  8353. -moz-box-shadow:none;
  8354. -webkit-box-shadow:none;
  8355. box-shadow:none;
  8356. }
  8357. #u37203 {
  8358. border-width:0px;
  8359. position:absolute;
  8360. left:2468px;
  8361. top:684px;
  8362. width:11px;
  8363. height:10px;
  8364. display:flex;
  8365. }
  8366. #u37203 .text {
  8367. position:absolute;
  8368. align-self:center;
  8369. padding:2px 2px 2px 2px;
  8370. box-sizing:border-box;
  8371. width:100%;
  8372. }
  8373. #u37203_text {
  8374. border-width:0px;
  8375. word-wrap:break-word;
  8376. text-transform:none;
  8377. visibility:hidden;
  8378. }
  8379. #u37204_div {
  8380. border-width:0px;
  8381. position:absolute;
  8382. left:0px;
  8383. top:0px;
  8384. width:11px;
  8385. height:10px;
  8386. background:inherit;
  8387. background-color:rgba(242, 242, 242, 1);
  8388. border:none;
  8389. border-radius:0px;
  8390. -moz-box-shadow:none;
  8391. -webkit-box-shadow:none;
  8392. box-shadow:none;
  8393. }
  8394. #u37204 {
  8395. border-width:0px;
  8396. position:absolute;
  8397. left:2481px;
  8398. top:684px;
  8399. width:11px;
  8400. height:10px;
  8401. display:flex;
  8402. }
  8403. #u37204 .text {
  8404. position:absolute;
  8405. align-self:center;
  8406. padding:2px 2px 2px 2px;
  8407. box-sizing:border-box;
  8408. width:100%;
  8409. }
  8410. #u37204_text {
  8411. border-width:0px;
  8412. word-wrap:break-word;
  8413. text-transform:none;
  8414. visibility:hidden;
  8415. }
  8416. #u37205_div {
  8417. border-width:0px;
  8418. position:absolute;
  8419. left:0px;
  8420. top:0px;
  8421. width:11px;
  8422. height:10px;
  8423. background:inherit;
  8424. background-color:rgba(242, 242, 242, 1);
  8425. border:none;
  8426. border-radius:0px;
  8427. -moz-box-shadow:none;
  8428. -webkit-box-shadow:none;
  8429. box-shadow:none;
  8430. }
  8431. #u37205 {
  8432. border-width:0px;
  8433. position:absolute;
  8434. left:2468px;
  8435. top:696px;
  8436. width:11px;
  8437. height:10px;
  8438. display:flex;
  8439. }
  8440. #u37205 .text {
  8441. position:absolute;
  8442. align-self:center;
  8443. padding:2px 2px 2px 2px;
  8444. box-sizing:border-box;
  8445. width:100%;
  8446. }
  8447. #u37205_text {
  8448. border-width:0px;
  8449. word-wrap:break-word;
  8450. text-transform:none;
  8451. visibility:hidden;
  8452. }
  8453. #u37206_div {
  8454. border-width:0px;
  8455. position:absolute;
  8456. left:0px;
  8457. top:0px;
  8458. width:11px;
  8459. height:10px;
  8460. background:inherit;
  8461. background-color:rgba(242, 242, 242, 1);
  8462. border:none;
  8463. border-radius:0px;
  8464. -moz-box-shadow:none;
  8465. -webkit-box-shadow:none;
  8466. box-shadow:none;
  8467. }
  8468. #u37206 {
  8469. border-width:0px;
  8470. position:absolute;
  8471. left:2481px;
  8472. top:696px;
  8473. width:11px;
  8474. height:10px;
  8475. display:flex;
  8476. }
  8477. #u37206 .text {
  8478. position:absolute;
  8479. align-self:center;
  8480. padding:2px 2px 2px 2px;
  8481. box-sizing:border-box;
  8482. width:100%;
  8483. }
  8484. #u37206_text {
  8485. border-width:0px;
  8486. word-wrap:break-word;
  8487. text-transform:none;
  8488. visibility:hidden;
  8489. }
  8490. #u37207_div {
  8491. border-width:0px;
  8492. position:absolute;
  8493. left:0px;
  8494. top:0px;
  8495. width:12px;
  8496. height:12px;
  8497. background:inherit;
  8498. background-color:rgba(255, 255, 255, 0);
  8499. box-sizing:border-box;
  8500. border-width:2px;
  8501. border-style:solid;
  8502. border-color:rgba(255, 255, 255, 1);
  8503. border-right:0px;
  8504. border-bottom:0px;
  8505. border-radius:0px;
  8506. border-top-right-radius:0px;
  8507. border-bottom-left-radius:0px;
  8508. -moz-box-shadow:none;
  8509. -webkit-box-shadow:none;
  8510. box-shadow:none;
  8511. }
  8512. #u37207 {
  8513. border-width:0px;
  8514. position:absolute;
  8515. left:1892px;
  8516. top:339px;
  8517. width:12px;
  8518. height:12px;
  8519. display:flex;
  8520. -webkit-transform:rotate(315deg);
  8521. -moz-transform:rotate(315deg);
  8522. -ms-transform:rotate(315deg);
  8523. transform:rotate(315deg);
  8524. }
  8525. #u37207 .text {
  8526. position:absolute;
  8527. align-self:center;
  8528. padding:2px 2px 2px 2px;
  8529. box-sizing:border-box;
  8530. width:100%;
  8531. }
  8532. #u37207_text {
  8533. border-width:0px;
  8534. word-wrap:break-word;
  8535. text-transform:none;
  8536. visibility:hidden;
  8537. }
  8538. #u37208 {
  8539. border-width:0px;
  8540. position:absolute;
  8541. left:1739px;
  8542. top:377px;
  8543. width:0px;
  8544. height:0px;
  8545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8546. font-weight:400;
  8547. font-style:normal;
  8548. font-size:12px;
  8549. color:#333333;
  8550. }
  8551. #u37208_seg0 {
  8552. border-width:0px;
  8553. position:absolute;
  8554. left:-5px;
  8555. top:-102px;
  8556. width:10px;
  8557. height:102px;
  8558. }
  8559. #u37208_seg1 {
  8560. border-width:0px;
  8561. position:absolute;
  8562. left:-5px;
  8563. top:-102px;
  8564. width:543px;
  8565. height:10px;
  8566. }
  8567. #u37208_seg2 {
  8568. border-width:0px;
  8569. position:absolute;
  8570. left:528px;
  8571. top:-102px;
  8572. width:10px;
  8573. height:23px;
  8574. }
  8575. #u37208_seg3 {
  8576. border-width:0px;
  8577. position:absolute;
  8578. left:517px;
  8579. top:-96px;
  8580. width:32px;
  8581. height:32px;
  8582. }
  8583. #u37208_text {
  8584. border-width:0px;
  8585. position:absolute;
  8586. left:177px;
  8587. top:-105px;
  8588. width:100px;
  8589. word-wrap:break-word;
  8590. text-transform:none;
  8591. visibility:hidden;
  8592. }
  8593. #u37209 {
  8594. border-width:0px;
  8595. position:absolute;
  8596. left:0px;
  8597. top:0px;
  8598. width:0px;
  8599. height:0px;
  8600. }
  8601. #u37210_div {
  8602. border-width:0px;
  8603. position:absolute;
  8604. left:0px;
  8605. top:0px;
  8606. width:375px;
  8607. height:50px;
  8608. background:inherit;
  8609. background-color:rgba(255, 255, 255, 1);
  8610. box-sizing:border-box;
  8611. border-width:1px;
  8612. border-style:solid;
  8613. border-color:rgba(242, 242, 242, 1);
  8614. border-radius:26px;
  8615. border-top-left-radius:0px;
  8616. border-top-right-radius:0px;
  8617. -moz-box-shadow:none;
  8618. -webkit-box-shadow:none;
  8619. box-shadow:none;
  8620. }
  8621. #u37210 {
  8622. border-width:0px;
  8623. position:absolute;
  8624. left:29px;
  8625. top:789px;
  8626. width:375px;
  8627. height:50px;
  8628. display:flex;
  8629. }
  8630. #u37210 .text {
  8631. position:absolute;
  8632. align-self:center;
  8633. padding:2px 2px 2px 2px;
  8634. box-sizing:border-box;
  8635. width:100%;
  8636. }
  8637. #u37210_text {
  8638. border-width:0px;
  8639. word-wrap:break-word;
  8640. text-transform:none;
  8641. visibility:hidden;
  8642. }
  8643. #u37211 {
  8644. border-width:0px;
  8645. position:absolute;
  8646. left:0px;
  8647. top:0px;
  8648. width:0px;
  8649. height:0px;
  8650. }
  8651. #u37212_img {
  8652. border-width:0px;
  8653. position:absolute;
  8654. left:0px;
  8655. top:0px;
  8656. width:24px;
  8657. height:24px;
  8658. }
  8659. #u37212 {
  8660. border-width:0px;
  8661. position:absolute;
  8662. left:327px;
  8663. top:793px;
  8664. width:24px;
  8665. height:24px;
  8666. display:flex;
  8667. font-size:8px;
  8668. }
  8669. #u37212 .text {
  8670. position:absolute;
  8671. align-self:center;
  8672. padding:2px 2px 2px 2px;
  8673. box-sizing:border-box;
  8674. width:100%;
  8675. }
  8676. #u37212_text {
  8677. border-width:0px;
  8678. word-wrap:break-word;
  8679. text-transform:none;
  8680. }
  8681. #u37213_div {
  8682. border-width:0px;
  8683. position:absolute;
  8684. left:0px;
  8685. top:0px;
  8686. width:49px;
  8687. height:17px;
  8688. background:inherit;
  8689. background-color:rgba(255, 255, 255, 0);
  8690. border:none;
  8691. border-radius:0px;
  8692. -moz-box-shadow:none;
  8693. -webkit-box-shadow:none;
  8694. box-shadow:none;
  8695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8696. font-weight:400;
  8697. font-style:normal;
  8698. font-size:12px;
  8699. }
  8700. #u37213 {
  8701. border-width:0px;
  8702. position:absolute;
  8703. left:315px;
  8704. top:818px;
  8705. width:49px;
  8706. height:17px;
  8707. display:flex;
  8708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8709. font-weight:400;
  8710. font-style:normal;
  8711. font-size:12px;
  8712. }
  8713. #u37213 .text {
  8714. position:absolute;
  8715. align-self:flex-start;
  8716. padding:0px 0px 0px 0px;
  8717. box-sizing:border-box;
  8718. width:100%;
  8719. }
  8720. #u37213_text {
  8721. border-width:0px;
  8722. white-space:nowrap;
  8723. text-transform:none;
  8724. }
  8725. #u37214 {
  8726. border-width:0px;
  8727. position:absolute;
  8728. left:0px;
  8729. top:0px;
  8730. width:0px;
  8731. height:0px;
  8732. }
  8733. #u37215_div {
  8734. border-width:0px;
  8735. position:absolute;
  8736. left:0px;
  8737. top:0px;
  8738. width:49px;
  8739. height:17px;
  8740. background:inherit;
  8741. background-color:rgba(255, 255, 255, 0);
  8742. border:none;
  8743. border-radius:0px;
  8744. -moz-box-shadow:none;
  8745. -webkit-box-shadow:none;
  8746. box-shadow:none;
  8747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8748. font-weight:400;
  8749. font-style:normal;
  8750. font-size:12px;
  8751. }
  8752. #u37215 {
  8753. border-width:0px;
  8754. position:absolute;
  8755. left:79px;
  8756. top:818px;
  8757. width:49px;
  8758. height:17px;
  8759. display:flex;
  8760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8761. font-weight:400;
  8762. font-style:normal;
  8763. font-size:12px;
  8764. }
  8765. #u37215 .text {
  8766. position:absolute;
  8767. align-self:flex-start;
  8768. padding:0px 0px 0px 0px;
  8769. box-sizing:border-box;
  8770. width:100%;
  8771. }
  8772. #u37215_text {
  8773. border-width:0px;
  8774. white-space:nowrap;
  8775. text-transform:none;
  8776. }
  8777. #u37216_img {
  8778. border-width:0px;
  8779. position:absolute;
  8780. left:0px;
  8781. top:0px;
  8782. width:24px;
  8783. height:24px;
  8784. }
  8785. #u37216 {
  8786. border-width:0px;
  8787. position:absolute;
  8788. left:91px;
  8789. top:793px;
  8790. width:24px;
  8791. height:24px;
  8792. display:flex;
  8793. font-size:8px;
  8794. color:#FFFFFF;
  8795. }
  8796. #u37216 .text {
  8797. position:absolute;
  8798. align-self:center;
  8799. padding:2px 2px 2px 2px;
  8800. box-sizing:border-box;
  8801. width:100%;
  8802. }
  8803. #u37216_text {
  8804. border-width:0px;
  8805. word-wrap:break-word;
  8806. text-transform:none;
  8807. }
  8808. #u37217 {
  8809. border-width:0px;
  8810. position:absolute;
  8811. left:0px;
  8812. top:0px;
  8813. width:0px;
  8814. height:0px;
  8815. }
  8816. #u37218_img {
  8817. border-width:0px;
  8818. position:absolute;
  8819. left:0px;
  8820. top:0px;
  8821. width:24px;
  8822. height:24px;
  8823. }
  8824. #u37218 {
  8825. border-width:0px;
  8826. position:absolute;
  8827. left:214px;
  8828. top:793px;
  8829. width:24px;
  8830. height:24px;
  8831. display:flex;
  8832. font-size:8px;
  8833. }
  8834. #u37218 .text {
  8835. position:absolute;
  8836. align-self:center;
  8837. padding:2px 2px 2px 2px;
  8838. box-sizing:border-box;
  8839. width:100%;
  8840. }
  8841. #u37218_text {
  8842. border-width:0px;
  8843. word-wrap:break-word;
  8844. text-transform:none;
  8845. }
  8846. #u37219_div {
  8847. border-width:0px;
  8848. position:absolute;
  8849. left:0px;
  8850. top:0px;
  8851. width:49px;
  8852. height:17px;
  8853. background:inherit;
  8854. background-color:rgba(255, 255, 255, 0);
  8855. border:none;
  8856. border-radius:0px;
  8857. -moz-box-shadow:none;
  8858. -webkit-box-shadow:none;
  8859. box-shadow:none;
  8860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8861. font-weight:400;
  8862. font-style:normal;
  8863. font-size:12px;
  8864. }
  8865. #u37219 {
  8866. border-width:0px;
  8867. position:absolute;
  8868. left:202px;
  8869. top:818px;
  8870. width:49px;
  8871. height:17px;
  8872. display:flex;
  8873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8874. font-weight:400;
  8875. font-style:normal;
  8876. font-size:12px;
  8877. }
  8878. #u37219 .text {
  8879. position:absolute;
  8880. align-self:flex-start;
  8881. padding:0px 0px 0px 0px;
  8882. box-sizing:border-box;
  8883. width:100%;
  8884. }
  8885. #u37219_text {
  8886. border-width:0px;
  8887. white-space:nowrap;
  8888. text-transform:none;
  8889. }
  8890. #u37220 {
  8891. border-width:0px;
  8892. position:absolute;
  8893. left:0px;
  8894. top:0px;
  8895. width:0px;
  8896. height:0px;
  8897. }
  8898. #u37221_div {
  8899. border-width:0px;
  8900. position:absolute;
  8901. left:0px;
  8902. top:0px;
  8903. width:375px;
  8904. height:50px;
  8905. background:inherit;
  8906. background-color:rgba(255, 255, 255, 1);
  8907. box-sizing:border-box;
  8908. border-width:1px;
  8909. border-style:solid;
  8910. border-color:rgba(242, 242, 242, 1);
  8911. border-radius:26px;
  8912. border-top-left-radius:0px;
  8913. border-top-right-radius:0px;
  8914. -moz-box-shadow:none;
  8915. -webkit-box-shadow:none;
  8916. box-shadow:none;
  8917. }
  8918. #u37221 {
  8919. border-width:0px;
  8920. position:absolute;
  8921. left:940px;
  8922. top:789px;
  8923. width:375px;
  8924. height:50px;
  8925. display:flex;
  8926. }
  8927. #u37221 .text {
  8928. position:absolute;
  8929. align-self:center;
  8930. padding:2px 2px 2px 2px;
  8931. box-sizing:border-box;
  8932. width:100%;
  8933. }
  8934. #u37221_text {
  8935. border-width:0px;
  8936. word-wrap:break-word;
  8937. text-transform:none;
  8938. visibility:hidden;
  8939. }
  8940. #u37222 {
  8941. border-width:0px;
  8942. position:absolute;
  8943. left:0px;
  8944. top:0px;
  8945. width:0px;
  8946. height:0px;
  8947. }
  8948. #u37223_img {
  8949. border-width:0px;
  8950. position:absolute;
  8951. left:0px;
  8952. top:0px;
  8953. width:24px;
  8954. height:24px;
  8955. }
  8956. #u37223 {
  8957. border-width:0px;
  8958. position:absolute;
  8959. left:1238px;
  8960. top:793px;
  8961. width:24px;
  8962. height:24px;
  8963. display:flex;
  8964. font-size:8px;
  8965. }
  8966. #u37223 .text {
  8967. position:absolute;
  8968. align-self:center;
  8969. padding:2px 2px 2px 2px;
  8970. box-sizing:border-box;
  8971. width:100%;
  8972. }
  8973. #u37223_text {
  8974. border-width:0px;
  8975. word-wrap:break-word;
  8976. text-transform:none;
  8977. }
  8978. #u37224_div {
  8979. border-width:0px;
  8980. position:absolute;
  8981. left:0px;
  8982. top:0px;
  8983. width:49px;
  8984. height:17px;
  8985. background:inherit;
  8986. background-color:rgba(255, 255, 255, 0);
  8987. border:none;
  8988. border-radius:0px;
  8989. -moz-box-shadow:none;
  8990. -webkit-box-shadow:none;
  8991. box-shadow:none;
  8992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8993. font-weight:400;
  8994. font-style:normal;
  8995. font-size:12px;
  8996. }
  8997. #u37224 {
  8998. border-width:0px;
  8999. position:absolute;
  9000. left:1226px;
  9001. top:818px;
  9002. width:49px;
  9003. height:17px;
  9004. display:flex;
  9005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9006. font-weight:400;
  9007. font-style:normal;
  9008. font-size:12px;
  9009. }
  9010. #u37224 .text {
  9011. position:absolute;
  9012. align-self:flex-start;
  9013. padding:0px 0px 0px 0px;
  9014. box-sizing:border-box;
  9015. width:100%;
  9016. }
  9017. #u37224_text {
  9018. border-width:0px;
  9019. white-space:nowrap;
  9020. text-transform:none;
  9021. }
  9022. #u37225 {
  9023. border-width:0px;
  9024. position:absolute;
  9025. left:0px;
  9026. top:0px;
  9027. width:0px;
  9028. height:0px;
  9029. }
  9030. #u37226_div {
  9031. border-width:0px;
  9032. position:absolute;
  9033. left:0px;
  9034. top:0px;
  9035. width:49px;
  9036. height:17px;
  9037. background:inherit;
  9038. background-color:rgba(255, 255, 255, 0);
  9039. border:none;
  9040. border-radius:0px;
  9041. -moz-box-shadow:none;
  9042. -webkit-box-shadow:none;
  9043. box-shadow:none;
  9044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9045. font-weight:400;
  9046. font-style:normal;
  9047. font-size:12px;
  9048. }
  9049. #u37226 {
  9050. border-width:0px;
  9051. position:absolute;
  9052. left:990px;
  9053. top:818px;
  9054. width:49px;
  9055. height:17px;
  9056. display:flex;
  9057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9058. font-weight:400;
  9059. font-style:normal;
  9060. font-size:12px;
  9061. }
  9062. #u37226 .text {
  9063. position:absolute;
  9064. align-self:flex-start;
  9065. padding:0px 0px 0px 0px;
  9066. box-sizing:border-box;
  9067. width:100%;
  9068. }
  9069. #u37226_text {
  9070. border-width:0px;
  9071. white-space:nowrap;
  9072. text-transform:none;
  9073. }
  9074. #u37227_img {
  9075. border-width:0px;
  9076. position:absolute;
  9077. left:0px;
  9078. top:0px;
  9079. width:24px;
  9080. height:24px;
  9081. }
  9082. #u37227 {
  9083. border-width:0px;
  9084. position:absolute;
  9085. left:1002px;
  9086. top:793px;
  9087. width:24px;
  9088. height:24px;
  9089. display:flex;
  9090. font-size:8px;
  9091. color:#FFFFFF;
  9092. }
  9093. #u37227 .text {
  9094. position:absolute;
  9095. align-self:center;
  9096. padding:2px 2px 2px 2px;
  9097. box-sizing:border-box;
  9098. width:100%;
  9099. }
  9100. #u37227_text {
  9101. border-width:0px;
  9102. word-wrap:break-word;
  9103. text-transform:none;
  9104. }
  9105. #u37228 {
  9106. border-width:0px;
  9107. position:absolute;
  9108. left:0px;
  9109. top:0px;
  9110. width:0px;
  9111. height:0px;
  9112. }
  9113. #u37229_img {
  9114. border-width:0px;
  9115. position:absolute;
  9116. left:0px;
  9117. top:0px;
  9118. width:24px;
  9119. height:24px;
  9120. }
  9121. #u37229 {
  9122. border-width:0px;
  9123. position:absolute;
  9124. left:1125px;
  9125. top:793px;
  9126. width:24px;
  9127. height:24px;
  9128. display:flex;
  9129. font-size:8px;
  9130. }
  9131. #u37229 .text {
  9132. position:absolute;
  9133. align-self:center;
  9134. padding:2px 2px 2px 2px;
  9135. box-sizing:border-box;
  9136. width:100%;
  9137. }
  9138. #u37229_text {
  9139. border-width:0px;
  9140. word-wrap:break-word;
  9141. text-transform:none;
  9142. }
  9143. #u37230_div {
  9144. border-width:0px;
  9145. position:absolute;
  9146. left:0px;
  9147. top:0px;
  9148. width:49px;
  9149. height:17px;
  9150. background:inherit;
  9151. background-color:rgba(255, 255, 255, 0);
  9152. border:none;
  9153. border-radius:0px;
  9154. -moz-box-shadow:none;
  9155. -webkit-box-shadow:none;
  9156. box-shadow:none;
  9157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9158. font-weight:400;
  9159. font-style:normal;
  9160. font-size:12px;
  9161. }
  9162. #u37230 {
  9163. border-width:0px;
  9164. position:absolute;
  9165. left:1113px;
  9166. top:818px;
  9167. width:49px;
  9168. height:17px;
  9169. display:flex;
  9170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9171. font-weight:400;
  9172. font-style:normal;
  9173. font-size:12px;
  9174. }
  9175. #u37230 .text {
  9176. position:absolute;
  9177. align-self:flex-start;
  9178. padding:0px 0px 0px 0px;
  9179. box-sizing:border-box;
  9180. width:100%;
  9181. }
  9182. #u37230_text {
  9183. border-width:0px;
  9184. white-space:nowrap;
  9185. text-transform:none;
  9186. }
  9187. #u37231_div {
  9188. border-width:0px;
  9189. position:absolute;
  9190. left:0px;
  9191. top:0px;
  9192. width:25px;
  9193. height:30px;
  9194. background:inherit;
  9195. background-color:rgba(255, 255, 255, 0);
  9196. border:none;
  9197. border-left:0px;
  9198. border-top:0px;
  9199. border-right:0px;
  9200. border-radius:0px;
  9201. border-bottom-right-radius:0px;
  9202. border-bottom-left-radius:0px;
  9203. -moz-box-shadow:none;
  9204. -webkit-box-shadow:none;
  9205. box-shadow:none;
  9206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9207. font-weight:400;
  9208. font-style:normal;
  9209. font-size:12px;
  9210. color:#1890FF;
  9211. line-height:30px;
  9212. }
  9213. #u37231 {
  9214. border-width:0px;
  9215. position:absolute;
  9216. left:187px;
  9217. top:217px;
  9218. width:25px;
  9219. height:30px;
  9220. display:flex;
  9221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9222. font-weight:400;
  9223. font-style:normal;
  9224. font-size:12px;
  9225. color:#1890FF;
  9226. line-height:30px;
  9227. }
  9228. #u37231 .text {
  9229. position:absolute;
  9230. align-self:flex-start;
  9231. padding:0px 0px 0px 0px;
  9232. box-sizing:border-box;
  9233. width:100%;
  9234. }
  9235. #u37231_text {
  9236. border-width:0px;
  9237. white-space:nowrap;
  9238. text-transform:none;
  9239. }
  9240. #u37232_div {
  9241. border-width:0px;
  9242. position:absolute;
  9243. left:0px;
  9244. top:0px;
  9245. width:25px;
  9246. height:30px;
  9247. background:inherit;
  9248. background-color:rgba(255, 255, 255, 0);
  9249. border:none;
  9250. border-left:0px;
  9251. border-top:0px;
  9252. border-right:0px;
  9253. border-radius:0px;
  9254. border-bottom-right-radius:0px;
  9255. border-bottom-left-radius:0px;
  9256. -moz-box-shadow:none;
  9257. -webkit-box-shadow:none;
  9258. box-shadow:none;
  9259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9260. font-weight:400;
  9261. font-style:normal;
  9262. font-size:12px;
  9263. color:#1890FF;
  9264. line-height:30px;
  9265. }
  9266. #u37232 {
  9267. border-width:0px;
  9268. position:absolute;
  9269. left:372px;
  9270. top:217px;
  9271. width:25px;
  9272. height:30px;
  9273. display:flex;
  9274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9275. font-weight:400;
  9276. font-style:normal;
  9277. font-size:12px;
  9278. color:#1890FF;
  9279. line-height:30px;
  9280. }
  9281. #u37232 .text {
  9282. position:absolute;
  9283. align-self:flex-start;
  9284. padding:0px 0px 0px 0px;
  9285. box-sizing:border-box;
  9286. width:100%;
  9287. }
  9288. #u37232_text {
  9289. border-width:0px;
  9290. white-space:nowrap;
  9291. text-transform:none;
  9292. }
  9293. #u37233_div {
  9294. border-width:0px;
  9295. position:absolute;
  9296. left:0px;
  9297. top:0px;
  9298. width:25px;
  9299. height:30px;
  9300. background:inherit;
  9301. background-color:rgba(255, 255, 255, 0);
  9302. border:none;
  9303. border-left:0px;
  9304. border-top:0px;
  9305. border-right:0px;
  9306. border-radius:0px;
  9307. border-bottom-right-radius:0px;
  9308. border-bottom-left-radius:0px;
  9309. -moz-box-shadow:none;
  9310. -webkit-box-shadow:none;
  9311. box-shadow:none;
  9312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9313. font-weight:400;
  9314. font-style:normal;
  9315. font-size:12px;
  9316. color:#1890FF;
  9317. line-height:30px;
  9318. }
  9319. #u37233 {
  9320. border-width:0px;
  9321. position:absolute;
  9322. left:187px;
  9323. top:346px;
  9324. width:25px;
  9325. height:30px;
  9326. display:flex;
  9327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9328. font-weight:400;
  9329. font-style:normal;
  9330. font-size:12px;
  9331. color:#1890FF;
  9332. line-height:30px;
  9333. }
  9334. #u37233 .text {
  9335. position:absolute;
  9336. align-self:flex-start;
  9337. padding:0px 0px 0px 0px;
  9338. box-sizing:border-box;
  9339. width:100%;
  9340. }
  9341. #u37233_text {
  9342. border-width:0px;
  9343. white-space:nowrap;
  9344. text-transform:none;
  9345. }
  9346. #u37234_div {
  9347. border-width:0px;
  9348. position:absolute;
  9349. left:0px;
  9350. top:0px;
  9351. width:25px;
  9352. height:30px;
  9353. background:inherit;
  9354. background-color:rgba(255, 255, 255, 0);
  9355. border:none;
  9356. border-left:0px;
  9357. border-top:0px;
  9358. border-right:0px;
  9359. border-radius:0px;
  9360. border-bottom-right-radius:0px;
  9361. border-bottom-left-radius:0px;
  9362. -moz-box-shadow:none;
  9363. -webkit-box-shadow:none;
  9364. box-shadow:none;
  9365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9366. font-weight:400;
  9367. font-style:normal;
  9368. font-size:12px;
  9369. color:#1890FF;
  9370. line-height:30px;
  9371. }
  9372. #u37234 {
  9373. border-width:0px;
  9374. position:absolute;
  9375. left:372px;
  9376. top:346px;
  9377. width:25px;
  9378. height:30px;
  9379. display:flex;
  9380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9381. font-weight:400;
  9382. font-style:normal;
  9383. font-size:12px;
  9384. color:#1890FF;
  9385. line-height:30px;
  9386. }
  9387. #u37234 .text {
  9388. position:absolute;
  9389. align-self:flex-start;
  9390. padding:0px 0px 0px 0px;
  9391. box-sizing:border-box;
  9392. width:100%;
  9393. }
  9394. #u37234_text {
  9395. border-width:0px;
  9396. white-space:nowrap;
  9397. text-transform:none;
  9398. }
  9399. #u37235_div {
  9400. border-width:0px;
  9401. position:absolute;
  9402. left:0px;
  9403. top:0px;
  9404. width:25px;
  9405. height:30px;
  9406. background:inherit;
  9407. background-color:rgba(255, 255, 255, 0);
  9408. border:none;
  9409. border-left:0px;
  9410. border-top:0px;
  9411. border-right:0px;
  9412. border-radius:0px;
  9413. border-bottom-right-radius:0px;
  9414. border-bottom-left-radius:0px;
  9415. -moz-box-shadow:none;
  9416. -webkit-box-shadow:none;
  9417. box-shadow:none;
  9418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9419. font-weight:400;
  9420. font-style:normal;
  9421. font-size:12px;
  9422. color:#F59A23;
  9423. line-height:30px;
  9424. }
  9425. #u37235 {
  9426. border-width:0px;
  9427. position:absolute;
  9428. left:187px;
  9429. top:475px;
  9430. width:25px;
  9431. height:30px;
  9432. display:flex;
  9433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9434. font-weight:400;
  9435. font-style:normal;
  9436. font-size:12px;
  9437. color:#F59A23;
  9438. line-height:30px;
  9439. }
  9440. #u37235 .text {
  9441. position:absolute;
  9442. align-self:flex-start;
  9443. padding:0px 0px 0px 0px;
  9444. box-sizing:border-box;
  9445. width:100%;
  9446. }
  9447. #u37235_text {
  9448. border-width:0px;
  9449. white-space:nowrap;
  9450. text-transform:none;
  9451. }
  9452. #u37236_div {
  9453. border-width:0px;
  9454. position:absolute;
  9455. left:0px;
  9456. top:0px;
  9457. width:25px;
  9458. height:30px;
  9459. background:inherit;
  9460. background-color:rgba(255, 255, 255, 0);
  9461. border:none;
  9462. border-left:0px;
  9463. border-top:0px;
  9464. border-right:0px;
  9465. border-radius:0px;
  9466. border-bottom-right-radius:0px;
  9467. border-bottom-left-radius:0px;
  9468. -moz-box-shadow:none;
  9469. -webkit-box-shadow:none;
  9470. box-shadow:none;
  9471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9472. font-weight:400;
  9473. font-style:normal;
  9474. font-size:12px;
  9475. color:#D9001B;
  9476. line-height:30px;
  9477. }
  9478. #u37236 {
  9479. border-width:0px;
  9480. position:absolute;
  9481. left:372px;
  9482. top:475px;
  9483. width:25px;
  9484. height:30px;
  9485. display:flex;
  9486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9487. font-weight:400;
  9488. font-style:normal;
  9489. font-size:12px;
  9490. color:#D9001B;
  9491. line-height:30px;
  9492. }
  9493. #u37236 .text {
  9494. position:absolute;
  9495. align-self:flex-start;
  9496. padding:0px 0px 0px 0px;
  9497. box-sizing:border-box;
  9498. width:100%;
  9499. }
  9500. #u37236_text {
  9501. border-width:0px;
  9502. white-space:nowrap;
  9503. text-transform:none;
  9504. }
  9505. #u37237_div {
  9506. border-width:0px;
  9507. position:absolute;
  9508. left:0px;
  9509. top:0px;
  9510. width:25px;
  9511. height:30px;
  9512. background:inherit;
  9513. background-color:rgba(255, 255, 255, 0);
  9514. border:none;
  9515. border-left:0px;
  9516. border-top:0px;
  9517. border-right:0px;
  9518. border-radius:0px;
  9519. border-bottom-right-radius:0px;
  9520. border-bottom-left-radius:0px;
  9521. -moz-box-shadow:none;
  9522. -webkit-box-shadow:none;
  9523. box-shadow:none;
  9524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9525. font-weight:400;
  9526. font-style:normal;
  9527. font-size:12px;
  9528. color:#1890FF;
  9529. line-height:30px;
  9530. }
  9531. #u37237 {
  9532. border-width:0px;
  9533. position:absolute;
  9534. left:187px;
  9535. top:604px;
  9536. width:25px;
  9537. height:30px;
  9538. display:flex;
  9539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9540. font-weight:400;
  9541. font-style:normal;
  9542. font-size:12px;
  9543. color:#1890FF;
  9544. line-height:30px;
  9545. }
  9546. #u37237 .text {
  9547. position:absolute;
  9548. align-self:flex-start;
  9549. padding:0px 0px 0px 0px;
  9550. box-sizing:border-box;
  9551. width:100%;
  9552. }
  9553. #u37237_text {
  9554. border-width:0px;
  9555. white-space:nowrap;
  9556. text-transform:none;
  9557. }
  9558. #u37238_div {
  9559. border-width:0px;
  9560. position:absolute;
  9561. left:0px;
  9562. top:0px;
  9563. width:25px;
  9564. height:30px;
  9565. background:inherit;
  9566. background-color:rgba(255, 255, 255, 0);
  9567. border:none;
  9568. border-left:0px;
  9569. border-top:0px;
  9570. border-right:0px;
  9571. border-radius:0px;
  9572. border-bottom-right-radius:0px;
  9573. border-bottom-left-radius:0px;
  9574. -moz-box-shadow:none;
  9575. -webkit-box-shadow:none;
  9576. box-shadow:none;
  9577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9578. font-weight:400;
  9579. font-style:normal;
  9580. font-size:12px;
  9581. color:#1890FF;
  9582. line-height:30px;
  9583. }
  9584. #u37238 {
  9585. border-width:0px;
  9586. position:absolute;
  9587. left:372px;
  9588. top:604px;
  9589. width:25px;
  9590. height:30px;
  9591. display:flex;
  9592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9593. font-weight:400;
  9594. font-style:normal;
  9595. font-size:12px;
  9596. color:#1890FF;
  9597. line-height:30px;
  9598. }
  9599. #u37238 .text {
  9600. position:absolute;
  9601. align-self:flex-start;
  9602. padding:0px 0px 0px 0px;
  9603. box-sizing:border-box;
  9604. width:100%;
  9605. }
  9606. #u37238_text {
  9607. border-width:0px;
  9608. white-space:nowrap;
  9609. text-transform:none;
  9610. }
  9611. #u37239 {
  9612. border-width:0px;
  9613. position:absolute;
  9614. left:0px;
  9615. top:0px;
  9616. width:0px;
  9617. height:0px;
  9618. }
  9619. #u37240_img {
  9620. border-width:0px;
  9621. position:absolute;
  9622. left:0px;
  9623. top:0px;
  9624. width:433px;
  9625. height:865px;
  9626. }
  9627. #u37240 {
  9628. border-width:0px;
  9629. position:absolute;
  9630. left:911px;
  9631. top:0px;
  9632. width:433px;
  9633. height:865px;
  9634. display:flex;
  9635. }
  9636. #u37240 .text {
  9637. position:absolute;
  9638. align-self:center;
  9639. padding:2px 2px 2px 2px;
  9640. box-sizing:border-box;
  9641. width:100%;
  9642. }
  9643. #u37240_text {
  9644. border-width:0px;
  9645. word-wrap:break-word;
  9646. text-transform:none;
  9647. visibility:hidden;
  9648. }
  9649. #u37241_div {
  9650. border-width:0px;
  9651. position:absolute;
  9652. left:0px;
  9653. top:0px;
  9654. width:245px;
  9655. height:50px;
  9656. background:inherit;
  9657. background-color:rgba(242, 242, 242, 1);
  9658. border:none;
  9659. border-radius:0px;
  9660. -moz-box-shadow:none;
  9661. -webkit-box-shadow:none;
  9662. box-shadow:none;
  9663. }
  9664. #u37241 {
  9665. border-width:0px;
  9666. position:absolute;
  9667. left:1006px;
  9668. top:733px;
  9669. width:245px;
  9670. height:50px;
  9671. display:flex;
  9672. }
  9673. #u37241 .text {
  9674. position:absolute;
  9675. align-self:center;
  9676. padding:2px 2px 2px 2px;
  9677. box-sizing:border-box;
  9678. width:100%;
  9679. }
  9680. #u37241_text {
  9681. border-width:0px;
  9682. word-wrap:break-word;
  9683. text-transform:none;
  9684. visibility:hidden;
  9685. }
  9686. #u37242_div {
  9687. border-width:0px;
  9688. position:absolute;
  9689. left:0px;
  9690. top:0px;
  9691. width:25px;
  9692. height:30px;
  9693. background:inherit;
  9694. background-color:rgba(255, 255, 255, 0);
  9695. border:none;
  9696. border-left:0px;
  9697. border-top:0px;
  9698. border-right:0px;
  9699. border-radius:0px;
  9700. border-bottom-right-radius:0px;
  9701. border-bottom-left-radius:0px;
  9702. -moz-box-shadow:none;
  9703. -webkit-box-shadow:none;
  9704. box-shadow:none;
  9705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9706. font-weight:400;
  9707. font-style:normal;
  9708. font-size:12px;
  9709. color:#1890FF;
  9710. line-height:30px;
  9711. }
  9712. #u37242 {
  9713. border-width:0px;
  9714. position:absolute;
  9715. left:1097px;
  9716. top:217px;
  9717. width:25px;
  9718. height:30px;
  9719. display:flex;
  9720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9721. font-weight:400;
  9722. font-style:normal;
  9723. font-size:12px;
  9724. color:#1890FF;
  9725. line-height:30px;
  9726. }
  9727. #u37242 .text {
  9728. position:absolute;
  9729. align-self:flex-start;
  9730. padding:0px 0px 0px 0px;
  9731. box-sizing:border-box;
  9732. width:100%;
  9733. }
  9734. #u37242_text {
  9735. border-width:0px;
  9736. white-space:nowrap;
  9737. text-transform:none;
  9738. }
  9739. #u37243_div {
  9740. border-width:0px;
  9741. position:absolute;
  9742. left:0px;
  9743. top:0px;
  9744. width:25px;
  9745. height:30px;
  9746. background:inherit;
  9747. background-color:rgba(255, 255, 255, 0);
  9748. border:none;
  9749. border-left:0px;
  9750. border-top:0px;
  9751. border-right:0px;
  9752. border-radius:0px;
  9753. border-bottom-right-radius:0px;
  9754. border-bottom-left-radius:0px;
  9755. -moz-box-shadow:none;
  9756. -webkit-box-shadow:none;
  9757. box-shadow:none;
  9758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9759. font-weight:400;
  9760. font-style:normal;
  9761. font-size:12px;
  9762. color:#1890FF;
  9763. line-height:30px;
  9764. }
  9765. #u37243 {
  9766. border-width:0px;
  9767. position:absolute;
  9768. left:1282px;
  9769. top:217px;
  9770. width:25px;
  9771. height:30px;
  9772. display:flex;
  9773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9774. font-weight:400;
  9775. font-style:normal;
  9776. font-size:12px;
  9777. color:#1890FF;
  9778. line-height:30px;
  9779. }
  9780. #u37243 .text {
  9781. position:absolute;
  9782. align-self:flex-start;
  9783. padding:0px 0px 0px 0px;
  9784. box-sizing:border-box;
  9785. width:100%;
  9786. }
  9787. #u37243_text {
  9788. border-width:0px;
  9789. white-space:nowrap;
  9790. text-transform:none;
  9791. }
  9792. #u37244_div {
  9793. border-width:0px;
  9794. position:absolute;
  9795. left:0px;
  9796. top:0px;
  9797. width:25px;
  9798. height:30px;
  9799. background:inherit;
  9800. background-color:rgba(255, 255, 255, 0);
  9801. border:none;
  9802. border-left:0px;
  9803. border-top:0px;
  9804. border-right:0px;
  9805. border-radius:0px;
  9806. border-bottom-right-radius:0px;
  9807. border-bottom-left-radius:0px;
  9808. -moz-box-shadow:none;
  9809. -webkit-box-shadow:none;
  9810. box-shadow:none;
  9811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9812. font-weight:400;
  9813. font-style:normal;
  9814. font-size:12px;
  9815. color:#1890FF;
  9816. line-height:30px;
  9817. }
  9818. #u37244 {
  9819. border-width:0px;
  9820. position:absolute;
  9821. left:1097px;
  9822. top:346px;
  9823. width:25px;
  9824. height:30px;
  9825. display:flex;
  9826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9827. font-weight:400;
  9828. font-style:normal;
  9829. font-size:12px;
  9830. color:#1890FF;
  9831. line-height:30px;
  9832. }
  9833. #u37244 .text {
  9834. position:absolute;
  9835. align-self:flex-start;
  9836. padding:0px 0px 0px 0px;
  9837. box-sizing:border-box;
  9838. width:100%;
  9839. }
  9840. #u37244_text {
  9841. border-width:0px;
  9842. white-space:nowrap;
  9843. text-transform:none;
  9844. }
  9845. #u37245_div {
  9846. border-width:0px;
  9847. position:absolute;
  9848. left:0px;
  9849. top:0px;
  9850. width:25px;
  9851. height:30px;
  9852. background:inherit;
  9853. background-color:rgba(255, 255, 255, 0);
  9854. border:none;
  9855. border-left:0px;
  9856. border-top:0px;
  9857. border-right:0px;
  9858. border-radius:0px;
  9859. border-bottom-right-radius:0px;
  9860. border-bottom-left-radius:0px;
  9861. -moz-box-shadow:none;
  9862. -webkit-box-shadow:none;
  9863. box-shadow:none;
  9864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9865. font-weight:400;
  9866. font-style:normal;
  9867. font-size:12px;
  9868. color:#1890FF;
  9869. line-height:30px;
  9870. }
  9871. #u37245 {
  9872. border-width:0px;
  9873. position:absolute;
  9874. left:1282px;
  9875. top:346px;
  9876. width:25px;
  9877. height:30px;
  9878. display:flex;
  9879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9880. font-weight:400;
  9881. font-style:normal;
  9882. font-size:12px;
  9883. color:#1890FF;
  9884. line-height:30px;
  9885. }
  9886. #u37245 .text {
  9887. position:absolute;
  9888. align-self:flex-start;
  9889. padding:0px 0px 0px 0px;
  9890. box-sizing:border-box;
  9891. width:100%;
  9892. }
  9893. #u37245_text {
  9894. border-width:0px;
  9895. white-space:nowrap;
  9896. text-transform:none;
  9897. }
  9898. #u37246_div {
  9899. border-width:0px;
  9900. position:absolute;
  9901. left:0px;
  9902. top:0px;
  9903. width:25px;
  9904. height:30px;
  9905. background:inherit;
  9906. background-color:rgba(255, 255, 255, 0);
  9907. border:none;
  9908. border-left:0px;
  9909. border-top:0px;
  9910. border-right:0px;
  9911. border-radius:0px;
  9912. border-bottom-right-radius:0px;
  9913. border-bottom-left-radius:0px;
  9914. -moz-box-shadow:none;
  9915. -webkit-box-shadow:none;
  9916. box-shadow:none;
  9917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9918. font-weight:400;
  9919. font-style:normal;
  9920. font-size:12px;
  9921. color:#F59A23;
  9922. line-height:30px;
  9923. }
  9924. #u37246 {
  9925. border-width:0px;
  9926. position:absolute;
  9927. left:1097px;
  9928. top:475px;
  9929. width:25px;
  9930. height:30px;
  9931. display:flex;
  9932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9933. font-weight:400;
  9934. font-style:normal;
  9935. font-size:12px;
  9936. color:#F59A23;
  9937. line-height:30px;
  9938. }
  9939. #u37246 .text {
  9940. position:absolute;
  9941. align-self:flex-start;
  9942. padding:0px 0px 0px 0px;
  9943. box-sizing:border-box;
  9944. width:100%;
  9945. }
  9946. #u37246_text {
  9947. border-width:0px;
  9948. white-space:nowrap;
  9949. text-transform:none;
  9950. }
  9951. #u37247_div {
  9952. border-width:0px;
  9953. position:absolute;
  9954. left:0px;
  9955. top:0px;
  9956. width:25px;
  9957. height:30px;
  9958. background:inherit;
  9959. background-color:rgba(255, 255, 255, 0);
  9960. border:none;
  9961. border-left:0px;
  9962. border-top:0px;
  9963. border-right:0px;
  9964. border-radius:0px;
  9965. border-bottom-right-radius:0px;
  9966. border-bottom-left-radius:0px;
  9967. -moz-box-shadow:none;
  9968. -webkit-box-shadow:none;
  9969. box-shadow:none;
  9970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9971. font-weight:400;
  9972. font-style:normal;
  9973. font-size:12px;
  9974. color:#D9001B;
  9975. line-height:30px;
  9976. }
  9977. #u37247 {
  9978. border-width:0px;
  9979. position:absolute;
  9980. left:1282px;
  9981. top:475px;
  9982. width:25px;
  9983. height:30px;
  9984. display:flex;
  9985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9986. font-weight:400;
  9987. font-style:normal;
  9988. font-size:12px;
  9989. color:#D9001B;
  9990. line-height:30px;
  9991. }
  9992. #u37247 .text {
  9993. position:absolute;
  9994. align-self:flex-start;
  9995. padding:0px 0px 0px 0px;
  9996. box-sizing:border-box;
  9997. width:100%;
  9998. }
  9999. #u37247_text {
  10000. border-width:0px;
  10001. white-space:nowrap;
  10002. text-transform:none;
  10003. }
  10004. #u37248_div {
  10005. border-width:0px;
  10006. position:absolute;
  10007. left:0px;
  10008. top:0px;
  10009. width:25px;
  10010. height:30px;
  10011. background:inherit;
  10012. background-color:rgba(255, 255, 255, 0);
  10013. border:none;
  10014. border-left:0px;
  10015. border-top:0px;
  10016. border-right:0px;
  10017. border-radius:0px;
  10018. border-bottom-right-radius:0px;
  10019. border-bottom-left-radius:0px;
  10020. -moz-box-shadow:none;
  10021. -webkit-box-shadow:none;
  10022. box-shadow:none;
  10023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10024. font-weight:400;
  10025. font-style:normal;
  10026. font-size:12px;
  10027. color:#1890FF;
  10028. line-height:30px;
  10029. }
  10030. #u37248 {
  10031. border-width:0px;
  10032. position:absolute;
  10033. left:1097px;
  10034. top:604px;
  10035. width:25px;
  10036. height:30px;
  10037. display:flex;
  10038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10039. font-weight:400;
  10040. font-style:normal;
  10041. font-size:12px;
  10042. color:#1890FF;
  10043. line-height:30px;
  10044. }
  10045. #u37248 .text {
  10046. position:absolute;
  10047. align-self:flex-start;
  10048. padding:0px 0px 0px 0px;
  10049. box-sizing:border-box;
  10050. width:100%;
  10051. }
  10052. #u37248_text {
  10053. border-width:0px;
  10054. white-space:nowrap;
  10055. text-transform:none;
  10056. }
  10057. #u37249_div {
  10058. border-width:0px;
  10059. position:absolute;
  10060. left:0px;
  10061. top:0px;
  10062. width:25px;
  10063. height:30px;
  10064. background:inherit;
  10065. background-color:rgba(255, 255, 255, 0);
  10066. border:none;
  10067. border-left:0px;
  10068. border-top:0px;
  10069. border-right:0px;
  10070. border-radius:0px;
  10071. border-bottom-right-radius:0px;
  10072. border-bottom-left-radius:0px;
  10073. -moz-box-shadow:none;
  10074. -webkit-box-shadow:none;
  10075. box-shadow:none;
  10076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10077. font-weight:400;
  10078. font-style:normal;
  10079. font-size:12px;
  10080. color:#1890FF;
  10081. line-height:30px;
  10082. }
  10083. #u37249 {
  10084. border-width:0px;
  10085. position:absolute;
  10086. left:1282px;
  10087. top:604px;
  10088. width:25px;
  10089. height:30px;
  10090. display:flex;
  10091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10092. font-weight:400;
  10093. font-style:normal;
  10094. font-size:12px;
  10095. color:#1890FF;
  10096. line-height:30px;
  10097. }
  10098. #u37249 .text {
  10099. position:absolute;
  10100. align-self:flex-start;
  10101. padding:0px 0px 0px 0px;
  10102. box-sizing:border-box;
  10103. width:100%;
  10104. }
  10105. #u37249_text {
  10106. border-width:0px;
  10107. white-space:nowrap;
  10108. text-transform:none;
  10109. }
  10110. #u37250_div {
  10111. border-width:0px;
  10112. position:absolute;
  10113. left:0px;
  10114. top:0px;
  10115. width:232px;
  10116. height:40px;
  10117. background:inherit;
  10118. background-color:rgba(255, 255, 255, 1);
  10119. border:none;
  10120. border-radius:0px;
  10121. -moz-box-shadow:none;
  10122. -webkit-box-shadow:none;
  10123. box-shadow:none;
  10124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10125. font-weight:400;
  10126. font-style:normal;
  10127. font-size:16px;
  10128. color:#1890FF;
  10129. line-height:40px;
  10130. }
  10131. #u37250 {
  10132. border-width:0px;
  10133. position:absolute;
  10134. left:979px;
  10135. top:162px;
  10136. width:232px;
  10137. height:40px;
  10138. display:flex;
  10139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10140. font-weight:400;
  10141. font-style:normal;
  10142. font-size:16px;
  10143. color:#1890FF;
  10144. line-height:40px;
  10145. }
  10146. #u37250 .text {
  10147. position:absolute;
  10148. align-self:flex-start;
  10149. padding:0px 0px 0px 0px;
  10150. box-sizing:border-box;
  10151. width:100%;
  10152. }
  10153. #u37250_text {
  10154. border-width:0px;
  10155. word-wrap:break-word;
  10156. text-transform:none;
  10157. }
  10158. #u37251 {
  10159. border-width:0px;
  10160. position:absolute;
  10161. left:0px;
  10162. top:0px;
  10163. width:0px;
  10164. height:0px;
  10165. }
  10166. #u37252_div {
  10167. border-width:0px;
  10168. position:absolute;
  10169. left:0px;
  10170. top:0px;
  10171. width:50px;
  10172. height:28px;
  10173. background:inherit;
  10174. background-color:rgba(255, 255, 255, 1);
  10175. box-sizing:border-box;
  10176. border-width:1px;
  10177. border-style:solid;
  10178. border-color:rgba(215, 215, 215, 1);
  10179. border-radius:4px;
  10180. -moz-box-shadow:none;
  10181. -webkit-box-shadow:none;
  10182. box-shadow:none;
  10183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10184. font-weight:400;
  10185. font-style:normal;
  10186. font-size:11px;
  10187. color:#7F7F7F;
  10188. text-align:left;
  10189. }
  10190. #u37252 {
  10191. border-width:0px;
  10192. position:absolute;
  10193. left:100px;
  10194. top:396px;
  10195. width:50px;
  10196. height:28px;
  10197. display:flex;
  10198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10199. font-weight:400;
  10200. font-style:normal;
  10201. font-size:11px;
  10202. color:#7F7F7F;
  10203. text-align:left;
  10204. }
  10205. #u37252 .text {
  10206. position:absolute;
  10207. align-self:center;
  10208. padding:2px 2px 2px 40px;
  10209. box-sizing:border-box;
  10210. width:100%;
  10211. }
  10212. #u37252_text {
  10213. border-width:0px;
  10214. word-wrap:break-word;
  10215. text-transform:none;
  10216. visibility:hidden;
  10217. }
  10218. #u37253 {
  10219. border-width:0px;
  10220. position:absolute;
  10221. left:0px;
  10222. top:0px;
  10223. width:0px;
  10224. height:0px;
  10225. }
  10226. #u37254_div {
  10227. border-width:0px;
  10228. position:absolute;
  10229. left:0px;
  10230. top:0px;
  10231. width:12px;
  10232. height:25px;
  10233. background:inherit;
  10234. background-color:rgba(255, 255, 255, 0);
  10235. border:none;
  10236. border-left:0px;
  10237. border-top:0px;
  10238. border-right:0px;
  10239. border-radius:0px;
  10240. border-bottom-right-radius:0px;
  10241. border-bottom-left-radius:0px;
  10242. -moz-box-shadow:none;
  10243. -webkit-box-shadow:none;
  10244. box-shadow:none;
  10245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10246. font-weight:400;
  10247. font-style:normal;
  10248. font-size:18px;
  10249. color:#D9001B;
  10250. }
  10251. #u37254 {
  10252. border-width:0px;
  10253. position:absolute;
  10254. left:131px;
  10255. top:398px;
  10256. width:12px;
  10257. height:25px;
  10258. display:flex;
  10259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10260. font-weight:400;
  10261. font-style:normal;
  10262. font-size:18px;
  10263. color:#D9001B;
  10264. }
  10265. #u37254 .text {
  10266. position:absolute;
  10267. align-self:center;
  10268. padding:0px 0px 0px 0px;
  10269. box-sizing:border-box;
  10270. width:100%;
  10271. }
  10272. #u37254_text {
  10273. border-width:0px;
  10274. white-space:nowrap;
  10275. text-transform:none;
  10276. }
  10277. #u37255_img {
  10278. border-width:0px;
  10279. position:absolute;
  10280. left:0px;
  10281. top:0px;
  10282. width:19px;
  10283. height:17px;
  10284. }
  10285. #u37255 {
  10286. border-width:0px;
  10287. position:absolute;
  10288. left:107px;
  10289. top:401px;
  10290. width:19px;
  10291. height:17px;
  10292. display:flex;
  10293. }
  10294. #u37255 .text {
  10295. position:absolute;
  10296. align-self:center;
  10297. padding:2px 2px 2px 2px;
  10298. box-sizing:border-box;
  10299. width:100%;
  10300. }
  10301. #u37255_text {
  10302. border-width:0px;
  10303. word-wrap:break-word;
  10304. text-transform:none;
  10305. visibility:hidden;
  10306. }