styles.css 138 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1976px;
  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. #u41123 {
  20. border-width:0px;
  21. position:absolute;
  22. left:453px;
  23. top:183px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u41124 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. transition:none;
  36. }
  37. #u41124 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u41124_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u41124_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u41125_div {
  59. border-width:0px;
  60. position:absolute;
  61. left:0px;
  62. top:0px;
  63. width:375px;
  64. height:40px;
  65. background:inherit;
  66. background-color:rgba(255, 255, 255, 1);
  67. box-sizing:border-box;
  68. border-width:1px;
  69. border-style:solid;
  70. border-color:rgba(215, 215, 215, 1);
  71. border-left:0px;
  72. border-top:0px;
  73. border-right:0px;
  74. border-radius:0px;
  75. border-bottom-right-radius:0px;
  76. border-bottom-left-radius:0px;
  77. filter:drop-shadow(none);
  78. transition:none;
  79. }
  80. #u41125 {
  81. border-width:0px;
  82. position:absolute;
  83. left:29px;
  84. top:67px;
  85. width:375px;
  86. height:40px;
  87. display:flex;
  88. transition:none;
  89. transform-origin:50% 50%;
  90. }
  91. #u41125 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u41125_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u41126 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u41127_div {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:88px;
  118. height:32px;
  119. background:inherit;
  120. background-color:rgba(255, 255, 255, 1);
  121. box-sizing:border-box;
  122. border-width:1px;
  123. border-style:solid;
  124. border-color:rgba(242, 242, 242, 1);
  125. border-radius:33px;
  126. filter:drop-shadow(none);
  127. transition:none;
  128. }
  129. #u41127 {
  130. border-width:0px;
  131. position:absolute;
  132. left:309px;
  133. top:71px;
  134. width:88px;
  135. height:32px;
  136. display:flex;
  137. transition:none;
  138. transform-origin:50% 50%;
  139. }
  140. #u41127 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u41127_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u41128 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u41129 {
  162. border-width:0px;
  163. position:absolute;
  164. left:372px;
  165. top:78px;
  166. width:18px;
  167. height:18px;
  168. display:flex;
  169. transition:none;
  170. }
  171. #u41129 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u41129_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u41129_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u41130 {
  193. border-width:0px;
  194. position:absolute;
  195. left:378px;
  196. top:84px;
  197. width:6px;
  198. height:6px;
  199. display:flex;
  200. transition:none;
  201. }
  202. #u41130 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u41130_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u41130_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u41131 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u41132 {
  232. border-width:0px;
  233. position:absolute;
  234. left:323px;
  235. top:85px;
  236. width:5px;
  237. height:5px;
  238. display:flex;
  239. transition:none;
  240. }
  241. #u41132 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u41132_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u41132_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u41133 {
  263. border-width:0px;
  264. position:absolute;
  265. left:339px;
  266. top:85px;
  267. width:5px;
  268. height:5px;
  269. display:flex;
  270. transition:none;
  271. }
  272. #u41133 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u41133_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u41133_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u41134 {
  294. border-width:0px;
  295. position:absolute;
  296. left:330px;
  297. top:84px;
  298. width:7px;
  299. height:7px;
  300. display:flex;
  301. transition:none;
  302. }
  303. #u41134 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u41134_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u41134_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u41135 {
  325. border-width:0px;
  326. position:absolute;
  327. left:347px;
  328. top:87px;
  329. width:18px;
  330. height:1px;
  331. display:flex;
  332. -webkit-transform:rotate(90deg);
  333. -moz-transform:rotate(90deg);
  334. -ms-transform:rotate(90deg);
  335. transform:rotate(90deg);
  336. transition:none;
  337. }
  338. #u41135 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u41135_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u41135_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u41136 {
  360. border-width:0px;
  361. position:absolute;
  362. left:29px;
  363. top:24px;
  364. width:375px;
  365. height:44px;
  366. display:flex;
  367. transition:none;
  368. }
  369. #u41136 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u41136_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u41136_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u41137_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:375px;
  396. height:50px;
  397. background:inherit;
  398. background-color:rgba(255, 255, 255, 1);
  399. box-sizing:border-box;
  400. border-width:1px;
  401. border-style:solid;
  402. border-color:rgba(242, 242, 242, 1);
  403. border-radius:26px;
  404. border-top-left-radius:0px;
  405. border-top-right-radius:0px;
  406. filter:drop-shadow(none);
  407. transition:none;
  408. }
  409. #u41137 {
  410. border-width:0px;
  411. position:absolute;
  412. left:29px;
  413. top:788px;
  414. width:375px;
  415. height:50px;
  416. display:flex;
  417. transition:none;
  418. transform-origin:50% 50%;
  419. }
  420. #u41137 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u41137_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u41138 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u41139 {
  442. border-width:0px;
  443. position:absolute;
  444. left:69px;
  445. top:792px;
  446. width:24px;
  447. height:24px;
  448. display:flex;
  449. transition:none;
  450. font-size:8px;
  451. }
  452. #u41139 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u41139_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u41139_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u41140_div {
  473. border-width:0px;
  474. position:absolute;
  475. left:0px;
  476. top:0px;
  477. width:25px;
  478. height:17px;
  479. background:inherit;
  480. background-color:rgba(255, 255, 255, 0);
  481. border-radius:0px;
  482. filter:drop-shadow(none);
  483. transition:none;
  484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  485. font-weight:400;
  486. font-style:normal;
  487. font-size:12px;
  488. }
  489. #u41140 {
  490. border-width:0px;
  491. position:absolute;
  492. left:69px;
  493. top:817px;
  494. width:25px;
  495. height:17px;
  496. display:flex;
  497. transition:none;
  498. transform-origin:50% 50%;
  499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  500. font-weight:400;
  501. font-style:normal;
  502. font-size:12px;
  503. }
  504. #u41140 .text {
  505. position:absolute;
  506. align-self:flex-start;
  507. padding:0px 0px 0px 0px;
  508. box-sizing:border-box;
  509. width:100%;
  510. }
  511. #u41140_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u41141 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u41142 {
  525. border-width:0px;
  526. position:absolute;
  527. left:339px;
  528. top:794px;
  529. width:24px;
  530. height:24px;
  531. display:flex;
  532. transition:none;
  533. font-size:8px;
  534. }
  535. #u41142 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u41142_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u41142_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u41143_div {
  556. border-width:0px;
  557. position:absolute;
  558. left:0px;
  559. top:0px;
  560. width:25px;
  561. height:17px;
  562. background:inherit;
  563. background-color:rgba(255, 255, 255, 0);
  564. border-radius:0px;
  565. filter:drop-shadow(none);
  566. transition:none;
  567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  568. font-weight:400;
  569. font-style:normal;
  570. font-size:12px;
  571. }
  572. #u41143 {
  573. border-width:0px;
  574. position:absolute;
  575. left:339px;
  576. top:819px;
  577. width:25px;
  578. height:17px;
  579. display:flex;
  580. transition:none;
  581. transform-origin:50% 50%;
  582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  583. font-weight:400;
  584. font-style:normal;
  585. font-size:12px;
  586. }
  587. #u41143 .text {
  588. position:absolute;
  589. align-self:flex-start;
  590. padding:0px 0px 0px 0px;
  591. box-sizing:border-box;
  592. width:100%;
  593. }
  594. #u41143_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u41144_div {
  600. border-width:0px;
  601. position:absolute;
  602. left:0px;
  603. top:0px;
  604. width:375px;
  605. height:681px;
  606. background:inherit;
  607. background-color:rgba(242, 242, 242, 0.4627450980392157);
  608. border-radius:0px;
  609. filter:drop-shadow(none);
  610. transition:none;
  611. }
  612. #u41144 {
  613. border-width:0px;
  614. position:absolute;
  615. left:29px;
  616. top:107px;
  617. width:375px;
  618. height:681px;
  619. display:flex;
  620. transition:none;
  621. transform-origin:50% 50%;
  622. }
  623. #u41144 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u41144_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u41145 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u41146 {
  645. border-width:0px;
  646. position:absolute;
  647. left:251px;
  648. top:792px;
  649. width:24px;
  650. height:24px;
  651. display:flex;
  652. transition:none;
  653. font-size:8px;
  654. }
  655. #u41146 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u41146_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u41146_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u41147_div {
  676. border-width:0px;
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:37px;
  681. height:17px;
  682. background:inherit;
  683. background-color:rgba(255, 255, 255, 0);
  684. border-radius:0px;
  685. filter:drop-shadow(none);
  686. transition:none;
  687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  688. font-weight:400;
  689. font-style:normal;
  690. font-size:12px;
  691. }
  692. #u41147 {
  693. border-width:0px;
  694. position:absolute;
  695. left:245px;
  696. top:817px;
  697. width:37px;
  698. height:17px;
  699. display:flex;
  700. transition:none;
  701. transform-origin:50% 50%;
  702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  703. font-weight:400;
  704. font-style:normal;
  705. font-size:12px;
  706. }
  707. #u41147 .text {
  708. position:absolute;
  709. align-self:flex-start;
  710. padding:0px 0px 0px 0px;
  711. box-sizing:border-box;
  712. width:100%;
  713. }
  714. #u41147_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u41148 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u41149 {
  728. border-width:0px;
  729. position:absolute;
  730. left:157px;
  731. top:792px;
  732. width:24px;
  733. height:24px;
  734. display:flex;
  735. transition:none;
  736. font-size:8px;
  737. }
  738. #u41149 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u41149_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u41149_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u41150_div {
  759. border-width:0px;
  760. position:absolute;
  761. left:0px;
  762. top:0px;
  763. width:37px;
  764. height:17px;
  765. background:inherit;
  766. background-color:rgba(255, 255, 255, 0);
  767. border-radius:0px;
  768. filter:drop-shadow(none);
  769. transition:none;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:12px;
  774. }
  775. #u41150 {
  776. border-width:0px;
  777. position:absolute;
  778. left:151px;
  779. top:817px;
  780. width:37px;
  781. height:17px;
  782. display:flex;
  783. transition:none;
  784. transform-origin:50% 50%;
  785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  786. font-weight:400;
  787. font-style:normal;
  788. font-size:12px;
  789. }
  790. #u41150 .text {
  791. position:absolute;
  792. align-self:flex-start;
  793. padding:0px 0px 0px 0px;
  794. box-sizing:border-box;
  795. width:100%;
  796. }
  797. #u41150_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u41151_div {
  803. border-width:0px;
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:375px;
  808. height:737px;
  809. background:inherit;
  810. background-color:rgba(255, 255, 255, 1);
  811. border-top:0px;
  812. border-radius:28px;
  813. border-top-left-radius:0px;
  814. border-top-right-radius:0px;
  815. filter:drop-shadow(none);
  816. transition:none;
  817. }
  818. #u41151 {
  819. border-width:0px;
  820. position:absolute;
  821. left:482px;
  822. top:286px;
  823. width:375px;
  824. height:737px;
  825. display:flex;
  826. transition:none;
  827. transform-origin:50% 50%;
  828. }
  829. #u41151 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u41151_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u41152 {
  843. border-width:0px;
  844. position:absolute;
  845. left:0px;
  846. top:0px;
  847. width:0px;
  848. height:0px;
  849. }
  850. #u41153_div {
  851. border-width:0px;
  852. position:absolute;
  853. left:0px;
  854. top:0px;
  855. width:330px;
  856. height:523px;
  857. background:inherit;
  858. background-color:rgba(242, 242, 242, 1);
  859. border-radius:10px;
  860. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  861. transition:none;
  862. }
  863. #u41153 {
  864. border-width:0px;
  865. position:absolute;
  866. left:491px;
  867. top:349px;
  868. width:330px;
  869. height:523px;
  870. display:flex;
  871. transition:none;
  872. transform-origin:50% 50%;
  873. }
  874. #u41153 .text {
  875. position:absolute;
  876. align-self:center;
  877. padding:2px 2px 2px 2px;
  878. box-sizing:border-box;
  879. width:100%;
  880. }
  881. #u41153_text {
  882. border-width:0px;
  883. word-wrap:break-word;
  884. text-transform:none;
  885. visibility:hidden;
  886. }
  887. #u41154_div {
  888. border-width:0px;
  889. position:absolute;
  890. left:0px;
  891. top:0px;
  892. width:127px;
  893. height:30px;
  894. background:inherit;
  895. background-color:rgba(255, 255, 255, 0);
  896. border-left:0px;
  897. border-top:0px;
  898. border-right:0px;
  899. border-radius:0px;
  900. border-bottom-right-radius:0px;
  901. border-bottom-left-radius:0px;
  902. filter:drop-shadow(none);
  903. transition:none;
  904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  905. font-weight:400;
  906. font-style:normal;
  907. font-size:14px;
  908. line-height:30px;
  909. }
  910. #u41154 {
  911. border-width:0px;
  912. position:absolute;
  913. left:593px;
  914. top:419px;
  915. width:127px;
  916. height:30px;
  917. display:flex;
  918. transition:none;
  919. transform-origin:50% 50%;
  920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  921. font-weight:400;
  922. font-style:normal;
  923. font-size:14px;
  924. line-height:30px;
  925. }
  926. #u41154 .text {
  927. position:absolute;
  928. align-self:center;
  929. padding:0px 0px 0px 0px;
  930. box-sizing:border-box;
  931. width:100%;
  932. }
  933. #u41154_text {
  934. border-width:0px;
  935. white-space:nowrap;
  936. text-transform:none;
  937. }
  938. #u41155 {
  939. border-width:0px;
  940. position:absolute;
  941. left:543px;
  942. top:579px;
  943. width:226px;
  944. height:226px;
  945. display:flex;
  946. transition:none;
  947. }
  948. #u41155 .text {
  949. position:absolute;
  950. align-self:center;
  951. padding:2px 2px 2px 2px;
  952. box-sizing:border-box;
  953. width:100%;
  954. }
  955. #u41155_img {
  956. border-width:0px;
  957. position:absolute;
  958. left:0px;
  959. top:0px;
  960. width:226px;
  961. height:226px;
  962. }
  963. #u41155_text {
  964. border-width:0px;
  965. word-wrap:break-word;
  966. text-transform:none;
  967. visibility:hidden;
  968. }
  969. #u41156_div {
  970. border-width:0px;
  971. position:absolute;
  972. left:0px;
  973. top:0px;
  974. width:236px;
  975. height:31px;
  976. background:inherit;
  977. background-color:rgba(255, 255, 255, 0);
  978. border-left:0px;
  979. border-top:0px;
  980. border-right:0px;
  981. border-radius:0px;
  982. border-bottom-right-radius:0px;
  983. border-bottom-left-radius:0px;
  984. filter:drop-shadow(none);
  985. transition:none;
  986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  987. font-style:normal;
  988. font-size:12px;
  989. line-height:31px;
  990. }
  991. #u41156 {
  992. border-width:0px;
  993. position:absolute;
  994. left:538px;
  995. top:815px;
  996. width:236px;
  997. height:31px;
  998. display:flex;
  999. transition:none;
  1000. transform-origin:50% 50%;
  1001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1002. font-style:normal;
  1003. font-size:12px;
  1004. line-height:31px;
  1005. }
  1006. #u41156 .text {
  1007. position:absolute;
  1008. align-self:center;
  1009. padding:0px 0px 0px 0px;
  1010. box-sizing:border-box;
  1011. width:100%;
  1012. }
  1013. #u41156_text {
  1014. border-width:0px;
  1015. white-space:nowrap;
  1016. text-transform:none;
  1017. }
  1018. #u41157_div {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:0px;
  1022. top:0px;
  1023. width:127px;
  1024. height:30px;
  1025. background:inherit;
  1026. background-color:rgba(255, 255, 255, 0);
  1027. border-left:0px;
  1028. border-top:0px;
  1029. border-right:0px;
  1030. border-radius:0px;
  1031. border-bottom-right-radius:0px;
  1032. border-bottom-left-radius:0px;
  1033. filter:drop-shadow(none);
  1034. transition:none;
  1035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1036. font-weight:400;
  1037. font-style:normal;
  1038. font-size:18px;
  1039. line-height:30px;
  1040. }
  1041. #u41157 {
  1042. border-width:0px;
  1043. position:absolute;
  1044. left:593px;
  1045. top:479px;
  1046. width:127px;
  1047. height:30px;
  1048. display:flex;
  1049. transition:none;
  1050. transform-origin:50% 50%;
  1051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1052. font-weight:400;
  1053. font-style:normal;
  1054. font-size:18px;
  1055. line-height:30px;
  1056. }
  1057. #u41157 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:0px 0px 0px 0px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u41157_text {
  1065. border-width:0px;
  1066. white-space:nowrap;
  1067. text-transform:none;
  1068. }
  1069. #u41158_div {
  1070. border-width:0px;
  1071. position:absolute;
  1072. left:0px;
  1073. top:0px;
  1074. width:279px;
  1075. height:34px;
  1076. background:inherit;
  1077. background-color:rgba(254, 248, 231, 1);
  1078. border-radius:23px;
  1079. filter:drop-shadow(none);
  1080. transition:none;
  1081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1082. font-weight:400;
  1083. font-style:normal;
  1084. font-size:12px;
  1085. color:#F59A23;
  1086. text-align:center;
  1087. }
  1088. #u41158 {
  1089. border-width:0px;
  1090. position:absolute;
  1091. left:517px;
  1092. top:519px;
  1093. width:279px;
  1094. height:34px;
  1095. display:flex;
  1096. transition:none;
  1097. transform-origin:50% 50%;
  1098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1099. font-weight:400;
  1100. font-style:normal;
  1101. font-size:12px;
  1102. color:#F59A23;
  1103. text-align:center;
  1104. }
  1105. #u41158 .text {
  1106. position:absolute;
  1107. align-self:center;
  1108. padding:0px 0px 0px 0px;
  1109. box-sizing:border-box;
  1110. width:100%;
  1111. }
  1112. #u41158_text {
  1113. border-width:0px;
  1114. word-wrap:break-word;
  1115. text-transform:none;
  1116. }
  1117. #u41159_div {
  1118. border-width:0px;
  1119. position:absolute;
  1120. left:0px;
  1121. top:0px;
  1122. width:145px;
  1123. height:30px;
  1124. background:inherit;
  1125. background-color:rgba(255, 255, 255, 0);
  1126. border-left:0px;
  1127. border-top:0px;
  1128. border-right:0px;
  1129. border-radius:0px;
  1130. border-bottom-right-radius:0px;
  1131. border-bottom-left-radius:0px;
  1132. filter:drop-shadow(none);
  1133. transition:none;
  1134. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1135. font-weight:500;
  1136. font-style:normal;
  1137. font-size:18px;
  1138. line-height:30px;
  1139. }
  1140. #u41159 {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:584px;
  1144. top:379px;
  1145. width:145px;
  1146. height:30px;
  1147. display:flex;
  1148. transition:none;
  1149. transform-origin:50% 50%;
  1150. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1151. font-weight:500;
  1152. font-style:normal;
  1153. font-size:18px;
  1154. line-height:30px;
  1155. }
  1156. #u41159 .text {
  1157. position:absolute;
  1158. align-self:center;
  1159. padding:0px 0px 0px 0px;
  1160. box-sizing:border-box;
  1161. width:100%;
  1162. }
  1163. #u41159_text {
  1164. border-width:0px;
  1165. white-space:nowrap;
  1166. text-transform:none;
  1167. }
  1168. #u41160 {
  1169. border-width:0px;
  1170. position:absolute;
  1171. left:501px;
  1172. top:459px;
  1173. width:311px;
  1174. height:1px;
  1175. display:flex;
  1176. transition:none;
  1177. }
  1178. #u41160 .text {
  1179. position:absolute;
  1180. align-self:center;
  1181. padding:2px 2px 2px 2px;
  1182. box-sizing:border-box;
  1183. width:100%;
  1184. }
  1185. #u41160_img {
  1186. border-width:0px;
  1187. position:absolute;
  1188. left:0px;
  1189. top:0px;
  1190. width:312px;
  1191. height:2px;
  1192. }
  1193. #u41160_text {
  1194. border-width:0px;
  1195. word-wrap:break-word;
  1196. text-transform:none;
  1197. visibility:hidden;
  1198. }
  1199. #u41161_div {
  1200. border-width:0px;
  1201. position:absolute;
  1202. left:0px;
  1203. top:0px;
  1204. width:12px;
  1205. height:12px;
  1206. background:inherit;
  1207. background-color:rgba(255, 255, 255, 0);
  1208. box-sizing:border-box;
  1209. border-width:2px;
  1210. border-style:solid;
  1211. border-color:rgba(51, 51, 51, 1);
  1212. border-right:0px;
  1213. border-bottom:0px;
  1214. border-radius:0px;
  1215. border-top-right-radius:0px;
  1216. border-bottom-left-radius:0px;
  1217. filter:drop-shadow(none);
  1218. transition:none;
  1219. }
  1220. #u41161 {
  1221. border-width:0px;
  1222. position:absolute;
  1223. left:498px;
  1224. top:263px;
  1225. width:12px;
  1226. height:12px;
  1227. display:flex;
  1228. -webkit-transform:rotate(315deg);
  1229. -moz-transform:rotate(315deg);
  1230. -ms-transform:rotate(315deg);
  1231. transform:rotate(315deg);
  1232. transition:none;
  1233. transform-origin:50% 50%;
  1234. }
  1235. #u41161 .text {
  1236. position:absolute;
  1237. align-self:center;
  1238. padding:2px 2px 2px 2px;
  1239. box-sizing:border-box;
  1240. width:100%;
  1241. }
  1242. #u41161_text {
  1243. border-width:0px;
  1244. word-wrap:break-word;
  1245. text-transform:none;
  1246. visibility:hidden;
  1247. }
  1248. #u41162_div {
  1249. border-width:0px;
  1250. position:absolute;
  1251. left:0px;
  1252. top:0px;
  1253. width:97px;
  1254. height:30px;
  1255. background:inherit;
  1256. background-color:rgba(255, 255, 255, 0);
  1257. border-left:0px;
  1258. border-top:0px;
  1259. border-right:0px;
  1260. border-radius:0px;
  1261. border-bottom-right-radius:0px;
  1262. border-bottom-left-radius:0px;
  1263. filter:drop-shadow(none);
  1264. transition:none;
  1265. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1266. font-weight:500;
  1267. font-style:normal;
  1268. line-height:30px;
  1269. }
  1270. #u41162 {
  1271. border-width:0px;
  1272. position:absolute;
  1273. left:498px;
  1274. top:305px;
  1275. width:97px;
  1276. height:30px;
  1277. display:flex;
  1278. transition:none;
  1279. transform-origin:50% 50%;
  1280. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1281. font-weight:500;
  1282. font-style:normal;
  1283. line-height:30px;
  1284. }
  1285. #u41162 .text {
  1286. position:absolute;
  1287. align-self:flex-start;
  1288. padding:0px 0px 0px 0px;
  1289. box-sizing:border-box;
  1290. width:100%;
  1291. }
  1292. #u41162_text {
  1293. border-width:0px;
  1294. white-space:nowrap;
  1295. text-transform:none;
  1296. }
  1297. #u41163 {
  1298. border-width:0px;
  1299. position:absolute;
  1300. left:0px;
  1301. top:0px;
  1302. width:0px;
  1303. height:0px;
  1304. }
  1305. #u41164_div {
  1306. border-width:0px;
  1307. position:absolute;
  1308. left:0px;
  1309. top:0px;
  1310. width:26px;
  1311. height:523px;
  1312. background:inherit;
  1313. background-color:rgba(242, 242, 242, 1);
  1314. border-right:0px;
  1315. border-radius:10px;
  1316. border-top-right-radius:0px;
  1317. border-bottom-right-radius:0px;
  1318. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  1319. transition:none;
  1320. }
  1321. #u41164 {
  1322. border-width:0px;
  1323. position:absolute;
  1324. left:831px;
  1325. top:349px;
  1326. width:26px;
  1327. height:523px;
  1328. display:flex;
  1329. transition:none;
  1330. transform-origin:50% 50%;
  1331. }
  1332. #u41164 .text {
  1333. position:absolute;
  1334. align-self:center;
  1335. padding:2px 2px 2px 2px;
  1336. box-sizing:border-box;
  1337. width:100%;
  1338. }
  1339. #u41164_text {
  1340. border-width:0px;
  1341. word-wrap:break-word;
  1342. text-transform:none;
  1343. visibility:hidden;
  1344. }
  1345. #u41165 {
  1346. border-width:0px;
  1347. position:absolute;
  1348. left:832px;
  1349. top:459px;
  1350. width:25px;
  1351. height:1px;
  1352. display:flex;
  1353. transition:none;
  1354. }
  1355. #u41165 .text {
  1356. position:absolute;
  1357. align-self:center;
  1358. padding:2px 2px 2px 2px;
  1359. box-sizing:border-box;
  1360. width:100%;
  1361. }
  1362. #u41165_img {
  1363. border-width:0px;
  1364. position:absolute;
  1365. left:0px;
  1366. top:0px;
  1367. width:26px;
  1368. height:2px;
  1369. }
  1370. #u41165_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. visibility:hidden;
  1375. }
  1376. #u41166 {
  1377. border-width:0px;
  1378. position:absolute;
  1379. left:491px;
  1380. top:892px;
  1381. width:357px;
  1382. height:69px;
  1383. display:flex;
  1384. transition:none;
  1385. }
  1386. #u41166 .text {
  1387. position:absolute;
  1388. align-self:center;
  1389. padding:2px 2px 2px 2px;
  1390. box-sizing:border-box;
  1391. width:100%;
  1392. }
  1393. #u41166_img {
  1394. border-width:0px;
  1395. position:absolute;
  1396. left:0px;
  1397. top:0px;
  1398. width:357px;
  1399. height:69px;
  1400. }
  1401. #u41166_text {
  1402. border-width:0px;
  1403. word-wrap:break-word;
  1404. text-transform:none;
  1405. visibility:hidden;
  1406. }
  1407. #u41167_div {
  1408. border-width:0px;
  1409. position:absolute;
  1410. left:0px;
  1411. top:0px;
  1412. width:73px;
  1413. height:30px;
  1414. background:inherit;
  1415. background-color:rgba(255, 255, 255, 0);
  1416. border-left:0px;
  1417. border-top:0px;
  1418. border-right:0px;
  1419. border-radius:0px;
  1420. border-bottom-right-radius:0px;
  1421. border-bottom-left-radius:0px;
  1422. filter:drop-shadow(none);
  1423. transition:none;
  1424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1425. font-weight:400;
  1426. font-style:normal;
  1427. font-size:18px;
  1428. color:#0089FE;
  1429. line-height:30px;
  1430. }
  1431. #u41167 {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:773px;
  1435. top:305px;
  1436. width:73px;
  1437. height:30px;
  1438. display:flex;
  1439. transition:none;
  1440. transform-origin:50% 50%;
  1441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1442. font-weight:400;
  1443. font-style:normal;
  1444. font-size:18px;
  1445. color:#0089FE;
  1446. line-height:30px;
  1447. }
  1448. #u41167 .text {
  1449. position:absolute;
  1450. align-self:flex-start;
  1451. padding:0px 0px 0px 0px;
  1452. box-sizing:border-box;
  1453. width:100%;
  1454. }
  1455. #u41167_text {
  1456. border-width:0px;
  1457. white-space:nowrap;
  1458. text-transform:none;
  1459. }
  1460. #u41168_div {
  1461. border-width:0px;
  1462. position:absolute;
  1463. left:0px;
  1464. top:0px;
  1465. width:437px;
  1466. height:110px;
  1467. background:inherit;
  1468. background-color:rgba(255, 255, 255, 0);
  1469. border-radius:0px;
  1470. filter:drop-shadow(none);
  1471. transition:none;
  1472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1473. font-weight:400;
  1474. font-style:normal;
  1475. font-size:18px;
  1476. color:#D9001B;
  1477. }
  1478. #u41168 {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:487px;
  1482. top:13px;
  1483. width:437px;
  1484. height:110px;
  1485. display:flex;
  1486. transition:none;
  1487. transform-origin:50% 50%;
  1488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1489. font-weight:400;
  1490. font-style:normal;
  1491. font-size:18px;
  1492. color:#D9001B;
  1493. }
  1494. #u41168 .text {
  1495. position:absolute;
  1496. align-self:center;
  1497. padding:5px 5px 5px 5px;
  1498. box-sizing:border-box;
  1499. width:100%;
  1500. }
  1501. #u41168_text {
  1502. border-width:0px;
  1503. word-wrap:break-word;
  1504. text-transform:none;
  1505. }
  1506. #u41169_div {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:438px;
  1512. height:110px;
  1513. background:inherit;
  1514. background-color:rgba(255, 255, 255, 0);
  1515. border-radius:0px;
  1516. filter:drop-shadow(none);
  1517. transition:none;
  1518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1519. font-weight:400;
  1520. font-style:normal;
  1521. font-size:18px;
  1522. color:#D9001B;
  1523. }
  1524. #u41169 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:19px;
  1528. top:13px;
  1529. width:438px;
  1530. height:110px;
  1531. display:flex;
  1532. transition:none;
  1533. transform-origin:50% 50%;
  1534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1535. font-weight:400;
  1536. font-style:normal;
  1537. font-size:18px;
  1538. color:#D9001B;
  1539. }
  1540. #u41169 .text {
  1541. position:absolute;
  1542. align-self:center;
  1543. padding:5px 5px 5px 5px;
  1544. box-sizing:border-box;
  1545. width:100%;
  1546. }
  1547. #u41169_text {
  1548. border-width:0px;
  1549. word-wrap:break-word;
  1550. text-transform:none;
  1551. }
  1552. #u41170_div {
  1553. border-width:0px;
  1554. position:absolute;
  1555. left:0px;
  1556. top:0px;
  1557. width:366px;
  1558. height:30px;
  1559. background:inherit;
  1560. background-color:rgba(255, 255, 255, 0);
  1561. border-left:0px;
  1562. border-top:0px;
  1563. border-right:0px;
  1564. border-radius:0px;
  1565. border-bottom-right-radius:0px;
  1566. border-bottom-left-radius:0px;
  1567. filter:drop-shadow(none);
  1568. transition:none;
  1569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1570. font-weight:400;
  1571. font-style:normal;
  1572. font-size:12px;
  1573. color:#D9001B;
  1574. line-height:30px;
  1575. }
  1576. #u41170 {
  1577. border-width:0px;
  1578. position:absolute;
  1579. left:487px;
  1580. top:842px;
  1581. width:366px;
  1582. height:30px;
  1583. display:flex;
  1584. transition:none;
  1585. transform-origin:50% 50%;
  1586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1587. font-weight:400;
  1588. font-style:normal;
  1589. font-size:12px;
  1590. color:#D9001B;
  1591. line-height:30px;
  1592. }
  1593. #u41170 .text {
  1594. position:absolute;
  1595. align-self:flex-start;
  1596. padding:0px 0px 0px 0px;
  1597. box-sizing:border-box;
  1598. width:100%;
  1599. }
  1600. #u41170_text {
  1601. border-width:0px;
  1602. white-space:nowrap;
  1603. text-transform:none;
  1604. }
  1605. #u41171 {
  1606. border-width:0px;
  1607. position:absolute;
  1608. left:0px;
  1609. top:183px;
  1610. width:433px;
  1611. height:865px;
  1612. }
  1613. #u41172 {
  1614. border-width:0px;
  1615. position:absolute;
  1616. left:0px;
  1617. top:0px;
  1618. width:433px;
  1619. height:865px;
  1620. display:flex;
  1621. transition:none;
  1622. }
  1623. #u41172 .text {
  1624. position:absolute;
  1625. align-self:center;
  1626. padding:2px 2px 2px 2px;
  1627. box-sizing:border-box;
  1628. width:100%;
  1629. }
  1630. #u41172_img {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:433px;
  1636. height:865px;
  1637. }
  1638. #u41172_text {
  1639. border-width:0px;
  1640. word-wrap:break-word;
  1641. text-transform:none;
  1642. visibility:hidden;
  1643. }
  1644. #u41173_div {
  1645. border-width:0px;
  1646. position:absolute;
  1647. left:0px;
  1648. top:0px;
  1649. width:375px;
  1650. height:40px;
  1651. background:inherit;
  1652. background-color:rgba(255, 255, 255, 1);
  1653. box-sizing:border-box;
  1654. border-width:1px;
  1655. border-style:solid;
  1656. border-color:rgba(215, 215, 215, 1);
  1657. border-left:0px;
  1658. border-top:0px;
  1659. border-right:0px;
  1660. border-radius:0px;
  1661. border-bottom-right-radius:0px;
  1662. border-bottom-left-radius:0px;
  1663. filter:drop-shadow(none);
  1664. transition:none;
  1665. }
  1666. #u41173 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:29px;
  1670. top:67px;
  1671. width:375px;
  1672. height:40px;
  1673. display:flex;
  1674. transition:none;
  1675. transform-origin:50% 50%;
  1676. }
  1677. #u41173 .text {
  1678. position:absolute;
  1679. align-self:center;
  1680. padding:2px 2px 2px 2px;
  1681. box-sizing:border-box;
  1682. width:100%;
  1683. }
  1684. #u41173_text {
  1685. border-width:0px;
  1686. word-wrap:break-word;
  1687. text-transform:none;
  1688. visibility:hidden;
  1689. }
  1690. #u41174 {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:0px;
  1694. top:0px;
  1695. width:0px;
  1696. height:0px;
  1697. }
  1698. #u41175_div {
  1699. border-width:0px;
  1700. position:absolute;
  1701. left:0px;
  1702. top:0px;
  1703. width:88px;
  1704. height:32px;
  1705. background:inherit;
  1706. background-color:rgba(255, 255, 255, 1);
  1707. box-sizing:border-box;
  1708. border-width:1px;
  1709. border-style:solid;
  1710. border-color:rgba(242, 242, 242, 1);
  1711. border-radius:33px;
  1712. filter:drop-shadow(none);
  1713. transition:none;
  1714. }
  1715. #u41175 {
  1716. border-width:0px;
  1717. position:absolute;
  1718. left:309px;
  1719. top:71px;
  1720. width:88px;
  1721. height:32px;
  1722. display:flex;
  1723. transition:none;
  1724. transform-origin:50% 50%;
  1725. }
  1726. #u41175 .text {
  1727. position:absolute;
  1728. align-self:center;
  1729. padding:2px 2px 2px 2px;
  1730. box-sizing:border-box;
  1731. width:100%;
  1732. }
  1733. #u41175_text {
  1734. border-width:0px;
  1735. word-wrap:break-word;
  1736. text-transform:none;
  1737. visibility:hidden;
  1738. }
  1739. #u41176 {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:0px;
  1743. top:0px;
  1744. width:0px;
  1745. height:0px;
  1746. }
  1747. #u41177 {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:372px;
  1751. top:78px;
  1752. width:18px;
  1753. height:18px;
  1754. display:flex;
  1755. transition:none;
  1756. }
  1757. #u41177 .text {
  1758. position:absolute;
  1759. align-self:center;
  1760. padding:2px 2px 2px 2px;
  1761. box-sizing:border-box;
  1762. width:100%;
  1763. }
  1764. #u41177_img {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:18px;
  1770. height:18px;
  1771. }
  1772. #u41177_text {
  1773. border-width:0px;
  1774. word-wrap:break-word;
  1775. text-transform:none;
  1776. visibility:hidden;
  1777. }
  1778. #u41178 {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:378px;
  1782. top:84px;
  1783. width:6px;
  1784. height:6px;
  1785. display:flex;
  1786. transition:none;
  1787. }
  1788. #u41178 .text {
  1789. position:absolute;
  1790. align-self:center;
  1791. padding:2px 2px 2px 2px;
  1792. box-sizing:border-box;
  1793. width:100%;
  1794. }
  1795. #u41178_img {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:0px;
  1799. top:0px;
  1800. width:6px;
  1801. height:6px;
  1802. }
  1803. #u41178_text {
  1804. border-width:0px;
  1805. word-wrap:break-word;
  1806. text-transform:none;
  1807. visibility:hidden;
  1808. }
  1809. #u41179 {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:0px;
  1813. top:0px;
  1814. width:0px;
  1815. height:0px;
  1816. }
  1817. #u41180 {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:323px;
  1821. top:85px;
  1822. width:5px;
  1823. height:5px;
  1824. display:flex;
  1825. transition:none;
  1826. }
  1827. #u41180 .text {
  1828. position:absolute;
  1829. align-self:center;
  1830. padding:2px 2px 2px 2px;
  1831. box-sizing:border-box;
  1832. width:100%;
  1833. }
  1834. #u41180_img {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:0px;
  1838. top:0px;
  1839. width:5px;
  1840. height:5px;
  1841. }
  1842. #u41180_text {
  1843. border-width:0px;
  1844. word-wrap:break-word;
  1845. text-transform:none;
  1846. visibility:hidden;
  1847. }
  1848. #u41181 {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:339px;
  1852. top:85px;
  1853. width:5px;
  1854. height:5px;
  1855. display:flex;
  1856. transition:none;
  1857. }
  1858. #u41181 .text {
  1859. position:absolute;
  1860. align-self:center;
  1861. padding:2px 2px 2px 2px;
  1862. box-sizing:border-box;
  1863. width:100%;
  1864. }
  1865. #u41181_img {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:5px;
  1871. height:5px;
  1872. }
  1873. #u41181_text {
  1874. border-width:0px;
  1875. word-wrap:break-word;
  1876. text-transform:none;
  1877. visibility:hidden;
  1878. }
  1879. #u41182 {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:330px;
  1883. top:84px;
  1884. width:7px;
  1885. height:7px;
  1886. display:flex;
  1887. transition:none;
  1888. }
  1889. #u41182 .text {
  1890. position:absolute;
  1891. align-self:center;
  1892. padding:2px 2px 2px 2px;
  1893. box-sizing:border-box;
  1894. width:100%;
  1895. }
  1896. #u41182_img {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:0px;
  1900. top:0px;
  1901. width:7px;
  1902. height:7px;
  1903. }
  1904. #u41182_text {
  1905. border-width:0px;
  1906. word-wrap:break-word;
  1907. text-transform:none;
  1908. visibility:hidden;
  1909. }
  1910. #u41183 {
  1911. border-width:0px;
  1912. position:absolute;
  1913. left:347px;
  1914. top:87px;
  1915. width:18px;
  1916. height:1px;
  1917. display:flex;
  1918. -webkit-transform:rotate(90deg);
  1919. -moz-transform:rotate(90deg);
  1920. -ms-transform:rotate(90deg);
  1921. transform:rotate(90deg);
  1922. transition:none;
  1923. }
  1924. #u41183 .text {
  1925. position:absolute;
  1926. align-self:center;
  1927. padding:2px 2px 2px 2px;
  1928. box-sizing:border-box;
  1929. width:100%;
  1930. }
  1931. #u41183_img {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:0px;
  1935. top:0px;
  1936. width:19px;
  1937. height:2px;
  1938. }
  1939. #u41183_text {
  1940. border-width:0px;
  1941. word-wrap:break-word;
  1942. text-transform:none;
  1943. visibility:hidden;
  1944. }
  1945. #u41184 {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:29px;
  1949. top:24px;
  1950. width:375px;
  1951. height:44px;
  1952. display:flex;
  1953. transition:none;
  1954. }
  1955. #u41184 .text {
  1956. position:absolute;
  1957. align-self:center;
  1958. padding:2px 2px 2px 2px;
  1959. box-sizing:border-box;
  1960. width:100%;
  1961. }
  1962. #u41184_img {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:0px;
  1966. top:0px;
  1967. width:375px;
  1968. height:44px;
  1969. }
  1970. #u41184_text {
  1971. border-width:0px;
  1972. word-wrap:break-word;
  1973. text-transform:none;
  1974. visibility:hidden;
  1975. }
  1976. #u41185_div {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:0px;
  1980. top:0px;
  1981. width:375px;
  1982. height:50px;
  1983. background:inherit;
  1984. background-color:rgba(255, 255, 255, 1);
  1985. box-sizing:border-box;
  1986. border-width:1px;
  1987. border-style:solid;
  1988. border-color:rgba(242, 242, 242, 1);
  1989. border-radius:26px;
  1990. border-top-left-radius:0px;
  1991. border-top-right-radius:0px;
  1992. filter:drop-shadow(none);
  1993. transition:none;
  1994. }
  1995. #u41185 {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:29px;
  1999. top:788px;
  2000. width:375px;
  2001. height:50px;
  2002. display:flex;
  2003. transition:none;
  2004. transform-origin:50% 50%;
  2005. }
  2006. #u41185 .text {
  2007. position:absolute;
  2008. align-self:center;
  2009. padding:2px 2px 2px 2px;
  2010. box-sizing:border-box;
  2011. width:100%;
  2012. }
  2013. #u41185_text {
  2014. border-width:0px;
  2015. word-wrap:break-word;
  2016. text-transform:none;
  2017. visibility:hidden;
  2018. }
  2019. #u41186 {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:0px;
  2023. top:0px;
  2024. width:0px;
  2025. height:0px;
  2026. }
  2027. #u41187 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:69px;
  2031. top:792px;
  2032. width:24px;
  2033. height:24px;
  2034. display:flex;
  2035. transition:none;
  2036. font-size:8px;
  2037. }
  2038. #u41187 .text {
  2039. position:absolute;
  2040. align-self:center;
  2041. padding:2px 2px 2px 2px;
  2042. box-sizing:border-box;
  2043. width:100%;
  2044. }
  2045. #u41187_img {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:0px;
  2049. top:0px;
  2050. width:24px;
  2051. height:24px;
  2052. }
  2053. #u41187_text {
  2054. border-width:0px;
  2055. word-wrap:break-word;
  2056. text-transform:none;
  2057. }
  2058. #u41188_div {
  2059. border-width:0px;
  2060. position:absolute;
  2061. left:0px;
  2062. top:0px;
  2063. width:25px;
  2064. height:17px;
  2065. background:inherit;
  2066. background-color:rgba(255, 255, 255, 0);
  2067. border-radius:0px;
  2068. filter:drop-shadow(none);
  2069. transition:none;
  2070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2071. font-weight:400;
  2072. font-style:normal;
  2073. font-size:12px;
  2074. }
  2075. #u41188 {
  2076. border-width:0px;
  2077. position:absolute;
  2078. left:69px;
  2079. top:817px;
  2080. width:25px;
  2081. height:17px;
  2082. display:flex;
  2083. transition:none;
  2084. transform-origin:50% 50%;
  2085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2086. font-weight:400;
  2087. font-style:normal;
  2088. font-size:12px;
  2089. }
  2090. #u41188 .text {
  2091. position:absolute;
  2092. align-self:flex-start;
  2093. padding:0px 0px 0px 0px;
  2094. box-sizing:border-box;
  2095. width:100%;
  2096. }
  2097. #u41188_text {
  2098. border-width:0px;
  2099. white-space:nowrap;
  2100. text-transform:none;
  2101. }
  2102. #u41189 {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:0px;
  2106. top:0px;
  2107. width:0px;
  2108. height:0px;
  2109. }
  2110. #u41190 {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:339px;
  2114. top:794px;
  2115. width:24px;
  2116. height:24px;
  2117. display:flex;
  2118. transition:none;
  2119. font-size:8px;
  2120. }
  2121. #u41190 .text {
  2122. position:absolute;
  2123. align-self:center;
  2124. padding:2px 2px 2px 2px;
  2125. box-sizing:border-box;
  2126. width:100%;
  2127. }
  2128. #u41190_img {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:0px;
  2132. top:0px;
  2133. width:24px;
  2134. height:24px;
  2135. }
  2136. #u41190_text {
  2137. border-width:0px;
  2138. word-wrap:break-word;
  2139. text-transform:none;
  2140. }
  2141. #u41191_div {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:25px;
  2147. height:17px;
  2148. background:inherit;
  2149. background-color:rgba(255, 255, 255, 0);
  2150. border-radius:0px;
  2151. filter:drop-shadow(none);
  2152. transition:none;
  2153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2154. font-weight:400;
  2155. font-style:normal;
  2156. font-size:12px;
  2157. }
  2158. #u41191 {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:339px;
  2162. top:819px;
  2163. width:25px;
  2164. height:17px;
  2165. display:flex;
  2166. transition:none;
  2167. transform-origin:50% 50%;
  2168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2169. font-weight:400;
  2170. font-style:normal;
  2171. font-size:12px;
  2172. }
  2173. #u41191 .text {
  2174. position:absolute;
  2175. align-self:flex-start;
  2176. padding:0px 0px 0px 0px;
  2177. box-sizing:border-box;
  2178. width:100%;
  2179. }
  2180. #u41191_text {
  2181. border-width:0px;
  2182. white-space:nowrap;
  2183. text-transform:none;
  2184. }
  2185. #u41192_div {
  2186. border-width:0px;
  2187. position:absolute;
  2188. left:0px;
  2189. top:0px;
  2190. width:375px;
  2191. height:681px;
  2192. background:inherit;
  2193. background-color:rgba(242, 242, 242, 0.4627450980392157);
  2194. border-radius:0px;
  2195. filter:drop-shadow(none);
  2196. transition:none;
  2197. }
  2198. #u41192 {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:29px;
  2202. top:107px;
  2203. width:375px;
  2204. height:681px;
  2205. display:flex;
  2206. transition:none;
  2207. transform-origin:50% 50%;
  2208. }
  2209. #u41192 .text {
  2210. position:absolute;
  2211. align-self:center;
  2212. padding:2px 2px 2px 2px;
  2213. box-sizing:border-box;
  2214. width:100%;
  2215. }
  2216. #u41192_text {
  2217. border-width:0px;
  2218. word-wrap:break-word;
  2219. text-transform:none;
  2220. visibility:hidden;
  2221. }
  2222. #u41193 {
  2223. border-width:0px;
  2224. position:absolute;
  2225. left:0px;
  2226. top:0px;
  2227. width:0px;
  2228. height:0px;
  2229. }
  2230. #u41194 {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:251px;
  2234. top:792px;
  2235. width:24px;
  2236. height:24px;
  2237. display:flex;
  2238. transition:none;
  2239. font-size:8px;
  2240. }
  2241. #u41194 .text {
  2242. position:absolute;
  2243. align-self:center;
  2244. padding:2px 2px 2px 2px;
  2245. box-sizing:border-box;
  2246. width:100%;
  2247. }
  2248. #u41194_img {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:0px;
  2252. top:0px;
  2253. width:24px;
  2254. height:24px;
  2255. }
  2256. #u41194_text {
  2257. border-width:0px;
  2258. word-wrap:break-word;
  2259. text-transform:none;
  2260. }
  2261. #u41195_div {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:0px;
  2265. top:0px;
  2266. width:37px;
  2267. height:17px;
  2268. background:inherit;
  2269. background-color:rgba(255, 255, 255, 0);
  2270. border-radius:0px;
  2271. filter:drop-shadow(none);
  2272. transition:none;
  2273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2274. font-weight:400;
  2275. font-style:normal;
  2276. font-size:12px;
  2277. }
  2278. #u41195 {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:245px;
  2282. top:817px;
  2283. width:37px;
  2284. height:17px;
  2285. display:flex;
  2286. transition:none;
  2287. transform-origin:50% 50%;
  2288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2289. font-weight:400;
  2290. font-style:normal;
  2291. font-size:12px;
  2292. }
  2293. #u41195 .text {
  2294. position:absolute;
  2295. align-self:flex-start;
  2296. padding:0px 0px 0px 0px;
  2297. box-sizing:border-box;
  2298. width:100%;
  2299. }
  2300. #u41195_text {
  2301. border-width:0px;
  2302. white-space:nowrap;
  2303. text-transform:none;
  2304. }
  2305. #u41196 {
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:0px;
  2309. top:0px;
  2310. width:0px;
  2311. height:0px;
  2312. }
  2313. #u41197 {
  2314. border-width:0px;
  2315. position:absolute;
  2316. left:157px;
  2317. top:792px;
  2318. width:24px;
  2319. height:24px;
  2320. display:flex;
  2321. transition:none;
  2322. font-size:8px;
  2323. }
  2324. #u41197 .text {
  2325. position:absolute;
  2326. align-self:center;
  2327. padding:2px 2px 2px 2px;
  2328. box-sizing:border-box;
  2329. width:100%;
  2330. }
  2331. #u41197_img {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:0px;
  2335. top:0px;
  2336. width:24px;
  2337. height:24px;
  2338. }
  2339. #u41197_text {
  2340. border-width:0px;
  2341. word-wrap:break-word;
  2342. text-transform:none;
  2343. }
  2344. #u41198_div {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:0px;
  2348. top:0px;
  2349. width:37px;
  2350. height:17px;
  2351. background:inherit;
  2352. background-color:rgba(255, 255, 255, 0);
  2353. border-radius:0px;
  2354. filter:drop-shadow(none);
  2355. transition:none;
  2356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2357. font-weight:400;
  2358. font-style:normal;
  2359. font-size:12px;
  2360. }
  2361. #u41198 {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:151px;
  2365. top:817px;
  2366. width:37px;
  2367. height:17px;
  2368. display:flex;
  2369. transition:none;
  2370. transform-origin:50% 50%;
  2371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2372. font-weight:400;
  2373. font-style:normal;
  2374. font-size:12px;
  2375. }
  2376. #u41198 .text {
  2377. position:absolute;
  2378. align-self:flex-start;
  2379. padding:0px 0px 0px 0px;
  2380. box-sizing:border-box;
  2381. width:100%;
  2382. }
  2383. #u41198_text {
  2384. border-width:0px;
  2385. white-space:nowrap;
  2386. text-transform:none;
  2387. }
  2388. #u41199_div {
  2389. border-width:0px;
  2390. position:absolute;
  2391. left:0px;
  2392. top:0px;
  2393. width:375px;
  2394. height:772px;
  2395. background:inherit;
  2396. background-color:rgba(24, 144, 255, 1);
  2397. border-top:0px;
  2398. border-radius:28px;
  2399. border-top-left-radius:0px;
  2400. border-top-right-radius:0px;
  2401. filter:drop-shadow(none);
  2402. transition:none;
  2403. }
  2404. #u41199 {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:29px;
  2408. top:251px;
  2409. width:375px;
  2410. height:772px;
  2411. display:flex;
  2412. transition:none;
  2413. transform-origin:50% 50%;
  2414. }
  2415. #u41199 .text {
  2416. position:absolute;
  2417. align-self:center;
  2418. padding:2px 2px 2px 2px;
  2419. box-sizing:border-box;
  2420. width:100%;
  2421. }
  2422. #u41199_text {
  2423. border-width:0px;
  2424. word-wrap:break-word;
  2425. text-transform:none;
  2426. visibility:hidden;
  2427. }
  2428. #u41200_div {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:0px;
  2432. top:0px;
  2433. width:12px;
  2434. height:12px;
  2435. background:inherit;
  2436. background-color:rgba(255, 255, 255, 0);
  2437. box-sizing:border-box;
  2438. border-width:2px;
  2439. border-style:solid;
  2440. border-color:rgba(255, 255, 255, 1);
  2441. border-right:0px;
  2442. border-bottom:0px;
  2443. border-radius:0px;
  2444. border-top-right-radius:0px;
  2445. border-bottom-left-radius:0px;
  2446. filter:drop-shadow(none);
  2447. transition:none;
  2448. }
  2449. #u41200 {
  2450. border-width:0px;
  2451. position:absolute;
  2452. left:39px;
  2453. top:264px;
  2454. width:12px;
  2455. height:12px;
  2456. display:flex;
  2457. -webkit-transform:rotate(315deg);
  2458. -moz-transform:rotate(315deg);
  2459. -ms-transform:rotate(315deg);
  2460. transform:rotate(315deg);
  2461. transition:none;
  2462. transform-origin:50% 50%;
  2463. }
  2464. #u41200 .text {
  2465. position:absolute;
  2466. align-self:center;
  2467. padding:2px 2px 2px 2px;
  2468. box-sizing:border-box;
  2469. width:100%;
  2470. }
  2471. #u41200_text {
  2472. border-width:0px;
  2473. word-wrap:break-word;
  2474. text-transform:none;
  2475. visibility:hidden;
  2476. }
  2477. #u41201 {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:0px;
  2481. top:0px;
  2482. width:0px;
  2483. height:0px;
  2484. }
  2485. #u41202_div {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:0px;
  2489. top:0px;
  2490. width:88px;
  2491. height:32px;
  2492. background:inherit;
  2493. background-color:rgba(255, 255, 255, 1);
  2494. box-sizing:border-box;
  2495. border-width:1px;
  2496. border-style:solid;
  2497. border-color:rgba(242, 242, 242, 1);
  2498. border-radius:33px;
  2499. filter:drop-shadow(none);
  2500. transition:none;
  2501. }
  2502. #u41202 {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:309px;
  2506. top:254px;
  2507. width:88px;
  2508. height:32px;
  2509. display:flex;
  2510. transition:none;
  2511. transform-origin:50% 50%;
  2512. }
  2513. #u41202 .text {
  2514. position:absolute;
  2515. align-self:center;
  2516. padding:2px 2px 2px 2px;
  2517. box-sizing:border-box;
  2518. width:100%;
  2519. }
  2520. #u41202_text {
  2521. border-width:0px;
  2522. word-wrap:break-word;
  2523. text-transform:none;
  2524. visibility:hidden;
  2525. }
  2526. #u41203 {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:0px;
  2530. top:0px;
  2531. width:0px;
  2532. height:0px;
  2533. }
  2534. #u41204 {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:372px;
  2538. top:261px;
  2539. width:18px;
  2540. height:18px;
  2541. display:flex;
  2542. transition:none;
  2543. }
  2544. #u41204 .text {
  2545. position:absolute;
  2546. align-self:center;
  2547. padding:2px 2px 2px 2px;
  2548. box-sizing:border-box;
  2549. width:100%;
  2550. }
  2551. #u41204_img {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:0px;
  2555. top:0px;
  2556. width:18px;
  2557. height:18px;
  2558. }
  2559. #u41204_text {
  2560. border-width:0px;
  2561. word-wrap:break-word;
  2562. text-transform:none;
  2563. visibility:hidden;
  2564. }
  2565. #u41205 {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:378px;
  2569. top:267px;
  2570. width:6px;
  2571. height:6px;
  2572. display:flex;
  2573. transition:none;
  2574. }
  2575. #u41205 .text {
  2576. position:absolute;
  2577. align-self:center;
  2578. padding:2px 2px 2px 2px;
  2579. box-sizing:border-box;
  2580. width:100%;
  2581. }
  2582. #u41205_img {
  2583. border-width:0px;
  2584. position:absolute;
  2585. left:0px;
  2586. top:0px;
  2587. width:6px;
  2588. height:6px;
  2589. }
  2590. #u41205_text {
  2591. border-width:0px;
  2592. word-wrap:break-word;
  2593. text-transform:none;
  2594. visibility:hidden;
  2595. }
  2596. #u41206 {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:0px;
  2600. top:0px;
  2601. width:0px;
  2602. height:0px;
  2603. }
  2604. #u41207 {
  2605. border-width:0px;
  2606. position:absolute;
  2607. left:323px;
  2608. top:268px;
  2609. width:5px;
  2610. height:5px;
  2611. display:flex;
  2612. transition:none;
  2613. }
  2614. #u41207 .text {
  2615. position:absolute;
  2616. align-self:center;
  2617. padding:2px 2px 2px 2px;
  2618. box-sizing:border-box;
  2619. width:100%;
  2620. }
  2621. #u41207_img {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:0px;
  2625. top:0px;
  2626. width:5px;
  2627. height:5px;
  2628. }
  2629. #u41207_text {
  2630. border-width:0px;
  2631. word-wrap:break-word;
  2632. text-transform:none;
  2633. visibility:hidden;
  2634. }
  2635. #u41208 {
  2636. border-width:0px;
  2637. position:absolute;
  2638. left:339px;
  2639. top:268px;
  2640. width:5px;
  2641. height:5px;
  2642. display:flex;
  2643. transition:none;
  2644. }
  2645. #u41208 .text {
  2646. position:absolute;
  2647. align-self:center;
  2648. padding:2px 2px 2px 2px;
  2649. box-sizing:border-box;
  2650. width:100%;
  2651. }
  2652. #u41208_img {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:0px;
  2656. top:0px;
  2657. width:5px;
  2658. height:5px;
  2659. }
  2660. #u41208_text {
  2661. border-width:0px;
  2662. word-wrap:break-word;
  2663. text-transform:none;
  2664. visibility:hidden;
  2665. }
  2666. #u41209 {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:330px;
  2670. top:267px;
  2671. width:7px;
  2672. height:7px;
  2673. display:flex;
  2674. transition:none;
  2675. }
  2676. #u41209 .text {
  2677. position:absolute;
  2678. align-self:center;
  2679. padding:2px 2px 2px 2px;
  2680. box-sizing:border-box;
  2681. width:100%;
  2682. }
  2683. #u41209_img {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:0px;
  2687. top:0px;
  2688. width:7px;
  2689. height:7px;
  2690. }
  2691. #u41209_text {
  2692. border-width:0px;
  2693. word-wrap:break-word;
  2694. text-transform:none;
  2695. visibility:hidden;
  2696. }
  2697. #u41210 {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:347px;
  2701. top:270px;
  2702. width:18px;
  2703. height:1px;
  2704. display:flex;
  2705. -webkit-transform:rotate(90deg);
  2706. -moz-transform:rotate(90deg);
  2707. -ms-transform:rotate(90deg);
  2708. transform:rotate(90deg);
  2709. transition:none;
  2710. }
  2711. #u41210 .text {
  2712. position:absolute;
  2713. align-self:center;
  2714. padding:2px 2px 2px 2px;
  2715. box-sizing:border-box;
  2716. width:100%;
  2717. }
  2718. #u41210_img {
  2719. border-width:0px;
  2720. position:absolute;
  2721. left:0px;
  2722. top:0px;
  2723. width:19px;
  2724. height:2px;
  2725. }
  2726. #u41210_text {
  2727. border-width:0px;
  2728. word-wrap:break-word;
  2729. text-transform:none;
  2730. visibility:hidden;
  2731. }
  2732. #u41211_div {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:0px;
  2736. top:0px;
  2737. width:169px;
  2738. height:40px;
  2739. background:inherit;
  2740. background-color:rgba(255, 255, 255, 0);
  2741. border-left:0px;
  2742. border-top:0px;
  2743. border-right:0px;
  2744. border-radius:0px;
  2745. border-bottom-right-radius:0px;
  2746. border-bottom-left-radius:0px;
  2747. filter:drop-shadow(none);
  2748. transition:none;
  2749. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2750. font-weight:500;
  2751. font-style:normal;
  2752. font-size:28px;
  2753. color:#FFFFFF;
  2754. text-align:right;
  2755. }
  2756. #u41211 {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:132px;
  2760. top:494px;
  2761. width:169px;
  2762. height:40px;
  2763. display:flex;
  2764. transition:none;
  2765. transform-origin:50% 50%;
  2766. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2767. font-weight:500;
  2768. font-style:normal;
  2769. font-size:28px;
  2770. color:#FFFFFF;
  2771. text-align:right;
  2772. }
  2773. #u41211 .text {
  2774. position:absolute;
  2775. align-self:center;
  2776. padding:0px 0px 0px 0px;
  2777. box-sizing:border-box;
  2778. width:100%;
  2779. }
  2780. #u41211_text {
  2781. border-width:0px;
  2782. white-space:nowrap;
  2783. text-transform:none;
  2784. }
  2785. #u41212_div {
  2786. border-width:0px;
  2787. position:absolute;
  2788. left:0px;
  2789. top:0px;
  2790. width:360px;
  2791. height:410px;
  2792. background:inherit;
  2793. background-color:rgba(255, 255, 255, 1);
  2794. border-bottom:0px;
  2795. border-radius:18px;
  2796. border-bottom-right-radius:0px;
  2797. border-bottom-left-radius:0px;
  2798. filter:drop-shadow(none);
  2799. transition:none;
  2800. }
  2801. #u41212 {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:37px;
  2805. top:553px;
  2806. width:360px;
  2807. height:410px;
  2808. display:flex;
  2809. transition:none;
  2810. transform-origin:50% 50%;
  2811. }
  2812. #u41212 .text {
  2813. position:absolute;
  2814. align-self:center;
  2815. padding:2px 2px 2px 2px;
  2816. box-sizing:border-box;
  2817. width:100%;
  2818. }
  2819. #u41212_text {
  2820. border-width:0px;
  2821. word-wrap:break-word;
  2822. text-transform:none;
  2823. visibility:hidden;
  2824. }
  2825. #u41213_div {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:0px;
  2829. top:0px;
  2830. width:73px;
  2831. height:25px;
  2832. background:inherit;
  2833. background-color:rgba(255, 255, 255, 0);
  2834. border-left:0px;
  2835. border-top:0px;
  2836. border-right:0px;
  2837. border-radius:0px;
  2838. border-bottom-right-radius:0px;
  2839. border-bottom-left-radius:0px;
  2840. filter:drop-shadow(none);
  2841. transition:none;
  2842. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2843. font-weight:500;
  2844. font-style:normal;
  2845. font-size:18px;
  2846. color:#5C93FF;
  2847. text-align:center;
  2848. }
  2849. #u41213 {
  2850. border-width:0px;
  2851. position:absolute;
  2852. left:180px;
  2853. top:586px;
  2854. width:73px;
  2855. height:25px;
  2856. display:flex;
  2857. transition:none;
  2858. transform-origin:50% 50%;
  2859. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2860. font-weight:500;
  2861. font-style:normal;
  2862. font-size:18px;
  2863. color:#5C93FF;
  2864. text-align:center;
  2865. }
  2866. #u41213 .text {
  2867. position:absolute;
  2868. align-self:center;
  2869. padding:0px 0px 0px 0px;
  2870. box-sizing:border-box;
  2871. width:100%;
  2872. }
  2873. #u41213_text {
  2874. border-width:0px;
  2875. white-space:nowrap;
  2876. text-transform:none;
  2877. }
  2878. #u41214 {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:57px;
  2882. top:646px;
  2883. width:30px;
  2884. height:30px;
  2885. display:flex;
  2886. transition:none;
  2887. color:#FFFFFF;
  2888. }
  2889. #u41214 .text {
  2890. position:absolute;
  2891. align-self:center;
  2892. padding:2px 2px 2px 2px;
  2893. box-sizing:border-box;
  2894. width:100%;
  2895. }
  2896. #u41214_img {
  2897. border-width:0px;
  2898. position:absolute;
  2899. left:0px;
  2900. top:0px;
  2901. width:30px;
  2902. height:30px;
  2903. }
  2904. #u41214_text {
  2905. border-width:0px;
  2906. word-wrap:break-word;
  2907. text-transform:none;
  2908. }
  2909. #u41215_div {
  2910. border-width:0px;
  2911. position:absolute;
  2912. left:0px;
  2913. top:0px;
  2914. width:73px;
  2915. height:25px;
  2916. background:inherit;
  2917. background-color:rgba(255, 255, 255, 0);
  2918. border-left:0px;
  2919. border-top:0px;
  2920. border-right:0px;
  2921. border-radius:0px;
  2922. border-bottom-right-radius:0px;
  2923. border-bottom-left-radius:0px;
  2924. filter:drop-shadow(none);
  2925. transition:none;
  2926. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2927. font-weight:500;
  2928. font-style:normal;
  2929. font-size:18px;
  2930. color:#5C93FF;
  2931. }
  2932. #u41215 {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:95px;
  2936. top:646px;
  2937. width:73px;
  2938. height:25px;
  2939. display:flex;
  2940. transition:none;
  2941. transform-origin:50% 50%;
  2942. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2943. font-weight:500;
  2944. font-style:normal;
  2945. font-size:18px;
  2946. color:#5C93FF;
  2947. }
  2948. #u41215 .text {
  2949. position:absolute;
  2950. align-self:center;
  2951. padding:0px 0px 0px 0px;
  2952. box-sizing:border-box;
  2953. width:100%;
  2954. }
  2955. #u41215_text {
  2956. border-width:0px;
  2957. white-space:nowrap;
  2958. text-transform:none;
  2959. }
  2960. #u41216_div {
  2961. border-width:0px;
  2962. position:absolute;
  2963. left:0px;
  2964. top:0px;
  2965. width:169px;
  2966. height:30px;
  2967. background:inherit;
  2968. background-color:rgba(255, 255, 255, 0);
  2969. border-left:0px;
  2970. border-top:0px;
  2971. border-right:0px;
  2972. border-radius:0px;
  2973. border-bottom-right-radius:0px;
  2974. border-bottom-left-radius:0px;
  2975. filter:drop-shadow(none);
  2976. transition:none;
  2977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2978. font-weight:400;
  2979. font-style:normal;
  2980. font-size:12px;
  2981. line-height:30px;
  2982. }
  2983. #u41216 {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:95px;
  2987. top:671px;
  2988. width:169px;
  2989. height:30px;
  2990. display:flex;
  2991. transition:none;
  2992. transform-origin:50% 50%;
  2993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2994. font-weight:400;
  2995. font-style:normal;
  2996. font-size:12px;
  2997. line-height:30px;
  2998. }
  2999. #u41216 .text {
  3000. position:absolute;
  3001. align-self:flex-start;
  3002. padding:0px 0px 0px 0px;
  3003. box-sizing:border-box;
  3004. width:100%;
  3005. }
  3006. #u41216_text {
  3007. border-width:0px;
  3008. white-space:nowrap;
  3009. text-transform:none;
  3010. }
  3011. #u41217 {
  3012. border-width:0px;
  3013. position:absolute;
  3014. left:57px;
  3015. top:716px;
  3016. width:30px;
  3017. height:30px;
  3018. display:flex;
  3019. transition:none;
  3020. color:#FFFFFF;
  3021. }
  3022. #u41217 .text {
  3023. position:absolute;
  3024. align-self:center;
  3025. padding:2px 2px 2px 2px;
  3026. box-sizing:border-box;
  3027. width:100%;
  3028. }
  3029. #u41217_img {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:0px;
  3033. top:0px;
  3034. width:30px;
  3035. height:30px;
  3036. }
  3037. #u41217_text {
  3038. border-width:0px;
  3039. word-wrap:break-word;
  3040. text-transform:none;
  3041. }
  3042. #u41218_div {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:0px;
  3046. top:0px;
  3047. width:109px;
  3048. height:25px;
  3049. background:inherit;
  3050. background-color:rgba(255, 255, 255, 0);
  3051. border-left:0px;
  3052. border-top:0px;
  3053. border-right:0px;
  3054. border-radius:0px;
  3055. border-bottom-right-radius:0px;
  3056. border-bottom-left-radius:0px;
  3057. filter:drop-shadow(none);
  3058. transition:none;
  3059. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3060. font-weight:500;
  3061. font-style:normal;
  3062. font-size:18px;
  3063. color:#5C93FF;
  3064. }
  3065. #u41218 {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:95px;
  3069. top:718px;
  3070. width:109px;
  3071. height:25px;
  3072. display:flex;
  3073. transition:none;
  3074. transform-origin:50% 50%;
  3075. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3076. font-weight:500;
  3077. font-style:normal;
  3078. font-size:18px;
  3079. color:#5C93FF;
  3080. }
  3081. #u41218 .text {
  3082. position:absolute;
  3083. align-self:center;
  3084. padding:0px 0px 0px 0px;
  3085. box-sizing:border-box;
  3086. width:100%;
  3087. }
  3088. #u41218_text {
  3089. border-width:0px;
  3090. white-space:nowrap;
  3091. text-transform:none;
  3092. }
  3093. #u41219_div {
  3094. border-width:0px;
  3095. position:absolute;
  3096. left:0px;
  3097. top:0px;
  3098. width:217px;
  3099. height:30px;
  3100. background:inherit;
  3101. background-color:rgba(255, 255, 255, 0);
  3102. border-left:0px;
  3103. border-top:0px;
  3104. border-right:0px;
  3105. border-radius:0px;
  3106. border-bottom-right-radius:0px;
  3107. border-bottom-left-radius:0px;
  3108. filter:drop-shadow(none);
  3109. transition:none;
  3110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3111. font-weight:400;
  3112. font-style:normal;
  3113. font-size:12px;
  3114. line-height:30px;
  3115. }
  3116. #u41219 {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:95px;
  3120. top:743px;
  3121. width:217px;
  3122. height:30px;
  3123. display:flex;
  3124. transition:none;
  3125. transform-origin:50% 50%;
  3126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3127. font-weight:400;
  3128. font-style:normal;
  3129. font-size:12px;
  3130. line-height:30px;
  3131. }
  3132. #u41219 .text {
  3133. position:absolute;
  3134. align-self:flex-start;
  3135. padding:0px 0px 0px 0px;
  3136. box-sizing:border-box;
  3137. width:100%;
  3138. }
  3139. #u41219_text {
  3140. border-width:0px;
  3141. white-space:nowrap;
  3142. text-transform:none;
  3143. }
  3144. #u41220 {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:57px;
  3148. top:786px;
  3149. width:30px;
  3150. height:30px;
  3151. display:flex;
  3152. transition:none;
  3153. color:#FFFFFF;
  3154. }
  3155. #u41220 .text {
  3156. position:absolute;
  3157. align-self:center;
  3158. padding:2px 2px 2px 2px;
  3159. box-sizing:border-box;
  3160. width:100%;
  3161. }
  3162. #u41220_img {
  3163. border-width:0px;
  3164. position:absolute;
  3165. left:0px;
  3166. top:0px;
  3167. width:30px;
  3168. height:30px;
  3169. }
  3170. #u41220_text {
  3171. border-width:0px;
  3172. word-wrap:break-word;
  3173. text-transform:none;
  3174. }
  3175. #u41221_div {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:0px;
  3179. top:0px;
  3180. width:73px;
  3181. height:25px;
  3182. background:inherit;
  3183. background-color:rgba(255, 255, 255, 0);
  3184. border-left:0px;
  3185. border-top:0px;
  3186. border-right:0px;
  3187. border-radius:0px;
  3188. border-bottom-right-radius:0px;
  3189. border-bottom-left-radius:0px;
  3190. filter:drop-shadow(none);
  3191. transition:none;
  3192. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3193. font-weight:500;
  3194. font-style:normal;
  3195. font-size:18px;
  3196. color:#5C93FF;
  3197. }
  3198. #u41221 {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:95px;
  3202. top:788px;
  3203. width:73px;
  3204. height:25px;
  3205. display:flex;
  3206. transition:none;
  3207. transform-origin:50% 50%;
  3208. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3209. font-weight:500;
  3210. font-style:normal;
  3211. font-size:18px;
  3212. color:#5C93FF;
  3213. }
  3214. #u41221 .text {
  3215. position:absolute;
  3216. align-self:center;
  3217. padding:0px 0px 0px 0px;
  3218. box-sizing:border-box;
  3219. width:100%;
  3220. }
  3221. #u41221_text {
  3222. border-width:0px;
  3223. white-space:nowrap;
  3224. text-transform:none;
  3225. }
  3226. #u41222_div {
  3227. border-width:0px;
  3228. position:absolute;
  3229. left:0px;
  3230. top:0px;
  3231. width:286px;
  3232. height:34px;
  3233. background:inherit;
  3234. background-color:rgba(255, 255, 255, 0);
  3235. border-left:0px;
  3236. border-top:0px;
  3237. border-right:0px;
  3238. border-radius:0px;
  3239. border-bottom-right-radius:0px;
  3240. border-bottom-left-radius:0px;
  3241. filter:drop-shadow(none);
  3242. transition:none;
  3243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3244. font-weight:400;
  3245. font-style:normal;
  3246. font-size:12px;
  3247. }
  3248. #u41222 {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:95px;
  3252. top:818px;
  3253. width:286px;
  3254. height:34px;
  3255. display:flex;
  3256. transition:none;
  3257. transform-origin:50% 50%;
  3258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3259. font-weight:400;
  3260. font-style:normal;
  3261. font-size:12px;
  3262. }
  3263. #u41222 .text {
  3264. position:absolute;
  3265. align-self:flex-start;
  3266. padding:0px 0px 0px 0px;
  3267. box-sizing:border-box;
  3268. width:100%;
  3269. }
  3270. #u41222_text {
  3271. border-width:0px;
  3272. word-wrap:break-word;
  3273. text-transform:none;
  3274. }
  3275. #u41223 {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:66px;
  3279. top:304px;
  3280. width:300px;
  3281. height:170px;
  3282. display:flex;
  3283. transition:none;
  3284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3285. font-weight:400;
  3286. font-style:normal;
  3287. font-size:18px;
  3288. }
  3289. #u41223 .text {
  3290. position:absolute;
  3291. align-self:center;
  3292. padding:2px 2px 2px 2px;
  3293. box-sizing:border-box;
  3294. width:100%;
  3295. }
  3296. #u41223_img {
  3297. border-width:0px;
  3298. position:absolute;
  3299. left:0px;
  3300. top:0px;
  3301. width:300px;
  3302. height:170px;
  3303. }
  3304. #u41223_text {
  3305. border-width:0px;
  3306. word-wrap:break-word;
  3307. text-transform:none;
  3308. }
  3309. #u41224 {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:0px;
  3313. top:0px;
  3314. width:0px;
  3315. height:0px;
  3316. }
  3317. #u41225_div {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:0px;
  3321. top:0px;
  3322. width:375px;
  3323. height:144px;
  3324. background:inherit;
  3325. background-color:rgba(255, 255, 255, 1);
  3326. border-top:0px;
  3327. border-radius:28px;
  3328. border-top-left-radius:0px;
  3329. border-top-right-radius:0px;
  3330. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  3331. transition:none;
  3332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3333. font-weight:400;
  3334. font-style:normal;
  3335. font-size:14px;
  3336. color:#FFFFFF;
  3337. }
  3338. #u41225 {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:29px;
  3342. top:879px;
  3343. width:375px;
  3344. height:144px;
  3345. display:flex;
  3346. transition:none;
  3347. transform-origin:50% 50%;
  3348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3349. font-weight:400;
  3350. font-style:normal;
  3351. font-size:14px;
  3352. color:#FFFFFF;
  3353. }
  3354. #u41225 .text {
  3355. position:absolute;
  3356. align-self:center;
  3357. padding:2px 2px 2px 2px;
  3358. box-sizing:border-box;
  3359. width:100%;
  3360. }
  3361. #u41225_text {
  3362. border-width:0px;
  3363. word-wrap:break-word;
  3364. text-transform:none;
  3365. visibility:hidden;
  3366. }
  3367. #u41226_div {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:0px;
  3371. top:0px;
  3372. width:324px;
  3373. height:40px;
  3374. background:inherit;
  3375. background-color:rgba(0, 137, 254, 1);
  3376. border-radius:63px;
  3377. filter:drop-shadow(none);
  3378. transition:none;
  3379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3380. font-weight:400;
  3381. font-style:normal;
  3382. font-size:14px;
  3383. color:#FFFFFF;
  3384. }
  3385. #u41226 {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:57px;
  3389. top:888px;
  3390. width:324px;
  3391. height:40px;
  3392. display:flex;
  3393. transition:none;
  3394. transform-origin:50% 50%;
  3395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3396. font-weight:400;
  3397. font-style:normal;
  3398. font-size:14px;
  3399. color:#FFFFFF;
  3400. }
  3401. #u41226 .text {
  3402. position:absolute;
  3403. align-self:center;
  3404. padding:2px 2px 2px 2px;
  3405. box-sizing:border-box;
  3406. width:100%;
  3407. }
  3408. #u41226_text {
  3409. border-width:0px;
  3410. word-wrap:break-word;
  3411. text-transform:none;
  3412. }
  3413. #u41227_div {
  3414. border-width:0px;
  3415. position:absolute;
  3416. left:0px;
  3417. top:0px;
  3418. width:133px;
  3419. height:17px;
  3420. background:inherit;
  3421. background-color:rgba(255, 255, 255, 0);
  3422. border-left:0px;
  3423. border-top:0px;
  3424. border-right:0px;
  3425. border-radius:0px;
  3426. border-bottom-right-radius:0px;
  3427. border-bottom-left-radius:0px;
  3428. filter:drop-shadow(none);
  3429. transition:none;
  3430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3431. font-weight:400;
  3432. font-style:normal;
  3433. font-size:12px;
  3434. color:#AAAAAA;
  3435. }
  3436. #u41227 {
  3437. border-width:0px;
  3438. position:absolute;
  3439. left:150px;
  3440. top:944px;
  3441. width:133px;
  3442. height:17px;
  3443. display:flex;
  3444. transition:none;
  3445. transform-origin:50% 50%;
  3446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3447. font-weight:400;
  3448. font-style:normal;
  3449. font-size:12px;
  3450. color:#AAAAAA;
  3451. }
  3452. #u41227 .text {
  3453. position:absolute;
  3454. align-self:flex-start;
  3455. padding:0px 0px 0px 0px;
  3456. box-sizing:border-box;
  3457. width:100%;
  3458. }
  3459. #u41227_text {
  3460. border-width:0px;
  3461. white-space:nowrap;
  3462. text-transform:none;
  3463. }
  3464. #u41228_div {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:0px;
  3468. top:0px;
  3469. width:160px;
  3470. height:40px;
  3471. background:inherit;
  3472. background-color:rgba(254, 248, 231, 1);
  3473. border-radius:63px;
  3474. filter:drop-shadow(none);
  3475. transition:none;
  3476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3477. font-weight:400;
  3478. font-style:normal;
  3479. font-size:14px;
  3480. color:#F59A23;
  3481. }
  3482. #u41228 {
  3483. border-width:0px;
  3484. position:absolute;
  3485. left:61px;
  3486. top:972px;
  3487. width:160px;
  3488. height:40px;
  3489. display:flex;
  3490. transition:none;
  3491. transform-origin:50% 50%;
  3492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3493. font-weight:400;
  3494. font-style:normal;
  3495. font-size:14px;
  3496. color:#F59A23;
  3497. }
  3498. #u41228 .text {
  3499. position:absolute;
  3500. align-self:center;
  3501. padding:2px 2px 2px 2px;
  3502. box-sizing:border-box;
  3503. width:100%;
  3504. }
  3505. #u41228_text {
  3506. border-width:0px;
  3507. word-wrap:break-word;
  3508. text-transform:none;
  3509. }
  3510. #u41229_div {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:0px;
  3514. top:0px;
  3515. width:160px;
  3516. height:40px;
  3517. background:inherit;
  3518. background-color:rgba(254, 248, 231, 1);
  3519. border-radius:63px;
  3520. filter:drop-shadow(none);
  3521. transition:none;
  3522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3523. font-weight:400;
  3524. font-style:normal;
  3525. font-size:14px;
  3526. color:#F59A23;
  3527. }
  3528. #u41229 {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:231px;
  3532. top:972px;
  3533. width:160px;
  3534. height:40px;
  3535. display:flex;
  3536. transition:none;
  3537. transform-origin:50% 50%;
  3538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3539. font-weight:400;
  3540. font-style:normal;
  3541. font-size:14px;
  3542. color:#F59A23;
  3543. }
  3544. #u41229 .text {
  3545. position:absolute;
  3546. align-self:center;
  3547. padding:2px 2px 2px 2px;
  3548. box-sizing:border-box;
  3549. width:100%;
  3550. }
  3551. #u41229_text {
  3552. border-width:0px;
  3553. word-wrap:break-word;
  3554. text-transform:none;
  3555. }
  3556. #u41230_div {
  3557. border-width:0px;
  3558. position:absolute;
  3559. left:0px;
  3560. top:0px;
  3561. width:301px;
  3562. height:20px;
  3563. background:inherit;
  3564. background-color:rgba(255, 255, 255, 0);
  3565. border-left:0px;
  3566. border-top:0px;
  3567. border-right:0px;
  3568. border-radius:0px;
  3569. border-bottom-right-radius:0px;
  3570. border-bottom-left-radius:0px;
  3571. filter:drop-shadow(none);
  3572. transition:none;
  3573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3574. font-weight:400;
  3575. font-style:normal;
  3576. font-size:14px;
  3577. color:#D9001B;
  3578. }
  3579. #u41230 {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:57px;
  3583. top:1062px;
  3584. width:301px;
  3585. height:20px;
  3586. display:flex;
  3587. transition:none;
  3588. transform-origin:50% 50%;
  3589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3590. font-weight:400;
  3591. font-style:normal;
  3592. font-size:14px;
  3593. color:#D9001B;
  3594. }
  3595. #u41230 .text {
  3596. position:absolute;
  3597. align-self:flex-start;
  3598. padding:0px 0px 0px 0px;
  3599. box-sizing:border-box;
  3600. width:100%;
  3601. }
  3602. #u41230_text {
  3603. border-width:0px;
  3604. white-space:nowrap;
  3605. text-transform:none;
  3606. }
  3607. #u41231 {
  3608. border-width:0px;
  3609. position:absolute;
  3610. left:908px;
  3611. top:183px;
  3612. width:433px;
  3613. height:865px;
  3614. }
  3615. #u41232 {
  3616. border-width:0px;
  3617. position:absolute;
  3618. left:0px;
  3619. top:0px;
  3620. width:433px;
  3621. height:865px;
  3622. display:flex;
  3623. transition:none;
  3624. }
  3625. #u41232 .text {
  3626. position:absolute;
  3627. align-self:center;
  3628. padding:2px 2px 2px 2px;
  3629. box-sizing:border-box;
  3630. width:100%;
  3631. }
  3632. #u41232_img {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:0px;
  3636. top:0px;
  3637. width:433px;
  3638. height:865px;
  3639. }
  3640. #u41232_text {
  3641. border-width:0px;
  3642. word-wrap:break-word;
  3643. text-transform:none;
  3644. visibility:hidden;
  3645. }
  3646. #u41233_div {
  3647. border-width:0px;
  3648. position:absolute;
  3649. left:0px;
  3650. top:0px;
  3651. width:375px;
  3652. height:40px;
  3653. background:inherit;
  3654. background-color:rgba(255, 255, 255, 1);
  3655. box-sizing:border-box;
  3656. border-width:1px;
  3657. border-style:solid;
  3658. border-color:rgba(215, 215, 215, 1);
  3659. border-left:0px;
  3660. border-top:0px;
  3661. border-right:0px;
  3662. border-radius:0px;
  3663. border-bottom-right-radius:0px;
  3664. border-bottom-left-radius:0px;
  3665. filter:drop-shadow(none);
  3666. transition:none;
  3667. }
  3668. #u41233 {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:29px;
  3672. top:67px;
  3673. width:375px;
  3674. height:40px;
  3675. display:flex;
  3676. transition:none;
  3677. transform-origin:50% 50%;
  3678. }
  3679. #u41233 .text {
  3680. position:absolute;
  3681. align-self:center;
  3682. padding:2px 2px 2px 2px;
  3683. box-sizing:border-box;
  3684. width:100%;
  3685. }
  3686. #u41233_text {
  3687. border-width:0px;
  3688. word-wrap:break-word;
  3689. text-transform:none;
  3690. visibility:hidden;
  3691. }
  3692. #u41234 {
  3693. border-width:0px;
  3694. position:absolute;
  3695. left:0px;
  3696. top:0px;
  3697. width:0px;
  3698. height:0px;
  3699. }
  3700. #u41235_div {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:0px;
  3704. top:0px;
  3705. width:88px;
  3706. height:32px;
  3707. background:inherit;
  3708. background-color:rgba(255, 255, 255, 1);
  3709. box-sizing:border-box;
  3710. border-width:1px;
  3711. border-style:solid;
  3712. border-color:rgba(242, 242, 242, 1);
  3713. border-radius:33px;
  3714. filter:drop-shadow(none);
  3715. transition:none;
  3716. }
  3717. #u41235 {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:309px;
  3721. top:71px;
  3722. width:88px;
  3723. height:32px;
  3724. display:flex;
  3725. transition:none;
  3726. transform-origin:50% 50%;
  3727. }
  3728. #u41235 .text {
  3729. position:absolute;
  3730. align-self:center;
  3731. padding:2px 2px 2px 2px;
  3732. box-sizing:border-box;
  3733. width:100%;
  3734. }
  3735. #u41235_text {
  3736. border-width:0px;
  3737. word-wrap:break-word;
  3738. text-transform:none;
  3739. visibility:hidden;
  3740. }
  3741. #u41236 {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:0px;
  3745. top:0px;
  3746. width:0px;
  3747. height:0px;
  3748. }
  3749. #u41237 {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:372px;
  3753. top:78px;
  3754. width:18px;
  3755. height:18px;
  3756. display:flex;
  3757. transition:none;
  3758. }
  3759. #u41237 .text {
  3760. position:absolute;
  3761. align-self:center;
  3762. padding:2px 2px 2px 2px;
  3763. box-sizing:border-box;
  3764. width:100%;
  3765. }
  3766. #u41237_img {
  3767. border-width:0px;
  3768. position:absolute;
  3769. left:0px;
  3770. top:0px;
  3771. width:18px;
  3772. height:18px;
  3773. }
  3774. #u41237_text {
  3775. border-width:0px;
  3776. word-wrap:break-word;
  3777. text-transform:none;
  3778. visibility:hidden;
  3779. }
  3780. #u41238 {
  3781. border-width:0px;
  3782. position:absolute;
  3783. left:378px;
  3784. top:84px;
  3785. width:6px;
  3786. height:6px;
  3787. display:flex;
  3788. transition:none;
  3789. }
  3790. #u41238 .text {
  3791. position:absolute;
  3792. align-self:center;
  3793. padding:2px 2px 2px 2px;
  3794. box-sizing:border-box;
  3795. width:100%;
  3796. }
  3797. #u41238_img {
  3798. border-width:0px;
  3799. position:absolute;
  3800. left:0px;
  3801. top:0px;
  3802. width:6px;
  3803. height:6px;
  3804. }
  3805. #u41238_text {
  3806. border-width:0px;
  3807. word-wrap:break-word;
  3808. text-transform:none;
  3809. visibility:hidden;
  3810. }
  3811. #u41239 {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:0px;
  3815. top:0px;
  3816. width:0px;
  3817. height:0px;
  3818. }
  3819. #u41240 {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:323px;
  3823. top:85px;
  3824. width:5px;
  3825. height:5px;
  3826. display:flex;
  3827. transition:none;
  3828. }
  3829. #u41240 .text {
  3830. position:absolute;
  3831. align-self:center;
  3832. padding:2px 2px 2px 2px;
  3833. box-sizing:border-box;
  3834. width:100%;
  3835. }
  3836. #u41240_img {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:0px;
  3840. top:0px;
  3841. width:5px;
  3842. height:5px;
  3843. }
  3844. #u41240_text {
  3845. border-width:0px;
  3846. word-wrap:break-word;
  3847. text-transform:none;
  3848. visibility:hidden;
  3849. }
  3850. #u41241 {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:339px;
  3854. top:85px;
  3855. width:5px;
  3856. height:5px;
  3857. display:flex;
  3858. transition:none;
  3859. }
  3860. #u41241 .text {
  3861. position:absolute;
  3862. align-self:center;
  3863. padding:2px 2px 2px 2px;
  3864. box-sizing:border-box;
  3865. width:100%;
  3866. }
  3867. #u41241_img {
  3868. border-width:0px;
  3869. position:absolute;
  3870. left:0px;
  3871. top:0px;
  3872. width:5px;
  3873. height:5px;
  3874. }
  3875. #u41241_text {
  3876. border-width:0px;
  3877. word-wrap:break-word;
  3878. text-transform:none;
  3879. visibility:hidden;
  3880. }
  3881. #u41242 {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:330px;
  3885. top:84px;
  3886. width:7px;
  3887. height:7px;
  3888. display:flex;
  3889. transition:none;
  3890. }
  3891. #u41242 .text {
  3892. position:absolute;
  3893. align-self:center;
  3894. padding:2px 2px 2px 2px;
  3895. box-sizing:border-box;
  3896. width:100%;
  3897. }
  3898. #u41242_img {
  3899. border-width:0px;
  3900. position:absolute;
  3901. left:0px;
  3902. top:0px;
  3903. width:7px;
  3904. height:7px;
  3905. }
  3906. #u41242_text {
  3907. border-width:0px;
  3908. word-wrap:break-word;
  3909. text-transform:none;
  3910. visibility:hidden;
  3911. }
  3912. #u41243 {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:347px;
  3916. top:87px;
  3917. width:18px;
  3918. height:1px;
  3919. display:flex;
  3920. -webkit-transform:rotate(90deg);
  3921. -moz-transform:rotate(90deg);
  3922. -ms-transform:rotate(90deg);
  3923. transform:rotate(90deg);
  3924. transition:none;
  3925. }
  3926. #u41243 .text {
  3927. position:absolute;
  3928. align-self:center;
  3929. padding:2px 2px 2px 2px;
  3930. box-sizing:border-box;
  3931. width:100%;
  3932. }
  3933. #u41243_img {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:0px;
  3937. top:0px;
  3938. width:19px;
  3939. height:2px;
  3940. }
  3941. #u41243_text {
  3942. border-width:0px;
  3943. word-wrap:break-word;
  3944. text-transform:none;
  3945. visibility:hidden;
  3946. }
  3947. #u41244 {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:29px;
  3951. top:24px;
  3952. width:375px;
  3953. height:44px;
  3954. display:flex;
  3955. transition:none;
  3956. }
  3957. #u41244 .text {
  3958. position:absolute;
  3959. align-self:center;
  3960. padding:2px 2px 2px 2px;
  3961. box-sizing:border-box;
  3962. width:100%;
  3963. }
  3964. #u41244_img {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:0px;
  3968. top:0px;
  3969. width:375px;
  3970. height:44px;
  3971. }
  3972. #u41244_text {
  3973. border-width:0px;
  3974. word-wrap:break-word;
  3975. text-transform:none;
  3976. visibility:hidden;
  3977. }
  3978. #u41245_div {
  3979. border-width:0px;
  3980. position:absolute;
  3981. left:0px;
  3982. top:0px;
  3983. width:375px;
  3984. height:50px;
  3985. background:inherit;
  3986. background-color:rgba(255, 255, 255, 1);
  3987. box-sizing:border-box;
  3988. border-width:1px;
  3989. border-style:solid;
  3990. border-color:rgba(242, 242, 242, 1);
  3991. border-radius:26px;
  3992. border-top-left-radius:0px;
  3993. border-top-right-radius:0px;
  3994. filter:drop-shadow(none);
  3995. transition:none;
  3996. }
  3997. #u41245 {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:29px;
  4001. top:788px;
  4002. width:375px;
  4003. height:50px;
  4004. display:flex;
  4005. transition:none;
  4006. transform-origin:50% 50%;
  4007. }
  4008. #u41245 .text {
  4009. position:absolute;
  4010. align-self:center;
  4011. padding:2px 2px 2px 2px;
  4012. box-sizing:border-box;
  4013. width:100%;
  4014. }
  4015. #u41245_text {
  4016. border-width:0px;
  4017. word-wrap:break-word;
  4018. text-transform:none;
  4019. visibility:hidden;
  4020. }
  4021. #u41246 {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:0px;
  4025. top:0px;
  4026. width:0px;
  4027. height:0px;
  4028. }
  4029. #u41247 {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:69px;
  4033. top:792px;
  4034. width:24px;
  4035. height:24px;
  4036. display:flex;
  4037. transition:none;
  4038. font-size:8px;
  4039. }
  4040. #u41247 .text {
  4041. position:absolute;
  4042. align-self:center;
  4043. padding:2px 2px 2px 2px;
  4044. box-sizing:border-box;
  4045. width:100%;
  4046. }
  4047. #u41247_img {
  4048. border-width:0px;
  4049. position:absolute;
  4050. left:0px;
  4051. top:0px;
  4052. width:24px;
  4053. height:24px;
  4054. }
  4055. #u41247_text {
  4056. border-width:0px;
  4057. word-wrap:break-word;
  4058. text-transform:none;
  4059. }
  4060. #u41248_div {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:0px;
  4064. top:0px;
  4065. width:25px;
  4066. height:17px;
  4067. background:inherit;
  4068. background-color:rgba(255, 255, 255, 0);
  4069. border-radius:0px;
  4070. filter:drop-shadow(none);
  4071. transition:none;
  4072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4073. font-weight:400;
  4074. font-style:normal;
  4075. font-size:12px;
  4076. }
  4077. #u41248 {
  4078. border-width:0px;
  4079. position:absolute;
  4080. left:69px;
  4081. top:817px;
  4082. width:25px;
  4083. height:17px;
  4084. display:flex;
  4085. transition:none;
  4086. transform-origin:50% 50%;
  4087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4088. font-weight:400;
  4089. font-style:normal;
  4090. font-size:12px;
  4091. }
  4092. #u41248 .text {
  4093. position:absolute;
  4094. align-self:flex-start;
  4095. padding:0px 0px 0px 0px;
  4096. box-sizing:border-box;
  4097. width:100%;
  4098. }
  4099. #u41248_text {
  4100. border-width:0px;
  4101. white-space:nowrap;
  4102. text-transform:none;
  4103. }
  4104. #u41249 {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:0px;
  4108. top:0px;
  4109. width:0px;
  4110. height:0px;
  4111. }
  4112. #u41250 {
  4113. border-width:0px;
  4114. position:absolute;
  4115. left:339px;
  4116. top:794px;
  4117. width:24px;
  4118. height:24px;
  4119. display:flex;
  4120. transition:none;
  4121. font-size:8px;
  4122. }
  4123. #u41250 .text {
  4124. position:absolute;
  4125. align-self:center;
  4126. padding:2px 2px 2px 2px;
  4127. box-sizing:border-box;
  4128. width:100%;
  4129. }
  4130. #u41250_img {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:0px;
  4134. top:0px;
  4135. width:24px;
  4136. height:24px;
  4137. }
  4138. #u41250_text {
  4139. border-width:0px;
  4140. word-wrap:break-word;
  4141. text-transform:none;
  4142. }
  4143. #u41251_div {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:0px;
  4147. top:0px;
  4148. width:25px;
  4149. height:17px;
  4150. background:inherit;
  4151. background-color:rgba(255, 255, 255, 0);
  4152. border-radius:0px;
  4153. filter:drop-shadow(none);
  4154. transition:none;
  4155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4156. font-weight:400;
  4157. font-style:normal;
  4158. font-size:12px;
  4159. }
  4160. #u41251 {
  4161. border-width:0px;
  4162. position:absolute;
  4163. left:339px;
  4164. top:819px;
  4165. width:25px;
  4166. height:17px;
  4167. display:flex;
  4168. transition:none;
  4169. transform-origin:50% 50%;
  4170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4171. font-weight:400;
  4172. font-style:normal;
  4173. font-size:12px;
  4174. }
  4175. #u41251 .text {
  4176. position:absolute;
  4177. align-self:flex-start;
  4178. padding:0px 0px 0px 0px;
  4179. box-sizing:border-box;
  4180. width:100%;
  4181. }
  4182. #u41251_text {
  4183. border-width:0px;
  4184. white-space:nowrap;
  4185. text-transform:none;
  4186. }
  4187. #u41252_div {
  4188. border-width:0px;
  4189. position:absolute;
  4190. left:0px;
  4191. top:0px;
  4192. width:375px;
  4193. height:681px;
  4194. background:inherit;
  4195. background-color:rgba(242, 242, 242, 0.4627450980392157);
  4196. border-radius:0px;
  4197. filter:drop-shadow(none);
  4198. transition:none;
  4199. }
  4200. #u41252 {
  4201. border-width:0px;
  4202. position:absolute;
  4203. left:29px;
  4204. top:107px;
  4205. width:375px;
  4206. height:681px;
  4207. display:flex;
  4208. transition:none;
  4209. transform-origin:50% 50%;
  4210. }
  4211. #u41252 .text {
  4212. position:absolute;
  4213. align-self:center;
  4214. padding:2px 2px 2px 2px;
  4215. box-sizing:border-box;
  4216. width:100%;
  4217. }
  4218. #u41252_text {
  4219. border-width:0px;
  4220. word-wrap:break-word;
  4221. text-transform:none;
  4222. visibility:hidden;
  4223. }
  4224. #u41253 {
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:0px;
  4228. top:0px;
  4229. width:0px;
  4230. height:0px;
  4231. }
  4232. #u41254 {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:251px;
  4236. top:792px;
  4237. width:24px;
  4238. height:24px;
  4239. display:flex;
  4240. transition:none;
  4241. font-size:8px;
  4242. }
  4243. #u41254 .text {
  4244. position:absolute;
  4245. align-self:center;
  4246. padding:2px 2px 2px 2px;
  4247. box-sizing:border-box;
  4248. width:100%;
  4249. }
  4250. #u41254_img {
  4251. border-width:0px;
  4252. position:absolute;
  4253. left:0px;
  4254. top:0px;
  4255. width:24px;
  4256. height:24px;
  4257. }
  4258. #u41254_text {
  4259. border-width:0px;
  4260. word-wrap:break-word;
  4261. text-transform:none;
  4262. }
  4263. #u41255_div {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:0px;
  4267. top:0px;
  4268. width:37px;
  4269. height:17px;
  4270. background:inherit;
  4271. background-color:rgba(255, 255, 255, 0);
  4272. border-radius:0px;
  4273. filter:drop-shadow(none);
  4274. transition:none;
  4275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4276. font-weight:400;
  4277. font-style:normal;
  4278. font-size:12px;
  4279. }
  4280. #u41255 {
  4281. border-width:0px;
  4282. position:absolute;
  4283. left:245px;
  4284. top:817px;
  4285. width:37px;
  4286. height:17px;
  4287. display:flex;
  4288. transition:none;
  4289. transform-origin:50% 50%;
  4290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4291. font-weight:400;
  4292. font-style:normal;
  4293. font-size:12px;
  4294. }
  4295. #u41255 .text {
  4296. position:absolute;
  4297. align-self:flex-start;
  4298. padding:0px 0px 0px 0px;
  4299. box-sizing:border-box;
  4300. width:100%;
  4301. }
  4302. #u41255_text {
  4303. border-width:0px;
  4304. white-space:nowrap;
  4305. text-transform:none;
  4306. }
  4307. #u41256 {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:0px;
  4311. top:0px;
  4312. width:0px;
  4313. height:0px;
  4314. }
  4315. #u41257 {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:157px;
  4319. top:792px;
  4320. width:24px;
  4321. height:24px;
  4322. display:flex;
  4323. transition:none;
  4324. font-size:8px;
  4325. }
  4326. #u41257 .text {
  4327. position:absolute;
  4328. align-self:center;
  4329. padding:2px 2px 2px 2px;
  4330. box-sizing:border-box;
  4331. width:100%;
  4332. }
  4333. #u41257_img {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:0px;
  4337. top:0px;
  4338. width:24px;
  4339. height:24px;
  4340. }
  4341. #u41257_text {
  4342. border-width:0px;
  4343. word-wrap:break-word;
  4344. text-transform:none;
  4345. }
  4346. #u41258_div {
  4347. border-width:0px;
  4348. position:absolute;
  4349. left:0px;
  4350. top:0px;
  4351. width:37px;
  4352. height:17px;
  4353. background:inherit;
  4354. background-color:rgba(255, 255, 255, 0);
  4355. border-radius:0px;
  4356. filter:drop-shadow(none);
  4357. transition:none;
  4358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4359. font-weight:400;
  4360. font-style:normal;
  4361. font-size:12px;
  4362. }
  4363. #u41258 {
  4364. border-width:0px;
  4365. position:absolute;
  4366. left:151px;
  4367. top:817px;
  4368. width:37px;
  4369. height:17px;
  4370. display:flex;
  4371. transition:none;
  4372. transform-origin:50% 50%;
  4373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4374. font-weight:400;
  4375. font-style:normal;
  4376. font-size:12px;
  4377. }
  4378. #u41258 .text {
  4379. position:absolute;
  4380. align-self:flex-start;
  4381. padding:0px 0px 0px 0px;
  4382. box-sizing:border-box;
  4383. width:100%;
  4384. }
  4385. #u41258_text {
  4386. border-width:0px;
  4387. white-space:nowrap;
  4388. text-transform:none;
  4389. }
  4390. #u41259_div {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:0px;
  4394. top:0px;
  4395. width:375px;
  4396. height:732px;
  4397. background:inherit;
  4398. background-color:rgba(244, 244, 244, 1);
  4399. box-sizing:border-box;
  4400. border-width:1px;
  4401. border-style:solid;
  4402. border-color:rgba(242, 242, 242, 1);
  4403. border-radius:26px;
  4404. border-top-left-radius:0px;
  4405. border-top-right-radius:0px;
  4406. filter:drop-shadow(none);
  4407. transition:none;
  4408. }
  4409. #u41259 {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:937px;
  4413. top:290px;
  4414. width:375px;
  4415. height:732px;
  4416. display:flex;
  4417. transition:none;
  4418. transform-origin:50% 50%;
  4419. }
  4420. #u41259 .text {
  4421. position:absolute;
  4422. align-self:center;
  4423. padding:2px 2px 2px 2px;
  4424. box-sizing:border-box;
  4425. width:100%;
  4426. }
  4427. #u41259_text {
  4428. border-width:0px;
  4429. word-wrap:break-word;
  4430. text-transform:none;
  4431. visibility:hidden;
  4432. }
  4433. #u41260_div {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:0px;
  4437. top:0px;
  4438. width:375px;
  4439. height:976px;
  4440. background:inherit;
  4441. background-color:rgba(242, 242, 242, 1);
  4442. box-sizing:border-box;
  4443. border-width:1px;
  4444. border-style:solid;
  4445. border-color:rgba(242, 242, 242, 1);
  4446. border-radius:26px;
  4447. border-top-left-radius:0px;
  4448. border-top-right-radius:0px;
  4449. filter:drop-shadow(none);
  4450. transition:none;
  4451. }
  4452. #u41260 {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:937px;
  4456. top:290px;
  4457. width:375px;
  4458. height:976px;
  4459. display:flex;
  4460. transition:none;
  4461. transform-origin:50% 50%;
  4462. }
  4463. #u41260 .text {
  4464. position:absolute;
  4465. align-self:center;
  4466. padding:2px 2px 2px 2px;
  4467. box-sizing:border-box;
  4468. width:100%;
  4469. }
  4470. #u41260_text {
  4471. border-width:0px;
  4472. word-wrap:break-word;
  4473. text-transform:none;
  4474. visibility:hidden;
  4475. }
  4476. #u41261 {
  4477. border-width:0px;
  4478. position:absolute;
  4479. left:0px;
  4480. top:0px;
  4481. width:0px;
  4482. height:0px;
  4483. }
  4484. #u41262_div {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:0px;
  4488. top:0px;
  4489. width:375px;
  4490. height:40px;
  4491. background:inherit;
  4492. background-color:rgba(255, 255, 255, 1);
  4493. border-left:0px;
  4494. border-top:0px;
  4495. border-right:0px;
  4496. border-radius:0px;
  4497. border-bottom-right-radius:0px;
  4498. border-bottom-left-radius:0px;
  4499. filter:drop-shadow(none);
  4500. transition:none;
  4501. }
  4502. #u41262 {
  4503. border-width:0px;
  4504. position:absolute;
  4505. left:937px;
  4506. top:250px;
  4507. width:375px;
  4508. height:40px;
  4509. display:flex;
  4510. transition:none;
  4511. transform-origin:50% 50%;
  4512. }
  4513. #u41262 .text {
  4514. position:absolute;
  4515. align-self:center;
  4516. padding:2px 2px 2px 2px;
  4517. box-sizing:border-box;
  4518. width:100%;
  4519. }
  4520. #u41262_text {
  4521. border-width:0px;
  4522. word-wrap:break-word;
  4523. text-transform:none;
  4524. visibility:hidden;
  4525. }
  4526. #u41263 {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:0px;
  4530. top:0px;
  4531. width:0px;
  4532. height:0px;
  4533. }
  4534. #u41264_div {
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:0px;
  4538. top:0px;
  4539. width:88px;
  4540. height:32px;
  4541. background:inherit;
  4542. background-color:rgba(255, 255, 255, 1);
  4543. box-sizing:border-box;
  4544. border-width:1px;
  4545. border-style:solid;
  4546. border-color:rgba(242, 242, 242, 1);
  4547. border-radius:33px;
  4548. filter:drop-shadow(none);
  4549. transition:none;
  4550. }
  4551. #u41264 {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:1214px;
  4555. top:252px;
  4556. width:88px;
  4557. height:32px;
  4558. display:flex;
  4559. transition:none;
  4560. transform-origin:50% 50%;
  4561. }
  4562. #u41264 .text {
  4563. position:absolute;
  4564. align-self:center;
  4565. padding:2px 2px 2px 2px;
  4566. box-sizing:border-box;
  4567. width:100%;
  4568. }
  4569. #u41264_text {
  4570. border-width:0px;
  4571. word-wrap:break-word;
  4572. text-transform:none;
  4573. visibility:hidden;
  4574. }
  4575. #u41265 {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:0px;
  4579. top:0px;
  4580. width:0px;
  4581. height:0px;
  4582. }
  4583. #u41266 {
  4584. border-width:0px;
  4585. position:absolute;
  4586. left:1277px;
  4587. top:259px;
  4588. width:18px;
  4589. height:18px;
  4590. display:flex;
  4591. transition:none;
  4592. }
  4593. #u41266 .text {
  4594. position:absolute;
  4595. align-self:center;
  4596. padding:2px 2px 2px 2px;
  4597. box-sizing:border-box;
  4598. width:100%;
  4599. }
  4600. #u41266_img {
  4601. border-width:0px;
  4602. position:absolute;
  4603. left:0px;
  4604. top:0px;
  4605. width:18px;
  4606. height:18px;
  4607. }
  4608. #u41266_text {
  4609. border-width:0px;
  4610. word-wrap:break-word;
  4611. text-transform:none;
  4612. visibility:hidden;
  4613. }
  4614. #u41267 {
  4615. border-width:0px;
  4616. position:absolute;
  4617. left:1283px;
  4618. top:265px;
  4619. width:6px;
  4620. height:6px;
  4621. display:flex;
  4622. transition:none;
  4623. }
  4624. #u41267 .text {
  4625. position:absolute;
  4626. align-self:center;
  4627. padding:2px 2px 2px 2px;
  4628. box-sizing:border-box;
  4629. width:100%;
  4630. }
  4631. #u41267_img {
  4632. border-width:0px;
  4633. position:absolute;
  4634. left:0px;
  4635. top:0px;
  4636. width:6px;
  4637. height:6px;
  4638. }
  4639. #u41267_text {
  4640. border-width:0px;
  4641. word-wrap:break-word;
  4642. text-transform:none;
  4643. visibility:hidden;
  4644. }
  4645. #u41268 {
  4646. border-width:0px;
  4647. position:absolute;
  4648. left:0px;
  4649. top:0px;
  4650. width:0px;
  4651. height:0px;
  4652. }
  4653. #u41269 {
  4654. border-width:0px;
  4655. position:absolute;
  4656. left:1228px;
  4657. top:266px;
  4658. width:5px;
  4659. height:5px;
  4660. display:flex;
  4661. transition:none;
  4662. }
  4663. #u41269 .text {
  4664. position:absolute;
  4665. align-self:center;
  4666. padding:2px 2px 2px 2px;
  4667. box-sizing:border-box;
  4668. width:100%;
  4669. }
  4670. #u41269_img {
  4671. border-width:0px;
  4672. position:absolute;
  4673. left:0px;
  4674. top:0px;
  4675. width:5px;
  4676. height:5px;
  4677. }
  4678. #u41269_text {
  4679. border-width:0px;
  4680. word-wrap:break-word;
  4681. text-transform:none;
  4682. visibility:hidden;
  4683. }
  4684. #u41270 {
  4685. border-width:0px;
  4686. position:absolute;
  4687. left:1244px;
  4688. top:266px;
  4689. width:5px;
  4690. height:5px;
  4691. display:flex;
  4692. transition:none;
  4693. }
  4694. #u41270 .text {
  4695. position:absolute;
  4696. align-self:center;
  4697. padding:2px 2px 2px 2px;
  4698. box-sizing:border-box;
  4699. width:100%;
  4700. }
  4701. #u41270_img {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:0px;
  4705. top:0px;
  4706. width:5px;
  4707. height:5px;
  4708. }
  4709. #u41270_text {
  4710. border-width:0px;
  4711. word-wrap:break-word;
  4712. text-transform:none;
  4713. visibility:hidden;
  4714. }
  4715. #u41271 {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:1235px;
  4719. top:265px;
  4720. width:7px;
  4721. height:7px;
  4722. display:flex;
  4723. transition:none;
  4724. }
  4725. #u41271 .text {
  4726. position:absolute;
  4727. align-self:center;
  4728. padding:2px 2px 2px 2px;
  4729. box-sizing:border-box;
  4730. width:100%;
  4731. }
  4732. #u41271_img {
  4733. border-width:0px;
  4734. position:absolute;
  4735. left:0px;
  4736. top:0px;
  4737. width:7px;
  4738. height:7px;
  4739. }
  4740. #u41271_text {
  4741. border-width:0px;
  4742. word-wrap:break-word;
  4743. text-transform:none;
  4744. visibility:hidden;
  4745. }
  4746. #u41272 {
  4747. border-width:0px;
  4748. position:absolute;
  4749. left:1252px;
  4750. top:268px;
  4751. width:18px;
  4752. height:1px;
  4753. display:flex;
  4754. -webkit-transform:rotate(90deg);
  4755. -moz-transform:rotate(90deg);
  4756. -ms-transform:rotate(90deg);
  4757. transform:rotate(90deg);
  4758. transition:none;
  4759. }
  4760. #u41272 .text {
  4761. position:absolute;
  4762. align-self:center;
  4763. padding:2px 2px 2px 2px;
  4764. box-sizing:border-box;
  4765. width:100%;
  4766. }
  4767. #u41272_img {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:0px;
  4771. top:0px;
  4772. width:19px;
  4773. height:2px;
  4774. }
  4775. #u41272_text {
  4776. border-width:0px;
  4777. word-wrap:break-word;
  4778. text-transform:none;
  4779. visibility:hidden;
  4780. }
  4781. #u41273_div {
  4782. border-width:0px;
  4783. position:absolute;
  4784. left:0px;
  4785. top:0px;
  4786. width:12px;
  4787. height:12px;
  4788. background:inherit;
  4789. background-color:rgba(255, 255, 255, 0);
  4790. box-sizing:border-box;
  4791. border-width:2px;
  4792. border-style:solid;
  4793. border-color:rgba(51, 51, 51, 1);
  4794. border-right:0px;
  4795. border-bottom:0px;
  4796. border-radius:0px;
  4797. border-top-right-radius:0px;
  4798. border-bottom-left-radius:0px;
  4799. filter:drop-shadow(none);
  4800. transition:none;
  4801. }
  4802. #u41273 {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:953px;
  4806. top:262px;
  4807. width:12px;
  4808. height:12px;
  4809. display:flex;
  4810. -webkit-transform:rotate(315deg);
  4811. -moz-transform:rotate(315deg);
  4812. -ms-transform:rotate(315deg);
  4813. transform:rotate(315deg);
  4814. transition:none;
  4815. transform-origin:50% 50%;
  4816. }
  4817. #u41273 .text {
  4818. position:absolute;
  4819. align-self:center;
  4820. padding:2px 2px 2px 2px;
  4821. box-sizing:border-box;
  4822. width:100%;
  4823. }
  4824. #u41273_text {
  4825. border-width:0px;
  4826. word-wrap:break-word;
  4827. text-transform:none;
  4828. visibility:hidden;
  4829. }
  4830. #u41274_div {
  4831. border-width:0px;
  4832. position:absolute;
  4833. left:0px;
  4834. top:0px;
  4835. width:91px;
  4836. height:25px;
  4837. background:inherit;
  4838. background-color:rgba(255, 255, 255, 0);
  4839. border-radius:0px;
  4840. filter:drop-shadow(none);
  4841. transition:none;
  4842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4843. font-weight:400;
  4844. font-style:normal;
  4845. font-size:18px;
  4846. }
  4847. #u41274 {
  4848. border-width:0px;
  4849. position:absolute;
  4850. left:967px;
  4851. top:255px;
  4852. width:91px;
  4853. height:25px;
  4854. display:flex;
  4855. transition:none;
  4856. transform-origin:50% 50%;
  4857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4858. font-weight:400;
  4859. font-style:normal;
  4860. font-size:18px;
  4861. }
  4862. #u41274 .text {
  4863. position:absolute;
  4864. align-self:flex-start;
  4865. padding:0px 0px 0px 0px;
  4866. box-sizing:border-box;
  4867. width:100%;
  4868. }
  4869. #u41274_text {
  4870. border-width:0px;
  4871. white-space:nowrap;
  4872. text-transform:none;
  4873. }
  4874. #u41275 {
  4875. border-width:0px;
  4876. position:absolute;
  4877. left:0px;
  4878. top:0px;
  4879. width:0px;
  4880. height:0px;
  4881. }
  4882. #u41276_div {
  4883. border-width:0px;
  4884. position:absolute;
  4885. left:0px;
  4886. top:0px;
  4887. width:375px;
  4888. height:80px;
  4889. background:inherit;
  4890. background-color:rgba(255, 255, 255, 1);
  4891. border-top:0px;
  4892. border-bottom:0px;
  4893. border-radius:0px;
  4894. border-top-left-radius:0px;
  4895. border-top-right-radius:0px;
  4896. border-bottom-right-radius:0px;
  4897. border-bottom-left-radius:0px;
  4898. filter:drop-shadow(none);
  4899. transition:none;
  4900. }
  4901. #u41276 {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:937px;
  4905. top:290px;
  4906. width:375px;
  4907. height:80px;
  4908. display:flex;
  4909. transition:none;
  4910. transform-origin:50% 50%;
  4911. }
  4912. #u41276 .text {
  4913. position:absolute;
  4914. align-self:center;
  4915. padding:2px 2px 2px 2px;
  4916. box-sizing:border-box;
  4917. width:100%;
  4918. }
  4919. #u41276_text {
  4920. border-width:0px;
  4921. word-wrap:break-word;
  4922. text-transform:none;
  4923. visibility:hidden;
  4924. }
  4925. #u41277_div {
  4926. border-width:0px;
  4927. position:absolute;
  4928. left:0px;
  4929. top:0px;
  4930. width:73px;
  4931. height:30px;
  4932. background:inherit;
  4933. background-color:rgba(255, 255, 255, 0);
  4934. border-left:0px;
  4935. border-top:0px;
  4936. border-right:0px;
  4937. border-radius:0px;
  4938. border-bottom-right-radius:0px;
  4939. border-bottom-left-radius:0px;
  4940. filter:drop-shadow(none);
  4941. transition:none;
  4942. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4943. font-weight:500;
  4944. font-style:normal;
  4945. font-size:18px;
  4946. line-height:30px;
  4947. }
  4948. #u41277 {
  4949. border-width:0px;
  4950. position:absolute;
  4951. left:956px;
  4952. top:300px;
  4953. width:73px;
  4954. height:30px;
  4955. display:flex;
  4956. transition:none;
  4957. transform-origin:50% 50%;
  4958. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4959. font-weight:500;
  4960. font-style:normal;
  4961. font-size:18px;
  4962. line-height:30px;
  4963. }
  4964. #u41277 .text {
  4965. position:absolute;
  4966. align-self:flex-start;
  4967. padding:0px 0px 0px 0px;
  4968. box-sizing:border-box;
  4969. width:100%;
  4970. }
  4971. #u41277_text {
  4972. border-width:0px;
  4973. white-space:nowrap;
  4974. text-transform:none;
  4975. }
  4976. #u41278_input {
  4977. position:absolute;
  4978. left:0px;
  4979. top:0px;
  4980. width:346px;
  4981. height:27px;
  4982. padding:2px 2px 2px 2px;
  4983. font-family:'ArialMT', 'Arial', sans-serif;
  4984. font-weight:400;
  4985. font-style:normal;
  4986. font-size:14px;
  4987. letter-spacing:normal;
  4988. color:#1890FF;
  4989. vertical-align:none;
  4990. text-align:left;
  4991. text-transform:none;
  4992. background-color:transparent;
  4993. border-color:transparent;
  4994. }
  4995. #u41278_input.disabled {
  4996. position:absolute;
  4997. left:0px;
  4998. top:0px;
  4999. width:346px;
  5000. height:27px;
  5001. padding:2px 2px 2px 2px;
  5002. font-family:'ArialMT', 'Arial', sans-serif;
  5003. font-weight:400;
  5004. font-style:normal;
  5005. font-size:14px;
  5006. letter-spacing:normal;
  5007. color:#1890FF;
  5008. vertical-align:none;
  5009. text-align:left;
  5010. text-transform:none;
  5011. background-color:transparent;
  5012. border-color:transparent;
  5013. }
  5014. #u41278_div {
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:0px;
  5018. top:0px;
  5019. width:346px;
  5020. height:27px;
  5021. background:inherit;
  5022. background-color:rgba(255, 255, 255, 1);
  5023. border-radius:0px;
  5024. filter:drop-shadow(none);
  5025. transition:none;
  5026. font-size:14px;
  5027. color:#1890FF;
  5028. }
  5029. #u41278 {
  5030. border-width:0px;
  5031. position:absolute;
  5032. left:956px;
  5033. top:333px;
  5034. width:346px;
  5035. height:27px;
  5036. display:flex;
  5037. transition:none;
  5038. transform-origin:50% 50%;
  5039. font-size:14px;
  5040. color:#1890FF;
  5041. }
  5042. #u41278 .text {
  5043. position:absolute;
  5044. align-self:flex-start;
  5045. padding:2px 2px 2px 2px;
  5046. box-sizing:border-box;
  5047. width:100%;
  5048. }
  5049. #u41278_div.disabled {
  5050. border-width:0px;
  5051. position:absolute;
  5052. left:0px;
  5053. top:0px;
  5054. width:346px;
  5055. height:27px;
  5056. background:inherit;
  5057. background-color:rgba(240, 240, 240, 1);
  5058. border-radius:0px;
  5059. filter:drop-shadow(none);
  5060. transition:none;
  5061. font-size:14px;
  5062. color:#1890FF;
  5063. }
  5064. #u41278.disabled {
  5065. }
  5066. .u41278_input_option {
  5067. font-size:14px;
  5068. }
  5069. #u41279_div {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:0px;
  5073. top:0px;
  5074. width:308px;
  5075. height:34px;
  5076. background:inherit;
  5077. background-color:rgba(255, 255, 255, 0);
  5078. border-left:0px;
  5079. border-top:0px;
  5080. border-right:0px;
  5081. border-radius:0px;
  5082. border-bottom-right-radius:0px;
  5083. border-bottom-left-radius:0px;
  5084. filter:drop-shadow(none);
  5085. transition:none;
  5086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5087. font-weight:400;
  5088. font-style:normal;
  5089. font-size:12px;
  5090. color:#D9001B;
  5091. }
  5092. #u41279 {
  5093. border-width:0px;
  5094. position:absolute;
  5095. left:1048px;
  5096. top:296px;
  5097. width:308px;
  5098. height:34px;
  5099. display:flex;
  5100. transition:none;
  5101. transform-origin:50% 50%;
  5102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5103. font-weight:400;
  5104. font-style:normal;
  5105. font-size:12px;
  5106. color:#D9001B;
  5107. }
  5108. #u41279 .text {
  5109. position:absolute;
  5110. align-self:center;
  5111. padding:0px 0px 0px 0px;
  5112. box-sizing:border-box;
  5113. width:100%;
  5114. }
  5115. #u41279_text {
  5116. border-width:0px;
  5117. white-space:nowrap;
  5118. text-transform:none;
  5119. }
  5120. #u41280 {
  5121. border-width:0px;
  5122. position:absolute;
  5123. left:0px;
  5124. top:0px;
  5125. width:0px;
  5126. height:0px;
  5127. }
  5128. #u41281 {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:1356px;
  5132. top:184px;
  5133. width:433px;
  5134. height:865px;
  5135. }
  5136. #u41282 {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:0px;
  5140. top:0px;
  5141. width:433px;
  5142. height:865px;
  5143. display:flex;
  5144. transition:none;
  5145. }
  5146. #u41282 .text {
  5147. position:absolute;
  5148. align-self:center;
  5149. padding:2px 2px 2px 2px;
  5150. box-sizing:border-box;
  5151. width:100%;
  5152. }
  5153. #u41282_img {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:0px;
  5157. top:0px;
  5158. width:433px;
  5159. height:865px;
  5160. }
  5161. #u41282_text {
  5162. border-width:0px;
  5163. word-wrap:break-word;
  5164. text-transform:none;
  5165. visibility:hidden;
  5166. }
  5167. #u41283_div {
  5168. border-width:0px;
  5169. position:absolute;
  5170. left:0px;
  5171. top:0px;
  5172. width:375px;
  5173. height:40px;
  5174. background:inherit;
  5175. background-color:rgba(255, 255, 255, 1);
  5176. box-sizing:border-box;
  5177. border-width:1px;
  5178. border-style:solid;
  5179. border-color:rgba(215, 215, 215, 1);
  5180. border-left:0px;
  5181. border-top:0px;
  5182. border-right:0px;
  5183. border-radius:0px;
  5184. border-bottom-right-radius:0px;
  5185. border-bottom-left-radius:0px;
  5186. filter:drop-shadow(none);
  5187. transition:none;
  5188. }
  5189. #u41283 {
  5190. border-width:0px;
  5191. position:absolute;
  5192. left:29px;
  5193. top:67px;
  5194. width:375px;
  5195. height:40px;
  5196. display:flex;
  5197. transition:none;
  5198. transform-origin:50% 50%;
  5199. }
  5200. #u41283 .text {
  5201. position:absolute;
  5202. align-self:center;
  5203. padding:2px 2px 2px 2px;
  5204. box-sizing:border-box;
  5205. width:100%;
  5206. }
  5207. #u41283_text {
  5208. border-width:0px;
  5209. word-wrap:break-word;
  5210. text-transform:none;
  5211. visibility:hidden;
  5212. }
  5213. #u41284 {
  5214. border-width:0px;
  5215. position:absolute;
  5216. left:0px;
  5217. top:0px;
  5218. width:0px;
  5219. height:0px;
  5220. }
  5221. #u41285_div {
  5222. border-width:0px;
  5223. position:absolute;
  5224. left:0px;
  5225. top:0px;
  5226. width:88px;
  5227. height:32px;
  5228. background:inherit;
  5229. background-color:rgba(255, 255, 255, 1);
  5230. box-sizing:border-box;
  5231. border-width:1px;
  5232. border-style:solid;
  5233. border-color:rgba(242, 242, 242, 1);
  5234. border-radius:33px;
  5235. filter:drop-shadow(none);
  5236. transition:none;
  5237. }
  5238. #u41285 {
  5239. border-width:0px;
  5240. position:absolute;
  5241. left:309px;
  5242. top:71px;
  5243. width:88px;
  5244. height:32px;
  5245. display:flex;
  5246. transition:none;
  5247. transform-origin:50% 50%;
  5248. }
  5249. #u41285 .text {
  5250. position:absolute;
  5251. align-self:center;
  5252. padding:2px 2px 2px 2px;
  5253. box-sizing:border-box;
  5254. width:100%;
  5255. }
  5256. #u41285_text {
  5257. border-width:0px;
  5258. word-wrap:break-word;
  5259. text-transform:none;
  5260. visibility:hidden;
  5261. }
  5262. #u41286 {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:0px;
  5266. top:0px;
  5267. width:0px;
  5268. height:0px;
  5269. }
  5270. #u41287 {
  5271. border-width:0px;
  5272. position:absolute;
  5273. left:372px;
  5274. top:78px;
  5275. width:18px;
  5276. height:18px;
  5277. display:flex;
  5278. transition:none;
  5279. }
  5280. #u41287 .text {
  5281. position:absolute;
  5282. align-self:center;
  5283. padding:2px 2px 2px 2px;
  5284. box-sizing:border-box;
  5285. width:100%;
  5286. }
  5287. #u41287_img {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:0px;
  5291. top:0px;
  5292. width:18px;
  5293. height:18px;
  5294. }
  5295. #u41287_text {
  5296. border-width:0px;
  5297. word-wrap:break-word;
  5298. text-transform:none;
  5299. visibility:hidden;
  5300. }
  5301. #u41288 {
  5302. border-width:0px;
  5303. position:absolute;
  5304. left:378px;
  5305. top:84px;
  5306. width:6px;
  5307. height:6px;
  5308. display:flex;
  5309. transition:none;
  5310. }
  5311. #u41288 .text {
  5312. position:absolute;
  5313. align-self:center;
  5314. padding:2px 2px 2px 2px;
  5315. box-sizing:border-box;
  5316. width:100%;
  5317. }
  5318. #u41288_img {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:0px;
  5322. top:0px;
  5323. width:6px;
  5324. height:6px;
  5325. }
  5326. #u41288_text {
  5327. border-width:0px;
  5328. word-wrap:break-word;
  5329. text-transform:none;
  5330. visibility:hidden;
  5331. }
  5332. #u41289 {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:0px;
  5336. top:0px;
  5337. width:0px;
  5338. height:0px;
  5339. }
  5340. #u41290 {
  5341. border-width:0px;
  5342. position:absolute;
  5343. left:323px;
  5344. top:85px;
  5345. width:5px;
  5346. height:5px;
  5347. display:flex;
  5348. transition:none;
  5349. }
  5350. #u41290 .text {
  5351. position:absolute;
  5352. align-self:center;
  5353. padding:2px 2px 2px 2px;
  5354. box-sizing:border-box;
  5355. width:100%;
  5356. }
  5357. #u41290_img {
  5358. border-width:0px;
  5359. position:absolute;
  5360. left:0px;
  5361. top:0px;
  5362. width:5px;
  5363. height:5px;
  5364. }
  5365. #u41290_text {
  5366. border-width:0px;
  5367. word-wrap:break-word;
  5368. text-transform:none;
  5369. visibility:hidden;
  5370. }
  5371. #u41291 {
  5372. border-width:0px;
  5373. position:absolute;
  5374. left:339px;
  5375. top:85px;
  5376. width:5px;
  5377. height:5px;
  5378. display:flex;
  5379. transition:none;
  5380. }
  5381. #u41291 .text {
  5382. position:absolute;
  5383. align-self:center;
  5384. padding:2px 2px 2px 2px;
  5385. box-sizing:border-box;
  5386. width:100%;
  5387. }
  5388. #u41291_img {
  5389. border-width:0px;
  5390. position:absolute;
  5391. left:0px;
  5392. top:0px;
  5393. width:5px;
  5394. height:5px;
  5395. }
  5396. #u41291_text {
  5397. border-width:0px;
  5398. word-wrap:break-word;
  5399. text-transform:none;
  5400. visibility:hidden;
  5401. }
  5402. #u41292 {
  5403. border-width:0px;
  5404. position:absolute;
  5405. left:330px;
  5406. top:84px;
  5407. width:7px;
  5408. height:7px;
  5409. display:flex;
  5410. transition:none;
  5411. }
  5412. #u41292 .text {
  5413. position:absolute;
  5414. align-self:center;
  5415. padding:2px 2px 2px 2px;
  5416. box-sizing:border-box;
  5417. width:100%;
  5418. }
  5419. #u41292_img {
  5420. border-width:0px;
  5421. position:absolute;
  5422. left:0px;
  5423. top:0px;
  5424. width:7px;
  5425. height:7px;
  5426. }
  5427. #u41292_text {
  5428. border-width:0px;
  5429. word-wrap:break-word;
  5430. text-transform:none;
  5431. visibility:hidden;
  5432. }
  5433. #u41293 {
  5434. border-width:0px;
  5435. position:absolute;
  5436. left:347px;
  5437. top:87px;
  5438. width:18px;
  5439. height:1px;
  5440. display:flex;
  5441. -webkit-transform:rotate(90deg);
  5442. -moz-transform:rotate(90deg);
  5443. -ms-transform:rotate(90deg);
  5444. transform:rotate(90deg);
  5445. transition:none;
  5446. }
  5447. #u41293 .text {
  5448. position:absolute;
  5449. align-self:center;
  5450. padding:2px 2px 2px 2px;
  5451. box-sizing:border-box;
  5452. width:100%;
  5453. }
  5454. #u41293_img {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:0px;
  5458. top:0px;
  5459. width:19px;
  5460. height:2px;
  5461. }
  5462. #u41293_text {
  5463. border-width:0px;
  5464. word-wrap:break-word;
  5465. text-transform:none;
  5466. visibility:hidden;
  5467. }
  5468. #u41294 {
  5469. border-width:0px;
  5470. position:absolute;
  5471. left:29px;
  5472. top:24px;
  5473. width:375px;
  5474. height:44px;
  5475. display:flex;
  5476. transition:none;
  5477. }
  5478. #u41294 .text {
  5479. position:absolute;
  5480. align-self:center;
  5481. padding:2px 2px 2px 2px;
  5482. box-sizing:border-box;
  5483. width:100%;
  5484. }
  5485. #u41294_img {
  5486. border-width:0px;
  5487. position:absolute;
  5488. left:0px;
  5489. top:0px;
  5490. width:375px;
  5491. height:44px;
  5492. }
  5493. #u41294_text {
  5494. border-width:0px;
  5495. word-wrap:break-word;
  5496. text-transform:none;
  5497. visibility:hidden;
  5498. }
  5499. #u41295_div {
  5500. border-width:0px;
  5501. position:absolute;
  5502. left:0px;
  5503. top:0px;
  5504. width:375px;
  5505. height:50px;
  5506. background:inherit;
  5507. background-color:rgba(255, 255, 255, 1);
  5508. box-sizing:border-box;
  5509. border-width:1px;
  5510. border-style:solid;
  5511. border-color:rgba(242, 242, 242, 1);
  5512. border-radius:26px;
  5513. border-top-left-radius:0px;
  5514. border-top-right-radius:0px;
  5515. filter:drop-shadow(none);
  5516. transition:none;
  5517. }
  5518. #u41295 {
  5519. border-width:0px;
  5520. position:absolute;
  5521. left:29px;
  5522. top:788px;
  5523. width:375px;
  5524. height:50px;
  5525. display:flex;
  5526. transition:none;
  5527. transform-origin:50% 50%;
  5528. }
  5529. #u41295 .text {
  5530. position:absolute;
  5531. align-self:center;
  5532. padding:2px 2px 2px 2px;
  5533. box-sizing:border-box;
  5534. width:100%;
  5535. }
  5536. #u41295_text {
  5537. border-width:0px;
  5538. word-wrap:break-word;
  5539. text-transform:none;
  5540. visibility:hidden;
  5541. }
  5542. #u41296 {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:0px;
  5546. top:0px;
  5547. width:0px;
  5548. height:0px;
  5549. }
  5550. #u41297 {
  5551. border-width:0px;
  5552. position:absolute;
  5553. left:69px;
  5554. top:792px;
  5555. width:24px;
  5556. height:24px;
  5557. display:flex;
  5558. transition:none;
  5559. font-size:8px;
  5560. }
  5561. #u41297 .text {
  5562. position:absolute;
  5563. align-self:center;
  5564. padding:2px 2px 2px 2px;
  5565. box-sizing:border-box;
  5566. width:100%;
  5567. }
  5568. #u41297_img {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:0px;
  5572. top:0px;
  5573. width:24px;
  5574. height:24px;
  5575. }
  5576. #u41297_text {
  5577. border-width:0px;
  5578. word-wrap:break-word;
  5579. text-transform:none;
  5580. }
  5581. #u41298_div {
  5582. border-width:0px;
  5583. position:absolute;
  5584. left:0px;
  5585. top:0px;
  5586. width:25px;
  5587. height:17px;
  5588. background:inherit;
  5589. background-color:rgba(255, 255, 255, 0);
  5590. border-radius:0px;
  5591. filter:drop-shadow(none);
  5592. transition:none;
  5593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5594. font-weight:400;
  5595. font-style:normal;
  5596. font-size:12px;
  5597. }
  5598. #u41298 {
  5599. border-width:0px;
  5600. position:absolute;
  5601. left:69px;
  5602. top:817px;
  5603. width:25px;
  5604. height:17px;
  5605. display:flex;
  5606. transition:none;
  5607. transform-origin:50% 50%;
  5608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5609. font-weight:400;
  5610. font-style:normal;
  5611. font-size:12px;
  5612. }
  5613. #u41298 .text {
  5614. position:absolute;
  5615. align-self:flex-start;
  5616. padding:0px 0px 0px 0px;
  5617. box-sizing:border-box;
  5618. width:100%;
  5619. }
  5620. #u41298_text {
  5621. border-width:0px;
  5622. white-space:nowrap;
  5623. text-transform:none;
  5624. }
  5625. #u41299 {
  5626. border-width:0px;
  5627. position:absolute;
  5628. left:0px;
  5629. top:0px;
  5630. width:0px;
  5631. height:0px;
  5632. }
  5633. #u41300 {
  5634. border-width:0px;
  5635. position:absolute;
  5636. left:339px;
  5637. top:794px;
  5638. width:24px;
  5639. height:24px;
  5640. display:flex;
  5641. transition:none;
  5642. font-size:8px;
  5643. }
  5644. #u41300 .text {
  5645. position:absolute;
  5646. align-self:center;
  5647. padding:2px 2px 2px 2px;
  5648. box-sizing:border-box;
  5649. width:100%;
  5650. }
  5651. #u41300_img {
  5652. border-width:0px;
  5653. position:absolute;
  5654. left:0px;
  5655. top:0px;
  5656. width:24px;
  5657. height:24px;
  5658. }
  5659. #u41300_text {
  5660. border-width:0px;
  5661. word-wrap:break-word;
  5662. text-transform:none;
  5663. }
  5664. #u41301_div {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:0px;
  5668. top:0px;
  5669. width:25px;
  5670. height:17px;
  5671. background:inherit;
  5672. background-color:rgba(255, 255, 255, 0);
  5673. border-radius:0px;
  5674. filter:drop-shadow(none);
  5675. transition:none;
  5676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5677. font-weight:400;
  5678. font-style:normal;
  5679. font-size:12px;
  5680. }
  5681. #u41301 {
  5682. border-width:0px;
  5683. position:absolute;
  5684. left:339px;
  5685. top:819px;
  5686. width:25px;
  5687. height:17px;
  5688. display:flex;
  5689. transition:none;
  5690. transform-origin:50% 50%;
  5691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5692. font-weight:400;
  5693. font-style:normal;
  5694. font-size:12px;
  5695. }
  5696. #u41301 .text {
  5697. position:absolute;
  5698. align-self:flex-start;
  5699. padding:0px 0px 0px 0px;
  5700. box-sizing:border-box;
  5701. width:100%;
  5702. }
  5703. #u41301_text {
  5704. border-width:0px;
  5705. white-space:nowrap;
  5706. text-transform:none;
  5707. }
  5708. #u41302_div {
  5709. border-width:0px;
  5710. position:absolute;
  5711. left:0px;
  5712. top:0px;
  5713. width:375px;
  5714. height:681px;
  5715. background:inherit;
  5716. background-color:rgba(242, 242, 242, 0.4627450980392157);
  5717. border-radius:0px;
  5718. filter:drop-shadow(none);
  5719. transition:none;
  5720. }
  5721. #u41302 {
  5722. border-width:0px;
  5723. position:absolute;
  5724. left:29px;
  5725. top:107px;
  5726. width:375px;
  5727. height:681px;
  5728. display:flex;
  5729. transition:none;
  5730. transform-origin:50% 50%;
  5731. }
  5732. #u41302 .text {
  5733. position:absolute;
  5734. align-self:center;
  5735. padding:2px 2px 2px 2px;
  5736. box-sizing:border-box;
  5737. width:100%;
  5738. }
  5739. #u41302_text {
  5740. border-width:0px;
  5741. word-wrap:break-word;
  5742. text-transform:none;
  5743. visibility:hidden;
  5744. }
  5745. #u41303 {
  5746. border-width:0px;
  5747. position:absolute;
  5748. left:0px;
  5749. top:0px;
  5750. width:0px;
  5751. height:0px;
  5752. }
  5753. #u41304 {
  5754. border-width:0px;
  5755. position:absolute;
  5756. left:251px;
  5757. top:792px;
  5758. width:24px;
  5759. height:24px;
  5760. display:flex;
  5761. transition:none;
  5762. font-size:8px;
  5763. }
  5764. #u41304 .text {
  5765. position:absolute;
  5766. align-self:center;
  5767. padding:2px 2px 2px 2px;
  5768. box-sizing:border-box;
  5769. width:100%;
  5770. }
  5771. #u41304_img {
  5772. border-width:0px;
  5773. position:absolute;
  5774. left:0px;
  5775. top:0px;
  5776. width:24px;
  5777. height:24px;
  5778. }
  5779. #u41304_text {
  5780. border-width:0px;
  5781. word-wrap:break-word;
  5782. text-transform:none;
  5783. }
  5784. #u41305_div {
  5785. border-width:0px;
  5786. position:absolute;
  5787. left:0px;
  5788. top:0px;
  5789. width:37px;
  5790. height:17px;
  5791. background:inherit;
  5792. background-color:rgba(255, 255, 255, 0);
  5793. border-radius:0px;
  5794. filter:drop-shadow(none);
  5795. transition:none;
  5796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5797. font-weight:400;
  5798. font-style:normal;
  5799. font-size:12px;
  5800. }
  5801. #u41305 {
  5802. border-width:0px;
  5803. position:absolute;
  5804. left:245px;
  5805. top:817px;
  5806. width:37px;
  5807. height:17px;
  5808. display:flex;
  5809. transition:none;
  5810. transform-origin:50% 50%;
  5811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5812. font-weight:400;
  5813. font-style:normal;
  5814. font-size:12px;
  5815. }
  5816. #u41305 .text {
  5817. position:absolute;
  5818. align-self:flex-start;
  5819. padding:0px 0px 0px 0px;
  5820. box-sizing:border-box;
  5821. width:100%;
  5822. }
  5823. #u41305_text {
  5824. border-width:0px;
  5825. white-space:nowrap;
  5826. text-transform:none;
  5827. }
  5828. #u41306 {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:0px;
  5832. top:0px;
  5833. width:0px;
  5834. height:0px;
  5835. }
  5836. #u41307 {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:157px;
  5840. top:792px;
  5841. width:24px;
  5842. height:24px;
  5843. display:flex;
  5844. transition:none;
  5845. font-size:8px;
  5846. }
  5847. #u41307 .text {
  5848. position:absolute;
  5849. align-self:center;
  5850. padding:2px 2px 2px 2px;
  5851. box-sizing:border-box;
  5852. width:100%;
  5853. }
  5854. #u41307_img {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:0px;
  5858. top:0px;
  5859. width:24px;
  5860. height:24px;
  5861. }
  5862. #u41307_text {
  5863. border-width:0px;
  5864. word-wrap:break-word;
  5865. text-transform:none;
  5866. }
  5867. #u41308_div {
  5868. border-width:0px;
  5869. position:absolute;
  5870. left:0px;
  5871. top:0px;
  5872. width:37px;
  5873. height:17px;
  5874. background:inherit;
  5875. background-color:rgba(255, 255, 255, 0);
  5876. border-radius:0px;
  5877. filter:drop-shadow(none);
  5878. transition:none;
  5879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5880. font-weight:400;
  5881. font-style:normal;
  5882. font-size:12px;
  5883. }
  5884. #u41308 {
  5885. border-width:0px;
  5886. position:absolute;
  5887. left:151px;
  5888. top:817px;
  5889. width:37px;
  5890. height:17px;
  5891. display:flex;
  5892. transition:none;
  5893. transform-origin:50% 50%;
  5894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5895. font-weight:400;
  5896. font-style:normal;
  5897. font-size:12px;
  5898. }
  5899. #u41308 .text {
  5900. position:absolute;
  5901. align-self:flex-start;
  5902. padding:0px 0px 0px 0px;
  5903. box-sizing:border-box;
  5904. width:100%;
  5905. }
  5906. #u41308_text {
  5907. border-width:0px;
  5908. white-space:nowrap;
  5909. text-transform:none;
  5910. }
  5911. #u41309_div {
  5912. border-width:0px;
  5913. position:absolute;
  5914. left:0px;
  5915. top:0px;
  5916. width:375px;
  5917. height:775px;
  5918. background:inherit;
  5919. background-color:rgba(255, 255, 255, 1);
  5920. border-top:0px;
  5921. border-radius:28px;
  5922. border-top-left-radius:0px;
  5923. border-top-right-radius:0px;
  5924. filter:drop-shadow(none);
  5925. transition:none;
  5926. }
  5927. #u41309 {
  5928. border-width:0px;
  5929. position:absolute;
  5930. left:1385px;
  5931. top:249px;
  5932. width:375px;
  5933. height:775px;
  5934. display:flex;
  5935. transition:none;
  5936. transform-origin:50% 50%;
  5937. }
  5938. #u41309 .text {
  5939. position:absolute;
  5940. align-self:center;
  5941. padding:2px 2px 2px 2px;
  5942. box-sizing:border-box;
  5943. width:100%;
  5944. }
  5945. #u41309_text {
  5946. border-width:0px;
  5947. word-wrap:break-word;
  5948. text-transform:none;
  5949. visibility:hidden;
  5950. }
  5951. #u41310_div {
  5952. border-width:0px;
  5953. position:absolute;
  5954. left:0px;
  5955. top:0px;
  5956. width:121px;
  5957. height:30px;
  5958. background:inherit;
  5959. background-color:rgba(255, 255, 255, 0);
  5960. border-left:0px;
  5961. border-top:0px;
  5962. border-right:0px;
  5963. border-radius:0px;
  5964. border-bottom-right-radius:0px;
  5965. border-bottom-left-radius:0px;
  5966. filter:drop-shadow(none);
  5967. transition:none;
  5968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5969. font-weight:400;
  5970. font-style:normal;
  5971. line-height:30px;
  5972. }
  5973. #u41310 {
  5974. border-width:0px;
  5975. position:absolute;
  5976. left:1507px;
  5977. top:410px;
  5978. width:121px;
  5979. height:30px;
  5980. display:flex;
  5981. transition:none;
  5982. transform-origin:50% 50%;
  5983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5984. font-weight:400;
  5985. font-style:normal;
  5986. line-height:30px;
  5987. }
  5988. #u41310 .text {
  5989. position:absolute;
  5990. align-self:center;
  5991. padding:0px 0px 0px 0px;
  5992. box-sizing:border-box;
  5993. width:100%;
  5994. }
  5995. #u41310_text {
  5996. border-width:0px;
  5997. white-space:nowrap;
  5998. text-transform:none;
  5999. }
  6000. #u41311_div {
  6001. border-width:0px;
  6002. position:absolute;
  6003. left:0px;
  6004. top:0px;
  6005. width:126px;
  6006. height:40px;
  6007. background:inherit;
  6008. background-color:rgba(255, 255, 255, 1);
  6009. box-sizing:border-box;
  6010. border-width:1px;
  6011. border-style:solid;
  6012. border-color:rgba(121, 121, 121, 1);
  6013. border-radius:63px;
  6014. filter:drop-shadow(none);
  6015. transition:none;
  6016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6017. font-weight:400;
  6018. font-style:normal;
  6019. font-size:14px;
  6020. }
  6021. #u41311 {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:1583px;
  6025. top:537px;
  6026. width:126px;
  6027. height:40px;
  6028. display:flex;
  6029. transition:none;
  6030. transform-origin:50% 50%;
  6031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6032. font-weight:400;
  6033. font-style:normal;
  6034. font-size:14px;
  6035. }
  6036. #u41311 .text {
  6037. position:absolute;
  6038. align-self:center;
  6039. padding:2px 2px 2px 2px;
  6040. box-sizing:border-box;
  6041. width:100%;
  6042. }
  6043. #u41311_text {
  6044. border-width:0px;
  6045. word-wrap:break-word;
  6046. text-transform:none;
  6047. }
  6048. #u41312 {
  6049. border-width:0px;
  6050. position:absolute;
  6051. left:1531px;
  6052. top:311px;
  6053. width:83px;
  6054. height:83px;
  6055. display:flex;
  6056. transition:none;
  6057. }
  6058. #u41312 .text {
  6059. position:absolute;
  6060. align-self:center;
  6061. padding:2px 2px 2px 2px;
  6062. box-sizing:border-box;
  6063. width:100%;
  6064. }
  6065. #u41312_img {
  6066. border-width:0px;
  6067. position:absolute;
  6068. left:0px;
  6069. top:0px;
  6070. width:83px;
  6071. height:83px;
  6072. }
  6073. #u41312_text {
  6074. border-width:0px;
  6075. word-wrap:break-word;
  6076. text-transform:none;
  6077. visibility:hidden;
  6078. }
  6079. #u41313_div {
  6080. border-width:0px;
  6081. position:absolute;
  6082. left:0px;
  6083. top:0px;
  6084. width:126px;
  6085. height:40px;
  6086. background:inherit;
  6087. background-color:rgba(255, 255, 255, 1);
  6088. box-sizing:border-box;
  6089. border-width:1px;
  6090. border-style:solid;
  6091. border-color:rgba(121, 121, 121, 1);
  6092. border-radius:63px;
  6093. filter:drop-shadow(none);
  6094. transition:none;
  6095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6096. font-weight:400;
  6097. font-style:normal;
  6098. font-size:14px;
  6099. }
  6100. #u41313 {
  6101. border-width:0px;
  6102. position:absolute;
  6103. left:1437px;
  6104. top:537px;
  6105. width:126px;
  6106. height:40px;
  6107. display:flex;
  6108. transition:none;
  6109. transform-origin:50% 50%;
  6110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6111. font-weight:400;
  6112. font-style:normal;
  6113. font-size:14px;
  6114. }
  6115. #u41313 .text {
  6116. position:absolute;
  6117. align-self:center;
  6118. padding:2px 2px 2px 2px;
  6119. box-sizing:border-box;
  6120. width:100%;
  6121. }
  6122. #u41313_text {
  6123. border-width:0px;
  6124. word-wrap:break-word;
  6125. text-transform:none;
  6126. }
  6127. #u41314_div {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:0px;
  6131. top:0px;
  6132. width:30px;
  6133. height:30px;
  6134. background:inherit;
  6135. background-color:rgba(255, 255, 255, 0);
  6136. border-left:0px;
  6137. border-top:0px;
  6138. border-right:0px;
  6139. border-radius:0px;
  6140. border-bottom-right-radius:0px;
  6141. border-bottom-left-radius:0px;
  6142. filter:drop-shadow(none);
  6143. transition:none;
  6144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6145. font-weight:400;
  6146. font-style:normal;
  6147. font-size:18px;
  6148. text-align:center;
  6149. line-height:30px;
  6150. }
  6151. #u41314 {
  6152. border-width:0px;
  6153. position:absolute;
  6154. left:1395px;
  6155. top:259px;
  6156. width:30px;
  6157. height:30px;
  6158. display:flex;
  6159. transition:none;
  6160. transform-origin:50% 50%;
  6161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6162. font-weight:400;
  6163. font-style:normal;
  6164. font-size:18px;
  6165. text-align:center;
  6166. line-height:30px;
  6167. }
  6168. #u41314 .text {
  6169. position:absolute;
  6170. align-self:center;
  6171. padding:0px 0px 0px 0px;
  6172. box-sizing:border-box;
  6173. width:100%;
  6174. }
  6175. #u41314_text {
  6176. border-width:0px;
  6177. word-wrap:break-word;
  6178. text-transform:none;
  6179. }
  6180. #u41315 {
  6181. border-width:0px;
  6182. position:absolute;
  6183. left:0px;
  6184. top:0px;
  6185. width:0px;
  6186. height:0px;
  6187. }
  6188. #u41316 {
  6189. border-width:0px;
  6190. position:absolute;
  6191. left:1397px;
  6192. top:615px;
  6193. width:350px;
  6194. height:40px;
  6195. display:flex;
  6196. transition:none;
  6197. }
  6198. #u41316 .text {
  6199. position:absolute;
  6200. align-self:center;
  6201. padding:2px 2px 2px 2px;
  6202. box-sizing:border-box;
  6203. width:100%;
  6204. }
  6205. #u41316_img {
  6206. border-width:0px;
  6207. position:absolute;
  6208. left:0px;
  6209. top:0px;
  6210. width:350px;
  6211. height:40px;
  6212. }
  6213. #u41316_text {
  6214. border-width:0px;
  6215. word-wrap:break-word;
  6216. text-transform:none;
  6217. visibility:hidden;
  6218. }
  6219. #u41317 {
  6220. border-width:0px;
  6221. position:absolute;
  6222. left:0px;
  6223. top:0px;
  6224. width:0px;
  6225. height:0px;
  6226. }
  6227. #u41318_div {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:0px;
  6231. top:0px;
  6232. width:221px;
  6233. height:30px;
  6234. background:inherit;
  6235. background-color:rgba(255, 255, 255, 0);
  6236. border-left:0px;
  6237. border-top:0px;
  6238. border-right:0px;
  6239. border-radius:0px;
  6240. border-bottom-right-radius:0px;
  6241. border-bottom-left-radius:0px;
  6242. filter:drop-shadow(none);
  6243. transition:none;
  6244. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6245. font-style:normal;
  6246. color:#FFFFFF;
  6247. text-align:center;
  6248. line-height:30px;
  6249. }
  6250. #u41318 {
  6251. border-width:0px;
  6252. position:absolute;
  6253. left:1477px;
  6254. top:620px;
  6255. width:221px;
  6256. height:30px;
  6257. display:flex;
  6258. transition:none;
  6259. transform-origin:50% 50%;
  6260. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6261. font-style:normal;
  6262. color:#FFFFFF;
  6263. text-align:center;
  6264. line-height:30px;
  6265. }
  6266. #u41318 .text {
  6267. position:absolute;
  6268. align-self:center;
  6269. padding:0px 0px 0px 0px;
  6270. box-sizing:border-box;
  6271. width:100%;
  6272. }
  6273. #u41318_text {
  6274. border-width:0px;
  6275. white-space:nowrap;
  6276. text-transform:none;
  6277. }
  6278. #u41319 {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:1447px;
  6282. top:622px;
  6283. width:26px;
  6284. height:26px;
  6285. display:flex;
  6286. transition:none;
  6287. }
  6288. #u41319 .text {
  6289. position:absolute;
  6290. align-self:center;
  6291. padding:2px 2px 2px 2px;
  6292. box-sizing:border-box;
  6293. width:100%;
  6294. }
  6295. #u41319_img {
  6296. border-width:0px;
  6297. position:absolute;
  6298. left:0px;
  6299. top:0px;
  6300. width:26px;
  6301. height:26px;
  6302. }
  6303. #u41319_text {
  6304. border-width:0px;
  6305. word-wrap:break-word;
  6306. text-transform:none;
  6307. }
  6308. #u41320_div {
  6309. border-width:0px;
  6310. position:absolute;
  6311. left:0px;
  6312. top:0px;
  6313. width:304px;
  6314. height:60px;
  6315. background:inherit;
  6316. background-color:rgba(255, 255, 255, 0);
  6317. border-left:0px;
  6318. border-top:0px;
  6319. border-right:0px;
  6320. border-radius:0px;
  6321. border-bottom-right-radius:0px;
  6322. border-bottom-left-radius:0px;
  6323. filter:drop-shadow(none);
  6324. transition:none;
  6325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6326. font-weight:400;
  6327. font-style:normal;
  6328. font-size:14px;
  6329. text-align:center;
  6330. line-height:30px;
  6331. }
  6332. #u41320 {
  6333. border-width:0px;
  6334. position:absolute;
  6335. left:1428px;
  6336. top:451px;
  6337. width:304px;
  6338. height:60px;
  6339. display:flex;
  6340. transition:none;
  6341. transform-origin:50% 50%;
  6342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6343. font-weight:400;
  6344. font-style:normal;
  6345. font-size:14px;
  6346. text-align:center;
  6347. line-height:30px;
  6348. }
  6349. #u41320 .text {
  6350. position:absolute;
  6351. align-self:center;
  6352. padding:0px 0px 0px 0px;
  6353. box-sizing:border-box;
  6354. width:100%;
  6355. }
  6356. #u41320_text {
  6357. border-width:0px;
  6358. word-wrap:break-word;
  6359. text-transform:none;
  6360. }
  6361. #u41321_div {
  6362. border-width:0px;
  6363. position:absolute;
  6364. left:0px;
  6365. top:0px;
  6366. width:413px;
  6367. height:40px;
  6368. background:inherit;
  6369. background-color:rgba(255, 255, 255, 0);
  6370. border-left:0px;
  6371. border-top:0px;
  6372. border-right:0px;
  6373. border-radius:0px;
  6374. border-bottom-right-radius:0px;
  6375. border-bottom-left-radius:0px;
  6376. filter:drop-shadow(none);
  6377. transition:none;
  6378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6379. font-weight:400;
  6380. font-style:normal;
  6381. font-size:14px;
  6382. color:#D9001B;
  6383. }
  6384. #u41321 {
  6385. border-width:0px;
  6386. position:absolute;
  6387. left:1563px;
  6388. top:574px;
  6389. width:413px;
  6390. height:40px;
  6391. display:flex;
  6392. transition:none;
  6393. transform-origin:50% 50%;
  6394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6395. font-weight:400;
  6396. font-style:normal;
  6397. font-size:14px;
  6398. color:#D9001B;
  6399. }
  6400. #u41321 .text {
  6401. position:absolute;
  6402. align-self:flex-start;
  6403. padding:0px 0px 0px 0px;
  6404. box-sizing:border-box;
  6405. width:100%;
  6406. }
  6407. #u41321_text {
  6408. border-width:0px;
  6409. white-space:nowrap;
  6410. text-transform:none;
  6411. }
  6412. #u41322 {
  6413. border-width:0px;
  6414. position:absolute;
  6415. left:0px;
  6416. top:0px;
  6417. width:0px;
  6418. height:0px;
  6419. }
  6420. #u41323_div {
  6421. border-width:0px;
  6422. position:absolute;
  6423. left:0px;
  6424. top:0px;
  6425. width:645px;
  6426. height:120px;
  6427. background:inherit;
  6428. background-color:rgba(255, 255, 255, 0);
  6429. border-left:0px;
  6430. border-top:0px;
  6431. border-right:0px;
  6432. border-radius:0px;
  6433. border-bottom-right-radius:0px;
  6434. border-bottom-left-radius:0px;
  6435. filter:drop-shadow(none);
  6436. transition:none;
  6437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6438. font-weight:400;
  6439. font-style:normal;
  6440. font-size:14px;
  6441. color:#D9001B;
  6442. }
  6443. #u41323 {
  6444. border-width:0px;
  6445. position:absolute;
  6446. left:1397px;
  6447. top:1063px;
  6448. width:645px;
  6449. height:120px;
  6450. display:flex;
  6451. transition:none;
  6452. transform-origin:50% 50%;
  6453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6454. font-weight:400;
  6455. font-style:normal;
  6456. font-size:14px;
  6457. color:#D9001B;
  6458. }
  6459. #u41323 .text {
  6460. position:absolute;
  6461. align-self:flex-start;
  6462. padding:0px 0px 0px 0px;
  6463. box-sizing:border-box;
  6464. width:100%;
  6465. }
  6466. #u41323_text {
  6467. border-width:0px;
  6468. white-space:nowrap;
  6469. text-transform:none;
  6470. }
  6471. #u41324 {
  6472. border-width:0px;
  6473. position:absolute;
  6474. left:0px;
  6475. top:0px;
  6476. width:0px;
  6477. height:0px;
  6478. }
  6479. #u41325_div {
  6480. border-width:0px;
  6481. position:absolute;
  6482. left:0px;
  6483. top:0px;
  6484. width:260px;
  6485. height:40px;
  6486. background:inherit;
  6487. background-color:rgba(255, 255, 255, 1);
  6488. border-radius:63px;
  6489. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  6490. transition:none;
  6491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6492. font-weight:400;
  6493. font-style:normal;
  6494. font-size:14px;
  6495. }
  6496. #u41325 {
  6497. border-width:0px;
  6498. position:absolute;
  6499. left:1400px;
  6500. top:1109px;
  6501. width:260px;
  6502. height:40px;
  6503. display:flex;
  6504. transition:none;
  6505. transform-origin:50% 50%;
  6506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6507. font-weight:400;
  6508. font-style:normal;
  6509. font-size:14px;
  6510. }
  6511. #u41325 .text {
  6512. position:absolute;
  6513. align-self:center;
  6514. padding:2px 2px 2px 2px;
  6515. box-sizing:border-box;
  6516. width:100%;
  6517. }
  6518. #u41325_text {
  6519. border-width:0px;
  6520. word-wrap:break-word;
  6521. text-transform:none;
  6522. visibility:hidden;
  6523. }
  6524. #u41326 {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:1410px;
  6528. top:1119px;
  6529. width:19px;
  6530. height:19px;
  6531. display:flex;
  6532. transition:none;
  6533. }
  6534. #u41326 .text {
  6535. position:absolute;
  6536. align-self:center;
  6537. padding:2px 2px 2px 2px;
  6538. box-sizing:border-box;
  6539. width:100%;
  6540. }
  6541. #u41326_img {
  6542. border-width:0px;
  6543. position:absolute;
  6544. left:0px;
  6545. top:0px;
  6546. width:19px;
  6547. height:19px;
  6548. }
  6549. #u41326_text {
  6550. border-width:0px;
  6551. word-wrap:break-word;
  6552. text-transform:none;
  6553. visibility:hidden;
  6554. }
  6555. #u41327_div {
  6556. border-width:0px;
  6557. position:absolute;
  6558. left:0px;
  6559. top:0px;
  6560. width:199px;
  6561. height:17px;
  6562. background:inherit;
  6563. background-color:rgba(255, 255, 255, 0);
  6564. border-left:0px;
  6565. border-top:0px;
  6566. border-right:0px;
  6567. border-radius:0px;
  6568. border-bottom-right-radius:0px;
  6569. border-bottom-left-radius:0px;
  6570. filter:drop-shadow(none);
  6571. transition:none;
  6572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6573. font-weight:400;
  6574. font-style:normal;
  6575. font-size:12px;
  6576. }
  6577. #u41327 {
  6578. border-width:0px;
  6579. position:absolute;
  6580. left:1439px;
  6581. top:1120px;
  6582. width:199px;
  6583. height:17px;
  6584. display:flex;
  6585. transition:none;
  6586. transform-origin:50% 50%;
  6587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6588. font-weight:400;
  6589. font-style:normal;
  6590. font-size:12px;
  6591. }
  6592. #u41327 .text {
  6593. position:absolute;
  6594. align-self:flex-start;
  6595. padding:0px 0px 0px 0px;
  6596. box-sizing:border-box;
  6597. width:100%;
  6598. }
  6599. #u41327_text {
  6600. border-width:0px;
  6601. white-space:nowrap;
  6602. text-transform:none;
  6603. }
  6604. #u41328_div {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:0px;
  6608. top:0px;
  6609. width:375px;
  6610. height:796px;
  6611. background:inherit;
  6612. background-color:rgba(255, 255, 255, 1);
  6613. border-radius:4px;
  6614. filter:drop-shadow(none);
  6615. transition:none;
  6616. }
  6617. #u41328 {
  6618. border-width:0px;
  6619. position:absolute;
  6620. left:937px;
  6621. top:400px;
  6622. width:375px;
  6623. height:796px;
  6624. display:flex;
  6625. transition:none;
  6626. transform-origin:50% 50%;
  6627. }
  6628. #u41328 .text {
  6629. position:absolute;
  6630. align-self:center;
  6631. padding:2px 2px 2px 2px;
  6632. box-sizing:border-box;
  6633. width:100%;
  6634. }
  6635. #u41328_text {
  6636. border-width:0px;
  6637. word-wrap:break-word;
  6638. text-transform:none;
  6639. visibility:hidden;
  6640. }
  6641. #u41329 {
  6642. border-width:0px;
  6643. position:absolute;
  6644. left:0px;
  6645. top:0px;
  6646. width:0px;
  6647. height:0px;
  6648. }
  6649. #u41330 {
  6650. border-width:0px;
  6651. position:absolute;
  6652. left:0px;
  6653. top:0px;
  6654. width:0px;
  6655. height:0px;
  6656. }
  6657. #u41331 {
  6658. border-width:0px;
  6659. position:absolute;
  6660. left:1291px;
  6661. top:473px;
  6662. width:7px;
  6663. height:12px;
  6664. display:flex;
  6665. -webkit-transform:rotate(180deg);
  6666. -moz-transform:rotate(180deg);
  6667. -ms-transform:rotate(180deg);
  6668. transform:rotate(180deg);
  6669. transition:none;
  6670. }
  6671. #u41331 .text {
  6672. position:absolute;
  6673. align-self:center;
  6674. padding:2px 2px 2px 2px;
  6675. box-sizing:border-box;
  6676. width:100%;
  6677. }
  6678. #u41331_img {
  6679. border-width:0px;
  6680. position:absolute;
  6681. left:0px;
  6682. top:0px;
  6683. width:7px;
  6684. height:12px;
  6685. }
  6686. #u41331_text {
  6687. border-width:0px;
  6688. word-wrap:break-word;
  6689. text-transform:none;
  6690. visibility:hidden;
  6691. }
  6692. #u41332_div {
  6693. border-width:0px;
  6694. position:absolute;
  6695. left:0px;
  6696. top:0px;
  6697. width:235px;
  6698. height:40px;
  6699. background:inherit;
  6700. background-color:rgba(255, 255, 255, 0);
  6701. border-left:0px;
  6702. border-top:0px;
  6703. border-right:0px;
  6704. border-radius:0px;
  6705. border-bottom-right-radius:0px;
  6706. border-bottom-left-radius:0px;
  6707. filter:drop-shadow(none);
  6708. transition:none;
  6709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6710. font-weight:400;
  6711. font-style:normal;
  6712. font-size:14px;
  6713. color:#AAAAAA;
  6714. line-height:40px;
  6715. }
  6716. #u41332 {
  6717. border-width:0px;
  6718. position:absolute;
  6719. left:956px;
  6720. top:459px;
  6721. width:235px;
  6722. height:40px;
  6723. display:flex;
  6724. transition:none;
  6725. transform-origin:50% 50%;
  6726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6727. font-weight:400;
  6728. font-style:normal;
  6729. font-size:14px;
  6730. color:#AAAAAA;
  6731. line-height:40px;
  6732. }
  6733. #u41332 .text {
  6734. position:absolute;
  6735. align-self:flex-start;
  6736. padding:0px 0px 0px 0px;
  6737. box-sizing:border-box;
  6738. width:100%;
  6739. }
  6740. #u41332_text {
  6741. border-width:0px;
  6742. word-wrap:break-word;
  6743. text-transform:none;
  6744. }
  6745. #u41333_div {
  6746. border-width:0px;
  6747. position:absolute;
  6748. left:0px;
  6749. top:0px;
  6750. width:92px;
  6751. height:40px;
  6752. background:inherit;
  6753. background-color:rgba(255, 255, 255, 0);
  6754. border-left:0px;
  6755. border-top:0px;
  6756. border-right:0px;
  6757. border-radius:0px;
  6758. border-bottom-right-radius:0px;
  6759. border-bottom-left-radius:0px;
  6760. filter:drop-shadow(none);
  6761. transition:none;
  6762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6763. font-weight:400;
  6764. font-style:normal;
  6765. font-size:14px;
  6766. line-height:40px;
  6767. }
  6768. #u41333 {
  6769. border-width:0px;
  6770. position:absolute;
  6771. left:956px;
  6772. top:419px;
  6773. width:92px;
  6774. height:40px;
  6775. display:flex;
  6776. transition:none;
  6777. transform-origin:50% 50%;
  6778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6779. font-weight:400;
  6780. font-style:normal;
  6781. font-size:14px;
  6782. line-height:40px;
  6783. }
  6784. #u41333 .text {
  6785. position:absolute;
  6786. align-self:flex-start;
  6787. padding:0px 0px 0px 0px;
  6788. box-sizing:border-box;
  6789. width:100%;
  6790. }
  6791. #u41333_text {
  6792. border-width:0px;
  6793. white-space:nowrap;
  6794. text-transform:none;
  6795. }
  6796. #u41334 {
  6797. border-width:0px;
  6798. position:absolute;
  6799. left:0px;
  6800. top:0px;
  6801. width:0px;
  6802. height:0px;
  6803. }
  6804. #u41335 {
  6805. border-width:0px;
  6806. position:absolute;
  6807. left:0px;
  6808. top:0px;
  6809. width:0px;
  6810. height:0px;
  6811. }
  6812. #u41336_div {
  6813. border-width:0px;
  6814. position:absolute;
  6815. left:0px;
  6816. top:0px;
  6817. width:235px;
  6818. height:40px;
  6819. background:inherit;
  6820. background-color:rgba(255, 255, 255, 0);
  6821. border-left:0px;
  6822. border-top:0px;
  6823. border-right:0px;
  6824. border-radius:0px;
  6825. border-bottom-right-radius:0px;
  6826. border-bottom-left-radius:0px;
  6827. filter:drop-shadow(none);
  6828. transition:none;
  6829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6830. font-weight:400;
  6831. font-style:normal;
  6832. font-size:14px;
  6833. color:#AAAAAA;
  6834. line-height:40px;
  6835. }
  6836. #u41336 {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:956px;
  6840. top:539px;
  6841. width:235px;
  6842. height:40px;
  6843. display:flex;
  6844. transition:none;
  6845. transform-origin:50% 50%;
  6846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6847. font-weight:400;
  6848. font-style:normal;
  6849. font-size:14px;
  6850. color:#AAAAAA;
  6851. line-height:40px;
  6852. }
  6853. #u41336 .text {
  6854. position:absolute;
  6855. align-self:flex-start;
  6856. padding:0px 0px 0px 0px;
  6857. box-sizing:border-box;
  6858. width:100%;
  6859. }
  6860. #u41336_text {
  6861. border-width:0px;
  6862. word-wrap:break-word;
  6863. text-transform:none;
  6864. }
  6865. #u41337_div {
  6866. border-width:0px;
  6867. position:absolute;
  6868. left:0px;
  6869. top:0px;
  6870. width:36px;
  6871. height:40px;
  6872. background:inherit;
  6873. background-color:rgba(255, 255, 255, 0);
  6874. border-left:0px;
  6875. border-top:0px;
  6876. border-right:0px;
  6877. border-radius:0px;
  6878. border-bottom-right-radius:0px;
  6879. border-bottom-left-radius:0px;
  6880. filter:drop-shadow(none);
  6881. transition:none;
  6882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6883. font-weight:400;
  6884. font-style:normal;
  6885. font-size:14px;
  6886. line-height:40px;
  6887. }
  6888. #u41337 {
  6889. border-width:0px;
  6890. position:absolute;
  6891. left:956px;
  6892. top:499px;
  6893. width:36px;
  6894. height:40px;
  6895. display:flex;
  6896. transition:none;
  6897. transform-origin:50% 50%;
  6898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6899. font-weight:400;
  6900. font-style:normal;
  6901. font-size:14px;
  6902. line-height:40px;
  6903. }
  6904. #u41337 .text {
  6905. position:absolute;
  6906. align-self:flex-start;
  6907. padding:0px 0px 0px 0px;
  6908. box-sizing:border-box;
  6909. width:100%;
  6910. }
  6911. #u41337_text {
  6912. border-width:0px;
  6913. white-space:nowrap;
  6914. text-transform:none;
  6915. }
  6916. #u41338 {
  6917. border-width:0px;
  6918. position:absolute;
  6919. left:0px;
  6920. top:0px;
  6921. width:0px;
  6922. height:0px;
  6923. }
  6924. #u41339 {
  6925. border-width:0px;
  6926. position:absolute;
  6927. left:0px;
  6928. top:0px;
  6929. width:0px;
  6930. height:0px;
  6931. }
  6932. #u41340_div {
  6933. border-width:0px;
  6934. position:absolute;
  6935. left:0px;
  6936. top:0px;
  6937. width:235px;
  6938. height:40px;
  6939. background:inherit;
  6940. background-color:rgba(255, 255, 255, 0);
  6941. border-left:0px;
  6942. border-top:0px;
  6943. border-right:0px;
  6944. border-radius:0px;
  6945. border-bottom-right-radius:0px;
  6946. border-bottom-left-radius:0px;
  6947. filter:drop-shadow(none);
  6948. transition:none;
  6949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6950. font-weight:400;
  6951. font-style:normal;
  6952. font-size:14px;
  6953. color:#AAAAAA;
  6954. line-height:40px;
  6955. }
  6956. #u41340 {
  6957. border-width:0px;
  6958. position:absolute;
  6959. left:956px;
  6960. top:853px;
  6961. width:235px;
  6962. height:40px;
  6963. display:flex;
  6964. transition:none;
  6965. transform-origin:50% 50%;
  6966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6967. font-weight:400;
  6968. font-style:normal;
  6969. font-size:14px;
  6970. color:#AAAAAA;
  6971. line-height:40px;
  6972. }
  6973. #u41340 .text {
  6974. position:absolute;
  6975. align-self:flex-start;
  6976. padding:0px 0px 0px 0px;
  6977. box-sizing:border-box;
  6978. width:100%;
  6979. }
  6980. #u41340_text {
  6981. border-width:0px;
  6982. word-wrap:break-word;
  6983. text-transform:none;
  6984. }
  6985. #u41341_div {
  6986. border-width:0px;
  6987. position:absolute;
  6988. left:0px;
  6989. top:0px;
  6990. width:71px;
  6991. height:40px;
  6992. background:inherit;
  6993. background-color:rgba(255, 255, 255, 0);
  6994. border-left:0px;
  6995. border-top:0px;
  6996. border-right:0px;
  6997. border-radius:0px;
  6998. border-bottom-right-radius:0px;
  6999. border-bottom-left-radius:0px;
  7000. filter:drop-shadow(none);
  7001. transition:none;
  7002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7003. font-weight:400;
  7004. font-style:normal;
  7005. font-size:14px;
  7006. line-height:40px;
  7007. }
  7008. #u41341 {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:956px;
  7012. top:813px;
  7013. width:71px;
  7014. height:40px;
  7015. display:flex;
  7016. transition:none;
  7017. transform-origin:50% 50%;
  7018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7019. font-weight:400;
  7020. font-style:normal;
  7021. font-size:14px;
  7022. line-height:40px;
  7023. }
  7024. #u41341 .text {
  7025. position:absolute;
  7026. align-self:flex-start;
  7027. padding:0px 0px 0px 0px;
  7028. box-sizing:border-box;
  7029. width:100%;
  7030. }
  7031. #u41341_text {
  7032. border-width:0px;
  7033. white-space:nowrap;
  7034. text-transform:none;
  7035. }
  7036. #u41342 {
  7037. border-width:0px;
  7038. position:absolute;
  7039. left:0px;
  7040. top:0px;
  7041. width:0px;
  7042. height:0px;
  7043. }
  7044. #u41343_div {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:0px;
  7048. top:0px;
  7049. width:71px;
  7050. height:40px;
  7051. background:inherit;
  7052. background-color:rgba(255, 255, 255, 0);
  7053. border-left:0px;
  7054. border-top:0px;
  7055. border-right:0px;
  7056. border-radius:0px;
  7057. border-bottom-right-radius:0px;
  7058. border-bottom-left-radius:0px;
  7059. filter:drop-shadow(none);
  7060. transition:none;
  7061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7062. font-weight:400;
  7063. font-style:normal;
  7064. font-size:14px;
  7065. line-height:40px;
  7066. }
  7067. #u41343 {
  7068. border-width:0px;
  7069. position:absolute;
  7070. left:956px;
  7071. top:893px;
  7072. width:71px;
  7073. height:40px;
  7074. display:flex;
  7075. transition:none;
  7076. transform-origin:50% 50%;
  7077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7078. font-weight:400;
  7079. font-style:normal;
  7080. font-size:14px;
  7081. line-height:40px;
  7082. }
  7083. #u41343 .text {
  7084. position:absolute;
  7085. align-self:flex-start;
  7086. padding:0px 0px 0px 0px;
  7087. box-sizing:border-box;
  7088. width:100%;
  7089. }
  7090. #u41343_text {
  7091. border-width:0px;
  7092. white-space:nowrap;
  7093. text-transform:none;
  7094. }
  7095. #u41344 {
  7096. border-width:0px;
  7097. position:absolute;
  7098. left:956px;
  7099. top:933px;
  7100. width:331px;
  7101. height:110px;
  7102. display:flex;
  7103. transition:none;
  7104. }
  7105. #u41344 .text {
  7106. position:absolute;
  7107. align-self:center;
  7108. padding:2px 2px 2px 2px;
  7109. box-sizing:border-box;
  7110. width:100%;
  7111. }
  7112. #u41344_img {
  7113. border-width:0px;
  7114. position:absolute;
  7115. left:0px;
  7116. top:0px;
  7117. width:331px;
  7118. height:110px;
  7119. }
  7120. #u41344_text {
  7121. border-width:0px;
  7122. word-wrap:break-word;
  7123. text-transform:none;
  7124. visibility:hidden;
  7125. }
  7126. #u41345 {
  7127. border-width:0px;
  7128. position:absolute;
  7129. left:0px;
  7130. top:0px;
  7131. width:0px;
  7132. height:0px;
  7133. }
  7134. #u41346 {
  7135. border-width:0px;
  7136. position:absolute;
  7137. left:0px;
  7138. top:0px;
  7139. width:0px;
  7140. height:0px;
  7141. }
  7142. #u41347_div {
  7143. border-width:0px;
  7144. position:absolute;
  7145. left:0px;
  7146. top:0px;
  7147. width:337px;
  7148. height:40px;
  7149. background:inherit;
  7150. background-color:rgba(255, 255, 255, 0);
  7151. border-left:0px;
  7152. border-top:0px;
  7153. border-right:0px;
  7154. border-radius:0px;
  7155. border-bottom-right-radius:0px;
  7156. border-bottom-left-radius:0px;
  7157. filter:drop-shadow(none);
  7158. transition:none;
  7159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7160. font-weight:400;
  7161. font-style:normal;
  7162. font-size:14px;
  7163. color:#AAAAAA;
  7164. line-height:40px;
  7165. }
  7166. #u41347 {
  7167. border-width:0px;
  7168. position:absolute;
  7169. left:956px;
  7170. top:619px;
  7171. width:337px;
  7172. height:40px;
  7173. display:flex;
  7174. transition:none;
  7175. transform-origin:50% 50%;
  7176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7177. font-weight:400;
  7178. font-style:normal;
  7179. font-size:14px;
  7180. color:#AAAAAA;
  7181. line-height:40px;
  7182. }
  7183. #u41347 .text {
  7184. position:absolute;
  7185. align-self:flex-start;
  7186. padding:0px 0px 0px 0px;
  7187. box-sizing:border-box;
  7188. width:100%;
  7189. }
  7190. #u41347_text {
  7191. border-width:0px;
  7192. word-wrap:break-word;
  7193. text-transform:none;
  7194. }
  7195. #u41348_div {
  7196. border-width:0px;
  7197. position:absolute;
  7198. left:0px;
  7199. top:0px;
  7200. width:64px;
  7201. height:40px;
  7202. background:inherit;
  7203. background-color:rgba(255, 255, 255, 0);
  7204. border-left:0px;
  7205. border-top:0px;
  7206. border-right:0px;
  7207. border-radius:0px;
  7208. border-bottom-right-radius:0px;
  7209. border-bottom-left-radius:0px;
  7210. filter:drop-shadow(none);
  7211. transition:none;
  7212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7213. font-weight:400;
  7214. font-style:normal;
  7215. font-size:14px;
  7216. line-height:40px;
  7217. }
  7218. #u41348 {
  7219. border-width:0px;
  7220. position:absolute;
  7221. left:956px;
  7222. top:579px;
  7223. width:64px;
  7224. height:40px;
  7225. display:flex;
  7226. transition:none;
  7227. transform-origin:50% 50%;
  7228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7229. font-weight:400;
  7230. font-style:normal;
  7231. font-size:14px;
  7232. line-height:40px;
  7233. }
  7234. #u41348 .text {
  7235. position:absolute;
  7236. align-self:flex-start;
  7237. padding:0px 0px 0px 0px;
  7238. box-sizing:border-box;
  7239. width:100%;
  7240. }
  7241. #u41348_text {
  7242. border-width:0px;
  7243. white-space:nowrap;
  7244. text-transform:none;
  7245. }
  7246. #u41349 {
  7247. border-width:0px;
  7248. position:absolute;
  7249. left:0px;
  7250. top:0px;
  7251. width:0px;
  7252. height:0px;
  7253. }
  7254. #u41350_div {
  7255. border-width:0px;
  7256. position:absolute;
  7257. left:0px;
  7258. top:0px;
  7259. width:322px;
  7260. height:163px;
  7261. background:inherit;
  7262. background-color:rgba(255, 255, 255, 1);
  7263. border-left:0px;
  7264. border-top:0px;
  7265. border-right:0px;
  7266. border-radius:0px;
  7267. border-bottom-right-radius:0px;
  7268. border-bottom-left-radius:0px;
  7269. filter:drop-shadow(none);
  7270. transition:none;
  7271. }
  7272. #u41350 {
  7273. border-width:0px;
  7274. position:absolute;
  7275. left:956px;
  7276. top:659px;
  7277. width:322px;
  7278. height:163px;
  7279. display:flex;
  7280. transition:none;
  7281. transform-origin:50% 50%;
  7282. }
  7283. #u41350 .text {
  7284. position:absolute;
  7285. align-self:center;
  7286. padding:2px 2px 2px 2px;
  7287. box-sizing:border-box;
  7288. width:100%;
  7289. }
  7290. #u41350_text {
  7291. border-width:0px;
  7292. word-wrap:break-word;
  7293. text-transform:none;
  7294. visibility:hidden;
  7295. }
  7296. #u41351_div {
  7297. border-width:0px;
  7298. position:absolute;
  7299. left:0px;
  7300. top:0px;
  7301. width:64px;
  7302. height:20px;
  7303. background:inherit;
  7304. background-color:rgba(255, 255, 255, 0);
  7305. border-radius:0px;
  7306. filter:drop-shadow(none);
  7307. transition:none;
  7308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7309. font-weight:400;
  7310. font-style:normal;
  7311. }
  7312. #u41351 {
  7313. border-width:0px;
  7314. position:absolute;
  7315. left:956px;
  7316. top:669px;
  7317. width:64px;
  7318. height:20px;
  7319. display:flex;
  7320. transition:none;
  7321. transform-origin:50% 50%;
  7322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7323. font-weight:400;
  7324. font-style:normal;
  7325. }
  7326. #u41351 .text {
  7327. position:absolute;
  7328. align-self:flex-start;
  7329. padding:0px 0px 0px 0px;
  7330. box-sizing:border-box;
  7331. width:100%;
  7332. }
  7333. #u41351_text {
  7334. border-width:0px;
  7335. white-space:nowrap;
  7336. text-transform:none;
  7337. }
  7338. #u41352 {
  7339. border-width:0px;
  7340. position:absolute;
  7341. left:956px;
  7342. top:700px;
  7343. width:103px;
  7344. height:103px;
  7345. display:flex;
  7346. transition:none;
  7347. }
  7348. #u41352 .text {
  7349. position:absolute;
  7350. align-self:center;
  7351. padding:2px 2px 2px 2px;
  7352. box-sizing:border-box;
  7353. width:100%;
  7354. }
  7355. #u41352_img {
  7356. border-width:0px;
  7357. position:absolute;
  7358. left:0px;
  7359. top:0px;
  7360. width:103px;
  7361. height:103px;
  7362. }
  7363. #u41352_text {
  7364. border-width:0px;
  7365. word-wrap:break-word;
  7366. text-transform:none;
  7367. }
  7368. #u41353 {
  7369. border-width:0px;
  7370. position:absolute;
  7371. left:1069px;
  7372. top:700px;
  7373. width:103px;
  7374. height:103px;
  7375. display:flex;
  7376. transition:none;
  7377. }
  7378. #u41353 .text {
  7379. position:absolute;
  7380. align-self:center;
  7381. padding:2px 2px 2px 2px;
  7382. box-sizing:border-box;
  7383. width:100%;
  7384. }
  7385. #u41353_img {
  7386. border-width:0px;
  7387. position:absolute;
  7388. left:0px;
  7389. top:0px;
  7390. width:103px;
  7391. height:103px;
  7392. }
  7393. #u41353_text {
  7394. border-width:0px;
  7395. word-wrap:break-word;
  7396. text-transform:none;
  7397. visibility:hidden;
  7398. }
  7399. #u41354_div {
  7400. border-width:0px;
  7401. position:absolute;
  7402. left:0px;
  7403. top:0px;
  7404. width:103px;
  7405. height:24px;
  7406. background:inherit;
  7407. background-color:rgba(51, 51, 51, 0.4980392156862745);
  7408. border-radius:0px;
  7409. filter:drop-shadow(none);
  7410. transition:none;
  7411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7412. font-weight:400;
  7413. font-style:normal;
  7414. }
  7415. #u41354 {
  7416. border-width:0px;
  7417. position:absolute;
  7418. left:1069px;
  7419. top:779px;
  7420. width:103px;
  7421. height:24px;
  7422. display:flex;
  7423. transition:none;
  7424. transform-origin:50% 50%;
  7425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7426. font-weight:400;
  7427. font-style:normal;
  7428. }
  7429. #u41354 .text {
  7430. position:absolute;
  7431. align-self:center;
  7432. padding:2px 2px 2px 2px;
  7433. box-sizing:border-box;
  7434. width:100%;
  7435. }
  7436. #u41354_text {
  7437. border-width:0px;
  7438. word-wrap:break-word;
  7439. text-transform:none;
  7440. }
  7441. #u41355_div {
  7442. border-width:0px;
  7443. position:absolute;
  7444. left:0px;
  7445. top:0px;
  7446. width:267px;
  7447. height:20px;
  7448. background:inherit;
  7449. background-color:rgba(255, 255, 255, 0);
  7450. border-left:0px;
  7451. border-top:0px;
  7452. border-right:0px;
  7453. border-radius:0px;
  7454. border-bottom-right-radius:0px;
  7455. border-bottom-left-radius:0px;
  7456. filter:drop-shadow(none);
  7457. transition:none;
  7458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7459. font-weight:400;
  7460. font-style:normal;
  7461. font-size:14px;
  7462. color:#D9001B;
  7463. }
  7464. #u41355 {
  7465. border-width:0px;
  7466. position:absolute;
  7467. left:964px;
  7468. top:791px;
  7469. width:267px;
  7470. height:20px;
  7471. display:flex;
  7472. transition:none;
  7473. transform-origin:50% 50%;
  7474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7475. font-weight:400;
  7476. font-style:normal;
  7477. font-size:14px;
  7478. color:#D9001B;
  7479. }
  7480. #u41355 .text {
  7481. position:absolute;
  7482. align-self:flex-start;
  7483. padding:0px 0px 0px 0px;
  7484. box-sizing:border-box;
  7485. width:100%;
  7486. }
  7487. #u41355_text {
  7488. border-width:0px;
  7489. white-space:nowrap;
  7490. text-transform:none;
  7491. }
  7492. #u41356_div {
  7493. border-width:0px;
  7494. position:absolute;
  7495. left:0px;
  7496. top:0px;
  7497. width:212px;
  7498. height:30px;
  7499. background:inherit;
  7500. background-color:rgba(255, 255, 255, 0);
  7501. border-left:0px;
  7502. border-top:0px;
  7503. border-right:0px;
  7504. border-radius:0px;
  7505. border-bottom-right-radius:0px;
  7506. border-bottom-left-radius:0px;
  7507. filter:drop-shadow(none);
  7508. transition:none;
  7509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7510. font-weight:400;
  7511. font-style:normal;
  7512. font-size:11px;
  7513. color:#555555;
  7514. line-height:30px;
  7515. }
  7516. #u41356 {
  7517. border-width:0px;
  7518. position:absolute;
  7519. left:981px;
  7520. top:370px;
  7521. width:212px;
  7522. height:30px;
  7523. display:flex;
  7524. transition:none;
  7525. transform-origin:50% 50%;
  7526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7527. font-weight:400;
  7528. font-style:normal;
  7529. font-size:11px;
  7530. color:#555555;
  7531. line-height:30px;
  7532. }
  7533. #u41356 .text {
  7534. position:absolute;
  7535. align-self:center;
  7536. padding:0px 0px 0px 0px;
  7537. box-sizing:border-box;
  7538. width:100%;
  7539. }
  7540. #u41356_text {
  7541. border-width:0px;
  7542. white-space:nowrap;
  7543. text-transform:none;
  7544. }
  7545. #u41357 {
  7546. border-width:0px;
  7547. position:absolute;
  7548. left:959px;
  7549. top:379px;
  7550. width:12px;
  7551. height:12px;
  7552. display:flex;
  7553. transition:none;
  7554. }
  7555. #u41357 .text {
  7556. position:absolute;
  7557. align-self:center;
  7558. padding:2px 2px 2px 2px;
  7559. box-sizing:border-box;
  7560. width:100%;
  7561. }
  7562. #u41357_img {
  7563. border-width:0px;
  7564. position:absolute;
  7565. left:0px;
  7566. top:0px;
  7567. width:12px;
  7568. height:12px;
  7569. }
  7570. #u41357_text {
  7571. border-width:0px;
  7572. word-wrap:break-word;
  7573. text-transform:none;
  7574. visibility:hidden;
  7575. }
  7576. #u41358 {
  7577. border-width:0px;
  7578. position:absolute;
  7579. left:0px;
  7580. top:0px;
  7581. width:0px;
  7582. height:0px;
  7583. }
  7584. #u41359_div {
  7585. border-width:0px;
  7586. position:absolute;
  7587. left:0px;
  7588. top:0px;
  7589. width:57px;
  7590. height:40px;
  7591. background:inherit;
  7592. background-color:rgba(255, 255, 255, 0);
  7593. border-left:0px;
  7594. border-top:0px;
  7595. border-right:0px;
  7596. border-radius:0px;
  7597. border-bottom-right-radius:0px;
  7598. border-bottom-left-radius:0px;
  7599. filter:drop-shadow(none);
  7600. transition:none;
  7601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7602. font-weight:400;
  7603. font-style:normal;
  7604. font-size:14px;
  7605. line-height:40px;
  7606. }
  7607. #u41359 {
  7608. border-width:0px;
  7609. position:absolute;
  7610. left:956px;
  7611. top:1043px;
  7612. width:57px;
  7613. height:40px;
  7614. display:flex;
  7615. transition:none;
  7616. transform-origin:50% 50%;
  7617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7618. font-weight:400;
  7619. font-style:normal;
  7620. font-size:14px;
  7621. line-height:40px;
  7622. }
  7623. #u41359 .text {
  7624. position:absolute;
  7625. align-self:flex-start;
  7626. padding:0px 0px 0px 0px;
  7627. box-sizing:border-box;
  7628. width:100%;
  7629. }
  7630. #u41359_text {
  7631. border-width:0px;
  7632. white-space:nowrap;
  7633. text-transform:none;
  7634. }
  7635. #u41360_div {
  7636. border-width:0px;
  7637. position:absolute;
  7638. left:0px;
  7639. top:0px;
  7640. width:253px;
  7641. height:34px;
  7642. background:inherit;
  7643. background-color:rgba(255, 255, 255, 0);
  7644. border-left:0px;
  7645. border-top:0px;
  7646. border-right:0px;
  7647. border-radius:0px;
  7648. border-bottom-right-radius:0px;
  7649. border-bottom-left-radius:0px;
  7650. filter:drop-shadow(none);
  7651. transition:none;
  7652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7653. font-weight:400;
  7654. font-style:normal;
  7655. font-size:12px;
  7656. color:#AAAAAA;
  7657. }
  7658. #u41360 {
  7659. border-width:0px;
  7660. position:absolute;
  7661. left:1058px;
  7662. top:1083px;
  7663. width:253px;
  7664. height:34px;
  7665. display:flex;
  7666. transition:none;
  7667. transform-origin:50% 50%;
  7668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7669. font-weight:400;
  7670. font-style:normal;
  7671. font-size:12px;
  7672. color:#AAAAAA;
  7673. }
  7674. #u41360 .text {
  7675. position:absolute;
  7676. align-self:flex-start;
  7677. padding:0px 0px 0px 0px;
  7678. box-sizing:border-box;
  7679. width:100%;
  7680. }
  7681. #u41360_text {
  7682. border-width:0px;
  7683. white-space:nowrap;
  7684. text-transform:none;
  7685. }
  7686. #u41361 {
  7687. border-width:0px;
  7688. position:absolute;
  7689. left:956px;
  7690. top:1083px;
  7691. width:90px;
  7692. height:90px;
  7693. display:flex;
  7694. transition:none;
  7695. font-size:28px;
  7696. }
  7697. #u41361 .text {
  7698. position:absolute;
  7699. align-self:center;
  7700. padding:2px 2px 2px 2px;
  7701. box-sizing:border-box;
  7702. width:100%;
  7703. }
  7704. #u41361_img {
  7705. border-width:0px;
  7706. position:absolute;
  7707. left:0px;
  7708. top:0px;
  7709. width:90px;
  7710. height:90px;
  7711. }
  7712. #u41361_text {
  7713. border-width:0px;
  7714. word-wrap:break-word;
  7715. text-transform:none;
  7716. }
  7717. #u41362 {
  7718. border-width:0px;
  7719. position:absolute;
  7720. left:0px;
  7721. top:0px;
  7722. width:0px;
  7723. height:0px;
  7724. }
  7725. #u41363_div {
  7726. border-width:0px;
  7727. position:absolute;
  7728. left:0px;
  7729. top:0px;
  7730. width:375px;
  7731. height:60px;
  7732. background:inherit;
  7733. background-color:rgba(255, 255, 255, 1);
  7734. border-top:0px;
  7735. border-radius:28px;
  7736. border-top-left-radius:0px;
  7737. border-top-right-radius:0px;
  7738. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  7739. transition:none;
  7740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7741. font-weight:400;
  7742. font-style:normal;
  7743. font-size:14px;
  7744. color:#FFFFFF;
  7745. }
  7746. #u41363 {
  7747. border-width:0px;
  7748. position:absolute;
  7749. left:937px;
  7750. top:1206px;
  7751. width:375px;
  7752. height:60px;
  7753. display:flex;
  7754. transition:none;
  7755. transform-origin:50% 50%;
  7756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7757. font-weight:400;
  7758. font-style:normal;
  7759. font-size:14px;
  7760. color:#FFFFFF;
  7761. }
  7762. #u41363 .text {
  7763. position:absolute;
  7764. align-self:center;
  7765. padding:2px 2px 2px 2px;
  7766. box-sizing:border-box;
  7767. width:100%;
  7768. }
  7769. #u41363_text {
  7770. border-width:0px;
  7771. word-wrap:break-word;
  7772. text-transform:none;
  7773. visibility:hidden;
  7774. }
  7775. #u41364_div {
  7776. border-width:0px;
  7777. position:absolute;
  7778. left:0px;
  7779. top:0px;
  7780. width:324px;
  7781. height:40px;
  7782. background:inherit;
  7783. background-color:rgba(0, 137, 254, 1);
  7784. border-radius:63px;
  7785. filter:drop-shadow(none);
  7786. transition:none;
  7787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7788. font-weight:400;
  7789. font-style:normal;
  7790. font-size:14px;
  7791. color:#FFFFFF;
  7792. }
  7793. #u41364 {
  7794. border-width:0px;
  7795. position:absolute;
  7796. left:963px;
  7797. top:1216px;
  7798. width:324px;
  7799. height:40px;
  7800. display:flex;
  7801. transition:none;
  7802. transform-origin:50% 50%;
  7803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7804. font-weight:400;
  7805. font-style:normal;
  7806. font-size:14px;
  7807. color:#FFFFFF;
  7808. }
  7809. #u41364 .text {
  7810. position:absolute;
  7811. align-self:center;
  7812. padding:2px 2px 2px 2px;
  7813. box-sizing:border-box;
  7814. width:100%;
  7815. }
  7816. #u41364_text {
  7817. border-width:0px;
  7818. word-wrap:break-word;
  7819. text-transform:none;
  7820. }