styles.css 167 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1725px;
  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. #u31880_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u31880 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u31880 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u31880_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u31881_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u31881 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u31881 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u31881_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u31882 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u31883_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u31883 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u31883 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u31883_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u31884 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u31885_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u31885 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u31885 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u31885_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u31886_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u31886 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u31886 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u31886_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u31887 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u31888_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u31888 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u31888 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u31888_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u31889_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u31889 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u31889 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u31889_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u31890_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u31890 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u31890 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u31890_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u31891_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u31891 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u31891 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u31891_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u31892_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u31892 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u31892 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u31892_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u31893_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u31893 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u31893 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u31893_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u31894 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u31895_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u31895 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u31895 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u31895_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u31896_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u31896 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u31896 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u31896_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u31897 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u31898_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u31898 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u31898 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u31898_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u31899_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u31899 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u31899 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u31899_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u31900_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u31900 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u31900 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u31900_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u31901 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u31902_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u31902 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u31902 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u31902_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u31903_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u31903 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u31903 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u31903_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u31904 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u31905_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u31905 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u31905 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u31905_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u31906_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u31906 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u31906 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u31906_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u31907_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:993px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:25px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. }
  797. #u31907 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:95px;
  802. width:375px;
  803. height:993px;
  804. display:flex;
  805. }
  806. #u31907 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u31907_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u31908_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:375px;
  825. height:250px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 1);
  828. border:none;
  829. border-top:0px;
  830. border-radius:0px;
  831. border-top-left-radius:0px;
  832. border-top-right-radius:0px;
  833. -moz-box-shadow:none;
  834. -webkit-box-shadow:none;
  835. box-shadow:none;
  836. }
  837. #u31908 {
  838. border-width:0px;
  839. position:absolute;
  840. left:29px;
  841. top:104px;
  842. width:375px;
  843. height:250px;
  844. display:flex;
  845. }
  846. #u31908 .text {
  847. position:absolute;
  848. align-self:center;
  849. padding:2px 2px 2px 2px;
  850. box-sizing:border-box;
  851. width:100%;
  852. }
  853. #u31908_text {
  854. border-width:0px;
  855. word-wrap:break-word;
  856. text-transform:none;
  857. visibility:hidden;
  858. }
  859. #u31909 {
  860. border-width:0px;
  861. position:absolute;
  862. left:0px;
  863. top:0px;
  864. width:0px;
  865. height:0px;
  866. }
  867. #u31910_div {
  868. border-width:0px;
  869. position:absolute;
  870. left:0px;
  871. top:0px;
  872. width:375px;
  873. height:40px;
  874. background:inherit;
  875. background-color:rgba(255, 255, 255, 1);
  876. border:none;
  877. border-left:0px;
  878. border-top:0px;
  879. border-right:0px;
  880. border-radius:0px;
  881. border-bottom-right-radius:0px;
  882. border-bottom-left-radius:0px;
  883. -moz-box-shadow:none;
  884. -webkit-box-shadow:none;
  885. box-shadow:none;
  886. }
  887. #u31910 {
  888. border-width:0px;
  889. position:absolute;
  890. left:29px;
  891. top:68px;
  892. width:375px;
  893. height:40px;
  894. display:flex;
  895. }
  896. #u31910 .text {
  897. position:absolute;
  898. align-self:center;
  899. padding:2px 2px 2px 2px;
  900. box-sizing:border-box;
  901. width:100%;
  902. }
  903. #u31910_text {
  904. border-width:0px;
  905. word-wrap:break-word;
  906. text-transform:none;
  907. visibility:hidden;
  908. }
  909. #u31911 {
  910. border-width:0px;
  911. position:absolute;
  912. left:0px;
  913. top:0px;
  914. width:0px;
  915. height:0px;
  916. }
  917. #u31912_div {
  918. border-width:0px;
  919. position:absolute;
  920. left:0px;
  921. top:0px;
  922. width:88px;
  923. height:32px;
  924. background:inherit;
  925. background-color:rgba(255, 255, 255, 1);
  926. box-sizing:border-box;
  927. border-width:1px;
  928. border-style:solid;
  929. border-color:rgba(242, 242, 242, 1);
  930. border-radius:33px;
  931. -moz-box-shadow:none;
  932. -webkit-box-shadow:none;
  933. box-shadow:none;
  934. }
  935. #u31912 {
  936. border-width:0px;
  937. position:absolute;
  938. left:306px;
  939. top:70px;
  940. width:88px;
  941. height:32px;
  942. display:flex;
  943. }
  944. #u31912 .text {
  945. position:absolute;
  946. align-self:center;
  947. padding:2px 2px 2px 2px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u31912_text {
  952. border-width:0px;
  953. word-wrap:break-word;
  954. text-transform:none;
  955. visibility:hidden;
  956. }
  957. #u31913 {
  958. border-width:0px;
  959. position:absolute;
  960. left:0px;
  961. top:0px;
  962. width:0px;
  963. height:0px;
  964. }
  965. #u31914_img {
  966. border-width:0px;
  967. position:absolute;
  968. left:0px;
  969. top:0px;
  970. width:18px;
  971. height:18px;
  972. }
  973. #u31914 {
  974. border-width:0px;
  975. position:absolute;
  976. left:369px;
  977. top:77px;
  978. width:18px;
  979. height:18px;
  980. display:flex;
  981. }
  982. #u31914 .text {
  983. position:absolute;
  984. align-self:center;
  985. padding:2px 2px 2px 2px;
  986. box-sizing:border-box;
  987. width:100%;
  988. }
  989. #u31914_text {
  990. border-width:0px;
  991. word-wrap:break-word;
  992. text-transform:none;
  993. visibility:hidden;
  994. }
  995. #u31915_img {
  996. border-width:0px;
  997. position:absolute;
  998. left:0px;
  999. top:0px;
  1000. width:6px;
  1001. height:6px;
  1002. }
  1003. #u31915 {
  1004. border-width:0px;
  1005. position:absolute;
  1006. left:375px;
  1007. top:83px;
  1008. width:6px;
  1009. height:6px;
  1010. display:flex;
  1011. }
  1012. #u31915 .text {
  1013. position:absolute;
  1014. align-self:center;
  1015. padding:2px 2px 2px 2px;
  1016. box-sizing:border-box;
  1017. width:100%;
  1018. }
  1019. #u31915_text {
  1020. border-width:0px;
  1021. word-wrap:break-word;
  1022. text-transform:none;
  1023. visibility:hidden;
  1024. }
  1025. #u31916 {
  1026. border-width:0px;
  1027. position:absolute;
  1028. left:0px;
  1029. top:0px;
  1030. width:0px;
  1031. height:0px;
  1032. }
  1033. #u31917_img {
  1034. border-width:0px;
  1035. position:absolute;
  1036. left:0px;
  1037. top:0px;
  1038. width:5px;
  1039. height:5px;
  1040. }
  1041. #u31917 {
  1042. border-width:0px;
  1043. position:absolute;
  1044. left:320px;
  1045. top:84px;
  1046. width:5px;
  1047. height:5px;
  1048. display:flex;
  1049. }
  1050. #u31917 .text {
  1051. position:absolute;
  1052. align-self:center;
  1053. padding:2px 2px 2px 2px;
  1054. box-sizing:border-box;
  1055. width:100%;
  1056. }
  1057. #u31917_text {
  1058. border-width:0px;
  1059. word-wrap:break-word;
  1060. text-transform:none;
  1061. visibility:hidden;
  1062. }
  1063. #u31918_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:5px;
  1069. height:5px;
  1070. }
  1071. #u31918 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:336px;
  1075. top:84px;
  1076. width:5px;
  1077. height:5px;
  1078. display:flex;
  1079. }
  1080. #u31918 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u31918_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u31919_img {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:7px;
  1099. height:7px;
  1100. }
  1101. #u31919 {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:327px;
  1105. top:83px;
  1106. width:7px;
  1107. height:7px;
  1108. display:flex;
  1109. }
  1110. #u31919 .text {
  1111. position:absolute;
  1112. align-self:center;
  1113. padding:2px 2px 2px 2px;
  1114. box-sizing:border-box;
  1115. width:100%;
  1116. }
  1117. #u31919_text {
  1118. border-width:0px;
  1119. word-wrap:break-word;
  1120. text-transform:none;
  1121. visibility:hidden;
  1122. }
  1123. #u31920_img {
  1124. border-width:0px;
  1125. position:absolute;
  1126. left:0px;
  1127. top:0px;
  1128. width:19px;
  1129. height:2px;
  1130. }
  1131. #u31920 {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:344px;
  1135. top:86px;
  1136. width:18px;
  1137. height:1px;
  1138. display:flex;
  1139. -webkit-transform:rotate(90deg);
  1140. -moz-transform:rotate(90deg);
  1141. -ms-transform:rotate(90deg);
  1142. transform:rotate(90deg);
  1143. }
  1144. #u31920 .text {
  1145. position:absolute;
  1146. align-self:center;
  1147. padding:2px 2px 2px 2px;
  1148. box-sizing:border-box;
  1149. width:100%;
  1150. }
  1151. #u31920_text {
  1152. border-width:0px;
  1153. word-wrap:break-word;
  1154. text-transform:none;
  1155. visibility:hidden;
  1156. }
  1157. #u31921_div {
  1158. border-width:0px;
  1159. position:absolute;
  1160. left:0px;
  1161. top:0px;
  1162. width:12px;
  1163. height:12px;
  1164. background:inherit;
  1165. background-color:rgba(255, 255, 255, 0);
  1166. box-sizing:border-box;
  1167. border-width:2px;
  1168. border-style:solid;
  1169. border-color:rgba(51, 51, 51, 1);
  1170. border-right:0px;
  1171. border-bottom:0px;
  1172. border-radius:0px;
  1173. border-top-right-radius:0px;
  1174. border-bottom-left-radius:0px;
  1175. -moz-box-shadow:none;
  1176. -webkit-box-shadow:none;
  1177. box-shadow:none;
  1178. }
  1179. #u31921 {
  1180. border-width:0px;
  1181. position:absolute;
  1182. left:45px;
  1183. top:80px;
  1184. width:12px;
  1185. height:12px;
  1186. display:flex;
  1187. -webkit-transform:rotate(315deg);
  1188. -moz-transform:rotate(315deg);
  1189. -ms-transform:rotate(315deg);
  1190. transform:rotate(315deg);
  1191. }
  1192. #u31921 .text {
  1193. position:absolute;
  1194. align-self:center;
  1195. padding:2px 2px 2px 2px;
  1196. box-sizing:border-box;
  1197. width:100%;
  1198. }
  1199. #u31921_text {
  1200. border-width:0px;
  1201. word-wrap:break-word;
  1202. text-transform:none;
  1203. visibility:hidden;
  1204. }
  1205. #u31922_div {
  1206. border-width:0px;
  1207. position:absolute;
  1208. left:0px;
  1209. top:0px;
  1210. width:73px;
  1211. height:25px;
  1212. background:inherit;
  1213. background-color:rgba(255, 255, 255, 0);
  1214. border:none;
  1215. border-radius:0px;
  1216. -moz-box-shadow:none;
  1217. -webkit-box-shadow:none;
  1218. box-shadow:none;
  1219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1220. font-weight:400;
  1221. font-style:normal;
  1222. font-size:18px;
  1223. }
  1224. #u31922 {
  1225. border-width:0px;
  1226. position:absolute;
  1227. left:59px;
  1228. top:73px;
  1229. width:73px;
  1230. height:25px;
  1231. display:flex;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. font-size:18px;
  1236. }
  1237. #u31922 .text {
  1238. position:absolute;
  1239. align-self:flex-start;
  1240. padding:0px 0px 0px 0px;
  1241. box-sizing:border-box;
  1242. width:100%;
  1243. }
  1244. #u31922_text {
  1245. border-width:0px;
  1246. white-space:nowrap;
  1247. text-transform:none;
  1248. }
  1249. #u31923 {
  1250. border-width:0px;
  1251. position:absolute;
  1252. left:0px;
  1253. top:0px;
  1254. width:0px;
  1255. height:0px;
  1256. }
  1257. #u31924_div {
  1258. border-width:0px;
  1259. position:absolute;
  1260. left:0px;
  1261. top:0px;
  1262. width:375px;
  1263. height:100px;
  1264. background:inherit;
  1265. background-color:rgba(24, 144, 255, 1);
  1266. border:none;
  1267. border-radius:0px;
  1268. -moz-box-shadow:none;
  1269. -webkit-box-shadow:none;
  1270. box-shadow:none;
  1271. }
  1272. #u31924 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:29px;
  1276. top:108px;
  1277. width:375px;
  1278. height:100px;
  1279. display:flex;
  1280. }
  1281. #u31924 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u31924_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u31925_div {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:85px;
  1300. height:40px;
  1301. background:inherit;
  1302. background-color:rgba(255, 255, 255, 0);
  1303. border:none;
  1304. border-radius:0px;
  1305. -moz-box-shadow:none;
  1306. -webkit-box-shadow:none;
  1307. box-shadow:none;
  1308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1309. font-weight:400;
  1310. font-style:normal;
  1311. color:#FFFFFF;
  1312. }
  1313. #u31925 {
  1314. border-width:0px;
  1315. position:absolute;
  1316. left:48px;
  1317. top:153px;
  1318. width:85px;
  1319. height:40px;
  1320. display:flex;
  1321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1322. font-weight:400;
  1323. font-style:normal;
  1324. color:#FFFFFF;
  1325. }
  1326. #u31925 .text {
  1327. position:absolute;
  1328. align-self:flex-start;
  1329. padding:0px 0px 0px 0px;
  1330. box-sizing:border-box;
  1331. width:100%;
  1332. }
  1333. #u31925_text {
  1334. border-width:0px;
  1335. white-space:nowrap;
  1336. text-transform:none;
  1337. }
  1338. #u31926_div {
  1339. border-width:0px;
  1340. position:absolute;
  1341. left:0px;
  1342. top:0px;
  1343. width:73px;
  1344. height:25px;
  1345. background:inherit;
  1346. background-color:rgba(255, 255, 255, 0);
  1347. border:none;
  1348. border-radius:0px;
  1349. -moz-box-shadow:none;
  1350. -webkit-box-shadow:none;
  1351. box-shadow:none;
  1352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1353. font-weight:400;
  1354. font-style:normal;
  1355. font-size:18px;
  1356. color:#FFFFFF;
  1357. }
  1358. #u31926 {
  1359. border-width:0px;
  1360. position:absolute;
  1361. left:48px;
  1362. top:123px;
  1363. width:73px;
  1364. height:25px;
  1365. display:flex;
  1366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1367. font-weight:400;
  1368. font-style:normal;
  1369. font-size:18px;
  1370. color:#FFFFFF;
  1371. }
  1372. #u31926 .text {
  1373. position:absolute;
  1374. align-self:flex-start;
  1375. padding:0px 0px 0px 0px;
  1376. box-sizing:border-box;
  1377. width:100%;
  1378. }
  1379. #u31926_text {
  1380. border-width:0px;
  1381. white-space:nowrap;
  1382. text-transform:none;
  1383. }
  1384. #u31927_div {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:0px;
  1388. top:0px;
  1389. width:375px;
  1390. height:754px;
  1391. background:inherit;
  1392. background-color:rgba(255, 255, 255, 1);
  1393. border:none;
  1394. border-top:0px;
  1395. border-radius:0px;
  1396. border-top-left-radius:0px;
  1397. border-top-right-radius:0px;
  1398. -moz-box-shadow:none;
  1399. -webkit-box-shadow:none;
  1400. box-shadow:none;
  1401. }
  1402. #u31927 {
  1403. border-width:0px;
  1404. position:absolute;
  1405. left:29px;
  1406. top:364px;
  1407. width:375px;
  1408. height:754px;
  1409. display:flex;
  1410. }
  1411. #u31927 .text {
  1412. position:absolute;
  1413. align-self:center;
  1414. padding:2px 2px 2px 2px;
  1415. box-sizing:border-box;
  1416. width:100%;
  1417. }
  1418. #u31927_text {
  1419. border-width:0px;
  1420. word-wrap:break-word;
  1421. text-transform:none;
  1422. visibility:hidden;
  1423. }
  1424. #u31928 {
  1425. border-width:0px;
  1426. position:absolute;
  1427. left:0px;
  1428. top:0px;
  1429. width:0px;
  1430. height:0px;
  1431. }
  1432. #u31929_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:342px;
  1438. height:50px;
  1439. }
  1440. #u31929 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:48px;
  1444. top:408px;
  1445. width:342px;
  1446. height:50px;
  1447. display:flex;
  1448. }
  1449. #u31929 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u31929_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u31930_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:78px;
  1468. height:30px;
  1469. background:inherit;
  1470. background-color:rgba(255, 255, 255, 0);
  1471. border:none;
  1472. border-left:0px;
  1473. border-top:0px;
  1474. border-right:0px;
  1475. border-radius:0px;
  1476. border-bottom-right-radius:0px;
  1477. border-bottom-left-radius:0px;
  1478. -moz-box-shadow:none;
  1479. -webkit-box-shadow:none;
  1480. box-shadow:none;
  1481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1482. font-weight:400;
  1483. font-style:normal;
  1484. font-size:14px;
  1485. line-height:30px;
  1486. }
  1487. #u31930 {
  1488. border-width:0px;
  1489. position:absolute;
  1490. left:48px;
  1491. top:418px;
  1492. width:78px;
  1493. height:30px;
  1494. display:flex;
  1495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1496. font-weight:400;
  1497. font-style:normal;
  1498. font-size:14px;
  1499. line-height:30px;
  1500. }
  1501. #u31930 .text {
  1502. position:absolute;
  1503. align-self:flex-start;
  1504. padding:0px 0px 0px 0px;
  1505. box-sizing:border-box;
  1506. width:100%;
  1507. }
  1508. #u31930_text {
  1509. border-width:0px;
  1510. white-space:nowrap;
  1511. text-transform:none;
  1512. }
  1513. #u31931_input {
  1514. position:absolute;
  1515. left:0px;
  1516. top:0px;
  1517. width:240px;
  1518. height:33px;
  1519. padding:2px 2px 2px 2px;
  1520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1521. font-weight:400;
  1522. font-style:normal;
  1523. font-size:14px;
  1524. letter-spacing:normal;
  1525. color:#000000;
  1526. vertical-align:none;
  1527. text-align:right;
  1528. text-transform:none;
  1529. background-color:transparent;
  1530. border-color:transparent;
  1531. }
  1532. #u31931_input.disabled {
  1533. position:absolute;
  1534. left:0px;
  1535. top:0px;
  1536. width:240px;
  1537. height:33px;
  1538. padding:2px 2px 2px 2px;
  1539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1540. font-weight:400;
  1541. font-style:normal;
  1542. font-size:14px;
  1543. letter-spacing:normal;
  1544. color:#000000;
  1545. vertical-align:none;
  1546. text-align:right;
  1547. text-transform:none;
  1548. background-color:transparent;
  1549. border-color:transparent;
  1550. }
  1551. #u31931_div {
  1552. border-width:0px;
  1553. position:absolute;
  1554. left:0px;
  1555. top:0px;
  1556. width:240px;
  1557. height:33px;
  1558. background:inherit;
  1559. background-color:rgba(255, 255, 255, 1);
  1560. border:none;
  1561. border-radius:0px;
  1562. -moz-box-shadow:none;
  1563. -webkit-box-shadow:none;
  1564. box-shadow:none;
  1565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1566. font-weight:400;
  1567. font-style:normal;
  1568. font-size:14px;
  1569. text-align:right;
  1570. }
  1571. #u31931 {
  1572. border-width:0px;
  1573. position:absolute;
  1574. left:123px;
  1575. top:417px;
  1576. width:240px;
  1577. height:33px;
  1578. display:flex;
  1579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1580. font-weight:400;
  1581. font-style:normal;
  1582. font-size:14px;
  1583. text-align:right;
  1584. }
  1585. #u31931 .text {
  1586. position:absolute;
  1587. align-self:center;
  1588. padding:2px 2px 2px 2px;
  1589. box-sizing:border-box;
  1590. width:100%;
  1591. }
  1592. #u31931_div.disabled {
  1593. border-width:0px;
  1594. position:absolute;
  1595. left:0px;
  1596. top:0px;
  1597. width:240px;
  1598. height:33px;
  1599. background:inherit;
  1600. background-color:rgba(240, 240, 240, 1);
  1601. border:none;
  1602. border-radius:0px;
  1603. -moz-box-shadow:none;
  1604. -webkit-box-shadow:none;
  1605. box-shadow:none;
  1606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1607. font-weight:400;
  1608. font-style:normal;
  1609. font-size:14px;
  1610. text-align:right;
  1611. }
  1612. #u31931.disabled {
  1613. }
  1614. #u31932_img {
  1615. border-width:0px;
  1616. position:absolute;
  1617. left:0px;
  1618. top:0px;
  1619. width:8px;
  1620. height:13px;
  1621. }
  1622. #u31932 {
  1623. border-width:0px;
  1624. position:absolute;
  1625. left:371px;
  1626. top:427px;
  1627. width:8px;
  1628. height:13px;
  1629. display:flex;
  1630. -webkit-transform:rotate(180deg);
  1631. -moz-transform:rotate(180deg);
  1632. -ms-transform:rotate(180deg);
  1633. transform:rotate(180deg);
  1634. }
  1635. #u31932 .text {
  1636. position:absolute;
  1637. align-self:center;
  1638. padding:2px 2px 2px 2px;
  1639. box-sizing:border-box;
  1640. width:100%;
  1641. }
  1642. #u31932_text {
  1643. border-width:0px;
  1644. word-wrap:break-word;
  1645. text-transform:none;
  1646. visibility:hidden;
  1647. }
  1648. #u31933 {
  1649. border-width:0px;
  1650. position:absolute;
  1651. left:0px;
  1652. top:0px;
  1653. width:0px;
  1654. height:0px;
  1655. }
  1656. #u31934_img {
  1657. border-width:0px;
  1658. position:absolute;
  1659. left:0px;
  1660. top:0px;
  1661. width:342px;
  1662. height:50px;
  1663. }
  1664. #u31934 {
  1665. border-width:0px;
  1666. position:absolute;
  1667. left:48px;
  1668. top:508px;
  1669. width:342px;
  1670. height:50px;
  1671. display:flex;
  1672. }
  1673. #u31934 .text {
  1674. position:absolute;
  1675. align-self:center;
  1676. padding:2px 2px 2px 2px;
  1677. box-sizing:border-box;
  1678. width:100%;
  1679. }
  1680. #u31934_text {
  1681. border-width:0px;
  1682. word-wrap:break-word;
  1683. text-transform:none;
  1684. visibility:hidden;
  1685. }
  1686. #u31935_div {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:0px;
  1690. top:0px;
  1691. width:78px;
  1692. height:30px;
  1693. background:inherit;
  1694. background-color:rgba(255, 255, 255, 0);
  1695. border:none;
  1696. border-left:0px;
  1697. border-top:0px;
  1698. border-right:0px;
  1699. border-radius:0px;
  1700. border-bottom-right-radius:0px;
  1701. border-bottom-left-radius:0px;
  1702. -moz-box-shadow:none;
  1703. -webkit-box-shadow:none;
  1704. box-shadow:none;
  1705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1706. font-weight:400;
  1707. font-style:normal;
  1708. font-size:14px;
  1709. line-height:30px;
  1710. }
  1711. #u31935 {
  1712. border-width:0px;
  1713. position:absolute;
  1714. left:48px;
  1715. top:518px;
  1716. width:78px;
  1717. height:30px;
  1718. display:flex;
  1719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1720. font-weight:400;
  1721. font-style:normal;
  1722. font-size:14px;
  1723. line-height:30px;
  1724. }
  1725. #u31935 .text {
  1726. position:absolute;
  1727. align-self:flex-start;
  1728. padding:0px 0px 0px 0px;
  1729. box-sizing:border-box;
  1730. width:100%;
  1731. }
  1732. #u31935_text {
  1733. border-width:0px;
  1734. white-space:nowrap;
  1735. text-transform:none;
  1736. }
  1737. #u31936_input {
  1738. position:absolute;
  1739. left:0px;
  1740. top:0px;
  1741. width:240px;
  1742. height:33px;
  1743. padding:2px 2px 2px 2px;
  1744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1745. font-weight:400;
  1746. font-style:normal;
  1747. font-size:14px;
  1748. letter-spacing:normal;
  1749. color:#000000;
  1750. vertical-align:none;
  1751. text-align:right;
  1752. text-transform:none;
  1753. background-color:transparent;
  1754. border-color:transparent;
  1755. }
  1756. #u31936_input.disabled {
  1757. position:absolute;
  1758. left:0px;
  1759. top:0px;
  1760. width:240px;
  1761. height:33px;
  1762. padding:2px 2px 2px 2px;
  1763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1764. font-weight:400;
  1765. font-style:normal;
  1766. font-size:14px;
  1767. letter-spacing:normal;
  1768. color:#000000;
  1769. vertical-align:none;
  1770. text-align:right;
  1771. text-transform:none;
  1772. background-color:transparent;
  1773. border-color:transparent;
  1774. }
  1775. #u31936_div {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:240px;
  1781. height:33px;
  1782. background:inherit;
  1783. background-color:rgba(255, 255, 255, 1);
  1784. border:none;
  1785. border-radius:0px;
  1786. -moz-box-shadow:none;
  1787. -webkit-box-shadow:none;
  1788. box-shadow:none;
  1789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1790. font-weight:400;
  1791. font-style:normal;
  1792. font-size:14px;
  1793. text-align:right;
  1794. }
  1795. #u31936 {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:123px;
  1799. top:517px;
  1800. width:240px;
  1801. height:33px;
  1802. display:flex;
  1803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1804. font-weight:400;
  1805. font-style:normal;
  1806. font-size:14px;
  1807. text-align:right;
  1808. }
  1809. #u31936 .text {
  1810. position:absolute;
  1811. align-self:center;
  1812. padding:2px 2px 2px 2px;
  1813. box-sizing:border-box;
  1814. width:100%;
  1815. }
  1816. #u31936_div.disabled {
  1817. border-width:0px;
  1818. position:absolute;
  1819. left:0px;
  1820. top:0px;
  1821. width:240px;
  1822. height:33px;
  1823. background:inherit;
  1824. background-color:rgba(240, 240, 240, 1);
  1825. border:none;
  1826. border-radius:0px;
  1827. -moz-box-shadow:none;
  1828. -webkit-box-shadow:none;
  1829. box-shadow:none;
  1830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1831. font-weight:400;
  1832. font-style:normal;
  1833. font-size:14px;
  1834. text-align:right;
  1835. }
  1836. #u31936.disabled {
  1837. }
  1838. #u31937_img {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:0px;
  1842. top:0px;
  1843. width:8px;
  1844. height:13px;
  1845. }
  1846. #u31937 {
  1847. border-width:0px;
  1848. position:absolute;
  1849. left:371px;
  1850. top:527px;
  1851. width:8px;
  1852. height:13px;
  1853. display:flex;
  1854. -webkit-transform:rotate(180deg);
  1855. -moz-transform:rotate(180deg);
  1856. -ms-transform:rotate(180deg);
  1857. transform:rotate(180deg);
  1858. }
  1859. #u31937 .text {
  1860. position:absolute;
  1861. align-self:center;
  1862. padding:2px 2px 2px 2px;
  1863. box-sizing:border-box;
  1864. width:100%;
  1865. }
  1866. #u31937_text {
  1867. border-width:0px;
  1868. word-wrap:break-word;
  1869. text-transform:none;
  1870. visibility:hidden;
  1871. }
  1872. #u31938 {
  1873. border-width:0px;
  1874. position:absolute;
  1875. left:0px;
  1876. top:0px;
  1877. width:0px;
  1878. height:0px;
  1879. }
  1880. #u31939_img {
  1881. border-width:0px;
  1882. position:absolute;
  1883. left:0px;
  1884. top:0px;
  1885. width:342px;
  1886. height:160px;
  1887. }
  1888. #u31939 {
  1889. border-width:0px;
  1890. position:absolute;
  1891. left:48px;
  1892. top:558px;
  1893. width:342px;
  1894. height:160px;
  1895. display:flex;
  1896. }
  1897. #u31939 .text {
  1898. position:absolute;
  1899. align-self:center;
  1900. padding:2px 2px 2px 2px;
  1901. box-sizing:border-box;
  1902. width:100%;
  1903. }
  1904. #u31939_text {
  1905. border-width:0px;
  1906. word-wrap:break-word;
  1907. text-transform:none;
  1908. visibility:hidden;
  1909. }
  1910. #u31940_div {
  1911. border-width:0px;
  1912. position:absolute;
  1913. left:0px;
  1914. top:0px;
  1915. width:64px;
  1916. height:30px;
  1917. background:inherit;
  1918. background-color:rgba(255, 255, 255, 0);
  1919. border:none;
  1920. border-left:0px;
  1921. border-top:0px;
  1922. border-right:0px;
  1923. border-radius:0px;
  1924. border-bottom-right-radius:0px;
  1925. border-bottom-left-radius:0px;
  1926. -moz-box-shadow:none;
  1927. -webkit-box-shadow:none;
  1928. box-shadow:none;
  1929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1930. font-weight:400;
  1931. font-style:normal;
  1932. font-size:14px;
  1933. line-height:30px;
  1934. }
  1935. #u31940 {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:48px;
  1939. top:568px;
  1940. width:64px;
  1941. height:30px;
  1942. display:flex;
  1943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1944. font-weight:400;
  1945. font-style:normal;
  1946. font-size:14px;
  1947. line-height:30px;
  1948. }
  1949. #u31940 .text {
  1950. position:absolute;
  1951. align-self:flex-start;
  1952. padding:0px 0px 0px 0px;
  1953. box-sizing:border-box;
  1954. width:100%;
  1955. }
  1956. #u31940_text {
  1957. border-width:0px;
  1958. white-space:nowrap;
  1959. text-transform:none;
  1960. }
  1961. #u31941_img {
  1962. border-width:0px;
  1963. position:absolute;
  1964. left:0px;
  1965. top:0px;
  1966. width:331px;
  1967. height:110px;
  1968. }
  1969. #u31941 {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:48px;
  1973. top:598px;
  1974. width:331px;
  1975. height:110px;
  1976. display:flex;
  1977. }
  1978. #u31941 .text {
  1979. position:absolute;
  1980. align-self:center;
  1981. padding:2px 2px 2px 2px;
  1982. box-sizing:border-box;
  1983. width:100%;
  1984. }
  1985. #u31941_text {
  1986. border-width:0px;
  1987. word-wrap:break-word;
  1988. text-transform:none;
  1989. visibility:hidden;
  1990. }
  1991. #u31942 {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:0px;
  1995. top:0px;
  1996. width:0px;
  1997. height:0px;
  1998. }
  1999. #u31943_img {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:0px;
  2003. top:0px;
  2004. width:342px;
  2005. height:50px;
  2006. }
  2007. #u31943 {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:48px;
  2011. top:718px;
  2012. width:342px;
  2013. height:50px;
  2014. display:flex;
  2015. }
  2016. #u31943 .text {
  2017. position:absolute;
  2018. align-self:center;
  2019. padding:2px 2px 2px 2px;
  2020. box-sizing:border-box;
  2021. width:100%;
  2022. }
  2023. #u31943_text {
  2024. border-width:0px;
  2025. word-wrap:break-word;
  2026. text-transform:none;
  2027. visibility:hidden;
  2028. }
  2029. #u31944_div {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:0px;
  2033. top:0px;
  2034. width:78px;
  2035. height:30px;
  2036. background:inherit;
  2037. background-color:rgba(255, 255, 255, 0);
  2038. border:none;
  2039. border-left:0px;
  2040. border-top:0px;
  2041. border-right:0px;
  2042. border-radius:0px;
  2043. border-bottom-right-radius:0px;
  2044. border-bottom-left-radius:0px;
  2045. -moz-box-shadow:none;
  2046. -webkit-box-shadow:none;
  2047. box-shadow:none;
  2048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2049. font-weight:400;
  2050. font-style:normal;
  2051. font-size:14px;
  2052. line-height:30px;
  2053. }
  2054. #u31944 {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:48px;
  2058. top:728px;
  2059. width:78px;
  2060. height:30px;
  2061. display:flex;
  2062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2063. font-weight:400;
  2064. font-style:normal;
  2065. font-size:14px;
  2066. line-height:30px;
  2067. }
  2068. #u31944 .text {
  2069. position:absolute;
  2070. align-self:flex-start;
  2071. padding:0px 0px 0px 0px;
  2072. box-sizing:border-box;
  2073. width:100%;
  2074. }
  2075. #u31944_text {
  2076. border-width:0px;
  2077. white-space:nowrap;
  2078. text-transform:none;
  2079. }
  2080. #u31945_input {
  2081. position:absolute;
  2082. left:0px;
  2083. top:0px;
  2084. width:240px;
  2085. height:33px;
  2086. padding:2px 2px 2px 2px;
  2087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2088. font-weight:400;
  2089. font-style:normal;
  2090. font-size:14px;
  2091. letter-spacing:normal;
  2092. color:#000000;
  2093. vertical-align:none;
  2094. text-align:right;
  2095. text-transform:none;
  2096. background-color:transparent;
  2097. border-color:transparent;
  2098. }
  2099. #u31945_input.disabled {
  2100. position:absolute;
  2101. left:0px;
  2102. top:0px;
  2103. width:240px;
  2104. height:33px;
  2105. padding:2px 2px 2px 2px;
  2106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2107. font-weight:400;
  2108. font-style:normal;
  2109. font-size:14px;
  2110. letter-spacing:normal;
  2111. color:#000000;
  2112. vertical-align:none;
  2113. text-align:right;
  2114. text-transform:none;
  2115. background-color:transparent;
  2116. border-color:transparent;
  2117. }
  2118. #u31945_div {
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:0px;
  2122. top:0px;
  2123. width:240px;
  2124. height:33px;
  2125. background:inherit;
  2126. background-color:rgba(255, 255, 255, 1);
  2127. border:none;
  2128. border-radius:0px;
  2129. -moz-box-shadow:none;
  2130. -webkit-box-shadow:none;
  2131. box-shadow:none;
  2132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2133. font-weight:400;
  2134. font-style:normal;
  2135. font-size:14px;
  2136. text-align:right;
  2137. }
  2138. #u31945 {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:123px;
  2142. top:727px;
  2143. width:240px;
  2144. height:33px;
  2145. display:flex;
  2146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2147. font-weight:400;
  2148. font-style:normal;
  2149. font-size:14px;
  2150. text-align:right;
  2151. }
  2152. #u31945 .text {
  2153. position:absolute;
  2154. align-self:center;
  2155. padding:2px 2px 2px 2px;
  2156. box-sizing:border-box;
  2157. width:100%;
  2158. }
  2159. #u31945_div.disabled {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:0px;
  2163. top:0px;
  2164. width:240px;
  2165. height:33px;
  2166. background:inherit;
  2167. background-color:rgba(240, 240, 240, 1);
  2168. border:none;
  2169. border-radius:0px;
  2170. -moz-box-shadow:none;
  2171. -webkit-box-shadow:none;
  2172. box-shadow:none;
  2173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2174. font-weight:400;
  2175. font-style:normal;
  2176. font-size:14px;
  2177. text-align:right;
  2178. }
  2179. #u31945.disabled {
  2180. }
  2181. #u31946 {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:0px;
  2185. top:0px;
  2186. width:0px;
  2187. height:0px;
  2188. }
  2189. #u31947_img {
  2190. border-width:0px;
  2191. position:absolute;
  2192. left:0px;
  2193. top:0px;
  2194. width:342px;
  2195. height:50px;
  2196. }
  2197. #u31947 {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:48px;
  2201. top:768px;
  2202. width:342px;
  2203. height:50px;
  2204. display:flex;
  2205. }
  2206. #u31947 .text {
  2207. position:absolute;
  2208. align-self:center;
  2209. padding:2px 2px 2px 2px;
  2210. box-sizing:border-box;
  2211. width:100%;
  2212. }
  2213. #u31947_text {
  2214. border-width:0px;
  2215. word-wrap:break-word;
  2216. text-transform:none;
  2217. visibility:hidden;
  2218. }
  2219. #u31948_div {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:0px;
  2223. top:0px;
  2224. width:78px;
  2225. height:30px;
  2226. background:inherit;
  2227. background-color:rgba(255, 255, 255, 0);
  2228. border:none;
  2229. border-left:0px;
  2230. border-top:0px;
  2231. border-right:0px;
  2232. border-radius:0px;
  2233. border-bottom-right-radius:0px;
  2234. border-bottom-left-radius:0px;
  2235. -moz-box-shadow:none;
  2236. -webkit-box-shadow:none;
  2237. box-shadow:none;
  2238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2239. font-weight:400;
  2240. font-style:normal;
  2241. font-size:14px;
  2242. line-height:30px;
  2243. }
  2244. #u31948 {
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:48px;
  2248. top:778px;
  2249. width:78px;
  2250. height:30px;
  2251. display:flex;
  2252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2253. font-weight:400;
  2254. font-style:normal;
  2255. font-size:14px;
  2256. line-height:30px;
  2257. }
  2258. #u31948 .text {
  2259. position:absolute;
  2260. align-self:flex-start;
  2261. padding:0px 0px 0px 0px;
  2262. box-sizing:border-box;
  2263. width:100%;
  2264. }
  2265. #u31948_text {
  2266. border-width:0px;
  2267. white-space:nowrap;
  2268. text-transform:none;
  2269. }
  2270. #u31949_div {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:0px;
  2274. top:0px;
  2275. width:57px;
  2276. height:30px;
  2277. background:inherit;
  2278. background-color:rgba(255, 255, 255, 0);
  2279. border:none;
  2280. border-left:0px;
  2281. border-top:0px;
  2282. border-right:0px;
  2283. border-radius:0px;
  2284. border-bottom-right-radius:0px;
  2285. border-bottom-left-radius:0px;
  2286. -moz-box-shadow:none;
  2287. -webkit-box-shadow:none;
  2288. box-shadow:none;
  2289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2290. font-weight:400;
  2291. font-style:normal;
  2292. font-size:14px;
  2293. line-height:30px;
  2294. }
  2295. #u31949 {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:306px;
  2299. top:778px;
  2300. width:57px;
  2301. height:30px;
  2302. display:flex;
  2303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2304. font-weight:400;
  2305. font-style:normal;
  2306. font-size:14px;
  2307. line-height:30px;
  2308. }
  2309. #u31949 .text {
  2310. position:absolute;
  2311. align-self:flex-start;
  2312. padding:0px 0px 0px 0px;
  2313. box-sizing:border-box;
  2314. width:100%;
  2315. }
  2316. #u31949_text {
  2317. border-width:0px;
  2318. white-space:nowrap;
  2319. text-transform:none;
  2320. }
  2321. #u31950 {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:0px;
  2325. top:0px;
  2326. width:0px;
  2327. height:0px;
  2328. }
  2329. #u31951_div {
  2330. border-width:0px;
  2331. position:absolute;
  2332. left:0px;
  2333. top:0px;
  2334. width:342px;
  2335. height:200px;
  2336. background:inherit;
  2337. background-color:rgba(255, 255, 255, 1);
  2338. border:none;
  2339. border-left:0px;
  2340. border-top:0px;
  2341. border-right:0px;
  2342. border-radius:0px;
  2343. border-bottom-right-radius:0px;
  2344. border-bottom-left-radius:0px;
  2345. -moz-box-shadow:none;
  2346. -webkit-box-shadow:none;
  2347. box-shadow:none;
  2348. }
  2349. #u31951 {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:48px;
  2353. top:818px;
  2354. width:342px;
  2355. height:200px;
  2356. display:flex;
  2357. }
  2358. #u31951 .text {
  2359. position:absolute;
  2360. align-self:center;
  2361. padding:2px 2px 2px 2px;
  2362. box-sizing:border-box;
  2363. width:100%;
  2364. }
  2365. #u31951_text {
  2366. border-width:0px;
  2367. word-wrap:break-word;
  2368. text-transform:none;
  2369. visibility:hidden;
  2370. }
  2371. #u31952_div {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:0px;
  2375. top:0px;
  2376. width:120px;
  2377. height:30px;
  2378. background:inherit;
  2379. background-color:rgba(255, 255, 255, 0);
  2380. border:none;
  2381. border-left:0px;
  2382. border-top:0px;
  2383. border-right:0px;
  2384. border-radius:0px;
  2385. border-bottom-right-radius:0px;
  2386. border-bottom-left-radius:0px;
  2387. -moz-box-shadow:none;
  2388. -webkit-box-shadow:none;
  2389. box-shadow:none;
  2390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2391. font-weight:400;
  2392. font-style:normal;
  2393. font-size:14px;
  2394. line-height:30px;
  2395. }
  2396. #u31952 {
  2397. border-width:0px;
  2398. position:absolute;
  2399. left:48px;
  2400. top:828px;
  2401. width:120px;
  2402. height:30px;
  2403. display:flex;
  2404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2405. font-weight:400;
  2406. font-style:normal;
  2407. font-size:14px;
  2408. line-height:30px;
  2409. }
  2410. #u31952 .text {
  2411. position:absolute;
  2412. align-self:flex-start;
  2413. padding:0px 0px 0px 0px;
  2414. box-sizing:border-box;
  2415. width:100%;
  2416. }
  2417. #u31952_text {
  2418. border-width:0px;
  2419. white-space:nowrap;
  2420. text-transform:none;
  2421. }
  2422. #u31953_div {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:0px;
  2426. top:0px;
  2427. width:342px;
  2428. height:48px;
  2429. background:inherit;
  2430. background-color:rgba(255, 255, 255, 0);
  2431. border:none;
  2432. border-radius:0px;
  2433. -moz-box-shadow:none;
  2434. -webkit-box-shadow:none;
  2435. box-shadow:none;
  2436. font-size:12px;
  2437. color:#AAAAAA;
  2438. }
  2439. #u31953 {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:48px;
  2443. top:854px;
  2444. width:342px;
  2445. height:48px;
  2446. display:flex;
  2447. font-size:12px;
  2448. color:#AAAAAA;
  2449. }
  2450. #u31953 .text {
  2451. position:absolute;
  2452. align-self:flex-start;
  2453. padding:0px 0px 0px 0px;
  2454. box-sizing:border-box;
  2455. width:100%;
  2456. }
  2457. #u31953_text {
  2458. border-width:0px;
  2459. word-wrap:break-word;
  2460. text-transform:none;
  2461. }
  2462. #u31954_img {
  2463. border-width:0px;
  2464. position:absolute;
  2465. left:0px;
  2466. top:0px;
  2467. width:95px;
  2468. height:94px;
  2469. }
  2470. #u31954 {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:48px;
  2474. top:909px;
  2475. width:95px;
  2476. height:94px;
  2477. display:flex;
  2478. font-size:28px;
  2479. }
  2480. #u31954 .text {
  2481. position:absolute;
  2482. align-self:center;
  2483. padding:2px 2px 2px 2px;
  2484. box-sizing:border-box;
  2485. width:100%;
  2486. }
  2487. #u31954_text {
  2488. border-width:0px;
  2489. word-wrap:break-word;
  2490. text-transform:none;
  2491. }
  2492. #u31955_div {
  2493. border-width:0px;
  2494. position:absolute;
  2495. left:0px;
  2496. top:0px;
  2497. width:73px;
  2498. height:30px;
  2499. background:inherit;
  2500. background-color:rgba(255, 255, 255, 0);
  2501. border:none;
  2502. border-left:0px;
  2503. border-top:0px;
  2504. border-right:0px;
  2505. border-radius:0px;
  2506. border-bottom-right-radius:0px;
  2507. border-bottom-left-radius:0px;
  2508. -moz-box-shadow:none;
  2509. -webkit-box-shadow:none;
  2510. box-shadow:none;
  2511. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2512. font-weight:500;
  2513. font-style:normal;
  2514. font-size:18px;
  2515. line-height:30px;
  2516. }
  2517. #u31955 {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:48px;
  2521. top:378px;
  2522. width:73px;
  2523. height:30px;
  2524. display:flex;
  2525. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2526. font-weight:500;
  2527. font-style:normal;
  2528. font-size:18px;
  2529. line-height:30px;
  2530. }
  2531. #u31955 .text {
  2532. position:absolute;
  2533. align-self:flex-start;
  2534. padding:0px 0px 0px 0px;
  2535. box-sizing:border-box;
  2536. width:100%;
  2537. }
  2538. #u31955_text {
  2539. border-width:0px;
  2540. white-space:nowrap;
  2541. text-transform:none;
  2542. }
  2543. #u31957_img {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:0px;
  2547. top:0px;
  2548. width:433px;
  2549. height:865px;
  2550. }
  2551. #u31957 {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:481px;
  2555. top:0px;
  2556. width:433px;
  2557. height:865px;
  2558. display:flex;
  2559. }
  2560. #u31957 .text {
  2561. position:absolute;
  2562. align-self:center;
  2563. padding:2px 2px 2px 2px;
  2564. box-sizing:border-box;
  2565. width:100%;
  2566. }
  2567. #u31957_text {
  2568. border-width:0px;
  2569. word-wrap:break-word;
  2570. text-transform:none;
  2571. visibility:hidden;
  2572. }
  2573. #u31958_div {
  2574. border-width:0px;
  2575. position:absolute;
  2576. left:0px;
  2577. top:0px;
  2578. width:375px;
  2579. height:40px;
  2580. background:inherit;
  2581. background-color:rgba(255, 255, 255, 1);
  2582. box-sizing:border-box;
  2583. border-width:1px;
  2584. border-style:solid;
  2585. border-color:rgba(215, 215, 215, 1);
  2586. border-left:0px;
  2587. border-top:0px;
  2588. border-right:0px;
  2589. border-radius:0px;
  2590. border-bottom-right-radius:0px;
  2591. border-bottom-left-radius:0px;
  2592. -moz-box-shadow:none;
  2593. -webkit-box-shadow:none;
  2594. box-shadow:none;
  2595. }
  2596. #u31958 {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:510px;
  2600. top:67px;
  2601. width:375px;
  2602. height:40px;
  2603. display:flex;
  2604. }
  2605. #u31958 .text {
  2606. position:absolute;
  2607. align-self:center;
  2608. padding:2px 2px 2px 2px;
  2609. box-sizing:border-box;
  2610. width:100%;
  2611. }
  2612. #u31958_text {
  2613. border-width:0px;
  2614. word-wrap:break-word;
  2615. text-transform:none;
  2616. visibility:hidden;
  2617. }
  2618. #u31959 {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:0px;
  2622. top:0px;
  2623. width:0px;
  2624. height:0px;
  2625. }
  2626. #u31960_div {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:0px;
  2630. top:0px;
  2631. width:88px;
  2632. height:32px;
  2633. background:inherit;
  2634. background-color:rgba(255, 255, 255, 1);
  2635. box-sizing:border-box;
  2636. border-width:1px;
  2637. border-style:solid;
  2638. border-color:rgba(242, 242, 242, 1);
  2639. border-radius:33px;
  2640. -moz-box-shadow:none;
  2641. -webkit-box-shadow:none;
  2642. box-shadow:none;
  2643. }
  2644. #u31960 {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:790px;
  2648. top:71px;
  2649. width:88px;
  2650. height:32px;
  2651. display:flex;
  2652. }
  2653. #u31960 .text {
  2654. position:absolute;
  2655. align-self:center;
  2656. padding:2px 2px 2px 2px;
  2657. box-sizing:border-box;
  2658. width:100%;
  2659. }
  2660. #u31960_text {
  2661. border-width:0px;
  2662. word-wrap:break-word;
  2663. text-transform:none;
  2664. visibility:hidden;
  2665. }
  2666. #u31961 {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:0px;
  2671. width:0px;
  2672. height:0px;
  2673. }
  2674. #u31962_img {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:0px;
  2678. top:0px;
  2679. width:18px;
  2680. height:18px;
  2681. }
  2682. #u31962 {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:853px;
  2686. top:78px;
  2687. width:18px;
  2688. height:18px;
  2689. display:flex;
  2690. }
  2691. #u31962 .text {
  2692. position:absolute;
  2693. align-self:center;
  2694. padding:2px 2px 2px 2px;
  2695. box-sizing:border-box;
  2696. width:100%;
  2697. }
  2698. #u31962_text {
  2699. border-width:0px;
  2700. word-wrap:break-word;
  2701. text-transform:none;
  2702. visibility:hidden;
  2703. }
  2704. #u31963_img {
  2705. border-width:0px;
  2706. position:absolute;
  2707. left:0px;
  2708. top:0px;
  2709. width:6px;
  2710. height:6px;
  2711. }
  2712. #u31963 {
  2713. border-width:0px;
  2714. position:absolute;
  2715. left:859px;
  2716. top:84px;
  2717. width:6px;
  2718. height:6px;
  2719. display:flex;
  2720. }
  2721. #u31963 .text {
  2722. position:absolute;
  2723. align-self:center;
  2724. padding:2px 2px 2px 2px;
  2725. box-sizing:border-box;
  2726. width:100%;
  2727. }
  2728. #u31963_text {
  2729. border-width:0px;
  2730. word-wrap:break-word;
  2731. text-transform:none;
  2732. visibility:hidden;
  2733. }
  2734. #u31964 {
  2735. border-width:0px;
  2736. position:absolute;
  2737. left:0px;
  2738. top:0px;
  2739. width:0px;
  2740. height:0px;
  2741. }
  2742. #u31965_img {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:0px;
  2746. top:0px;
  2747. width:5px;
  2748. height:5px;
  2749. }
  2750. #u31965 {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:804px;
  2754. top:85px;
  2755. width:5px;
  2756. height:5px;
  2757. display:flex;
  2758. }
  2759. #u31965 .text {
  2760. position:absolute;
  2761. align-self:center;
  2762. padding:2px 2px 2px 2px;
  2763. box-sizing:border-box;
  2764. width:100%;
  2765. }
  2766. #u31965_text {
  2767. border-width:0px;
  2768. word-wrap:break-word;
  2769. text-transform:none;
  2770. visibility:hidden;
  2771. }
  2772. #u31966_img {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:0px;
  2776. top:0px;
  2777. width:5px;
  2778. height:5px;
  2779. }
  2780. #u31966 {
  2781. border-width:0px;
  2782. position:absolute;
  2783. left:820px;
  2784. top:85px;
  2785. width:5px;
  2786. height:5px;
  2787. display:flex;
  2788. }
  2789. #u31966 .text {
  2790. position:absolute;
  2791. align-self:center;
  2792. padding:2px 2px 2px 2px;
  2793. box-sizing:border-box;
  2794. width:100%;
  2795. }
  2796. #u31966_text {
  2797. border-width:0px;
  2798. word-wrap:break-word;
  2799. text-transform:none;
  2800. visibility:hidden;
  2801. }
  2802. #u31967_img {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:0px;
  2806. top:0px;
  2807. width:7px;
  2808. height:7px;
  2809. }
  2810. #u31967 {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:811px;
  2814. top:84px;
  2815. width:7px;
  2816. height:7px;
  2817. display:flex;
  2818. }
  2819. #u31967 .text {
  2820. position:absolute;
  2821. align-self:center;
  2822. padding:2px 2px 2px 2px;
  2823. box-sizing:border-box;
  2824. width:100%;
  2825. }
  2826. #u31967_text {
  2827. border-width:0px;
  2828. word-wrap:break-word;
  2829. text-transform:none;
  2830. visibility:hidden;
  2831. }
  2832. #u31968_img {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:0px;
  2836. top:0px;
  2837. width:19px;
  2838. height:2px;
  2839. }
  2840. #u31968 {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:828px;
  2844. top:87px;
  2845. width:18px;
  2846. height:1px;
  2847. display:flex;
  2848. -webkit-transform:rotate(90deg);
  2849. -moz-transform:rotate(90deg);
  2850. -ms-transform:rotate(90deg);
  2851. transform:rotate(90deg);
  2852. }
  2853. #u31968 .text {
  2854. position:absolute;
  2855. align-self:center;
  2856. padding:2px 2px 2px 2px;
  2857. box-sizing:border-box;
  2858. width:100%;
  2859. }
  2860. #u31968_text {
  2861. border-width:0px;
  2862. word-wrap:break-word;
  2863. text-transform:none;
  2864. visibility:hidden;
  2865. }
  2866. #u31969_img {
  2867. border-width:0px;
  2868. position:absolute;
  2869. left:0px;
  2870. top:0px;
  2871. width:375px;
  2872. height:44px;
  2873. }
  2874. #u31969 {
  2875. border-width:0px;
  2876. position:absolute;
  2877. left:510px;
  2878. top:24px;
  2879. width:375px;
  2880. height:44px;
  2881. display:flex;
  2882. }
  2883. #u31969 .text {
  2884. position:absolute;
  2885. align-self:center;
  2886. padding:2px 2px 2px 2px;
  2887. box-sizing:border-box;
  2888. width:100%;
  2889. }
  2890. #u31969_text {
  2891. border-width:0px;
  2892. word-wrap:break-word;
  2893. text-transform:none;
  2894. visibility:hidden;
  2895. }
  2896. #u31970_div {
  2897. border-width:0px;
  2898. position:absolute;
  2899. left:0px;
  2900. top:0px;
  2901. width:375px;
  2902. height:50px;
  2903. background:inherit;
  2904. background-color:rgba(255, 255, 255, 1);
  2905. box-sizing:border-box;
  2906. border-width:1px;
  2907. border-style:solid;
  2908. border-color:rgba(242, 242, 242, 1);
  2909. border-radius:26px;
  2910. border-top-left-radius:0px;
  2911. border-top-right-radius:0px;
  2912. -moz-box-shadow:none;
  2913. -webkit-box-shadow:none;
  2914. box-shadow:none;
  2915. }
  2916. #u31970 {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:510px;
  2920. top:788px;
  2921. width:375px;
  2922. height:50px;
  2923. display:flex;
  2924. }
  2925. #u31970 .text {
  2926. position:absolute;
  2927. align-self:center;
  2928. padding:2px 2px 2px 2px;
  2929. box-sizing:border-box;
  2930. width:100%;
  2931. }
  2932. #u31970_text {
  2933. border-width:0px;
  2934. word-wrap:break-word;
  2935. text-transform:none;
  2936. visibility:hidden;
  2937. }
  2938. #u31971 {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:0px;
  2942. top:0px;
  2943. width:0px;
  2944. height:0px;
  2945. }
  2946. #u31972_img {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:0px;
  2950. top:0px;
  2951. width:24px;
  2952. height:24px;
  2953. }
  2954. #u31972 {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:550px;
  2958. top:792px;
  2959. width:24px;
  2960. height:24px;
  2961. display:flex;
  2962. font-size:8px;
  2963. }
  2964. #u31972 .text {
  2965. position:absolute;
  2966. align-self:center;
  2967. padding:2px 2px 2px 2px;
  2968. box-sizing:border-box;
  2969. width:100%;
  2970. }
  2971. #u31972_text {
  2972. border-width:0px;
  2973. word-wrap:break-word;
  2974. text-transform:none;
  2975. }
  2976. #u31973_div {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:0px;
  2980. top:0px;
  2981. width:25px;
  2982. height:17px;
  2983. background:inherit;
  2984. background-color:rgba(255, 255, 255, 0);
  2985. border:none;
  2986. border-radius:0px;
  2987. -moz-box-shadow:none;
  2988. -webkit-box-shadow:none;
  2989. box-shadow:none;
  2990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2991. font-weight:400;
  2992. font-style:normal;
  2993. font-size:12px;
  2994. }
  2995. #u31973 {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:550px;
  2999. top:817px;
  3000. width:25px;
  3001. height:17px;
  3002. display:flex;
  3003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3004. font-weight:400;
  3005. font-style:normal;
  3006. font-size:12px;
  3007. }
  3008. #u31973 .text {
  3009. position:absolute;
  3010. align-self:flex-start;
  3011. padding:0px 0px 0px 0px;
  3012. box-sizing:border-box;
  3013. width:100%;
  3014. }
  3015. #u31973_text {
  3016. border-width:0px;
  3017. white-space:nowrap;
  3018. text-transform:none;
  3019. }
  3020. #u31974 {
  3021. border-width:0px;
  3022. position:absolute;
  3023. left:0px;
  3024. top:0px;
  3025. width:0px;
  3026. height:0px;
  3027. }
  3028. #u31975_img {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:0px;
  3032. top:0px;
  3033. width:24px;
  3034. height:24px;
  3035. }
  3036. #u31975 {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:820px;
  3040. top:794px;
  3041. width:24px;
  3042. height:24px;
  3043. display:flex;
  3044. font-size:8px;
  3045. }
  3046. #u31975 .text {
  3047. position:absolute;
  3048. align-self:center;
  3049. padding:2px 2px 2px 2px;
  3050. box-sizing:border-box;
  3051. width:100%;
  3052. }
  3053. #u31975_text {
  3054. border-width:0px;
  3055. word-wrap:break-word;
  3056. text-transform:none;
  3057. }
  3058. #u31976_div {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:0px;
  3062. top:0px;
  3063. width:25px;
  3064. height:17px;
  3065. background:inherit;
  3066. background-color:rgba(255, 255, 255, 0);
  3067. border:none;
  3068. border-radius:0px;
  3069. -moz-box-shadow:none;
  3070. -webkit-box-shadow:none;
  3071. box-shadow:none;
  3072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3073. font-weight:400;
  3074. font-style:normal;
  3075. font-size:12px;
  3076. }
  3077. #u31976 {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:820px;
  3081. top:819px;
  3082. width:25px;
  3083. height:17px;
  3084. display:flex;
  3085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3086. font-weight:400;
  3087. font-style:normal;
  3088. font-size:12px;
  3089. }
  3090. #u31976 .text {
  3091. position:absolute;
  3092. align-self:flex-start;
  3093. padding:0px 0px 0px 0px;
  3094. box-sizing:border-box;
  3095. width:100%;
  3096. }
  3097. #u31976_text {
  3098. border-width:0px;
  3099. white-space:nowrap;
  3100. text-transform:none;
  3101. }
  3102. #u31977_div {
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:0px;
  3106. top:0px;
  3107. width:375px;
  3108. height:681px;
  3109. background:inherit;
  3110. background-color:rgba(242, 242, 242, 0.462745098039216);
  3111. border:none;
  3112. border-radius:0px;
  3113. -moz-box-shadow:none;
  3114. -webkit-box-shadow:none;
  3115. box-shadow:none;
  3116. }
  3117. #u31977 {
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:510px;
  3121. top:107px;
  3122. width:375px;
  3123. height:681px;
  3124. display:flex;
  3125. }
  3126. #u31977 .text {
  3127. position:absolute;
  3128. align-self:center;
  3129. padding:2px 2px 2px 2px;
  3130. box-sizing:border-box;
  3131. width:100%;
  3132. }
  3133. #u31977_text {
  3134. border-width:0px;
  3135. word-wrap:break-word;
  3136. text-transform:none;
  3137. visibility:hidden;
  3138. }
  3139. #u31978 {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:0px;
  3143. top:0px;
  3144. width:0px;
  3145. height:0px;
  3146. }
  3147. #u31979_img {
  3148. border-width:0px;
  3149. position:absolute;
  3150. left:0px;
  3151. top:0px;
  3152. width:24px;
  3153. height:24px;
  3154. }
  3155. #u31979 {
  3156. border-width:0px;
  3157. position:absolute;
  3158. left:732px;
  3159. top:792px;
  3160. width:24px;
  3161. height:24px;
  3162. display:flex;
  3163. font-size:8px;
  3164. }
  3165. #u31979 .text {
  3166. position:absolute;
  3167. align-self:center;
  3168. padding:2px 2px 2px 2px;
  3169. box-sizing:border-box;
  3170. width:100%;
  3171. }
  3172. #u31979_text {
  3173. border-width:0px;
  3174. word-wrap:break-word;
  3175. text-transform:none;
  3176. }
  3177. #u31980_div {
  3178. border-width:0px;
  3179. position:absolute;
  3180. left:0px;
  3181. top:0px;
  3182. width:37px;
  3183. height:17px;
  3184. background:inherit;
  3185. background-color:rgba(255, 255, 255, 0);
  3186. border:none;
  3187. border-radius:0px;
  3188. -moz-box-shadow:none;
  3189. -webkit-box-shadow:none;
  3190. box-shadow:none;
  3191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3192. font-weight:400;
  3193. font-style:normal;
  3194. font-size:12px;
  3195. }
  3196. #u31980 {
  3197. border-width:0px;
  3198. position:absolute;
  3199. left:726px;
  3200. top:817px;
  3201. width:37px;
  3202. height:17px;
  3203. display:flex;
  3204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3205. font-weight:400;
  3206. font-style:normal;
  3207. font-size:12px;
  3208. }
  3209. #u31980 .text {
  3210. position:absolute;
  3211. align-self:flex-start;
  3212. padding:0px 0px 0px 0px;
  3213. box-sizing:border-box;
  3214. width:100%;
  3215. }
  3216. #u31980_text {
  3217. border-width:0px;
  3218. white-space:nowrap;
  3219. text-transform:none;
  3220. }
  3221. #u31981 {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:0px;
  3225. top:0px;
  3226. width:0px;
  3227. height:0px;
  3228. }
  3229. #u31982_img {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:0px;
  3233. top:0px;
  3234. width:24px;
  3235. height:24px;
  3236. }
  3237. #u31982 {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:638px;
  3241. top:792px;
  3242. width:24px;
  3243. height:24px;
  3244. display:flex;
  3245. font-size:8px;
  3246. }
  3247. #u31982 .text {
  3248. position:absolute;
  3249. align-self:center;
  3250. padding:2px 2px 2px 2px;
  3251. box-sizing:border-box;
  3252. width:100%;
  3253. }
  3254. #u31982_text {
  3255. border-width:0px;
  3256. word-wrap:break-word;
  3257. text-transform:none;
  3258. }
  3259. #u31983_div {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:0px;
  3263. top:0px;
  3264. width:37px;
  3265. height:17px;
  3266. background:inherit;
  3267. background-color:rgba(255, 255, 255, 0);
  3268. border:none;
  3269. border-radius:0px;
  3270. -moz-box-shadow:none;
  3271. -webkit-box-shadow:none;
  3272. box-shadow:none;
  3273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3274. font-weight:400;
  3275. font-style:normal;
  3276. font-size:12px;
  3277. }
  3278. #u31983 {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:632px;
  3282. top:817px;
  3283. width:37px;
  3284. height:17px;
  3285. display:flex;
  3286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3287. font-weight:400;
  3288. font-style:normal;
  3289. font-size:12px;
  3290. }
  3291. #u31983 .text {
  3292. position:absolute;
  3293. align-self:flex-start;
  3294. padding:0px 0px 0px 0px;
  3295. box-sizing:border-box;
  3296. width:100%;
  3297. }
  3298. #u31983_text {
  3299. border-width:0px;
  3300. white-space:nowrap;
  3301. text-transform:none;
  3302. }
  3303. #u31984_div {
  3304. border-width:0px;
  3305. position:absolute;
  3306. left:0px;
  3307. top:0px;
  3308. width:375px;
  3309. height:994px;
  3310. background:inherit;
  3311. background-color:rgba(242, 242, 242, 1);
  3312. border:none;
  3313. border-top:0px;
  3314. border-radius:25px;
  3315. border-top-left-radius:0px;
  3316. border-top-right-radius:0px;
  3317. -moz-box-shadow:none;
  3318. -webkit-box-shadow:none;
  3319. box-shadow:none;
  3320. }
  3321. #u31984 {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:510px;
  3325. top:105px;
  3326. width:375px;
  3327. height:994px;
  3328. display:flex;
  3329. }
  3330. #u31984 .text {
  3331. position:absolute;
  3332. align-self:center;
  3333. padding:2px 2px 2px 2px;
  3334. box-sizing:border-box;
  3335. width:100%;
  3336. }
  3337. #u31984_text {
  3338. border-width:0px;
  3339. word-wrap:break-word;
  3340. text-transform:none;
  3341. visibility:hidden;
  3342. }
  3343. #u31985_div {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:0px;
  3347. top:0px;
  3348. width:375px;
  3349. height:237px;
  3350. background:inherit;
  3351. background-color:rgba(255, 255, 255, 1);
  3352. border:none;
  3353. border-top:0px;
  3354. border-radius:0px;
  3355. border-top-left-radius:0px;
  3356. border-top-right-radius:0px;
  3357. -moz-box-shadow:none;
  3358. -webkit-box-shadow:none;
  3359. box-shadow:none;
  3360. }
  3361. #u31985 {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:510px;
  3365. top:104px;
  3366. width:375px;
  3367. height:237px;
  3368. display:flex;
  3369. }
  3370. #u31985 .text {
  3371. position:absolute;
  3372. align-self:center;
  3373. padding:2px 2px 2px 2px;
  3374. box-sizing:border-box;
  3375. width:100%;
  3376. }
  3377. #u31985_text {
  3378. border-width:0px;
  3379. word-wrap:break-word;
  3380. text-transform:none;
  3381. visibility:hidden;
  3382. }
  3383. #u31986 {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:0px;
  3387. top:0px;
  3388. width:0px;
  3389. height:0px;
  3390. }
  3391. #u31987_div {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:0px;
  3395. top:0px;
  3396. width:375px;
  3397. height:40px;
  3398. background:inherit;
  3399. background-color:rgba(255, 255, 255, 1);
  3400. border:none;
  3401. border-left:0px;
  3402. border-top:0px;
  3403. border-right:0px;
  3404. border-radius:0px;
  3405. border-bottom-right-radius:0px;
  3406. border-bottom-left-radius:0px;
  3407. -moz-box-shadow:none;
  3408. -webkit-box-shadow:none;
  3409. box-shadow:none;
  3410. }
  3411. #u31987 {
  3412. border-width:0px;
  3413. position:absolute;
  3414. left:510px;
  3415. top:64px;
  3416. width:375px;
  3417. height:40px;
  3418. display:flex;
  3419. }
  3420. #u31987 .text {
  3421. position:absolute;
  3422. align-self:center;
  3423. padding:2px 2px 2px 2px;
  3424. box-sizing:border-box;
  3425. width:100%;
  3426. }
  3427. #u31987_text {
  3428. border-width:0px;
  3429. word-wrap:break-word;
  3430. text-transform:none;
  3431. visibility:hidden;
  3432. }
  3433. #u31988 {
  3434. border-width:0px;
  3435. position:absolute;
  3436. left:0px;
  3437. top:0px;
  3438. width:0px;
  3439. height:0px;
  3440. }
  3441. #u31989_div {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:0px;
  3445. top:0px;
  3446. width:88px;
  3447. height:32px;
  3448. background:inherit;
  3449. background-color:rgba(255, 255, 255, 1);
  3450. box-sizing:border-box;
  3451. border-width:1px;
  3452. border-style:solid;
  3453. border-color:rgba(242, 242, 242, 1);
  3454. border-radius:33px;
  3455. -moz-box-shadow:none;
  3456. -webkit-box-shadow:none;
  3457. box-shadow:none;
  3458. }
  3459. #u31989 {
  3460. border-width:0px;
  3461. position:absolute;
  3462. left:787px;
  3463. top:66px;
  3464. width:88px;
  3465. height:32px;
  3466. display:flex;
  3467. }
  3468. #u31989 .text {
  3469. position:absolute;
  3470. align-self:center;
  3471. padding:2px 2px 2px 2px;
  3472. box-sizing:border-box;
  3473. width:100%;
  3474. }
  3475. #u31989_text {
  3476. border-width:0px;
  3477. word-wrap:break-word;
  3478. text-transform:none;
  3479. visibility:hidden;
  3480. }
  3481. #u31990 {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:0px;
  3485. top:0px;
  3486. width:0px;
  3487. height:0px;
  3488. }
  3489. #u31991_img {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:0px;
  3493. top:0px;
  3494. width:18px;
  3495. height:18px;
  3496. }
  3497. #u31991 {
  3498. border-width:0px;
  3499. position:absolute;
  3500. left:850px;
  3501. top:73px;
  3502. width:18px;
  3503. height:18px;
  3504. display:flex;
  3505. }
  3506. #u31991 .text {
  3507. position:absolute;
  3508. align-self:center;
  3509. padding:2px 2px 2px 2px;
  3510. box-sizing:border-box;
  3511. width:100%;
  3512. }
  3513. #u31991_text {
  3514. border-width:0px;
  3515. word-wrap:break-word;
  3516. text-transform:none;
  3517. visibility:hidden;
  3518. }
  3519. #u31992_img {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:0px;
  3523. top:0px;
  3524. width:6px;
  3525. height:6px;
  3526. }
  3527. #u31992 {
  3528. border-width:0px;
  3529. position:absolute;
  3530. left:856px;
  3531. top:79px;
  3532. width:6px;
  3533. height:6px;
  3534. display:flex;
  3535. }
  3536. #u31992 .text {
  3537. position:absolute;
  3538. align-self:center;
  3539. padding:2px 2px 2px 2px;
  3540. box-sizing:border-box;
  3541. width:100%;
  3542. }
  3543. #u31992_text {
  3544. border-width:0px;
  3545. word-wrap:break-word;
  3546. text-transform:none;
  3547. visibility:hidden;
  3548. }
  3549. #u31993 {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:0px;
  3553. top:0px;
  3554. width:0px;
  3555. height:0px;
  3556. }
  3557. #u31994_img {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:0px;
  3561. top:0px;
  3562. width:5px;
  3563. height:5px;
  3564. }
  3565. #u31994 {
  3566. border-width:0px;
  3567. position:absolute;
  3568. left:801px;
  3569. top:80px;
  3570. width:5px;
  3571. height:5px;
  3572. display:flex;
  3573. }
  3574. #u31994 .text {
  3575. position:absolute;
  3576. align-self:center;
  3577. padding:2px 2px 2px 2px;
  3578. box-sizing:border-box;
  3579. width:100%;
  3580. }
  3581. #u31994_text {
  3582. border-width:0px;
  3583. word-wrap:break-word;
  3584. text-transform:none;
  3585. visibility:hidden;
  3586. }
  3587. #u31995_img {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:0px;
  3591. top:0px;
  3592. width:5px;
  3593. height:5px;
  3594. }
  3595. #u31995 {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:817px;
  3599. top:80px;
  3600. width:5px;
  3601. height:5px;
  3602. display:flex;
  3603. }
  3604. #u31995 .text {
  3605. position:absolute;
  3606. align-self:center;
  3607. padding:2px 2px 2px 2px;
  3608. box-sizing:border-box;
  3609. width:100%;
  3610. }
  3611. #u31995_text {
  3612. border-width:0px;
  3613. word-wrap:break-word;
  3614. text-transform:none;
  3615. visibility:hidden;
  3616. }
  3617. #u31996_img {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:0px;
  3621. top:0px;
  3622. width:7px;
  3623. height:7px;
  3624. }
  3625. #u31996 {
  3626. border-width:0px;
  3627. position:absolute;
  3628. left:808px;
  3629. top:79px;
  3630. width:7px;
  3631. height:7px;
  3632. display:flex;
  3633. }
  3634. #u31996 .text {
  3635. position:absolute;
  3636. align-self:center;
  3637. padding:2px 2px 2px 2px;
  3638. box-sizing:border-box;
  3639. width:100%;
  3640. }
  3641. #u31996_text {
  3642. border-width:0px;
  3643. word-wrap:break-word;
  3644. text-transform:none;
  3645. visibility:hidden;
  3646. }
  3647. #u31997_img {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:0px;
  3651. top:0px;
  3652. width:19px;
  3653. height:2px;
  3654. }
  3655. #u31997 {
  3656. border-width:0px;
  3657. position:absolute;
  3658. left:825px;
  3659. top:82px;
  3660. width:18px;
  3661. height:1px;
  3662. display:flex;
  3663. -webkit-transform:rotate(90deg);
  3664. -moz-transform:rotate(90deg);
  3665. -ms-transform:rotate(90deg);
  3666. transform:rotate(90deg);
  3667. }
  3668. #u31997 .text {
  3669. position:absolute;
  3670. align-self:center;
  3671. padding:2px 2px 2px 2px;
  3672. box-sizing:border-box;
  3673. width:100%;
  3674. }
  3675. #u31997_text {
  3676. border-width:0px;
  3677. word-wrap:break-word;
  3678. text-transform:none;
  3679. visibility:hidden;
  3680. }
  3681. #u31998_div {
  3682. border-width:0px;
  3683. position:absolute;
  3684. left:0px;
  3685. top:0px;
  3686. width:12px;
  3687. height:12px;
  3688. background:inherit;
  3689. background-color:rgba(255, 255, 255, 0);
  3690. box-sizing:border-box;
  3691. border-width:2px;
  3692. border-style:solid;
  3693. border-color:rgba(51, 51, 51, 1);
  3694. border-right:0px;
  3695. border-bottom:0px;
  3696. border-radius:0px;
  3697. border-top-right-radius:0px;
  3698. border-bottom-left-radius:0px;
  3699. -moz-box-shadow:none;
  3700. -webkit-box-shadow:none;
  3701. box-shadow:none;
  3702. }
  3703. #u31998 {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:526px;
  3707. top:76px;
  3708. width:12px;
  3709. height:12px;
  3710. display:flex;
  3711. -webkit-transform:rotate(315deg);
  3712. -moz-transform:rotate(315deg);
  3713. -ms-transform:rotate(315deg);
  3714. transform:rotate(315deg);
  3715. }
  3716. #u31998 .text {
  3717. position:absolute;
  3718. align-self:center;
  3719. padding:2px 2px 2px 2px;
  3720. box-sizing:border-box;
  3721. width:100%;
  3722. }
  3723. #u31998_text {
  3724. border-width:0px;
  3725. word-wrap:break-word;
  3726. text-transform:none;
  3727. visibility:hidden;
  3728. }
  3729. #u31999_div {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:0px;
  3733. top:0px;
  3734. width:73px;
  3735. height:25px;
  3736. background:inherit;
  3737. background-color:rgba(255, 255, 255, 0);
  3738. border:none;
  3739. border-radius:0px;
  3740. -moz-box-shadow:none;
  3741. -webkit-box-shadow:none;
  3742. box-shadow:none;
  3743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3744. font-weight:400;
  3745. font-style:normal;
  3746. font-size:18px;
  3747. }
  3748. #u31999 {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:540px;
  3752. top:69px;
  3753. width:73px;
  3754. height:25px;
  3755. display:flex;
  3756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3757. font-weight:400;
  3758. font-style:normal;
  3759. font-size:18px;
  3760. }
  3761. #u31999 .text {
  3762. position:absolute;
  3763. align-self:flex-start;
  3764. padding:0px 0px 0px 0px;
  3765. box-sizing:border-box;
  3766. width:100%;
  3767. }
  3768. #u31999_text {
  3769. border-width:0px;
  3770. white-space:nowrap;
  3771. text-transform:none;
  3772. }
  3773. #u32000 {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:0px;
  3777. top:0px;
  3778. width:0px;
  3779. height:0px;
  3780. }
  3781. #u32001_div {
  3782. border-width:0px;
  3783. position:absolute;
  3784. left:0px;
  3785. top:0px;
  3786. width:376px;
  3787. height:60px;
  3788. background:inherit;
  3789. background-color:rgba(255, 255, 255, 1);
  3790. border:none;
  3791. border-top:0px;
  3792. border-radius:22px;
  3793. border-top-left-radius:0px;
  3794. border-top-right-radius:0px;
  3795. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  3796. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  3797. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  3798. }
  3799. #u32001 {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:510px;
  3803. top:1128px;
  3804. width:376px;
  3805. height:60px;
  3806. display:flex;
  3807. }
  3808. #u32001 .text {
  3809. position:absolute;
  3810. align-self:center;
  3811. padding:2px 2px 2px 2px;
  3812. box-sizing:border-box;
  3813. width:100%;
  3814. }
  3815. #u32001_text {
  3816. border-width:0px;
  3817. word-wrap:break-word;
  3818. text-transform:none;
  3819. visibility:hidden;
  3820. }
  3821. #u32002_div {
  3822. border-width:0px;
  3823. position:absolute;
  3824. left:0px;
  3825. top:0px;
  3826. width:334px;
  3827. height:40px;
  3828. background:inherit;
  3829. background-color:rgba(215, 215, 215, 1);
  3830. border:none;
  3831. border-radius:45px;
  3832. -moz-box-shadow:none;
  3833. -webkit-box-shadow:none;
  3834. box-shadow:none;
  3835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3836. font-weight:400;
  3837. font-style:normal;
  3838. font-size:14px;
  3839. color:#FFFFFF;
  3840. }
  3841. #u32002 {
  3842. border-width:0px;
  3843. position:absolute;
  3844. left:531px;
  3845. top:1138px;
  3846. width:334px;
  3847. height:40px;
  3848. display:flex;
  3849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3850. font-weight:400;
  3851. font-style:normal;
  3852. font-size:14px;
  3853. color:#FFFFFF;
  3854. }
  3855. #u32002 .text {
  3856. position:absolute;
  3857. align-self:center;
  3858. padding:2px 2px 2px 2px;
  3859. box-sizing:border-box;
  3860. width:100%;
  3861. }
  3862. #u32002_text {
  3863. border-width:0px;
  3864. word-wrap:break-word;
  3865. text-transform:none;
  3866. }
  3867. #u32003_div {
  3868. border-width:0px;
  3869. position:absolute;
  3870. left:0px;
  3871. top:0px;
  3872. width:375px;
  3873. height:754px;
  3874. background:inherit;
  3875. background-color:rgba(255, 255, 255, 1);
  3876. border:none;
  3877. border-top:0px;
  3878. border-radius:0px;
  3879. border-top-left-radius:0px;
  3880. border-top-right-radius:0px;
  3881. -moz-box-shadow:none;
  3882. -webkit-box-shadow:none;
  3883. box-shadow:none;
  3884. }
  3885. #u32003 {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:510px;
  3889. top:364px;
  3890. width:375px;
  3891. height:754px;
  3892. display:flex;
  3893. }
  3894. #u32003 .text {
  3895. position:absolute;
  3896. align-self:center;
  3897. padding:2px 2px 2px 2px;
  3898. box-sizing:border-box;
  3899. width:100%;
  3900. }
  3901. #u32003_text {
  3902. border-width:0px;
  3903. word-wrap:break-word;
  3904. text-transform:none;
  3905. visibility:hidden;
  3906. }
  3907. #u32004 {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:0px;
  3911. top:0px;
  3912. width:0px;
  3913. height:0px;
  3914. }
  3915. #u32005_img {
  3916. border-width:0px;
  3917. position:absolute;
  3918. left:0px;
  3919. top:0px;
  3920. width:342px;
  3921. height:50px;
  3922. }
  3923. #u32005 {
  3924. border-width:0px;
  3925. position:absolute;
  3926. left:529px;
  3927. top:408px;
  3928. width:342px;
  3929. height:50px;
  3930. display:flex;
  3931. }
  3932. #u32005 .text {
  3933. position:absolute;
  3934. align-self:center;
  3935. padding:2px 2px 2px 2px;
  3936. box-sizing:border-box;
  3937. width:100%;
  3938. }
  3939. #u32005_text {
  3940. border-width:0px;
  3941. word-wrap:break-word;
  3942. text-transform:none;
  3943. visibility:hidden;
  3944. }
  3945. #u32006_div {
  3946. border-width:0px;
  3947. position:absolute;
  3948. left:0px;
  3949. top:0px;
  3950. width:78px;
  3951. height:30px;
  3952. background:inherit;
  3953. background-color:rgba(255, 255, 255, 0);
  3954. border:none;
  3955. border-left:0px;
  3956. border-top:0px;
  3957. border-right:0px;
  3958. border-radius:0px;
  3959. border-bottom-right-radius:0px;
  3960. border-bottom-left-radius:0px;
  3961. -moz-box-shadow:none;
  3962. -webkit-box-shadow:none;
  3963. box-shadow:none;
  3964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3965. font-weight:400;
  3966. font-style:normal;
  3967. font-size:14px;
  3968. line-height:30px;
  3969. }
  3970. #u32006 {
  3971. border-width:0px;
  3972. position:absolute;
  3973. left:529px;
  3974. top:418px;
  3975. width:78px;
  3976. height:30px;
  3977. display:flex;
  3978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3979. font-weight:400;
  3980. font-style:normal;
  3981. font-size:14px;
  3982. line-height:30px;
  3983. }
  3984. #u32006 .text {
  3985. position:absolute;
  3986. align-self:flex-start;
  3987. padding:0px 0px 0px 0px;
  3988. box-sizing:border-box;
  3989. width:100%;
  3990. }
  3991. #u32006_text {
  3992. border-width:0px;
  3993. white-space:nowrap;
  3994. text-transform:none;
  3995. }
  3996. #u32007_input {
  3997. position:absolute;
  3998. left:0px;
  3999. top:0px;
  4000. width:240px;
  4001. height:33px;
  4002. padding:2px 2px 2px 2px;
  4003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4004. font-weight:400;
  4005. font-style:normal;
  4006. font-size:14px;
  4007. letter-spacing:normal;
  4008. color:#000000;
  4009. vertical-align:none;
  4010. text-align:right;
  4011. text-transform:none;
  4012. background-color:transparent;
  4013. border-color:transparent;
  4014. }
  4015. #u32007_input.disabled {
  4016. position:absolute;
  4017. left:0px;
  4018. top:0px;
  4019. width:240px;
  4020. height:33px;
  4021. padding:2px 2px 2px 2px;
  4022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4023. font-weight:400;
  4024. font-style:normal;
  4025. font-size:14px;
  4026. letter-spacing:normal;
  4027. color:#000000;
  4028. vertical-align:none;
  4029. text-align:right;
  4030. text-transform:none;
  4031. background-color:transparent;
  4032. border-color:transparent;
  4033. }
  4034. #u32007_div {
  4035. border-width:0px;
  4036. position:absolute;
  4037. left:0px;
  4038. top:0px;
  4039. width:240px;
  4040. height:33px;
  4041. background:inherit;
  4042. background-color:rgba(255, 255, 255, 1);
  4043. border:none;
  4044. border-radius:0px;
  4045. -moz-box-shadow:none;
  4046. -webkit-box-shadow:none;
  4047. box-shadow:none;
  4048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4049. font-weight:400;
  4050. font-style:normal;
  4051. font-size:14px;
  4052. text-align:right;
  4053. }
  4054. #u32007 {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:604px;
  4058. top:417px;
  4059. width:240px;
  4060. height:33px;
  4061. display:flex;
  4062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4063. font-weight:400;
  4064. font-style:normal;
  4065. font-size:14px;
  4066. text-align:right;
  4067. }
  4068. #u32007 .text {
  4069. position:absolute;
  4070. align-self:center;
  4071. padding:2px 2px 2px 2px;
  4072. box-sizing:border-box;
  4073. width:100%;
  4074. }
  4075. #u32007_div.disabled {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:0px;
  4079. top:0px;
  4080. width:240px;
  4081. height:33px;
  4082. background:inherit;
  4083. background-color:rgba(240, 240, 240, 1);
  4084. border:none;
  4085. border-radius:0px;
  4086. -moz-box-shadow:none;
  4087. -webkit-box-shadow:none;
  4088. box-shadow:none;
  4089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4090. font-weight:400;
  4091. font-style:normal;
  4092. font-size:14px;
  4093. text-align:right;
  4094. }
  4095. #u32007.disabled {
  4096. }
  4097. #u32008_img {
  4098. border-width:0px;
  4099. position:absolute;
  4100. left:0px;
  4101. top:0px;
  4102. width:8px;
  4103. height:13px;
  4104. }
  4105. #u32008 {
  4106. border-width:0px;
  4107. position:absolute;
  4108. left:852px;
  4109. top:427px;
  4110. width:8px;
  4111. height:13px;
  4112. display:flex;
  4113. -webkit-transform:rotate(180deg);
  4114. -moz-transform:rotate(180deg);
  4115. -ms-transform:rotate(180deg);
  4116. transform:rotate(180deg);
  4117. }
  4118. #u32008 .text {
  4119. position:absolute;
  4120. align-self:center;
  4121. padding:2px 2px 2px 2px;
  4122. box-sizing:border-box;
  4123. width:100%;
  4124. }
  4125. #u32008_text {
  4126. border-width:0px;
  4127. word-wrap:break-word;
  4128. text-transform:none;
  4129. visibility:hidden;
  4130. }
  4131. #u32009 {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:0px;
  4135. top:0px;
  4136. width:0px;
  4137. height:0px;
  4138. }
  4139. #u32010_img {
  4140. border-width:0px;
  4141. position:absolute;
  4142. left:0px;
  4143. top:0px;
  4144. width:342px;
  4145. height:50px;
  4146. }
  4147. #u32010 {
  4148. border-width:0px;
  4149. position:absolute;
  4150. left:529px;
  4151. top:658px;
  4152. width:342px;
  4153. height:50px;
  4154. display:flex;
  4155. }
  4156. #u32010 .text {
  4157. position:absolute;
  4158. align-self:center;
  4159. padding:2px 2px 2px 2px;
  4160. box-sizing:border-box;
  4161. width:100%;
  4162. }
  4163. #u32010_text {
  4164. border-width:0px;
  4165. word-wrap:break-word;
  4166. text-transform:none;
  4167. visibility:hidden;
  4168. }
  4169. #u32011_div {
  4170. border-width:0px;
  4171. position:absolute;
  4172. left:0px;
  4173. top:0px;
  4174. width:78px;
  4175. height:30px;
  4176. background:inherit;
  4177. background-color:rgba(255, 255, 255, 0);
  4178. border:none;
  4179. border-left:0px;
  4180. border-top:0px;
  4181. border-right:0px;
  4182. border-radius:0px;
  4183. border-bottom-right-radius:0px;
  4184. border-bottom-left-radius:0px;
  4185. -moz-box-shadow:none;
  4186. -webkit-box-shadow:none;
  4187. box-shadow:none;
  4188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4189. font-weight:400;
  4190. font-style:normal;
  4191. font-size:14px;
  4192. line-height:30px;
  4193. }
  4194. #u32011 {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:529px;
  4198. top:668px;
  4199. width:78px;
  4200. height:30px;
  4201. display:flex;
  4202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4203. font-weight:400;
  4204. font-style:normal;
  4205. font-size:14px;
  4206. line-height:30px;
  4207. }
  4208. #u32011 .text {
  4209. position:absolute;
  4210. align-self:flex-start;
  4211. padding:0px 0px 0px 0px;
  4212. box-sizing:border-box;
  4213. width:100%;
  4214. }
  4215. #u32011_text {
  4216. border-width:0px;
  4217. white-space:nowrap;
  4218. text-transform:none;
  4219. }
  4220. #u32012_input {
  4221. position:absolute;
  4222. left:0px;
  4223. top:0px;
  4224. width:240px;
  4225. height:33px;
  4226. padding:2px 2px 2px 2px;
  4227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4228. font-weight:400;
  4229. font-style:normal;
  4230. font-size:14px;
  4231. letter-spacing:normal;
  4232. color:#000000;
  4233. vertical-align:none;
  4234. text-align:right;
  4235. text-transform:none;
  4236. background-color:transparent;
  4237. border-color:transparent;
  4238. }
  4239. #u32012_input.disabled {
  4240. position:absolute;
  4241. left:0px;
  4242. top:0px;
  4243. width:240px;
  4244. height:33px;
  4245. padding:2px 2px 2px 2px;
  4246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4247. font-weight:400;
  4248. font-style:normal;
  4249. font-size:14px;
  4250. letter-spacing:normal;
  4251. color:#000000;
  4252. vertical-align:none;
  4253. text-align:right;
  4254. text-transform:none;
  4255. background-color:transparent;
  4256. border-color:transparent;
  4257. }
  4258. #u32012_div {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:0px;
  4262. top:0px;
  4263. width:240px;
  4264. height:33px;
  4265. background:inherit;
  4266. background-color:rgba(255, 255, 255, 1);
  4267. border:none;
  4268. border-radius:0px;
  4269. -moz-box-shadow:none;
  4270. -webkit-box-shadow:none;
  4271. box-shadow:none;
  4272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4273. font-weight:400;
  4274. font-style:normal;
  4275. font-size:14px;
  4276. text-align:right;
  4277. }
  4278. #u32012 {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:604px;
  4282. top:667px;
  4283. width:240px;
  4284. height:33px;
  4285. display:flex;
  4286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4287. font-weight:400;
  4288. font-style:normal;
  4289. font-size:14px;
  4290. text-align:right;
  4291. }
  4292. #u32012 .text {
  4293. position:absolute;
  4294. align-self:center;
  4295. padding:2px 2px 2px 2px;
  4296. box-sizing:border-box;
  4297. width:100%;
  4298. }
  4299. #u32012_div.disabled {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:0px;
  4303. top:0px;
  4304. width:240px;
  4305. height:33px;
  4306. background:inherit;
  4307. background-color:rgba(240, 240, 240, 1);
  4308. border:none;
  4309. border-radius:0px;
  4310. -moz-box-shadow:none;
  4311. -webkit-box-shadow:none;
  4312. box-shadow:none;
  4313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4314. font-weight:400;
  4315. font-style:normal;
  4316. font-size:14px;
  4317. text-align:right;
  4318. }
  4319. #u32012.disabled {
  4320. }
  4321. #u32013_img {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:0px;
  4325. top:0px;
  4326. width:8px;
  4327. height:13px;
  4328. }
  4329. #u32013 {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:852px;
  4333. top:677px;
  4334. width:8px;
  4335. height:13px;
  4336. display:flex;
  4337. -webkit-transform:rotate(180deg);
  4338. -moz-transform:rotate(180deg);
  4339. -ms-transform:rotate(180deg);
  4340. transform:rotate(180deg);
  4341. }
  4342. #u32013 .text {
  4343. position:absolute;
  4344. align-self:center;
  4345. padding:2px 2px 2px 2px;
  4346. box-sizing:border-box;
  4347. width:100%;
  4348. }
  4349. #u32013_text {
  4350. border-width:0px;
  4351. word-wrap:break-word;
  4352. text-transform:none;
  4353. visibility:hidden;
  4354. }
  4355. #u32014_div {
  4356. border-width:0px;
  4357. position:absolute;
  4358. left:0px;
  4359. top:0px;
  4360. width:73px;
  4361. height:30px;
  4362. background:inherit;
  4363. background-color:rgba(255, 255, 255, 0);
  4364. border:none;
  4365. border-left:0px;
  4366. border-top:0px;
  4367. border-right:0px;
  4368. border-radius:0px;
  4369. border-bottom-right-radius:0px;
  4370. border-bottom-left-radius:0px;
  4371. -moz-box-shadow:none;
  4372. -webkit-box-shadow:none;
  4373. box-shadow:none;
  4374. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4375. font-weight:500;
  4376. font-style:normal;
  4377. font-size:18px;
  4378. line-height:30px;
  4379. }
  4380. #u32014 {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:529px;
  4384. top:378px;
  4385. width:73px;
  4386. height:30px;
  4387. display:flex;
  4388. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4389. font-weight:500;
  4390. font-style:normal;
  4391. font-size:18px;
  4392. line-height:30px;
  4393. }
  4394. #u32014 .text {
  4395. position:absolute;
  4396. align-self:flex-start;
  4397. padding:0px 0px 0px 0px;
  4398. box-sizing:border-box;
  4399. width:100%;
  4400. }
  4401. #u32014_text {
  4402. border-width:0px;
  4403. white-space:nowrap;
  4404. text-transform:none;
  4405. }
  4406. #u32015 {
  4407. border-width:0px;
  4408. position:absolute;
  4409. left:0px;
  4410. top:0px;
  4411. width:0px;
  4412. height:0px;
  4413. }
  4414. #u32016_img {
  4415. border-width:0px;
  4416. position:absolute;
  4417. left:0px;
  4418. top:0px;
  4419. width:342px;
  4420. height:160px;
  4421. }
  4422. #u32016 {
  4423. border-width:0px;
  4424. position:absolute;
  4425. left:529px;
  4426. top:758px;
  4427. width:342px;
  4428. height:160px;
  4429. display:flex;
  4430. }
  4431. #u32016 .text {
  4432. position:absolute;
  4433. align-self:center;
  4434. padding:2px 2px 2px 2px;
  4435. box-sizing:border-box;
  4436. width:100%;
  4437. }
  4438. #u32016_text {
  4439. border-width:0px;
  4440. word-wrap:break-word;
  4441. text-transform:none;
  4442. visibility:hidden;
  4443. }
  4444. #u32017_div {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:0px;
  4448. top:0px;
  4449. width:64px;
  4450. height:30px;
  4451. background:inherit;
  4452. background-color:rgba(255, 255, 255, 0);
  4453. border:none;
  4454. border-left:0px;
  4455. border-top:0px;
  4456. border-right:0px;
  4457. border-radius:0px;
  4458. border-bottom-right-radius:0px;
  4459. border-bottom-left-radius:0px;
  4460. -moz-box-shadow:none;
  4461. -webkit-box-shadow:none;
  4462. box-shadow:none;
  4463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4464. font-weight:400;
  4465. font-style:normal;
  4466. font-size:14px;
  4467. line-height:30px;
  4468. }
  4469. #u32017 {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:529px;
  4473. top:768px;
  4474. width:64px;
  4475. height:30px;
  4476. display:flex;
  4477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4478. font-weight:400;
  4479. font-style:normal;
  4480. font-size:14px;
  4481. line-height:30px;
  4482. }
  4483. #u32017 .text {
  4484. position:absolute;
  4485. align-self:flex-start;
  4486. padding:0px 0px 0px 0px;
  4487. box-sizing:border-box;
  4488. width:100%;
  4489. }
  4490. #u32017_text {
  4491. border-width:0px;
  4492. white-space:nowrap;
  4493. text-transform:none;
  4494. }
  4495. #u32018_img {
  4496. border-width:0px;
  4497. position:absolute;
  4498. left:0px;
  4499. top:0px;
  4500. width:95px;
  4501. height:94px;
  4502. }
  4503. #u32018 {
  4504. border-width:0px;
  4505. position:absolute;
  4506. left:539px;
  4507. top:798px;
  4508. width:95px;
  4509. height:94px;
  4510. display:flex;
  4511. font-size:28px;
  4512. }
  4513. #u32018 .text {
  4514. position:absolute;
  4515. align-self:center;
  4516. padding:2px 2px 2px 2px;
  4517. box-sizing:border-box;
  4518. width:100%;
  4519. }
  4520. #u32018_text {
  4521. border-width:0px;
  4522. word-wrap:break-word;
  4523. text-transform:none;
  4524. }
  4525. #u32019 {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:0px;
  4529. top:0px;
  4530. width:0px;
  4531. height:0px;
  4532. }
  4533. #u32020_img {
  4534. border-width:0px;
  4535. position:absolute;
  4536. left:0px;
  4537. top:0px;
  4538. width:342px;
  4539. height:50px;
  4540. }
  4541. #u32020 {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:529px;
  4545. top:708px;
  4546. width:342px;
  4547. height:50px;
  4548. display:flex;
  4549. }
  4550. #u32020 .text {
  4551. position:absolute;
  4552. align-self:center;
  4553. padding:2px 2px 2px 2px;
  4554. box-sizing:border-box;
  4555. width:100%;
  4556. }
  4557. #u32020_text {
  4558. border-width:0px;
  4559. word-wrap:break-word;
  4560. text-transform:none;
  4561. visibility:hidden;
  4562. }
  4563. #u32021_div {
  4564. border-width:0px;
  4565. position:absolute;
  4566. left:0px;
  4567. top:0px;
  4568. width:64px;
  4569. height:30px;
  4570. background:inherit;
  4571. background-color:rgba(255, 255, 255, 0);
  4572. border:none;
  4573. border-left:0px;
  4574. border-top:0px;
  4575. border-right:0px;
  4576. border-radius:0px;
  4577. border-bottom-right-radius:0px;
  4578. border-bottom-left-radius:0px;
  4579. -moz-box-shadow:none;
  4580. -webkit-box-shadow:none;
  4581. box-shadow:none;
  4582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4583. font-weight:400;
  4584. font-style:normal;
  4585. font-size:14px;
  4586. line-height:30px;
  4587. }
  4588. #u32021 {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:529px;
  4592. top:718px;
  4593. width:64px;
  4594. height:30px;
  4595. display:flex;
  4596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4597. font-weight:400;
  4598. font-style:normal;
  4599. font-size:14px;
  4600. line-height:30px;
  4601. }
  4602. #u32021 .text {
  4603. position:absolute;
  4604. align-self:flex-start;
  4605. padding:0px 0px 0px 0px;
  4606. box-sizing:border-box;
  4607. width:100%;
  4608. }
  4609. #u32021_text {
  4610. border-width:0px;
  4611. white-space:nowrap;
  4612. text-transform:none;
  4613. }
  4614. #u32022_input {
  4615. position:absolute;
  4616. left:0px;
  4617. top:0px;
  4618. width:240px;
  4619. height:33px;
  4620. padding:2px 2px 2px 2px;
  4621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4622. font-weight:400;
  4623. font-style:normal;
  4624. font-size:14px;
  4625. letter-spacing:normal;
  4626. color:#000000;
  4627. vertical-align:none;
  4628. text-align:right;
  4629. text-transform:none;
  4630. background-color:transparent;
  4631. border-color:transparent;
  4632. }
  4633. #u32022_input.disabled {
  4634. position:absolute;
  4635. left:0px;
  4636. top:0px;
  4637. width:240px;
  4638. height:33px;
  4639. padding:2px 2px 2px 2px;
  4640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4641. font-weight:400;
  4642. font-style:normal;
  4643. font-size:14px;
  4644. letter-spacing:normal;
  4645. color:#000000;
  4646. vertical-align:none;
  4647. text-align:right;
  4648. text-transform:none;
  4649. background-color:transparent;
  4650. border-color:transparent;
  4651. }
  4652. #u32022_div {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:0px;
  4656. top:0px;
  4657. width:240px;
  4658. height:33px;
  4659. background:inherit;
  4660. background-color:rgba(255, 255, 255, 1);
  4661. border:none;
  4662. border-radius:0px;
  4663. -moz-box-shadow:none;
  4664. -webkit-box-shadow:none;
  4665. box-shadow:none;
  4666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4667. font-weight:400;
  4668. font-style:normal;
  4669. font-size:14px;
  4670. text-align:right;
  4671. }
  4672. #u32022 {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:620px;
  4676. top:717px;
  4677. width:240px;
  4678. height:33px;
  4679. display:flex;
  4680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4681. font-weight:400;
  4682. font-style:normal;
  4683. font-size:14px;
  4684. text-align:right;
  4685. }
  4686. #u32022 .text {
  4687. position:absolute;
  4688. align-self:center;
  4689. padding:2px 2px 2px 2px;
  4690. box-sizing:border-box;
  4691. width:100%;
  4692. }
  4693. #u32022_div.disabled {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:0px;
  4697. top:0px;
  4698. width:240px;
  4699. height:33px;
  4700. background:inherit;
  4701. background-color:rgba(240, 240, 240, 1);
  4702. border:none;
  4703. border-radius:0px;
  4704. -moz-box-shadow:none;
  4705. -webkit-box-shadow:none;
  4706. box-shadow:none;
  4707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4708. font-weight:400;
  4709. font-style:normal;
  4710. font-size:14px;
  4711. text-align:right;
  4712. }
  4713. #u32022.disabled {
  4714. }
  4715. #u32023 {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:0px;
  4719. top:0px;
  4720. width:0px;
  4721. height:0px;
  4722. }
  4723. #u32024_div {
  4724. border-width:0px;
  4725. position:absolute;
  4726. left:0px;
  4727. top:0px;
  4728. width:342px;
  4729. height:200px;
  4730. background:inherit;
  4731. background-color:rgba(255, 255, 255, 1);
  4732. border:none;
  4733. border-left:0px;
  4734. border-top:0px;
  4735. border-right:0px;
  4736. border-radius:0px;
  4737. border-bottom-right-radius:0px;
  4738. border-bottom-left-radius:0px;
  4739. -moz-box-shadow:none;
  4740. -webkit-box-shadow:none;
  4741. box-shadow:none;
  4742. }
  4743. #u32024 {
  4744. border-width:0px;
  4745. position:absolute;
  4746. left:529px;
  4747. top:918px;
  4748. width:342px;
  4749. height:200px;
  4750. display:flex;
  4751. }
  4752. #u32024 .text {
  4753. position:absolute;
  4754. align-self:center;
  4755. padding:2px 2px 2px 2px;
  4756. box-sizing:border-box;
  4757. width:100%;
  4758. }
  4759. #u32024_text {
  4760. border-width:0px;
  4761. word-wrap:break-word;
  4762. text-transform:none;
  4763. visibility:hidden;
  4764. }
  4765. #u32025_div {
  4766. border-width:0px;
  4767. position:absolute;
  4768. left:0px;
  4769. top:0px;
  4770. width:120px;
  4771. height:30px;
  4772. background:inherit;
  4773. background-color:rgba(255, 255, 255, 0);
  4774. border:none;
  4775. border-left:0px;
  4776. border-top:0px;
  4777. border-right:0px;
  4778. border-radius:0px;
  4779. border-bottom-right-radius:0px;
  4780. border-bottom-left-radius:0px;
  4781. -moz-box-shadow:none;
  4782. -webkit-box-shadow:none;
  4783. box-shadow:none;
  4784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4785. font-weight:400;
  4786. font-style:normal;
  4787. font-size:14px;
  4788. line-height:30px;
  4789. }
  4790. #u32025 {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:529px;
  4794. top:928px;
  4795. width:120px;
  4796. height:30px;
  4797. display:flex;
  4798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4799. font-weight:400;
  4800. font-style:normal;
  4801. font-size:14px;
  4802. line-height:30px;
  4803. }
  4804. #u32025 .text {
  4805. position:absolute;
  4806. align-self:flex-start;
  4807. padding:0px 0px 0px 0px;
  4808. box-sizing:border-box;
  4809. width:100%;
  4810. }
  4811. #u32025_text {
  4812. border-width:0px;
  4813. white-space:nowrap;
  4814. text-transform:none;
  4815. }
  4816. #u32026_div {
  4817. border-width:0px;
  4818. position:absolute;
  4819. left:0px;
  4820. top:0px;
  4821. width:342px;
  4822. height:48px;
  4823. background:inherit;
  4824. background-color:rgba(255, 255, 255, 0);
  4825. border:none;
  4826. border-radius:0px;
  4827. -moz-box-shadow:none;
  4828. -webkit-box-shadow:none;
  4829. box-shadow:none;
  4830. font-size:12px;
  4831. color:#AAAAAA;
  4832. }
  4833. #u32026 {
  4834. border-width:0px;
  4835. position:absolute;
  4836. left:529px;
  4837. top:954px;
  4838. width:342px;
  4839. height:48px;
  4840. display:flex;
  4841. font-size:12px;
  4842. color:#AAAAAA;
  4843. }
  4844. #u32026 .text {
  4845. position:absolute;
  4846. align-self:flex-start;
  4847. padding:0px 0px 0px 0px;
  4848. box-sizing:border-box;
  4849. width:100%;
  4850. }
  4851. #u32026_text {
  4852. border-width:0px;
  4853. word-wrap:break-word;
  4854. text-transform:none;
  4855. }
  4856. #u32027_img {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:0px;
  4860. top:0px;
  4861. width:95px;
  4862. height:94px;
  4863. }
  4864. #u32027 {
  4865. border-width:0px;
  4866. position:absolute;
  4867. left:529px;
  4868. top:1009px;
  4869. width:95px;
  4870. height:94px;
  4871. display:flex;
  4872. font-size:28px;
  4873. }
  4874. #u32027 .text {
  4875. position:absolute;
  4876. align-self:center;
  4877. padding:2px 2px 2px 2px;
  4878. box-sizing:border-box;
  4879. width:100%;
  4880. }
  4881. #u32027_text {
  4882. border-width:0px;
  4883. word-wrap:break-word;
  4884. text-transform:none;
  4885. }
  4886. #u32028 {
  4887. border-width:0px;
  4888. position:absolute;
  4889. left:0px;
  4890. top:0px;
  4891. width:0px;
  4892. height:0px;
  4893. }
  4894. #u32029_img {
  4895. border-width:0px;
  4896. position:absolute;
  4897. left:0px;
  4898. top:0px;
  4899. width:342px;
  4900. height:50px;
  4901. }
  4902. #u32029 {
  4903. border-width:0px;
  4904. position:absolute;
  4905. left:48px;
  4906. top:458px;
  4907. width:342px;
  4908. height:50px;
  4909. display:flex;
  4910. }
  4911. #u32029 .text {
  4912. position:absolute;
  4913. align-self:center;
  4914. padding:2px 2px 2px 2px;
  4915. box-sizing:border-box;
  4916. width:100%;
  4917. }
  4918. #u32029_text {
  4919. border-width:0px;
  4920. word-wrap:break-word;
  4921. text-transform:none;
  4922. visibility:hidden;
  4923. }
  4924. #u32030_div {
  4925. border-width:0px;
  4926. position:absolute;
  4927. left:0px;
  4928. top:0px;
  4929. width:64px;
  4930. height:30px;
  4931. background:inherit;
  4932. background-color:rgba(255, 255, 255, 0);
  4933. border:none;
  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. -moz-box-shadow:none;
  4941. -webkit-box-shadow:none;
  4942. box-shadow:none;
  4943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4944. font-weight:400;
  4945. font-style:normal;
  4946. font-size:14px;
  4947. line-height:30px;
  4948. }
  4949. #u32030 {
  4950. border-width:0px;
  4951. position:absolute;
  4952. left:48px;
  4953. top:468px;
  4954. width:64px;
  4955. height:30px;
  4956. display:flex;
  4957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4958. font-weight:400;
  4959. font-style:normal;
  4960. font-size:14px;
  4961. line-height:30px;
  4962. }
  4963. #u32030 .text {
  4964. position:absolute;
  4965. align-self:flex-start;
  4966. padding:0px 0px 0px 0px;
  4967. box-sizing:border-box;
  4968. width:100%;
  4969. }
  4970. #u32030_text {
  4971. border-width:0px;
  4972. white-space:nowrap;
  4973. text-transform:none;
  4974. }
  4975. #u32031_input {
  4976. position:absolute;
  4977. left:0px;
  4978. top:0px;
  4979. width:240px;
  4980. height:33px;
  4981. padding:2px 2px 2px 2px;
  4982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4983. font-weight:400;
  4984. font-style:normal;
  4985. font-size:14px;
  4986. letter-spacing:normal;
  4987. color:#000000;
  4988. vertical-align:none;
  4989. text-align:right;
  4990. text-transform:none;
  4991. background-color:transparent;
  4992. border-color:transparent;
  4993. }
  4994. #u32031_input.disabled {
  4995. position:absolute;
  4996. left:0px;
  4997. top:0px;
  4998. width:240px;
  4999. height:33px;
  5000. padding:2px 2px 2px 2px;
  5001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5002. font-weight:400;
  5003. font-style:normal;
  5004. font-size:14px;
  5005. letter-spacing:normal;
  5006. color:#000000;
  5007. vertical-align:none;
  5008. text-align:right;
  5009. text-transform:none;
  5010. background-color:transparent;
  5011. border-color:transparent;
  5012. }
  5013. #u32031_div {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:0px;
  5017. top:0px;
  5018. width:240px;
  5019. height:33px;
  5020. background:inherit;
  5021. background-color:rgba(255, 255, 255, 1);
  5022. border:none;
  5023. border-radius:0px;
  5024. -moz-box-shadow:none;
  5025. -webkit-box-shadow:none;
  5026. box-shadow:none;
  5027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5028. font-weight:400;
  5029. font-style:normal;
  5030. font-size:14px;
  5031. text-align:right;
  5032. }
  5033. #u32031 {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:123px;
  5037. top:467px;
  5038. width:240px;
  5039. height:33px;
  5040. display:flex;
  5041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5042. font-weight:400;
  5043. font-style:normal;
  5044. font-size:14px;
  5045. text-align:right;
  5046. }
  5047. #u32031 .text {
  5048. position:absolute;
  5049. align-self:center;
  5050. padding:2px 2px 2px 2px;
  5051. box-sizing:border-box;
  5052. width:100%;
  5053. }
  5054. #u32031_div.disabled {
  5055. border-width:0px;
  5056. position:absolute;
  5057. left:0px;
  5058. top:0px;
  5059. width:240px;
  5060. height:33px;
  5061. background:inherit;
  5062. background-color:rgba(240, 240, 240, 1);
  5063. border:none;
  5064. border-radius:0px;
  5065. -moz-box-shadow:none;
  5066. -webkit-box-shadow:none;
  5067. box-shadow:none;
  5068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5069. font-weight:400;
  5070. font-style:normal;
  5071. font-size:14px;
  5072. text-align:right;
  5073. }
  5074. #u32031.disabled {
  5075. }
  5076. #u32032 {
  5077. border-width:0px;
  5078. position:absolute;
  5079. left:0px;
  5080. top:0px;
  5081. width:0px;
  5082. height:0px;
  5083. }
  5084. #u32033_img {
  5085. border-width:0px;
  5086. position:absolute;
  5087. left:0px;
  5088. top:0px;
  5089. width:342px;
  5090. height:50px;
  5091. }
  5092. #u32033 {
  5093. border-width:0px;
  5094. position:absolute;
  5095. left:529px;
  5096. top:508px;
  5097. width:342px;
  5098. height:50px;
  5099. display:flex;
  5100. }
  5101. #u32033 .text {
  5102. position:absolute;
  5103. align-self:center;
  5104. padding:2px 2px 2px 2px;
  5105. box-sizing:border-box;
  5106. width:100%;
  5107. }
  5108. #u32033_text {
  5109. border-width:0px;
  5110. word-wrap:break-word;
  5111. text-transform:none;
  5112. visibility:hidden;
  5113. }
  5114. #u32034_div {
  5115. border-width:0px;
  5116. position:absolute;
  5117. left:0px;
  5118. top:0px;
  5119. width:78px;
  5120. height:30px;
  5121. background:inherit;
  5122. background-color:rgba(255, 255, 255, 0);
  5123. border:none;
  5124. border-left:0px;
  5125. border-top:0px;
  5126. border-right:0px;
  5127. border-radius:0px;
  5128. border-bottom-right-radius:0px;
  5129. border-bottom-left-radius:0px;
  5130. -moz-box-shadow:none;
  5131. -webkit-box-shadow:none;
  5132. box-shadow:none;
  5133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5134. font-weight:400;
  5135. font-style:normal;
  5136. font-size:14px;
  5137. line-height:30px;
  5138. }
  5139. #u32034 {
  5140. border-width:0px;
  5141. position:absolute;
  5142. left:529px;
  5143. top:518px;
  5144. width:78px;
  5145. height:30px;
  5146. display:flex;
  5147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5148. font-weight:400;
  5149. font-style:normal;
  5150. font-size:14px;
  5151. line-height:30px;
  5152. }
  5153. #u32034 .text {
  5154. position:absolute;
  5155. align-self:flex-start;
  5156. padding:0px 0px 0px 0px;
  5157. box-sizing:border-box;
  5158. width:100%;
  5159. }
  5160. #u32034_text {
  5161. border-width:0px;
  5162. white-space:nowrap;
  5163. text-transform:none;
  5164. }
  5165. #u32035_input {
  5166. position:absolute;
  5167. left:0px;
  5168. top:0px;
  5169. width:240px;
  5170. height:33px;
  5171. padding:2px 2px 2px 2px;
  5172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5173. font-weight:400;
  5174. font-style:normal;
  5175. font-size:14px;
  5176. letter-spacing:normal;
  5177. color:#000000;
  5178. vertical-align:none;
  5179. text-align:right;
  5180. text-transform:none;
  5181. background-color:transparent;
  5182. border-color:transparent;
  5183. }
  5184. #u32035_input.disabled {
  5185. position:absolute;
  5186. left:0px;
  5187. top:0px;
  5188. width:240px;
  5189. height:33px;
  5190. padding:2px 2px 2px 2px;
  5191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5192. font-weight:400;
  5193. font-style:normal;
  5194. font-size:14px;
  5195. letter-spacing:normal;
  5196. color:#000000;
  5197. vertical-align:none;
  5198. text-align:right;
  5199. text-transform:none;
  5200. background-color:transparent;
  5201. border-color:transparent;
  5202. }
  5203. #u32035_div {
  5204. border-width:0px;
  5205. position:absolute;
  5206. left:0px;
  5207. top:0px;
  5208. width:240px;
  5209. height:33px;
  5210. background:inherit;
  5211. background-color:rgba(255, 255, 255, 1);
  5212. border:none;
  5213. border-radius:0px;
  5214. -moz-box-shadow:none;
  5215. -webkit-box-shadow:none;
  5216. box-shadow:none;
  5217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5218. font-weight:400;
  5219. font-style:normal;
  5220. font-size:14px;
  5221. text-align:right;
  5222. }
  5223. #u32035 {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:604px;
  5227. top:517px;
  5228. width:240px;
  5229. height:33px;
  5230. display:flex;
  5231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5232. font-weight:400;
  5233. font-style:normal;
  5234. font-size:14px;
  5235. text-align:right;
  5236. }
  5237. #u32035 .text {
  5238. position:absolute;
  5239. align-self:center;
  5240. padding:2px 2px 2px 2px;
  5241. box-sizing:border-box;
  5242. width:100%;
  5243. }
  5244. #u32035_div.disabled {
  5245. border-width:0px;
  5246. position:absolute;
  5247. left:0px;
  5248. top:0px;
  5249. width:240px;
  5250. height:33px;
  5251. background:inherit;
  5252. background-color:rgba(240, 240, 240, 1);
  5253. border:none;
  5254. border-radius:0px;
  5255. -moz-box-shadow:none;
  5256. -webkit-box-shadow:none;
  5257. box-shadow:none;
  5258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5259. font-weight:400;
  5260. font-style:normal;
  5261. font-size:14px;
  5262. text-align:right;
  5263. }
  5264. #u32035.disabled {
  5265. }
  5266. #u32036_img {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:0px;
  5270. top:0px;
  5271. width:8px;
  5272. height:13px;
  5273. }
  5274. #u32036 {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:852px;
  5278. top:527px;
  5279. width:8px;
  5280. height:13px;
  5281. display:flex;
  5282. -webkit-transform:rotate(180deg);
  5283. -moz-transform:rotate(180deg);
  5284. -ms-transform:rotate(180deg);
  5285. transform:rotate(180deg);
  5286. }
  5287. #u32036 .text {
  5288. position:absolute;
  5289. align-self:center;
  5290. padding:2px 2px 2px 2px;
  5291. box-sizing:border-box;
  5292. width:100%;
  5293. }
  5294. #u32036_text {
  5295. border-width:0px;
  5296. word-wrap:break-word;
  5297. text-transform:none;
  5298. visibility:hidden;
  5299. }
  5300. #u32037 {
  5301. border-width:0px;
  5302. position:absolute;
  5303. left:0px;
  5304. top:0px;
  5305. width:0px;
  5306. height:0px;
  5307. }
  5308. #u32038_img {
  5309. border-width:0px;
  5310. position:absolute;
  5311. left:0px;
  5312. top:0px;
  5313. width:342px;
  5314. height:50px;
  5315. }
  5316. #u32038 {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:529px;
  5320. top:558px;
  5321. width:342px;
  5322. height:50px;
  5323. display:flex;
  5324. }
  5325. #u32038 .text {
  5326. position:absolute;
  5327. align-self:center;
  5328. padding:2px 2px 2px 2px;
  5329. box-sizing:border-box;
  5330. width:100%;
  5331. }
  5332. #u32038_text {
  5333. border-width:0px;
  5334. word-wrap:break-word;
  5335. text-transform:none;
  5336. visibility:hidden;
  5337. }
  5338. #u32039_div {
  5339. border-width:0px;
  5340. position:absolute;
  5341. left:0px;
  5342. top:0px;
  5343. width:64px;
  5344. height:30px;
  5345. background:inherit;
  5346. background-color:rgba(255, 255, 255, 0);
  5347. border:none;
  5348. border-left:0px;
  5349. border-top:0px;
  5350. border-right:0px;
  5351. border-radius:0px;
  5352. border-bottom-right-radius:0px;
  5353. border-bottom-left-radius:0px;
  5354. -moz-box-shadow:none;
  5355. -webkit-box-shadow:none;
  5356. box-shadow:none;
  5357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5358. font-weight:400;
  5359. font-style:normal;
  5360. font-size:14px;
  5361. line-height:30px;
  5362. }
  5363. #u32039 {
  5364. border-width:0px;
  5365. position:absolute;
  5366. left:529px;
  5367. top:568px;
  5368. width:64px;
  5369. height:30px;
  5370. display:flex;
  5371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5372. font-weight:400;
  5373. font-style:normal;
  5374. font-size:14px;
  5375. line-height:30px;
  5376. }
  5377. #u32039 .text {
  5378. position:absolute;
  5379. align-self:flex-start;
  5380. padding:0px 0px 0px 0px;
  5381. box-sizing:border-box;
  5382. width:100%;
  5383. }
  5384. #u32039_text {
  5385. border-width:0px;
  5386. white-space:nowrap;
  5387. text-transform:none;
  5388. }
  5389. #u32040_input {
  5390. position:absolute;
  5391. left:0px;
  5392. top:0px;
  5393. width:240px;
  5394. height:33px;
  5395. padding:2px 2px 2px 2px;
  5396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5397. font-weight:400;
  5398. font-style:normal;
  5399. font-size:14px;
  5400. letter-spacing:normal;
  5401. color:#000000;
  5402. vertical-align:none;
  5403. text-align:right;
  5404. text-transform:none;
  5405. background-color:transparent;
  5406. border-color:transparent;
  5407. }
  5408. #u32040_input.disabled {
  5409. position:absolute;
  5410. left:0px;
  5411. top:0px;
  5412. width:240px;
  5413. height:33px;
  5414. padding:2px 2px 2px 2px;
  5415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5416. font-weight:400;
  5417. font-style:normal;
  5418. font-size:14px;
  5419. letter-spacing:normal;
  5420. color:#000000;
  5421. vertical-align:none;
  5422. text-align:right;
  5423. text-transform:none;
  5424. background-color:transparent;
  5425. border-color:transparent;
  5426. }
  5427. #u32040_div {
  5428. border-width:0px;
  5429. position:absolute;
  5430. left:0px;
  5431. top:0px;
  5432. width:240px;
  5433. height:33px;
  5434. background:inherit;
  5435. background-color:rgba(255, 255, 255, 1);
  5436. border:none;
  5437. border-radius:0px;
  5438. -moz-box-shadow:none;
  5439. -webkit-box-shadow:none;
  5440. box-shadow:none;
  5441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5442. font-weight:400;
  5443. font-style:normal;
  5444. font-size:14px;
  5445. text-align:right;
  5446. }
  5447. #u32040 {
  5448. border-width:0px;
  5449. position:absolute;
  5450. left:620px;
  5451. top:567px;
  5452. width:240px;
  5453. height:33px;
  5454. display:flex;
  5455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5456. font-weight:400;
  5457. font-style:normal;
  5458. font-size:14px;
  5459. text-align:right;
  5460. }
  5461. #u32040 .text {
  5462. position:absolute;
  5463. align-self:center;
  5464. padding:2px 2px 2px 2px;
  5465. box-sizing:border-box;
  5466. width:100%;
  5467. }
  5468. #u32040_div.disabled {
  5469. border-width:0px;
  5470. position:absolute;
  5471. left:0px;
  5472. top:0px;
  5473. width:240px;
  5474. height:33px;
  5475. background:inherit;
  5476. background-color:rgba(240, 240, 240, 1);
  5477. border:none;
  5478. border-radius:0px;
  5479. -moz-box-shadow:none;
  5480. -webkit-box-shadow:none;
  5481. box-shadow:none;
  5482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5483. font-weight:400;
  5484. font-style:normal;
  5485. font-size:14px;
  5486. text-align:right;
  5487. }
  5488. #u32040.disabled {
  5489. }
  5490. #u32041 {
  5491. border-width:0px;
  5492. position:absolute;
  5493. left:0px;
  5494. top:0px;
  5495. width:0px;
  5496. height:0px;
  5497. }
  5498. #u32042_img {
  5499. border-width:0px;
  5500. position:absolute;
  5501. left:0px;
  5502. top:0px;
  5503. width:342px;
  5504. height:50px;
  5505. }
  5506. #u32042 {
  5507. border-width:0px;
  5508. position:absolute;
  5509. left:529px;
  5510. top:608px;
  5511. width:342px;
  5512. height:50px;
  5513. display:flex;
  5514. }
  5515. #u32042 .text {
  5516. position:absolute;
  5517. align-self:center;
  5518. padding:2px 2px 2px 2px;
  5519. box-sizing:border-box;
  5520. width:100%;
  5521. }
  5522. #u32042_text {
  5523. border-width:0px;
  5524. word-wrap:break-word;
  5525. text-transform:none;
  5526. visibility:hidden;
  5527. }
  5528. #u32043_div {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:0px;
  5532. top:0px;
  5533. width:64px;
  5534. height:30px;
  5535. background:inherit;
  5536. background-color:rgba(255, 255, 255, 0);
  5537. border:none;
  5538. border-left:0px;
  5539. border-top:0px;
  5540. border-right:0px;
  5541. border-radius:0px;
  5542. border-bottom-right-radius:0px;
  5543. border-bottom-left-radius:0px;
  5544. -moz-box-shadow:none;
  5545. -webkit-box-shadow:none;
  5546. box-shadow:none;
  5547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5548. font-weight:400;
  5549. font-style:normal;
  5550. font-size:14px;
  5551. line-height:30px;
  5552. }
  5553. #u32043 {
  5554. border-width:0px;
  5555. position:absolute;
  5556. left:529px;
  5557. top:618px;
  5558. width:64px;
  5559. height:30px;
  5560. display:flex;
  5561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5562. font-weight:400;
  5563. font-style:normal;
  5564. font-size:14px;
  5565. line-height:30px;
  5566. }
  5567. #u32043 .text {
  5568. position:absolute;
  5569. align-self:flex-start;
  5570. padding:0px 0px 0px 0px;
  5571. box-sizing:border-box;
  5572. width:100%;
  5573. }
  5574. #u32043_text {
  5575. border-width:0px;
  5576. white-space:nowrap;
  5577. text-transform:none;
  5578. }
  5579. #u32044_input {
  5580. position:absolute;
  5581. left:0px;
  5582. top:0px;
  5583. width:240px;
  5584. height:33px;
  5585. padding:2px 2px 2px 2px;
  5586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5587. font-weight:400;
  5588. font-style:normal;
  5589. font-size:14px;
  5590. letter-spacing:normal;
  5591. color:#000000;
  5592. vertical-align:none;
  5593. text-align:right;
  5594. text-transform:none;
  5595. background-color:transparent;
  5596. border-color:transparent;
  5597. }
  5598. #u32044_input.disabled {
  5599. position:absolute;
  5600. left:0px;
  5601. top:0px;
  5602. width:240px;
  5603. height:33px;
  5604. padding:2px 2px 2px 2px;
  5605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5606. font-weight:400;
  5607. font-style:normal;
  5608. font-size:14px;
  5609. letter-spacing:normal;
  5610. color:#000000;
  5611. vertical-align:none;
  5612. text-align:right;
  5613. text-transform:none;
  5614. background-color:transparent;
  5615. border-color:transparent;
  5616. }
  5617. #u32044_div {
  5618. border-width:0px;
  5619. position:absolute;
  5620. left:0px;
  5621. top:0px;
  5622. width:240px;
  5623. height:33px;
  5624. background:inherit;
  5625. background-color:rgba(255, 255, 255, 1);
  5626. border:none;
  5627. border-radius:0px;
  5628. -moz-box-shadow:none;
  5629. -webkit-box-shadow:none;
  5630. box-shadow:none;
  5631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5632. font-weight:400;
  5633. font-style:normal;
  5634. font-size:14px;
  5635. text-align:right;
  5636. }
  5637. #u32044 {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:624px;
  5641. top:617px;
  5642. width:240px;
  5643. height:33px;
  5644. display:flex;
  5645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5646. font-weight:400;
  5647. font-style:normal;
  5648. font-size:14px;
  5649. text-align:right;
  5650. }
  5651. #u32044 .text {
  5652. position:absolute;
  5653. align-self:center;
  5654. padding:2px 2px 2px 2px;
  5655. box-sizing:border-box;
  5656. width:100%;
  5657. }
  5658. #u32044_div.disabled {
  5659. border-width:0px;
  5660. position:absolute;
  5661. left:0px;
  5662. top:0px;
  5663. width:240px;
  5664. height:33px;
  5665. background:inherit;
  5666. background-color:rgba(240, 240, 240, 1);
  5667. border:none;
  5668. border-radius:0px;
  5669. -moz-box-shadow:none;
  5670. -webkit-box-shadow:none;
  5671. box-shadow:none;
  5672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5673. font-weight:400;
  5674. font-style:normal;
  5675. font-size:14px;
  5676. text-align:right;
  5677. }
  5678. #u32044.disabled {
  5679. }
  5680. #u32045 {
  5681. border-width:0px;
  5682. position:absolute;
  5683. left:0px;
  5684. top:0px;
  5685. width:0px;
  5686. height:0px;
  5687. }
  5688. #u32046_img {
  5689. border-width:0px;
  5690. position:absolute;
  5691. left:0px;
  5692. top:0px;
  5693. width:342px;
  5694. height:50px;
  5695. }
  5696. #u32046 {
  5697. border-width:0px;
  5698. position:absolute;
  5699. left:529px;
  5700. top:458px;
  5701. width:342px;
  5702. height:50px;
  5703. display:flex;
  5704. }
  5705. #u32046 .text {
  5706. position:absolute;
  5707. align-self:center;
  5708. padding:2px 2px 2px 2px;
  5709. box-sizing:border-box;
  5710. width:100%;
  5711. }
  5712. #u32046_text {
  5713. border-width:0px;
  5714. word-wrap:break-word;
  5715. text-transform:none;
  5716. visibility:hidden;
  5717. }
  5718. #u32047_div {
  5719. border-width:0px;
  5720. position:absolute;
  5721. left:0px;
  5722. top:0px;
  5723. width:64px;
  5724. height:30px;
  5725. background:inherit;
  5726. background-color:rgba(255, 255, 255, 0);
  5727. border:none;
  5728. border-left:0px;
  5729. border-top:0px;
  5730. border-right:0px;
  5731. border-radius:0px;
  5732. border-bottom-right-radius:0px;
  5733. border-bottom-left-radius:0px;
  5734. -moz-box-shadow:none;
  5735. -webkit-box-shadow:none;
  5736. box-shadow:none;
  5737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5738. font-weight:400;
  5739. font-style:normal;
  5740. font-size:14px;
  5741. line-height:30px;
  5742. }
  5743. #u32047 {
  5744. border-width:0px;
  5745. position:absolute;
  5746. left:529px;
  5747. top:468px;
  5748. width:64px;
  5749. height:30px;
  5750. display:flex;
  5751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5752. font-weight:400;
  5753. font-style:normal;
  5754. font-size:14px;
  5755. line-height:30px;
  5756. }
  5757. #u32047 .text {
  5758. position:absolute;
  5759. align-self:flex-start;
  5760. padding:0px 0px 0px 0px;
  5761. box-sizing:border-box;
  5762. width:100%;
  5763. }
  5764. #u32047_text {
  5765. border-width:0px;
  5766. white-space:nowrap;
  5767. text-transform:none;
  5768. }
  5769. #u32048_input {
  5770. position:absolute;
  5771. left:0px;
  5772. top:0px;
  5773. width:240px;
  5774. height:33px;
  5775. padding:2px 2px 2px 2px;
  5776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5777. font-weight:400;
  5778. font-style:normal;
  5779. font-size:14px;
  5780. letter-spacing:normal;
  5781. color:#000000;
  5782. vertical-align:none;
  5783. text-align:right;
  5784. text-transform:none;
  5785. background-color:transparent;
  5786. border-color:transparent;
  5787. }
  5788. #u32048_input.disabled {
  5789. position:absolute;
  5790. left:0px;
  5791. top:0px;
  5792. width:240px;
  5793. height:33px;
  5794. padding:2px 2px 2px 2px;
  5795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5796. font-weight:400;
  5797. font-style:normal;
  5798. font-size:14px;
  5799. letter-spacing:normal;
  5800. color:#000000;
  5801. vertical-align:none;
  5802. text-align:right;
  5803. text-transform:none;
  5804. background-color:transparent;
  5805. border-color:transparent;
  5806. }
  5807. #u32048_div {
  5808. border-width:0px;
  5809. position:absolute;
  5810. left:0px;
  5811. top:0px;
  5812. width:240px;
  5813. height:33px;
  5814. background:inherit;
  5815. background-color:rgba(255, 255, 255, 1);
  5816. border:none;
  5817. border-radius:0px;
  5818. -moz-box-shadow:none;
  5819. -webkit-box-shadow:none;
  5820. box-shadow:none;
  5821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5822. font-weight:400;
  5823. font-style:normal;
  5824. font-size:14px;
  5825. text-align:right;
  5826. }
  5827. #u32048 {
  5828. border-width:0px;
  5829. position:absolute;
  5830. left:604px;
  5831. top:467px;
  5832. width:240px;
  5833. height:33px;
  5834. display:flex;
  5835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5836. font-weight:400;
  5837. font-style:normal;
  5838. font-size:14px;
  5839. text-align:right;
  5840. }
  5841. #u32048 .text {
  5842. position:absolute;
  5843. align-self:center;
  5844. padding:2px 2px 2px 2px;
  5845. box-sizing:border-box;
  5846. width:100%;
  5847. }
  5848. #u32048_div.disabled {
  5849. border-width:0px;
  5850. position:absolute;
  5851. left:0px;
  5852. top:0px;
  5853. width:240px;
  5854. height:33px;
  5855. background:inherit;
  5856. background-color:rgba(240, 240, 240, 1);
  5857. border:none;
  5858. border-radius:0px;
  5859. -moz-box-shadow:none;
  5860. -webkit-box-shadow:none;
  5861. box-shadow:none;
  5862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5863. font-weight:400;
  5864. font-style:normal;
  5865. font-size:14px;
  5866. text-align:right;
  5867. }
  5868. #u32048.disabled {
  5869. }
  5870. #u32049_img {
  5871. border-width:0px;
  5872. position:absolute;
  5873. left:0px;
  5874. top:0px;
  5875. width:8px;
  5876. height:13px;
  5877. }
  5878. #u32049 {
  5879. border-width:0px;
  5880. position:absolute;
  5881. left:852px;
  5882. top:477px;
  5883. width:8px;
  5884. height:13px;
  5885. display:flex;
  5886. -webkit-transform:rotate(180deg);
  5887. -moz-transform:rotate(180deg);
  5888. -ms-transform:rotate(180deg);
  5889. transform:rotate(180deg);
  5890. }
  5891. #u32049 .text {
  5892. position:absolute;
  5893. align-self:center;
  5894. padding:2px 2px 2px 2px;
  5895. box-sizing:border-box;
  5896. width:100%;
  5897. }
  5898. #u32049_text {
  5899. border-width:0px;
  5900. word-wrap:break-word;
  5901. text-transform:none;
  5902. visibility:hidden;
  5903. }
  5904. #u32050_div {
  5905. border-width:0px;
  5906. position:absolute;
  5907. left:0px;
  5908. top:0px;
  5909. width:333px;
  5910. height:120px;
  5911. background:inherit;
  5912. background-color:rgba(255, 255, 255, 0);
  5913. border:none;
  5914. border-left:0px;
  5915. border-top:0px;
  5916. border-right:0px;
  5917. border-radius:0px;
  5918. border-bottom-right-radius:0px;
  5919. border-bottom-left-radius:0px;
  5920. -moz-box-shadow:none;
  5921. -webkit-box-shadow:none;
  5922. box-shadow:none;
  5923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5924. font-weight:400;
  5925. font-style:normal;
  5926. font-size:14px;
  5927. color:#D9001B;
  5928. line-height:30px;
  5929. }
  5930. #u32050 {
  5931. border-width:0px;
  5932. position:absolute;
  5933. left:926px;
  5934. top:473px;
  5935. width:333px;
  5936. height:120px;
  5937. display:flex;
  5938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5939. font-weight:400;
  5940. font-style:normal;
  5941. font-size:14px;
  5942. color:#D9001B;
  5943. line-height:30px;
  5944. }
  5945. #u32050 .text {
  5946. position:absolute;
  5947. align-self:flex-start;
  5948. padding:0px 0px 0px 0px;
  5949. box-sizing:border-box;
  5950. width:100%;
  5951. }
  5952. #u32050_text {
  5953. border-width:0px;
  5954. word-wrap:break-word;
  5955. text-transform:none;
  5956. }
  5957. #u32051 {
  5958. border-width:0px;
  5959. position:absolute;
  5960. left:0px;
  5961. top:0px;
  5962. width:0px;
  5963. height:0px;
  5964. }
  5965. #u32052_div {
  5966. border-width:0px;
  5967. position:absolute;
  5968. left:0px;
  5969. top:0px;
  5970. width:375px;
  5971. height:100px;
  5972. background:inherit;
  5973. background-color:rgba(24, 144, 255, 1);
  5974. border:none;
  5975. border-radius:0px;
  5976. -moz-box-shadow:none;
  5977. -webkit-box-shadow:none;
  5978. box-shadow:none;
  5979. }
  5980. #u32052 {
  5981. border-width:0px;
  5982. position:absolute;
  5983. left:510px;
  5984. top:108px;
  5985. width:375px;
  5986. height:100px;
  5987. display:flex;
  5988. }
  5989. #u32052 .text {
  5990. position:absolute;
  5991. align-self:center;
  5992. padding:2px 2px 2px 2px;
  5993. box-sizing:border-box;
  5994. width:100%;
  5995. }
  5996. #u32052_text {
  5997. border-width:0px;
  5998. word-wrap:break-word;
  5999. text-transform:none;
  6000. visibility:hidden;
  6001. }
  6002. #u32053_div {
  6003. border-width:0px;
  6004. position:absolute;
  6005. left:0px;
  6006. top:0px;
  6007. width:85px;
  6008. height:40px;
  6009. background:inherit;
  6010. background-color:rgba(255, 255, 255, 0);
  6011. border:none;
  6012. border-radius:0px;
  6013. -moz-box-shadow:none;
  6014. -webkit-box-shadow:none;
  6015. box-shadow:none;
  6016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6017. font-weight:400;
  6018. font-style:normal;
  6019. color:#FFFFFF;
  6020. }
  6021. #u32053 {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:529px;
  6025. top:153px;
  6026. width:85px;
  6027. height:40px;
  6028. display:flex;
  6029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6030. font-weight:400;
  6031. font-style:normal;
  6032. color:#FFFFFF;
  6033. }
  6034. #u32053 .text {
  6035. position:absolute;
  6036. align-self:flex-start;
  6037. padding:0px 0px 0px 0px;
  6038. box-sizing:border-box;
  6039. width:100%;
  6040. }
  6041. #u32053_text {
  6042. border-width:0px;
  6043. white-space:nowrap;
  6044. text-transform:none;
  6045. }
  6046. #u32054_div {
  6047. border-width:0px;
  6048. position:absolute;
  6049. left:0px;
  6050. top:0px;
  6051. width:73px;
  6052. height:25px;
  6053. background:inherit;
  6054. background-color:rgba(255, 255, 255, 0);
  6055. border:none;
  6056. border-radius:0px;
  6057. -moz-box-shadow:none;
  6058. -webkit-box-shadow:none;
  6059. box-shadow:none;
  6060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6061. font-weight:400;
  6062. font-style:normal;
  6063. font-size:18px;
  6064. color:#FFFFFF;
  6065. }
  6066. #u32054 {
  6067. border-width:0px;
  6068. position:absolute;
  6069. left:529px;
  6070. top:123px;
  6071. width:73px;
  6072. height:25px;
  6073. display:flex;
  6074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6075. font-weight:400;
  6076. font-style:normal;
  6077. font-size:18px;
  6078. color:#FFFFFF;
  6079. }
  6080. #u32054 .text {
  6081. position:absolute;
  6082. align-self:flex-start;
  6083. padding:0px 0px 0px 0px;
  6084. box-sizing:border-box;
  6085. width:100%;
  6086. }
  6087. #u32054_text {
  6088. border-width:0px;
  6089. white-space:nowrap;
  6090. text-transform:none;
  6091. }
  6092. #u32055 {
  6093. border-width:0px;
  6094. position:absolute;
  6095. left:0px;
  6096. top:0px;
  6097. width:0px;
  6098. height:0px;
  6099. }
  6100. #u32056_div {
  6101. border-width:0px;
  6102. position:absolute;
  6103. left:0px;
  6104. top:0px;
  6105. width:375px;
  6106. height:50px;
  6107. background:inherit;
  6108. background-color:rgba(255, 255, 255, 1);
  6109. box-sizing:border-box;
  6110. border-width:1px;
  6111. border-style:solid;
  6112. border-color:rgba(242, 242, 242, 1);
  6113. border-left:0px;
  6114. border-top:0px;
  6115. border-right:0px;
  6116. border-radius:0px;
  6117. border-bottom-right-radius:0px;
  6118. border-bottom-left-radius:0px;
  6119. -moz-box-shadow:none;
  6120. -webkit-box-shadow:none;
  6121. box-shadow:none;
  6122. }
  6123. #u32056 {
  6124. border-width:0px;
  6125. position:absolute;
  6126. left:510px;
  6127. top:204px;
  6128. width:375px;
  6129. height:50px;
  6130. display:flex;
  6131. }
  6132. #u32056 .text {
  6133. position:absolute;
  6134. align-self:center;
  6135. padding:2px 2px 2px 2px;
  6136. box-sizing:border-box;
  6137. width:100%;
  6138. }
  6139. #u32056_text {
  6140. border-width:0px;
  6141. word-wrap:break-word;
  6142. text-transform:none;
  6143. visibility:hidden;
  6144. }
  6145. #u32057_div {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:0px;
  6149. top:0px;
  6150. width:85px;
  6151. height:30px;
  6152. background:inherit;
  6153. background-color:rgba(255, 255, 255, 0);
  6154. border:none;
  6155. border-left:0px;
  6156. border-top:0px;
  6157. border-right:0px;
  6158. border-radius:0px;
  6159. border-bottom-right-radius:0px;
  6160. border-bottom-left-radius:0px;
  6161. -moz-box-shadow:none;
  6162. -webkit-box-shadow:none;
  6163. box-shadow:none;
  6164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6165. font-weight:400;
  6166. font-style:normal;
  6167. font-size:14px;
  6168. text-align:right;
  6169. line-height:30px;
  6170. }
  6171. #u32057 {
  6172. border-width:0px;
  6173. position:absolute;
  6174. left:773px;
  6175. top:214px;
  6176. width:85px;
  6177. height:30px;
  6178. display:flex;
  6179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6180. font-weight:400;
  6181. font-style:normal;
  6182. font-size:14px;
  6183. text-align:right;
  6184. line-height:30px;
  6185. }
  6186. #u32057 .text {
  6187. position:absolute;
  6188. align-self:flex-start;
  6189. padding:0px 0px 0px 0px;
  6190. box-sizing:border-box;
  6191. width:100%;
  6192. }
  6193. #u32057_text {
  6194. border-width:0px;
  6195. white-space:nowrap;
  6196. text-transform:none;
  6197. }
  6198. #u32058_img {
  6199. border-width:0px;
  6200. position:absolute;
  6201. left:0px;
  6202. top:0px;
  6203. width:7px;
  6204. height:12px;
  6205. }
  6206. #u32058 {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:868px;
  6210. top:223px;
  6211. width:7px;
  6212. height:12px;
  6213. display:flex;
  6214. -webkit-transform:rotate(180deg);
  6215. -moz-transform:rotate(180deg);
  6216. -ms-transform:rotate(180deg);
  6217. transform:rotate(180deg);
  6218. }
  6219. #u32058 .text {
  6220. position:absolute;
  6221. align-self:center;
  6222. padding:2px 2px 2px 2px;
  6223. box-sizing:border-box;
  6224. width:100%;
  6225. }
  6226. #u32058_text {
  6227. border-width:0px;
  6228. word-wrap:break-word;
  6229. text-transform:none;
  6230. visibility:hidden;
  6231. }
  6232. #u32059_div {
  6233. border-width:0px;
  6234. position:absolute;
  6235. left:0px;
  6236. top:0px;
  6237. width:64px;
  6238. height:30px;
  6239. background:inherit;
  6240. background-color:rgba(255, 255, 255, 0);
  6241. border:none;
  6242. border-left:0px;
  6243. border-top:0px;
  6244. border-right:0px;
  6245. border-radius:0px;
  6246. border-bottom-right-radius:0px;
  6247. border-bottom-left-radius:0px;
  6248. -moz-box-shadow:none;
  6249. -webkit-box-shadow:none;
  6250. box-shadow:none;
  6251. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6252. font-weight:500;
  6253. font-style:normal;
  6254. font-size:14px;
  6255. line-height:30px;
  6256. }
  6257. #u32059 {
  6258. border-width:0px;
  6259. position:absolute;
  6260. left:530px;
  6261. top:214px;
  6262. width:64px;
  6263. height:30px;
  6264. display:flex;
  6265. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6266. font-weight:500;
  6267. font-style:normal;
  6268. font-size:14px;
  6269. line-height:30px;
  6270. }
  6271. #u32059 .text {
  6272. position:absolute;
  6273. align-self:flex-start;
  6274. padding:0px 0px 0px 0px;
  6275. box-sizing:border-box;
  6276. width:100%;
  6277. }
  6278. #u32059_text {
  6279. border-width:0px;
  6280. white-space:nowrap;
  6281. text-transform:none;
  6282. }
  6283. #u32060 {
  6284. border-width:0px;
  6285. position:absolute;
  6286. left:0px;
  6287. top:0px;
  6288. width:0px;
  6289. height:0px;
  6290. }
  6291. #u32061_div {
  6292. border-width:0px;
  6293. position:absolute;
  6294. left:0px;
  6295. top:0px;
  6296. width:375px;
  6297. height:50px;
  6298. background:inherit;
  6299. background-color:rgba(255, 255, 255, 1);
  6300. box-sizing:border-box;
  6301. border-width:1px;
  6302. border-style:solid;
  6303. border-color:rgba(242, 242, 242, 1);
  6304. border-left:0px;
  6305. border-top:0px;
  6306. border-right:0px;
  6307. border-radius:0px;
  6308. border-bottom-right-radius:0px;
  6309. border-bottom-left-radius:0px;
  6310. -moz-box-shadow:none;
  6311. -webkit-box-shadow:none;
  6312. box-shadow:none;
  6313. }
  6314. #u32061 {
  6315. border-width:0px;
  6316. position:absolute;
  6317. left:510px;
  6318. top:254px;
  6319. width:375px;
  6320. height:50px;
  6321. display:flex;
  6322. }
  6323. #u32061 .text {
  6324. position:absolute;
  6325. align-self:center;
  6326. padding:2px 2px 2px 2px;
  6327. box-sizing:border-box;
  6328. width:100%;
  6329. }
  6330. #u32061_text {
  6331. border-width:0px;
  6332. word-wrap:break-word;
  6333. text-transform:none;
  6334. visibility:hidden;
  6335. }
  6336. #u32062_div {
  6337. border-width:0px;
  6338. position:absolute;
  6339. left:0px;
  6340. top:0px;
  6341. width:43px;
  6342. height:30px;
  6343. background:inherit;
  6344. background-color:rgba(255, 255, 255, 0);
  6345. border:none;
  6346. border-left:0px;
  6347. border-top:0px;
  6348. border-right:0px;
  6349. border-radius:0px;
  6350. border-bottom-right-radius:0px;
  6351. border-bottom-left-radius:0px;
  6352. -moz-box-shadow:none;
  6353. -webkit-box-shadow:none;
  6354. box-shadow:none;
  6355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6356. font-weight:400;
  6357. font-style:normal;
  6358. font-size:14px;
  6359. text-align:right;
  6360. line-height:30px;
  6361. }
  6362. #u32062 {
  6363. border-width:0px;
  6364. position:absolute;
  6365. left:815px;
  6366. top:264px;
  6367. width:43px;
  6368. height:30px;
  6369. display:flex;
  6370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6371. font-weight:400;
  6372. font-style:normal;
  6373. font-size:14px;
  6374. text-align:right;
  6375. line-height:30px;
  6376. }
  6377. #u32062 .text {
  6378. position:absolute;
  6379. align-self:flex-start;
  6380. padding:0px 0px 0px 0px;
  6381. box-sizing:border-box;
  6382. width:100%;
  6383. }
  6384. #u32062_text {
  6385. border-width:0px;
  6386. white-space:nowrap;
  6387. text-transform:none;
  6388. }
  6389. #u32063_img {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:0px;
  6393. top:0px;
  6394. width:7px;
  6395. height:12px;
  6396. }
  6397. #u32063 {
  6398. border-width:0px;
  6399. position:absolute;
  6400. left:868px;
  6401. top:273px;
  6402. width:7px;
  6403. height:12px;
  6404. display:flex;
  6405. -webkit-transform:rotate(180deg);
  6406. -moz-transform:rotate(180deg);
  6407. -ms-transform:rotate(180deg);
  6408. transform:rotate(180deg);
  6409. }
  6410. #u32063 .text {
  6411. position:absolute;
  6412. align-self:center;
  6413. padding:2px 2px 2px 2px;
  6414. box-sizing:border-box;
  6415. width:100%;
  6416. }
  6417. #u32063_text {
  6418. border-width:0px;
  6419. word-wrap:break-word;
  6420. text-transform:none;
  6421. visibility:hidden;
  6422. }
  6423. #u32064_div {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:0px;
  6427. top:0px;
  6428. width:64px;
  6429. height:30px;
  6430. background:inherit;
  6431. background-color:rgba(255, 255, 255, 0);
  6432. border:none;
  6433. border-left:0px;
  6434. border-top:0px;
  6435. border-right:0px;
  6436. border-radius:0px;
  6437. border-bottom-right-radius:0px;
  6438. border-bottom-left-radius:0px;
  6439. -moz-box-shadow:none;
  6440. -webkit-box-shadow:none;
  6441. box-shadow:none;
  6442. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6443. font-weight:500;
  6444. font-style:normal;
  6445. font-size:14px;
  6446. line-height:30px;
  6447. }
  6448. #u32064 {
  6449. border-width:0px;
  6450. position:absolute;
  6451. left:530px;
  6452. top:264px;
  6453. width:64px;
  6454. height:30px;
  6455. display:flex;
  6456. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6457. font-weight:500;
  6458. font-style:normal;
  6459. font-size:14px;
  6460. line-height:30px;
  6461. }
  6462. #u32064 .text {
  6463. position:absolute;
  6464. align-self:flex-start;
  6465. padding:0px 0px 0px 0px;
  6466. box-sizing:border-box;
  6467. width:100%;
  6468. }
  6469. #u32064_text {
  6470. border-width:0px;
  6471. white-space:nowrap;
  6472. text-transform:none;
  6473. }
  6474. #u32065 {
  6475. border-width:0px;
  6476. position:absolute;
  6477. left:0px;
  6478. top:0px;
  6479. width:0px;
  6480. height:0px;
  6481. }
  6482. #u32066_div {
  6483. border-width:0px;
  6484. position:absolute;
  6485. left:0px;
  6486. top:0px;
  6487. width:375px;
  6488. height:50px;
  6489. background:inherit;
  6490. background-color:rgba(255, 255, 255, 1);
  6491. box-sizing:border-box;
  6492. border-width:1px;
  6493. border-style:solid;
  6494. border-color:rgba(242, 242, 242, 1);
  6495. border-left:0px;
  6496. border-top:0px;
  6497. border-right:0px;
  6498. border-radius:0px;
  6499. border-bottom-right-radius:0px;
  6500. border-bottom-left-radius:0px;
  6501. -moz-box-shadow:none;
  6502. -webkit-box-shadow:none;
  6503. box-shadow:none;
  6504. }
  6505. #u32066 {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:510px;
  6509. top:304px;
  6510. width:375px;
  6511. height:50px;
  6512. display:flex;
  6513. }
  6514. #u32066 .text {
  6515. position:absolute;
  6516. align-self:center;
  6517. padding:2px 2px 2px 2px;
  6518. box-sizing:border-box;
  6519. width:100%;
  6520. }
  6521. #u32066_text {
  6522. border-width:0px;
  6523. word-wrap:break-word;
  6524. text-transform:none;
  6525. visibility:hidden;
  6526. }
  6527. #u32067_div {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:0px;
  6531. top:0px;
  6532. width:43px;
  6533. height:30px;
  6534. background:inherit;
  6535. background-color:rgba(255, 255, 255, 0);
  6536. border:none;
  6537. border-left:0px;
  6538. border-top:0px;
  6539. border-right:0px;
  6540. border-radius:0px;
  6541. border-bottom-right-radius:0px;
  6542. border-bottom-left-radius:0px;
  6543. -moz-box-shadow:none;
  6544. -webkit-box-shadow:none;
  6545. box-shadow:none;
  6546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6547. font-weight:400;
  6548. font-style:normal;
  6549. font-size:14px;
  6550. text-align:right;
  6551. line-height:30px;
  6552. }
  6553. #u32067 {
  6554. border-width:0px;
  6555. position:absolute;
  6556. left:815px;
  6557. top:314px;
  6558. width:43px;
  6559. height:30px;
  6560. display:flex;
  6561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6562. font-weight:400;
  6563. font-style:normal;
  6564. font-size:14px;
  6565. text-align:right;
  6566. line-height:30px;
  6567. }
  6568. #u32067 .text {
  6569. position:absolute;
  6570. align-self:flex-start;
  6571. padding:0px 0px 0px 0px;
  6572. box-sizing:border-box;
  6573. width:100%;
  6574. }
  6575. #u32067_text {
  6576. border-width:0px;
  6577. white-space:nowrap;
  6578. text-transform:none;
  6579. }
  6580. #u32068_img {
  6581. border-width:0px;
  6582. position:absolute;
  6583. left:0px;
  6584. top:0px;
  6585. width:7px;
  6586. height:12px;
  6587. }
  6588. #u32068 {
  6589. border-width:0px;
  6590. position:absolute;
  6591. left:868px;
  6592. top:323px;
  6593. width:7px;
  6594. height:12px;
  6595. display:flex;
  6596. -webkit-transform:rotate(180deg);
  6597. -moz-transform:rotate(180deg);
  6598. -ms-transform:rotate(180deg);
  6599. transform:rotate(180deg);
  6600. }
  6601. #u32068 .text {
  6602. position:absolute;
  6603. align-self:center;
  6604. padding:2px 2px 2px 2px;
  6605. box-sizing:border-box;
  6606. width:100%;
  6607. }
  6608. #u32068_text {
  6609. border-width:0px;
  6610. word-wrap:break-word;
  6611. text-transform:none;
  6612. visibility:hidden;
  6613. }
  6614. #u32069_div {
  6615. border-width:0px;
  6616. position:absolute;
  6617. left:0px;
  6618. top:0px;
  6619. width:64px;
  6620. height:30px;
  6621. background:inherit;
  6622. background-color:rgba(255, 255, 255, 0);
  6623. border:none;
  6624. border-left:0px;
  6625. border-top:0px;
  6626. border-right:0px;
  6627. border-radius:0px;
  6628. border-bottom-right-radius:0px;
  6629. border-bottom-left-radius:0px;
  6630. -moz-box-shadow:none;
  6631. -webkit-box-shadow:none;
  6632. box-shadow:none;
  6633. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6634. font-weight:500;
  6635. font-style:normal;
  6636. font-size:14px;
  6637. line-height:30px;
  6638. }
  6639. #u32069 {
  6640. border-width:0px;
  6641. position:absolute;
  6642. left:530px;
  6643. top:314px;
  6644. width:64px;
  6645. height:30px;
  6646. display:flex;
  6647. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6648. font-weight:500;
  6649. font-style:normal;
  6650. font-size:14px;
  6651. line-height:30px;
  6652. }
  6653. #u32069 .text {
  6654. position:absolute;
  6655. align-self:flex-start;
  6656. padding:0px 0px 0px 0px;
  6657. box-sizing:border-box;
  6658. width:100%;
  6659. }
  6660. #u32069_text {
  6661. border-width:0px;
  6662. white-space:nowrap;
  6663. text-transform:none;
  6664. }
  6665. #u32070 {
  6666. border-width:0px;
  6667. position:absolute;
  6668. left:0px;
  6669. top:0px;
  6670. width:0px;
  6671. height:0px;
  6672. }
  6673. #u32071_div {
  6674. border-width:0px;
  6675. position:absolute;
  6676. left:0px;
  6677. top:0px;
  6678. width:375px;
  6679. height:50px;
  6680. background:inherit;
  6681. background-color:rgba(255, 255, 255, 1);
  6682. box-sizing:border-box;
  6683. border-width:1px;
  6684. border-style:solid;
  6685. border-color:rgba(242, 242, 242, 1);
  6686. border-left:0px;
  6687. border-top:0px;
  6688. border-right:0px;
  6689. border-radius:0px;
  6690. border-bottom-right-radius:0px;
  6691. border-bottom-left-radius:0px;
  6692. -moz-box-shadow:none;
  6693. -webkit-box-shadow:none;
  6694. box-shadow:none;
  6695. }
  6696. #u32071 {
  6697. border-width:0px;
  6698. position:absolute;
  6699. left:29px;
  6700. top:204px;
  6701. width:375px;
  6702. height:50px;
  6703. display:flex;
  6704. }
  6705. #u32071 .text {
  6706. position:absolute;
  6707. align-self:center;
  6708. padding:2px 2px 2px 2px;
  6709. box-sizing:border-box;
  6710. width:100%;
  6711. }
  6712. #u32071_text {
  6713. border-width:0px;
  6714. word-wrap:break-word;
  6715. text-transform:none;
  6716. visibility:hidden;
  6717. }
  6718. #u32072_div {
  6719. border-width:0px;
  6720. position:absolute;
  6721. left:0px;
  6722. top:0px;
  6723. width:85px;
  6724. height:30px;
  6725. background:inherit;
  6726. background-color:rgba(255, 255, 255, 0);
  6727. border:none;
  6728. border-left:0px;
  6729. border-top:0px;
  6730. border-right:0px;
  6731. border-radius:0px;
  6732. border-bottom-right-radius:0px;
  6733. border-bottom-left-radius:0px;
  6734. -moz-box-shadow:none;
  6735. -webkit-box-shadow:none;
  6736. box-shadow:none;
  6737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6738. font-weight:400;
  6739. font-style:normal;
  6740. font-size:14px;
  6741. text-align:right;
  6742. line-height:30px;
  6743. }
  6744. #u32072 {
  6745. border-width:0px;
  6746. position:absolute;
  6747. left:292px;
  6748. top:214px;
  6749. width:85px;
  6750. height:30px;
  6751. display:flex;
  6752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6753. font-weight:400;
  6754. font-style:normal;
  6755. font-size:14px;
  6756. text-align:right;
  6757. line-height:30px;
  6758. }
  6759. #u32072 .text {
  6760. position:absolute;
  6761. align-self:flex-start;
  6762. padding:0px 0px 0px 0px;
  6763. box-sizing:border-box;
  6764. width:100%;
  6765. }
  6766. #u32072_text {
  6767. border-width:0px;
  6768. white-space:nowrap;
  6769. text-transform:none;
  6770. }
  6771. #u32073_img {
  6772. border-width:0px;
  6773. position:absolute;
  6774. left:0px;
  6775. top:0px;
  6776. width:7px;
  6777. height:12px;
  6778. }
  6779. #u32073 {
  6780. border-width:0px;
  6781. position:absolute;
  6782. left:387px;
  6783. top:223px;
  6784. width:7px;
  6785. height:12px;
  6786. display:flex;
  6787. -webkit-transform:rotate(180deg);
  6788. -moz-transform:rotate(180deg);
  6789. -ms-transform:rotate(180deg);
  6790. transform:rotate(180deg);
  6791. }
  6792. #u32073 .text {
  6793. position:absolute;
  6794. align-self:center;
  6795. padding:2px 2px 2px 2px;
  6796. box-sizing:border-box;
  6797. width:100%;
  6798. }
  6799. #u32073_text {
  6800. border-width:0px;
  6801. word-wrap:break-word;
  6802. text-transform:none;
  6803. visibility:hidden;
  6804. }
  6805. #u32074_div {
  6806. border-width:0px;
  6807. position:absolute;
  6808. left:0px;
  6809. top:0px;
  6810. width:64px;
  6811. height:30px;
  6812. background:inherit;
  6813. background-color:rgba(255, 255, 255, 0);
  6814. border:none;
  6815. border-left:0px;
  6816. border-top:0px;
  6817. border-right:0px;
  6818. border-radius:0px;
  6819. border-bottom-right-radius:0px;
  6820. border-bottom-left-radius:0px;
  6821. -moz-box-shadow:none;
  6822. -webkit-box-shadow:none;
  6823. box-shadow:none;
  6824. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6825. font-weight:500;
  6826. font-style:normal;
  6827. font-size:14px;
  6828. line-height:30px;
  6829. }
  6830. #u32074 {
  6831. border-width:0px;
  6832. position:absolute;
  6833. left:49px;
  6834. top:214px;
  6835. width:64px;
  6836. height:30px;
  6837. display:flex;
  6838. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6839. font-weight:500;
  6840. font-style:normal;
  6841. font-size:14px;
  6842. line-height:30px;
  6843. }
  6844. #u32074 .text {
  6845. position:absolute;
  6846. align-self:flex-start;
  6847. padding:0px 0px 0px 0px;
  6848. box-sizing:border-box;
  6849. width:100%;
  6850. }
  6851. #u32074_text {
  6852. border-width:0px;
  6853. white-space:nowrap;
  6854. text-transform:none;
  6855. }
  6856. #u32075 {
  6857. border-width:0px;
  6858. position:absolute;
  6859. left:0px;
  6860. top:0px;
  6861. width:0px;
  6862. height:0px;
  6863. }
  6864. #u32076_div {
  6865. border-width:0px;
  6866. position:absolute;
  6867. left:0px;
  6868. top:0px;
  6869. width:375px;
  6870. height:50px;
  6871. background:inherit;
  6872. background-color:rgba(255, 255, 255, 1);
  6873. box-sizing:border-box;
  6874. border-width:1px;
  6875. border-style:solid;
  6876. border-color:rgba(242, 242, 242, 1);
  6877. border-left:0px;
  6878. border-top:0px;
  6879. border-right:0px;
  6880. border-radius:0px;
  6881. border-bottom-right-radius:0px;
  6882. border-bottom-left-radius:0px;
  6883. -moz-box-shadow:none;
  6884. -webkit-box-shadow:none;
  6885. box-shadow:none;
  6886. }
  6887. #u32076 {
  6888. border-width:0px;
  6889. position:absolute;
  6890. left:29px;
  6891. top:254px;
  6892. width:375px;
  6893. height:50px;
  6894. display:flex;
  6895. }
  6896. #u32076 .text {
  6897. position:absolute;
  6898. align-self:center;
  6899. padding:2px 2px 2px 2px;
  6900. box-sizing:border-box;
  6901. width:100%;
  6902. }
  6903. #u32076_text {
  6904. border-width:0px;
  6905. word-wrap:break-word;
  6906. text-transform:none;
  6907. visibility:hidden;
  6908. }
  6909. #u32077_div {
  6910. border-width:0px;
  6911. position:absolute;
  6912. left:0px;
  6913. top:0px;
  6914. width:43px;
  6915. height:30px;
  6916. background:inherit;
  6917. background-color:rgba(255, 255, 255, 0);
  6918. border:none;
  6919. border-left:0px;
  6920. border-top:0px;
  6921. border-right:0px;
  6922. border-radius:0px;
  6923. border-bottom-right-radius:0px;
  6924. border-bottom-left-radius:0px;
  6925. -moz-box-shadow:none;
  6926. -webkit-box-shadow:none;
  6927. box-shadow:none;
  6928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6929. font-weight:400;
  6930. font-style:normal;
  6931. font-size:14px;
  6932. text-align:right;
  6933. line-height:30px;
  6934. }
  6935. #u32077 {
  6936. border-width:0px;
  6937. position:absolute;
  6938. left:334px;
  6939. top:264px;
  6940. width:43px;
  6941. height:30px;
  6942. display:flex;
  6943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6944. font-weight:400;
  6945. font-style:normal;
  6946. font-size:14px;
  6947. text-align:right;
  6948. line-height:30px;
  6949. }
  6950. #u32077 .text {
  6951. position:absolute;
  6952. align-self:flex-start;
  6953. padding:0px 0px 0px 0px;
  6954. box-sizing:border-box;
  6955. width:100%;
  6956. }
  6957. #u32077_text {
  6958. border-width:0px;
  6959. white-space:nowrap;
  6960. text-transform:none;
  6961. }
  6962. #u32078_img {
  6963. border-width:0px;
  6964. position:absolute;
  6965. left:0px;
  6966. top:0px;
  6967. width:7px;
  6968. height:12px;
  6969. }
  6970. #u32078 {
  6971. border-width:0px;
  6972. position:absolute;
  6973. left:387px;
  6974. top:273px;
  6975. width:7px;
  6976. height:12px;
  6977. display:flex;
  6978. -webkit-transform:rotate(180deg);
  6979. -moz-transform:rotate(180deg);
  6980. -ms-transform:rotate(180deg);
  6981. transform:rotate(180deg);
  6982. }
  6983. #u32078 .text {
  6984. position:absolute;
  6985. align-self:center;
  6986. padding:2px 2px 2px 2px;
  6987. box-sizing:border-box;
  6988. width:100%;
  6989. }
  6990. #u32078_text {
  6991. border-width:0px;
  6992. word-wrap:break-word;
  6993. text-transform:none;
  6994. visibility:hidden;
  6995. }
  6996. #u32079_div {
  6997. border-width:0px;
  6998. position:absolute;
  6999. left:0px;
  7000. top:0px;
  7001. width:64px;
  7002. height:30px;
  7003. background:inherit;
  7004. background-color:rgba(255, 255, 255, 0);
  7005. border:none;
  7006. border-left:0px;
  7007. border-top:0px;
  7008. border-right:0px;
  7009. border-radius:0px;
  7010. border-bottom-right-radius:0px;
  7011. border-bottom-left-radius:0px;
  7012. -moz-box-shadow:none;
  7013. -webkit-box-shadow:none;
  7014. box-shadow:none;
  7015. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7016. font-weight:500;
  7017. font-style:normal;
  7018. font-size:14px;
  7019. line-height:30px;
  7020. }
  7021. #u32079 {
  7022. border-width:0px;
  7023. position:absolute;
  7024. left:49px;
  7025. top:264px;
  7026. width:64px;
  7027. height:30px;
  7028. display:flex;
  7029. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7030. font-weight:500;
  7031. font-style:normal;
  7032. font-size:14px;
  7033. line-height:30px;
  7034. }
  7035. #u32079 .text {
  7036. position:absolute;
  7037. align-self:flex-start;
  7038. padding:0px 0px 0px 0px;
  7039. box-sizing:border-box;
  7040. width:100%;
  7041. }
  7042. #u32079_text {
  7043. border-width:0px;
  7044. white-space:nowrap;
  7045. text-transform:none;
  7046. }
  7047. #u32080 {
  7048. border-width:0px;
  7049. position:absolute;
  7050. left:0px;
  7051. top:0px;
  7052. width:0px;
  7053. height:0px;
  7054. }
  7055. #u32081_div {
  7056. border-width:0px;
  7057. position:absolute;
  7058. left:0px;
  7059. top:0px;
  7060. width:375px;
  7061. height:50px;
  7062. background:inherit;
  7063. background-color:rgba(255, 255, 255, 1);
  7064. box-sizing:border-box;
  7065. border-width:1px;
  7066. border-style:solid;
  7067. border-color:rgba(242, 242, 242, 1);
  7068. border-left:0px;
  7069. border-top:0px;
  7070. border-right:0px;
  7071. border-radius:0px;
  7072. border-bottom-right-radius:0px;
  7073. border-bottom-left-radius:0px;
  7074. -moz-box-shadow:none;
  7075. -webkit-box-shadow:none;
  7076. box-shadow:none;
  7077. }
  7078. #u32081 {
  7079. border-width:0px;
  7080. position:absolute;
  7081. left:29px;
  7082. top:304px;
  7083. width:375px;
  7084. height:50px;
  7085. display:flex;
  7086. }
  7087. #u32081 .text {
  7088. position:absolute;
  7089. align-self:center;
  7090. padding:2px 2px 2px 2px;
  7091. box-sizing:border-box;
  7092. width:100%;
  7093. }
  7094. #u32081_text {
  7095. border-width:0px;
  7096. word-wrap:break-word;
  7097. text-transform:none;
  7098. visibility:hidden;
  7099. }
  7100. #u32082_div {
  7101. border-width:0px;
  7102. position:absolute;
  7103. left:0px;
  7104. top:0px;
  7105. width:43px;
  7106. height:30px;
  7107. background:inherit;
  7108. background-color:rgba(255, 255, 255, 0);
  7109. border:none;
  7110. border-left:0px;
  7111. border-top:0px;
  7112. border-right:0px;
  7113. border-radius:0px;
  7114. border-bottom-right-radius:0px;
  7115. border-bottom-left-radius:0px;
  7116. -moz-box-shadow:none;
  7117. -webkit-box-shadow:none;
  7118. box-shadow:none;
  7119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7120. font-weight:400;
  7121. font-style:normal;
  7122. font-size:14px;
  7123. text-align:right;
  7124. line-height:30px;
  7125. }
  7126. #u32082 {
  7127. border-width:0px;
  7128. position:absolute;
  7129. left:334px;
  7130. top:314px;
  7131. width:43px;
  7132. height:30px;
  7133. display:flex;
  7134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7135. font-weight:400;
  7136. font-style:normal;
  7137. font-size:14px;
  7138. text-align:right;
  7139. line-height:30px;
  7140. }
  7141. #u32082 .text {
  7142. position:absolute;
  7143. align-self:flex-start;
  7144. padding:0px 0px 0px 0px;
  7145. box-sizing:border-box;
  7146. width:100%;
  7147. }
  7148. #u32082_text {
  7149. border-width:0px;
  7150. white-space:nowrap;
  7151. text-transform:none;
  7152. }
  7153. #u32083_img {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:0px;
  7157. top:0px;
  7158. width:7px;
  7159. height:12px;
  7160. }
  7161. #u32083 {
  7162. border-width:0px;
  7163. position:absolute;
  7164. left:387px;
  7165. top:323px;
  7166. width:7px;
  7167. height:12px;
  7168. display:flex;
  7169. -webkit-transform:rotate(180deg);
  7170. -moz-transform:rotate(180deg);
  7171. -ms-transform:rotate(180deg);
  7172. transform:rotate(180deg);
  7173. }
  7174. #u32083 .text {
  7175. position:absolute;
  7176. align-self:center;
  7177. padding:2px 2px 2px 2px;
  7178. box-sizing:border-box;
  7179. width:100%;
  7180. }
  7181. #u32083_text {
  7182. border-width:0px;
  7183. word-wrap:break-word;
  7184. text-transform:none;
  7185. visibility:hidden;
  7186. }
  7187. #u32084_div {
  7188. border-width:0px;
  7189. position:absolute;
  7190. left:0px;
  7191. top:0px;
  7192. width:64px;
  7193. height:30px;
  7194. background:inherit;
  7195. background-color:rgba(255, 255, 255, 0);
  7196. border:none;
  7197. border-left:0px;
  7198. border-top:0px;
  7199. border-right:0px;
  7200. border-radius:0px;
  7201. border-bottom-right-radius:0px;
  7202. border-bottom-left-radius:0px;
  7203. -moz-box-shadow:none;
  7204. -webkit-box-shadow:none;
  7205. box-shadow:none;
  7206. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7207. font-weight:500;
  7208. font-style:normal;
  7209. font-size:14px;
  7210. line-height:30px;
  7211. }
  7212. #u32084 {
  7213. border-width:0px;
  7214. position:absolute;
  7215. left:49px;
  7216. top:314px;
  7217. width:64px;
  7218. height:30px;
  7219. display:flex;
  7220. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7221. font-weight:500;
  7222. font-style:normal;
  7223. font-size:14px;
  7224. line-height:30px;
  7225. }
  7226. #u32084 .text {
  7227. position:absolute;
  7228. align-self:flex-start;
  7229. padding:0px 0px 0px 0px;
  7230. box-sizing:border-box;
  7231. width:100%;
  7232. }
  7233. #u32084_text {
  7234. border-width:0px;
  7235. white-space:nowrap;
  7236. text-transform:none;
  7237. }
  7238. #u32085_div {
  7239. border-width:0px;
  7240. position:absolute;
  7241. left:0px;
  7242. top:0px;
  7243. width:652px;
  7244. height:75px;
  7245. background:inherit;
  7246. background-color:rgba(255, 255, 255, 0);
  7247. border:none;
  7248. border-left:0px;
  7249. border-top:0px;
  7250. border-right:0px;
  7251. border-radius:0px;
  7252. border-bottom-right-radius:0px;
  7253. border-bottom-left-radius:0px;
  7254. -moz-box-shadow:none;
  7255. -webkit-box-shadow:none;
  7256. box-shadow:none;
  7257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7258. font-weight:400;
  7259. font-style:normal;
  7260. font-size:12px;
  7261. color:#D9001B;
  7262. line-height:25px;
  7263. }
  7264. #u32085 {
  7265. border-width:0px;
  7266. position:absolute;
  7267. left:926px;
  7268. top:1083px;
  7269. width:652px;
  7270. height:75px;
  7271. display:flex;
  7272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7273. font-weight:400;
  7274. font-style:normal;
  7275. font-size:12px;
  7276. color:#D9001B;
  7277. line-height:25px;
  7278. }
  7279. #u32085 .text {
  7280. position:absolute;
  7281. align-self:flex-start;
  7282. padding:0px 0px 0px 0px;
  7283. box-sizing:border-box;
  7284. width:100%;
  7285. }
  7286. #u32085_text {
  7287. border-width:0px;
  7288. word-wrap:break-word;
  7289. text-transform:none;
  7290. }
  7291. #u32086 {
  7292. border-width:0px;
  7293. position:absolute;
  7294. left:0px;
  7295. top:0px;
  7296. width:0px;
  7297. height:0px;
  7298. }
  7299. #u32088_img {
  7300. border-width:0px;
  7301. position:absolute;
  7302. left:0px;
  7303. top:0px;
  7304. width:433px;
  7305. height:865px;
  7306. }
  7307. #u32088 {
  7308. border-width:0px;
  7309. position:absolute;
  7310. left:1292px;
  7311. top:1px;
  7312. width:433px;
  7313. height:865px;
  7314. display:flex;
  7315. }
  7316. #u32088 .text {
  7317. position:absolute;
  7318. align-self:center;
  7319. padding:2px 2px 2px 2px;
  7320. box-sizing:border-box;
  7321. width:100%;
  7322. }
  7323. #u32088_text {
  7324. border-width:0px;
  7325. word-wrap:break-word;
  7326. text-transform:none;
  7327. visibility:hidden;
  7328. }
  7329. #u32089_div {
  7330. border-width:0px;
  7331. position:absolute;
  7332. left:0px;
  7333. top:0px;
  7334. width:375px;
  7335. height:40px;
  7336. background:inherit;
  7337. background-color:rgba(255, 255, 255, 1);
  7338. box-sizing:border-box;
  7339. border-width:1px;
  7340. border-style:solid;
  7341. border-color:rgba(215, 215, 215, 1);
  7342. border-left:0px;
  7343. border-top:0px;
  7344. border-right:0px;
  7345. border-radius:0px;
  7346. border-bottom-right-radius:0px;
  7347. border-bottom-left-radius:0px;
  7348. -moz-box-shadow:none;
  7349. -webkit-box-shadow:none;
  7350. box-shadow:none;
  7351. }
  7352. #u32089 {
  7353. border-width:0px;
  7354. position:absolute;
  7355. left:1321px;
  7356. top:68px;
  7357. width:375px;
  7358. height:40px;
  7359. display:flex;
  7360. }
  7361. #u32089 .text {
  7362. position:absolute;
  7363. align-self:center;
  7364. padding:2px 2px 2px 2px;
  7365. box-sizing:border-box;
  7366. width:100%;
  7367. }
  7368. #u32089_text {
  7369. border-width:0px;
  7370. word-wrap:break-word;
  7371. text-transform:none;
  7372. visibility:hidden;
  7373. }
  7374. #u32090 {
  7375. border-width:0px;
  7376. position:absolute;
  7377. left:0px;
  7378. top:0px;
  7379. width:0px;
  7380. height:0px;
  7381. }
  7382. #u32091_div {
  7383. border-width:0px;
  7384. position:absolute;
  7385. left:0px;
  7386. top:0px;
  7387. width:88px;
  7388. height:32px;
  7389. background:inherit;
  7390. background-color:rgba(255, 255, 255, 1);
  7391. box-sizing:border-box;
  7392. border-width:1px;
  7393. border-style:solid;
  7394. border-color:rgba(242, 242, 242, 1);
  7395. border-radius:33px;
  7396. -moz-box-shadow:none;
  7397. -webkit-box-shadow:none;
  7398. box-shadow:none;
  7399. }
  7400. #u32091 {
  7401. border-width:0px;
  7402. position:absolute;
  7403. left:1601px;
  7404. top:72px;
  7405. width:88px;
  7406. height:32px;
  7407. display:flex;
  7408. }
  7409. #u32091 .text {
  7410. position:absolute;
  7411. align-self:center;
  7412. padding:2px 2px 2px 2px;
  7413. box-sizing:border-box;
  7414. width:100%;
  7415. }
  7416. #u32091_text {
  7417. border-width:0px;
  7418. word-wrap:break-word;
  7419. text-transform:none;
  7420. visibility:hidden;
  7421. }
  7422. #u32092 {
  7423. border-width:0px;
  7424. position:absolute;
  7425. left:0px;
  7426. top:0px;
  7427. width:0px;
  7428. height:0px;
  7429. }
  7430. #u32093_img {
  7431. border-width:0px;
  7432. position:absolute;
  7433. left:0px;
  7434. top:0px;
  7435. width:18px;
  7436. height:18px;
  7437. }
  7438. #u32093 {
  7439. border-width:0px;
  7440. position:absolute;
  7441. left:1664px;
  7442. top:79px;
  7443. width:18px;
  7444. height:18px;
  7445. display:flex;
  7446. }
  7447. #u32093 .text {
  7448. position:absolute;
  7449. align-self:center;
  7450. padding:2px 2px 2px 2px;
  7451. box-sizing:border-box;
  7452. width:100%;
  7453. }
  7454. #u32093_text {
  7455. border-width:0px;
  7456. word-wrap:break-word;
  7457. text-transform:none;
  7458. visibility:hidden;
  7459. }
  7460. #u32094_img {
  7461. border-width:0px;
  7462. position:absolute;
  7463. left:0px;
  7464. top:0px;
  7465. width:6px;
  7466. height:6px;
  7467. }
  7468. #u32094 {
  7469. border-width:0px;
  7470. position:absolute;
  7471. left:1670px;
  7472. top:85px;
  7473. width:6px;
  7474. height:6px;
  7475. display:flex;
  7476. }
  7477. #u32094 .text {
  7478. position:absolute;
  7479. align-self:center;
  7480. padding:2px 2px 2px 2px;
  7481. box-sizing:border-box;
  7482. width:100%;
  7483. }
  7484. #u32094_text {
  7485. border-width:0px;
  7486. word-wrap:break-word;
  7487. text-transform:none;
  7488. visibility:hidden;
  7489. }
  7490. #u32095 {
  7491. border-width:0px;
  7492. position:absolute;
  7493. left:0px;
  7494. top:0px;
  7495. width:0px;
  7496. height:0px;
  7497. }
  7498. #u32096_img {
  7499. border-width:0px;
  7500. position:absolute;
  7501. left:0px;
  7502. top:0px;
  7503. width:5px;
  7504. height:5px;
  7505. }
  7506. #u32096 {
  7507. border-width:0px;
  7508. position:absolute;
  7509. left:1615px;
  7510. top:86px;
  7511. width:5px;
  7512. height:5px;
  7513. display:flex;
  7514. }
  7515. #u32096 .text {
  7516. position:absolute;
  7517. align-self:center;
  7518. padding:2px 2px 2px 2px;
  7519. box-sizing:border-box;
  7520. width:100%;
  7521. }
  7522. #u32096_text {
  7523. border-width:0px;
  7524. word-wrap:break-word;
  7525. text-transform:none;
  7526. visibility:hidden;
  7527. }
  7528. #u32097_img {
  7529. border-width:0px;
  7530. position:absolute;
  7531. left:0px;
  7532. top:0px;
  7533. width:5px;
  7534. height:5px;
  7535. }
  7536. #u32097 {
  7537. border-width:0px;
  7538. position:absolute;
  7539. left:1631px;
  7540. top:86px;
  7541. width:5px;
  7542. height:5px;
  7543. display:flex;
  7544. }
  7545. #u32097 .text {
  7546. position:absolute;
  7547. align-self:center;
  7548. padding:2px 2px 2px 2px;
  7549. box-sizing:border-box;
  7550. width:100%;
  7551. }
  7552. #u32097_text {
  7553. border-width:0px;
  7554. word-wrap:break-word;
  7555. text-transform:none;
  7556. visibility:hidden;
  7557. }
  7558. #u32098_img {
  7559. border-width:0px;
  7560. position:absolute;
  7561. left:0px;
  7562. top:0px;
  7563. width:7px;
  7564. height:7px;
  7565. }
  7566. #u32098 {
  7567. border-width:0px;
  7568. position:absolute;
  7569. left:1622px;
  7570. top:85px;
  7571. width:7px;
  7572. height:7px;
  7573. display:flex;
  7574. }
  7575. #u32098 .text {
  7576. position:absolute;
  7577. align-self:center;
  7578. padding:2px 2px 2px 2px;
  7579. box-sizing:border-box;
  7580. width:100%;
  7581. }
  7582. #u32098_text {
  7583. border-width:0px;
  7584. word-wrap:break-word;
  7585. text-transform:none;
  7586. visibility:hidden;
  7587. }
  7588. #u32099_img {
  7589. border-width:0px;
  7590. position:absolute;
  7591. left:0px;
  7592. top:0px;
  7593. width:19px;
  7594. height:2px;
  7595. }
  7596. #u32099 {
  7597. border-width:0px;
  7598. position:absolute;
  7599. left:1639px;
  7600. top:88px;
  7601. width:18px;
  7602. height:1px;
  7603. display:flex;
  7604. -webkit-transform:rotate(90deg);
  7605. -moz-transform:rotate(90deg);
  7606. -ms-transform:rotate(90deg);
  7607. transform:rotate(90deg);
  7608. }
  7609. #u32099 .text {
  7610. position:absolute;
  7611. align-self:center;
  7612. padding:2px 2px 2px 2px;
  7613. box-sizing:border-box;
  7614. width:100%;
  7615. }
  7616. #u32099_text {
  7617. border-width:0px;
  7618. word-wrap:break-word;
  7619. text-transform:none;
  7620. visibility:hidden;
  7621. }
  7622. #u32100_img {
  7623. border-width:0px;
  7624. position:absolute;
  7625. left:0px;
  7626. top:0px;
  7627. width:375px;
  7628. height:44px;
  7629. }
  7630. #u32100 {
  7631. border-width:0px;
  7632. position:absolute;
  7633. left:1321px;
  7634. top:25px;
  7635. width:375px;
  7636. height:44px;
  7637. display:flex;
  7638. }
  7639. #u32100 .text {
  7640. position:absolute;
  7641. align-self:center;
  7642. padding:2px 2px 2px 2px;
  7643. box-sizing:border-box;
  7644. width:100%;
  7645. }
  7646. #u32100_text {
  7647. border-width:0px;
  7648. word-wrap:break-word;
  7649. text-transform:none;
  7650. visibility:hidden;
  7651. }
  7652. #u32101_div {
  7653. border-width:0px;
  7654. position:absolute;
  7655. left:0px;
  7656. top:0px;
  7657. width:375px;
  7658. height:50px;
  7659. background:inherit;
  7660. background-color:rgba(255, 255, 255, 1);
  7661. box-sizing:border-box;
  7662. border-width:1px;
  7663. border-style:solid;
  7664. border-color:rgba(242, 242, 242, 1);
  7665. border-radius:26px;
  7666. border-top-left-radius:0px;
  7667. border-top-right-radius:0px;
  7668. -moz-box-shadow:none;
  7669. -webkit-box-shadow:none;
  7670. box-shadow:none;
  7671. }
  7672. #u32101 {
  7673. border-width:0px;
  7674. position:absolute;
  7675. left:1321px;
  7676. top:789px;
  7677. width:375px;
  7678. height:50px;
  7679. display:flex;
  7680. }
  7681. #u32101 .text {
  7682. position:absolute;
  7683. align-self:center;
  7684. padding:2px 2px 2px 2px;
  7685. box-sizing:border-box;
  7686. width:100%;
  7687. }
  7688. #u32101_text {
  7689. border-width:0px;
  7690. word-wrap:break-word;
  7691. text-transform:none;
  7692. visibility:hidden;
  7693. }
  7694. #u32102 {
  7695. border-width:0px;
  7696. position:absolute;
  7697. left:0px;
  7698. top:0px;
  7699. width:0px;
  7700. height:0px;
  7701. }
  7702. #u32103_img {
  7703. border-width:0px;
  7704. position:absolute;
  7705. left:0px;
  7706. top:0px;
  7707. width:24px;
  7708. height:24px;
  7709. }
  7710. #u32103 {
  7711. border-width:0px;
  7712. position:absolute;
  7713. left:1361px;
  7714. top:793px;
  7715. width:24px;
  7716. height:24px;
  7717. display:flex;
  7718. font-size:8px;
  7719. }
  7720. #u32103 .text {
  7721. position:absolute;
  7722. align-self:center;
  7723. padding:2px 2px 2px 2px;
  7724. box-sizing:border-box;
  7725. width:100%;
  7726. }
  7727. #u32103_text {
  7728. border-width:0px;
  7729. word-wrap:break-word;
  7730. text-transform:none;
  7731. }
  7732. #u32104_div {
  7733. border-width:0px;
  7734. position:absolute;
  7735. left:0px;
  7736. top:0px;
  7737. width:25px;
  7738. height:17px;
  7739. background:inherit;
  7740. background-color:rgba(255, 255, 255, 0);
  7741. border:none;
  7742. border-radius:0px;
  7743. -moz-box-shadow:none;
  7744. -webkit-box-shadow:none;
  7745. box-shadow:none;
  7746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7747. font-weight:400;
  7748. font-style:normal;
  7749. font-size:12px;
  7750. }
  7751. #u32104 {
  7752. border-width:0px;
  7753. position:absolute;
  7754. left:1361px;
  7755. top:818px;
  7756. width:25px;
  7757. height:17px;
  7758. display:flex;
  7759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7760. font-weight:400;
  7761. font-style:normal;
  7762. font-size:12px;
  7763. }
  7764. #u32104 .text {
  7765. position:absolute;
  7766. align-self:flex-start;
  7767. padding:0px 0px 0px 0px;
  7768. box-sizing:border-box;
  7769. width:100%;
  7770. }
  7771. #u32104_text {
  7772. border-width:0px;
  7773. white-space:nowrap;
  7774. text-transform:none;
  7775. }
  7776. #u32105 {
  7777. border-width:0px;
  7778. position:absolute;
  7779. left:0px;
  7780. top:0px;
  7781. width:0px;
  7782. height:0px;
  7783. }
  7784. #u32106_img {
  7785. border-width:0px;
  7786. position:absolute;
  7787. left:0px;
  7788. top:0px;
  7789. width:24px;
  7790. height:24px;
  7791. }
  7792. #u32106 {
  7793. border-width:0px;
  7794. position:absolute;
  7795. left:1631px;
  7796. top:795px;
  7797. width:24px;
  7798. height:24px;
  7799. display:flex;
  7800. font-size:8px;
  7801. }
  7802. #u32106 .text {
  7803. position:absolute;
  7804. align-self:center;
  7805. padding:2px 2px 2px 2px;
  7806. box-sizing:border-box;
  7807. width:100%;
  7808. }
  7809. #u32106_text {
  7810. border-width:0px;
  7811. word-wrap:break-word;
  7812. text-transform:none;
  7813. }
  7814. #u32107_div {
  7815. border-width:0px;
  7816. position:absolute;
  7817. left:0px;
  7818. top:0px;
  7819. width:25px;
  7820. height:17px;
  7821. background:inherit;
  7822. background-color:rgba(255, 255, 255, 0);
  7823. border:none;
  7824. border-radius:0px;
  7825. -moz-box-shadow:none;
  7826. -webkit-box-shadow:none;
  7827. box-shadow:none;
  7828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7829. font-weight:400;
  7830. font-style:normal;
  7831. font-size:12px;
  7832. }
  7833. #u32107 {
  7834. border-width:0px;
  7835. position:absolute;
  7836. left:1631px;
  7837. top:820px;
  7838. width:25px;
  7839. height:17px;
  7840. display:flex;
  7841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7842. font-weight:400;
  7843. font-style:normal;
  7844. font-size:12px;
  7845. }
  7846. #u32107 .text {
  7847. position:absolute;
  7848. align-self:flex-start;
  7849. padding:0px 0px 0px 0px;
  7850. box-sizing:border-box;
  7851. width:100%;
  7852. }
  7853. #u32107_text {
  7854. border-width:0px;
  7855. white-space:nowrap;
  7856. text-transform:none;
  7857. }
  7858. #u32108_div {
  7859. border-width:0px;
  7860. position:absolute;
  7861. left:0px;
  7862. top:0px;
  7863. width:375px;
  7864. height:681px;
  7865. background:inherit;
  7866. background-color:rgba(242, 242, 242, 0.462745098039216);
  7867. border:none;
  7868. border-radius:0px;
  7869. -moz-box-shadow:none;
  7870. -webkit-box-shadow:none;
  7871. box-shadow:none;
  7872. }
  7873. #u32108 {
  7874. border-width:0px;
  7875. position:absolute;
  7876. left:1321px;
  7877. top:108px;
  7878. width:375px;
  7879. height:681px;
  7880. display:flex;
  7881. }
  7882. #u32108 .text {
  7883. position:absolute;
  7884. align-self:center;
  7885. padding:2px 2px 2px 2px;
  7886. box-sizing:border-box;
  7887. width:100%;
  7888. }
  7889. #u32108_text {
  7890. border-width:0px;
  7891. word-wrap:break-word;
  7892. text-transform:none;
  7893. visibility:hidden;
  7894. }
  7895. #u32109 {
  7896. border-width:0px;
  7897. position:absolute;
  7898. left:0px;
  7899. top:0px;
  7900. width:0px;
  7901. height:0px;
  7902. }
  7903. #u32110_img {
  7904. border-width:0px;
  7905. position:absolute;
  7906. left:0px;
  7907. top:0px;
  7908. width:24px;
  7909. height:24px;
  7910. }
  7911. #u32110 {
  7912. border-width:0px;
  7913. position:absolute;
  7914. left:1543px;
  7915. top:793px;
  7916. width:24px;
  7917. height:24px;
  7918. display:flex;
  7919. font-size:8px;
  7920. }
  7921. #u32110 .text {
  7922. position:absolute;
  7923. align-self:center;
  7924. padding:2px 2px 2px 2px;
  7925. box-sizing:border-box;
  7926. width:100%;
  7927. }
  7928. #u32110_text {
  7929. border-width:0px;
  7930. word-wrap:break-word;
  7931. text-transform:none;
  7932. }
  7933. #u32111_div {
  7934. border-width:0px;
  7935. position:absolute;
  7936. left:0px;
  7937. top:0px;
  7938. width:37px;
  7939. height:17px;
  7940. background:inherit;
  7941. background-color:rgba(255, 255, 255, 0);
  7942. border:none;
  7943. border-radius:0px;
  7944. -moz-box-shadow:none;
  7945. -webkit-box-shadow:none;
  7946. box-shadow:none;
  7947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7948. font-weight:400;
  7949. font-style:normal;
  7950. font-size:12px;
  7951. }
  7952. #u32111 {
  7953. border-width:0px;
  7954. position:absolute;
  7955. left:1537px;
  7956. top:818px;
  7957. width:37px;
  7958. height:17px;
  7959. display:flex;
  7960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7961. font-weight:400;
  7962. font-style:normal;
  7963. font-size:12px;
  7964. }
  7965. #u32111 .text {
  7966. position:absolute;
  7967. align-self:flex-start;
  7968. padding:0px 0px 0px 0px;
  7969. box-sizing:border-box;
  7970. width:100%;
  7971. }
  7972. #u32111_text {
  7973. border-width:0px;
  7974. white-space:nowrap;
  7975. text-transform:none;
  7976. }
  7977. #u32112 {
  7978. border-width:0px;
  7979. position:absolute;
  7980. left:0px;
  7981. top:0px;
  7982. width:0px;
  7983. height:0px;
  7984. }
  7985. #u32113_img {
  7986. border-width:0px;
  7987. position:absolute;
  7988. left:0px;
  7989. top:0px;
  7990. width:24px;
  7991. height:24px;
  7992. }
  7993. #u32113 {
  7994. border-width:0px;
  7995. position:absolute;
  7996. left:1449px;
  7997. top:793px;
  7998. width:24px;
  7999. height:24px;
  8000. display:flex;
  8001. font-size:8px;
  8002. }
  8003. #u32113 .text {
  8004. position:absolute;
  8005. align-self:center;
  8006. padding:2px 2px 2px 2px;
  8007. box-sizing:border-box;
  8008. width:100%;
  8009. }
  8010. #u32113_text {
  8011. border-width:0px;
  8012. word-wrap:break-word;
  8013. text-transform:none;
  8014. }
  8015. #u32114_div {
  8016. border-width:0px;
  8017. position:absolute;
  8018. left:0px;
  8019. top:0px;
  8020. width:37px;
  8021. height:17px;
  8022. background:inherit;
  8023. background-color:rgba(255, 255, 255, 0);
  8024. border:none;
  8025. border-radius:0px;
  8026. -moz-box-shadow:none;
  8027. -webkit-box-shadow:none;
  8028. box-shadow:none;
  8029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8030. font-weight:400;
  8031. font-style:normal;
  8032. font-size:12px;
  8033. }
  8034. #u32114 {
  8035. border-width:0px;
  8036. position:absolute;
  8037. left:1443px;
  8038. top:818px;
  8039. width:37px;
  8040. height:17px;
  8041. display:flex;
  8042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8043. font-weight:400;
  8044. font-style:normal;
  8045. font-size:12px;
  8046. }
  8047. #u32114 .text {
  8048. position:absolute;
  8049. align-self:flex-start;
  8050. padding:0px 0px 0px 0px;
  8051. box-sizing:border-box;
  8052. width:100%;
  8053. }
  8054. #u32114_text {
  8055. border-width:0px;
  8056. white-space:nowrap;
  8057. text-transform:none;
  8058. }
  8059. #u32115_div {
  8060. border-width:0px;
  8061. position:absolute;
  8062. left:0px;
  8063. top:0px;
  8064. width:375px;
  8065. height:775px;
  8066. background:inherit;
  8067. background-color:rgba(255, 255, 255, 1);
  8068. border:none;
  8069. border-top:0px;
  8070. border-radius:28px;
  8071. border-top-left-radius:0px;
  8072. border-top-right-radius:0px;
  8073. -moz-box-shadow:none;
  8074. -webkit-box-shadow:none;
  8075. box-shadow:none;
  8076. }
  8077. #u32115 {
  8078. border-width:0px;
  8079. position:absolute;
  8080. left:1321px;
  8081. top:66px;
  8082. width:375px;
  8083. height:775px;
  8084. display:flex;
  8085. }
  8086. #u32115 .text {
  8087. position:absolute;
  8088. align-self:center;
  8089. padding:2px 2px 2px 2px;
  8090. box-sizing:border-box;
  8091. width:100%;
  8092. }
  8093. #u32115_text {
  8094. border-width:0px;
  8095. word-wrap:break-word;
  8096. text-transform:none;
  8097. visibility:hidden;
  8098. }
  8099. #u32116_div {
  8100. border-width:0px;
  8101. position:absolute;
  8102. left:0px;
  8103. top:0px;
  8104. width:97px;
  8105. height:30px;
  8106. background:inherit;
  8107. background-color:rgba(255, 255, 255, 0);
  8108. border:none;
  8109. border-left:0px;
  8110. border-top:0px;
  8111. border-right:0px;
  8112. border-radius:0px;
  8113. border-bottom-right-radius:0px;
  8114. border-bottom-left-radius:0px;
  8115. -moz-box-shadow:none;
  8116. -webkit-box-shadow:none;
  8117. box-shadow:none;
  8118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8119. font-weight:400;
  8120. font-style:normal;
  8121. line-height:30px;
  8122. }
  8123. #u32116 {
  8124. border-width:0px;
  8125. position:absolute;
  8126. left:1460px;
  8127. top:227px;
  8128. width:97px;
  8129. height:30px;
  8130. display:flex;
  8131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8132. font-weight:400;
  8133. font-style:normal;
  8134. line-height:30px;
  8135. }
  8136. #u32116 .text {
  8137. position:absolute;
  8138. align-self:center;
  8139. padding:0px 0px 0px 0px;
  8140. box-sizing:border-box;
  8141. width:100%;
  8142. }
  8143. #u32116_text {
  8144. border-width:0px;
  8145. white-space:nowrap;
  8146. text-transform:none;
  8147. }
  8148. #u32117_div {
  8149. border-width:0px;
  8150. position:absolute;
  8151. left:0px;
  8152. top:0px;
  8153. width:126px;
  8154. height:40px;
  8155. background:inherit;
  8156. background-color:rgba(255, 255, 255, 1);
  8157. box-sizing:border-box;
  8158. border-width:1px;
  8159. border-style:solid;
  8160. border-color:rgba(121, 121, 121, 1);
  8161. border-radius:63px;
  8162. -moz-box-shadow:none;
  8163. -webkit-box-shadow:none;
  8164. box-shadow:none;
  8165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8166. font-weight:400;
  8167. font-style:normal;
  8168. font-size:14px;
  8169. }
  8170. #u32117 {
  8171. border-width:0px;
  8172. position:absolute;
  8173. left:1519px;
  8174. top:355px;
  8175. width:126px;
  8176. height:40px;
  8177. display:flex;
  8178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8179. font-weight:400;
  8180. font-style:normal;
  8181. font-size:14px;
  8182. }
  8183. #u32117 .text {
  8184. position:absolute;
  8185. align-self:center;
  8186. padding:2px 2px 2px 2px;
  8187. box-sizing:border-box;
  8188. width:100%;
  8189. }
  8190. #u32117_text {
  8191. border-width:0px;
  8192. word-wrap:break-word;
  8193. text-transform:none;
  8194. }
  8195. #u32118_img {
  8196. border-width:0px;
  8197. position:absolute;
  8198. left:0px;
  8199. top:0px;
  8200. width:83px;
  8201. height:83px;
  8202. }
  8203. #u32118 {
  8204. border-width:0px;
  8205. position:absolute;
  8206. left:1467px;
  8207. top:128px;
  8208. width:83px;
  8209. height:83px;
  8210. display:flex;
  8211. }
  8212. #u32118 .text {
  8213. position:absolute;
  8214. align-self:center;
  8215. padding:2px 2px 2px 2px;
  8216. box-sizing:border-box;
  8217. width:100%;
  8218. }
  8219. #u32118_text {
  8220. border-width:0px;
  8221. word-wrap:break-word;
  8222. text-transform:none;
  8223. visibility:hidden;
  8224. }
  8225. #u32119_div {
  8226. border-width:0px;
  8227. position:absolute;
  8228. left:0px;
  8229. top:0px;
  8230. width:126px;
  8231. height:40px;
  8232. background:inherit;
  8233. background-color:rgba(255, 255, 255, 1);
  8234. box-sizing:border-box;
  8235. border-width:1px;
  8236. border-style:solid;
  8237. border-color:rgba(121, 121, 121, 1);
  8238. border-radius:63px;
  8239. -moz-box-shadow:none;
  8240. -webkit-box-shadow:none;
  8241. box-shadow:none;
  8242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8243. font-weight:400;
  8244. font-style:normal;
  8245. font-size:14px;
  8246. }
  8247. #u32119 {
  8248. border-width:0px;
  8249. position:absolute;
  8250. left:1373px;
  8251. top:355px;
  8252. width:126px;
  8253. height:40px;
  8254. display:flex;
  8255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8256. font-weight:400;
  8257. font-style:normal;
  8258. font-size:14px;
  8259. }
  8260. #u32119 .text {
  8261. position:absolute;
  8262. align-self:center;
  8263. padding:2px 2px 2px 2px;
  8264. box-sizing:border-box;
  8265. width:100%;
  8266. }
  8267. #u32119_text {
  8268. border-width:0px;
  8269. word-wrap:break-word;
  8270. text-transform:none;
  8271. }
  8272. #u32120_div {
  8273. border-width:0px;
  8274. position:absolute;
  8275. left:0px;
  8276. top:0px;
  8277. width:30px;
  8278. height:30px;
  8279. background:inherit;
  8280. background-color:rgba(255, 255, 255, 0);
  8281. border:none;
  8282. border-left:0px;
  8283. border-top:0px;
  8284. border-right:0px;
  8285. border-radius:0px;
  8286. border-bottom-right-radius:0px;
  8287. border-bottom-left-radius:0px;
  8288. -moz-box-shadow:none;
  8289. -webkit-box-shadow:none;
  8290. box-shadow:none;
  8291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8292. font-weight:400;
  8293. font-style:normal;
  8294. font-size:18px;
  8295. text-align:center;
  8296. line-height:30px;
  8297. }
  8298. #u32120 {
  8299. border-width:0px;
  8300. position:absolute;
  8301. left:1331px;
  8302. top:76px;
  8303. width:30px;
  8304. height:30px;
  8305. display:flex;
  8306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8307. font-weight:400;
  8308. font-style:normal;
  8309. font-size:18px;
  8310. text-align:center;
  8311. line-height:30px;
  8312. }
  8313. #u32120 .text {
  8314. position:absolute;
  8315. align-self:center;
  8316. padding:0px 0px 0px 0px;
  8317. box-sizing:border-box;
  8318. width:100%;
  8319. }
  8320. #u32120_text {
  8321. border-width:0px;
  8322. word-wrap:break-word;
  8323. text-transform:none;
  8324. }
  8325. #u32121 {
  8326. border-width:0px;
  8327. position:absolute;
  8328. left:0px;
  8329. top:0px;
  8330. width:0px;
  8331. height:0px;
  8332. }
  8333. #u32122_img {
  8334. border-width:0px;
  8335. position:absolute;
  8336. left:0px;
  8337. top:0px;
  8338. width:350px;
  8339. height:40px;
  8340. }
  8341. #u32122 {
  8342. border-width:0px;
  8343. position:absolute;
  8344. left:1333px;
  8345. top:403px;
  8346. width:350px;
  8347. height:40px;
  8348. display:flex;
  8349. }
  8350. #u32122 .text {
  8351. position:absolute;
  8352. align-self:center;
  8353. padding:2px 2px 2px 2px;
  8354. box-sizing:border-box;
  8355. width:100%;
  8356. }
  8357. #u32122_text {
  8358. border-width:0px;
  8359. word-wrap:break-word;
  8360. text-transform:none;
  8361. visibility:hidden;
  8362. }
  8363. #u32123 {
  8364. border-width:0px;
  8365. position:absolute;
  8366. left:0px;
  8367. top:0px;
  8368. width:0px;
  8369. height:0px;
  8370. }
  8371. #u32124_div {
  8372. border-width:0px;
  8373. position:absolute;
  8374. left:0px;
  8375. top:0px;
  8376. width:221px;
  8377. height:30px;
  8378. background:inherit;
  8379. background-color:rgba(255, 255, 255, 0);
  8380. border:none;
  8381. border-left:0px;
  8382. border-top:0px;
  8383. border-right:0px;
  8384. border-radius:0px;
  8385. border-bottom-right-radius:0px;
  8386. border-bottom-left-radius:0px;
  8387. -moz-box-shadow:none;
  8388. -webkit-box-shadow:none;
  8389. box-shadow:none;
  8390. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8391. font-style:normal;
  8392. color:#FFFFFF;
  8393. text-align:center;
  8394. line-height:30px;
  8395. }
  8396. #u32124 {
  8397. border-width:0px;
  8398. position:absolute;
  8399. left:1413px;
  8400. top:408px;
  8401. width:221px;
  8402. height:30px;
  8403. display:flex;
  8404. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8405. font-style:normal;
  8406. color:#FFFFFF;
  8407. text-align:center;
  8408. line-height:30px;
  8409. }
  8410. #u32124 .text {
  8411. position:absolute;
  8412. align-self:center;
  8413. padding:0px 0px 0px 0px;
  8414. box-sizing:border-box;
  8415. width:100%;
  8416. }
  8417. #u32124_text {
  8418. border-width:0px;
  8419. white-space:nowrap;
  8420. text-transform:none;
  8421. }
  8422. #u32125_img {
  8423. border-width:0px;
  8424. position:absolute;
  8425. left:0px;
  8426. top:0px;
  8427. width:26px;
  8428. height:26px;
  8429. }
  8430. #u32125 {
  8431. border-width:0px;
  8432. position:absolute;
  8433. left:1383px;
  8434. top:410px;
  8435. width:26px;
  8436. height:26px;
  8437. display:flex;
  8438. }
  8439. #u32125 .text {
  8440. position:absolute;
  8441. align-self:center;
  8442. padding:2px 2px 2px 2px;
  8443. box-sizing:border-box;
  8444. width:100%;
  8445. }
  8446. #u32125_text {
  8447. border-width:0px;
  8448. word-wrap:break-word;
  8449. text-transform:none;
  8450. }
  8451. #u32126_div {
  8452. border-width:0px;
  8453. position:absolute;
  8454. left:0px;
  8455. top:0px;
  8456. width:295px;
  8457. height:30px;
  8458. background:inherit;
  8459. background-color:rgba(255, 255, 255, 0);
  8460. border:none;
  8461. border-left:0px;
  8462. border-top:0px;
  8463. border-right:0px;
  8464. border-radius:0px;
  8465. border-bottom-right-radius:0px;
  8466. border-bottom-left-radius:0px;
  8467. -moz-box-shadow:none;
  8468. -webkit-box-shadow:none;
  8469. box-shadow:none;
  8470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8471. font-weight:400;
  8472. font-style:normal;
  8473. font-size:14px;
  8474. text-align:center;
  8475. line-height:30px;
  8476. }
  8477. #u32126 {
  8478. border-width:0px;
  8479. position:absolute;
  8480. left:1360px;
  8481. top:285px;
  8482. width:295px;
  8483. height:30px;
  8484. display:flex;
  8485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8486. font-weight:400;
  8487. font-style:normal;
  8488. font-size:14px;
  8489. text-align:center;
  8490. line-height:30px;
  8491. }
  8492. #u32126 .text {
  8493. position:absolute;
  8494. align-self:center;
  8495. padding:0px 0px 0px 0px;
  8496. box-sizing:border-box;
  8497. width:100%;
  8498. }
  8499. #u32126_text {
  8500. border-width:0px;
  8501. white-space:nowrap;
  8502. text-transform:none;
  8503. }
  8504. #u32127_div {
  8505. border-width:0px;
  8506. position:absolute;
  8507. left:0px;
  8508. top:0px;
  8509. width:363px;
  8510. height:30px;
  8511. background:inherit;
  8512. background-color:rgba(255, 255, 255, 0);
  8513. border:none;
  8514. border-left:0px;
  8515. border-top:0px;
  8516. border-right:0px;
  8517. border-radius:0px;
  8518. border-bottom-right-radius:0px;
  8519. border-bottom-left-radius:0px;
  8520. -moz-box-shadow:none;
  8521. -webkit-box-shadow:none;
  8522. box-shadow:none;
  8523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8524. font-weight:400;
  8525. font-style:normal;
  8526. font-size:14px;
  8527. color:#D9001B;
  8528. line-height:30px;
  8529. }
  8530. #u32127 {
  8531. border-width:0px;
  8532. position:absolute;
  8533. left:1333px;
  8534. top:472px;
  8535. width:363px;
  8536. height:30px;
  8537. display:flex;
  8538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8539. font-weight:400;
  8540. font-style:normal;
  8541. font-size:14px;
  8542. color:#D9001B;
  8543. line-height:30px;
  8544. }
  8545. #u32127 .text {
  8546. position:absolute;
  8547. align-self:flex-start;
  8548. padding:0px 0px 0px 0px;
  8549. box-sizing:border-box;
  8550. width:100%;
  8551. }
  8552. #u32127_text {
  8553. border-width:0px;
  8554. word-wrap:break-word;
  8555. text-transform:none;
  8556. }
  8557. #u32128 {
  8558. border-width:0px;
  8559. position:absolute;
  8560. left:0px;
  8561. top:0px;
  8562. width:0px;
  8563. height:0px;
  8564. }
  8565. #u32129_div {
  8566. border-width:0px;
  8567. position:absolute;
  8568. left:0px;
  8569. top:0px;
  8570. width:376px;
  8571. height:60px;
  8572. background:inherit;
  8573. background-color:rgba(255, 255, 255, 1);
  8574. border:none;
  8575. border-top:0px;
  8576. border-radius:22px;
  8577. border-top-left-radius:0px;
  8578. border-top-right-radius:0px;
  8579. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  8580. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  8581. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  8582. }
  8583. #u32129 {
  8584. border-width:0px;
  8585. position:absolute;
  8586. left:29px;
  8587. top:1028px;
  8588. width:376px;
  8589. height:60px;
  8590. display:flex;
  8591. }
  8592. #u32129 .text {
  8593. position:absolute;
  8594. align-self:center;
  8595. padding:2px 2px 2px 2px;
  8596. box-sizing:border-box;
  8597. width:100%;
  8598. }
  8599. #u32129_text {
  8600. border-width:0px;
  8601. word-wrap:break-word;
  8602. text-transform:none;
  8603. visibility:hidden;
  8604. }
  8605. #u32130_div {
  8606. border-width:0px;
  8607. position:absolute;
  8608. left:0px;
  8609. top:0px;
  8610. width:334px;
  8611. height:40px;
  8612. background:inherit;
  8613. background-color:rgba(215, 215, 215, 1);
  8614. border:none;
  8615. border-radius:45px;
  8616. -moz-box-shadow:none;
  8617. -webkit-box-shadow:none;
  8618. box-shadow:none;
  8619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8620. font-weight:400;
  8621. font-style:normal;
  8622. font-size:14px;
  8623. color:#FFFFFF;
  8624. }
  8625. #u32130 {
  8626. border-width:0px;
  8627. position:absolute;
  8628. left:50px;
  8629. top:1038px;
  8630. width:334px;
  8631. height:40px;
  8632. display:flex;
  8633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8634. font-weight:400;
  8635. font-style:normal;
  8636. font-size:14px;
  8637. color:#FFFFFF;
  8638. }
  8639. #u32130 .text {
  8640. position:absolute;
  8641. align-self:center;
  8642. padding:2px 2px 2px 2px;
  8643. box-sizing:border-box;
  8644. width:100%;
  8645. }
  8646. #u32130_text {
  8647. border-width:0px;
  8648. word-wrap:break-word;
  8649. text-transform:none;
  8650. }
  8651. #u32131_div {
  8652. border-width:0px;
  8653. position:absolute;
  8654. left:0px;
  8655. top:0px;
  8656. width:463px;
  8657. height:25px;
  8658. background:inherit;
  8659. background-color:rgba(255, 255, 255, 0);
  8660. border:none;
  8661. border-left:0px;
  8662. border-top:0px;
  8663. border-right:0px;
  8664. border-radius:0px;
  8665. border-bottom-right-radius:0px;
  8666. border-bottom-left-radius:0px;
  8667. -moz-box-shadow:none;
  8668. -webkit-box-shadow:none;
  8669. box-shadow:none;
  8670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8671. font-weight:400;
  8672. font-style:normal;
  8673. font-size:12px;
  8674. color:#D9001B;
  8675. line-height:25px;
  8676. }
  8677. #u32131 {
  8678. border-width:0px;
  8679. position:absolute;
  8680. left:29px;
  8681. top:1196px;
  8682. width:463px;
  8683. height:25px;
  8684. display:flex;
  8685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8686. font-weight:400;
  8687. font-style:normal;
  8688. font-size:12px;
  8689. color:#D9001B;
  8690. line-height:25px;
  8691. }
  8692. #u32131 .text {
  8693. position:absolute;
  8694. align-self:flex-start;
  8695. padding:0px 0px 0px 0px;
  8696. box-sizing:border-box;
  8697. width:100%;
  8698. }
  8699. #u32131_text {
  8700. border-width:0px;
  8701. white-space:nowrap;
  8702. text-transform:none;
  8703. }
  8704. #u32132_div {
  8705. border-width:0px;
  8706. position:absolute;
  8707. left:0px;
  8708. top:0px;
  8709. width:369px;
  8710. height:50px;
  8711. background:inherit;
  8712. background-color:rgba(255, 255, 255, 0);
  8713. border:none;
  8714. border-left:0px;
  8715. border-top:0px;
  8716. border-right:0px;
  8717. border-radius:0px;
  8718. border-bottom-right-radius:0px;
  8719. border-bottom-left-radius:0px;
  8720. -moz-box-shadow:none;
  8721. -webkit-box-shadow:none;
  8722. box-shadow:none;
  8723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8724. font-weight:400;
  8725. font-style:normal;
  8726. font-size:12px;
  8727. color:#D9001B;
  8728. line-height:25px;
  8729. }
  8730. #u32132 {
  8731. border-width:0px;
  8732. position:absolute;
  8733. left:29px;
  8734. top:1463px;
  8735. width:369px;
  8736. height:50px;
  8737. display:flex;
  8738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8739. font-weight:400;
  8740. font-style:normal;
  8741. font-size:12px;
  8742. color:#D9001B;
  8743. line-height:25px;
  8744. }
  8745. #u32132 .text {
  8746. position:absolute;
  8747. align-self:flex-start;
  8748. padding:0px 0px 0px 0px;
  8749. box-sizing:border-box;
  8750. width:100%;
  8751. }
  8752. #u32132_text {
  8753. border-width:0px;
  8754. word-wrap:break-word;
  8755. text-transform:none;
  8756. }
  8757. #u32133 {
  8758. border-width:0px;
  8759. position:absolute;
  8760. left:0px;
  8761. top:0px;
  8762. width:0px;
  8763. height:0px;
  8764. }
  8765. #u32134_div {
  8766. border-width:0px;
  8767. position:absolute;
  8768. left:0px;
  8769. top:0px;
  8770. width:346px;
  8771. height:219px;
  8772. background:inherit;
  8773. background-color:rgba(255, 255, 255, 1);
  8774. border:none;
  8775. border-radius:9px;
  8776. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8777. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8778. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8779. }
  8780. #u32134 {
  8781. border-width:0px;
  8782. position:absolute;
  8783. left:409px;
  8784. top:1229px;
  8785. width:346px;
  8786. height:219px;
  8787. display:flex;
  8788. }
  8789. #u32134 .text {
  8790. position:absolute;
  8791. align-self:center;
  8792. padding:2px 2px 2px 2px;
  8793. box-sizing:border-box;
  8794. width:100%;
  8795. }
  8796. #u32134_text {
  8797. border-width:0px;
  8798. word-wrap:break-word;
  8799. text-transform:none;
  8800. visibility:hidden;
  8801. }
  8802. #u32135_div {
  8803. border-width:0px;
  8804. position:absolute;
  8805. left:0px;
  8806. top:0px;
  8807. width:49px;
  8808. height:33px;
  8809. background:inherit;
  8810. background-color:rgba(255, 255, 255, 0);
  8811. border:none;
  8812. border-radius:0px;
  8813. -moz-box-shadow:none;
  8814. -webkit-box-shadow:none;
  8815. box-shadow:none;
  8816. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8817. font-weight:650;
  8818. font-style:normal;
  8819. font-size:24px;
  8820. text-align:center;
  8821. }
  8822. #u32135 {
  8823. border-width:0px;
  8824. position:absolute;
  8825. left:558px;
  8826. top:1267px;
  8827. width:49px;
  8828. height:33px;
  8829. display:flex;
  8830. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8831. font-weight:650;
  8832. font-style:normal;
  8833. font-size:24px;
  8834. text-align:center;
  8835. }
  8836. #u32135 .text {
  8837. position:absolute;
  8838. align-self:center;
  8839. padding:0px 0px 0px 0px;
  8840. box-sizing:border-box;
  8841. width:100%;
  8842. }
  8843. #u32135_text {
  8844. border-width:0px;
  8845. white-space:nowrap;
  8846. text-transform:none;
  8847. }
  8848. #u32136_div {
  8849. border-width:0px;
  8850. position:absolute;
  8851. left:0px;
  8852. top:0px;
  8853. width:173px;
  8854. height:60px;
  8855. background:inherit;
  8856. background-color:rgba(255, 255, 255, 0);
  8857. box-sizing:border-box;
  8858. border-width:1px;
  8859. border-style:solid;
  8860. border-color:rgba(215, 215, 215, 1);
  8861. border-left:0px;
  8862. border-bottom:0px;
  8863. border-radius:0px;
  8864. border-top-left-radius:0px;
  8865. border-bottom-right-radius:0px;
  8866. -moz-box-shadow:none;
  8867. -webkit-box-shadow:none;
  8868. box-shadow:none;
  8869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8870. font-weight:400;
  8871. font-style:normal;
  8872. font-size:22px;
  8873. color:#0099FF;
  8874. text-align:center;
  8875. }
  8876. #u32136 {
  8877. border-width:0px;
  8878. position:absolute;
  8879. left:408px;
  8880. top:1388px;
  8881. width:173px;
  8882. height:60px;
  8883. display:flex;
  8884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8885. font-weight:400;
  8886. font-style:normal;
  8887. font-size:22px;
  8888. color:#0099FF;
  8889. text-align:center;
  8890. }
  8891. #u32136 .text {
  8892. position:absolute;
  8893. align-self:center;
  8894. padding:0px 0px 0px 0px;
  8895. box-sizing:border-box;
  8896. width:100%;
  8897. }
  8898. #u32136_text {
  8899. border-width:0px;
  8900. word-wrap:break-word;
  8901. text-transform:none;
  8902. }
  8903. #u32137_div {
  8904. border-width:0px;
  8905. position:absolute;
  8906. left:0px;
  8907. top:0px;
  8908. width:173px;
  8909. height:60px;
  8910. background:inherit;
  8911. background-color:rgba(255, 255, 255, 0);
  8912. box-sizing:border-box;
  8913. border-width:1px;
  8914. border-style:solid;
  8915. border-color:rgba(215, 215, 215, 1);
  8916. border-left:0px;
  8917. border-right:0px;
  8918. border-bottom:0px;
  8919. border-radius:0px;
  8920. border-top-left-radius:0px;
  8921. border-top-right-radius:0px;
  8922. -moz-box-shadow:none;
  8923. -webkit-box-shadow:none;
  8924. box-shadow:none;
  8925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8926. font-weight:400;
  8927. font-style:normal;
  8928. font-size:22px;
  8929. color:#0099FF;
  8930. text-align:center;
  8931. }
  8932. #u32137 {
  8933. border-width:0px;
  8934. position:absolute;
  8935. left:581px;
  8936. top:1388px;
  8937. width:173px;
  8938. height:60px;
  8939. display:flex;
  8940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8941. font-weight:400;
  8942. font-style:normal;
  8943. font-size:22px;
  8944. color:#0099FF;
  8945. text-align:center;
  8946. }
  8947. #u32137 .text {
  8948. position:absolute;
  8949. align-self:center;
  8950. padding:0px 0px 0px 0px;
  8951. box-sizing:border-box;
  8952. width:100%;
  8953. }
  8954. #u32137_text {
  8955. border-width:0px;
  8956. word-wrap:break-word;
  8957. text-transform:none;
  8958. }
  8959. #u32138_div {
  8960. border-width:0px;
  8961. position:absolute;
  8962. left:0px;
  8963. top:0px;
  8964. width:287px;
  8965. height:40px;
  8966. background:inherit;
  8967. background-color:rgba(255, 255, 255, 0);
  8968. border:none;
  8969. border-radius:0px;
  8970. -moz-box-shadow:none;
  8971. -webkit-box-shadow:none;
  8972. box-shadow:none;
  8973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8974. font-weight:400;
  8975. font-style:normal;
  8976. font-size:14px;
  8977. text-align:center;
  8978. }
  8979. #u32138 {
  8980. border-width:0px;
  8981. position:absolute;
  8982. left:441px;
  8983. top:1322px;
  8984. width:287px;
  8985. height:40px;
  8986. display:flex;
  8987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8988. font-weight:400;
  8989. font-style:normal;
  8990. font-size:14px;
  8991. text-align:center;
  8992. }
  8993. #u32138 .text {
  8994. position:absolute;
  8995. align-self:center;
  8996. padding:0px 0px 0px 0px;
  8997. box-sizing:border-box;
  8998. width:100%;
  8999. }
  9000. #u32138_text {
  9001. border-width:0px;
  9002. word-wrap:break-word;
  9003. text-transform:none;
  9004. }
  9005. #u32139 {
  9006. border-width:0px;
  9007. position:absolute;
  9008. left:0px;
  9009. top:0px;
  9010. width:0px;
  9011. height:0px;
  9012. }
  9013. #u32140_div {
  9014. border-width:0px;
  9015. position:absolute;
  9016. left:0px;
  9017. top:0px;
  9018. width:346px;
  9019. height:219px;
  9020. background:inherit;
  9021. background-color:rgba(255, 255, 255, 1);
  9022. border:none;
  9023. border-radius:9px;
  9024. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9025. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9026. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9027. }
  9028. #u32140 {
  9029. border-width:0px;
  9030. position:absolute;
  9031. left:30px;
  9032. top:1229px;
  9033. width:346px;
  9034. height:219px;
  9035. display:flex;
  9036. }
  9037. #u32140 .text {
  9038. position:absolute;
  9039. align-self:center;
  9040. padding:2px 2px 2px 2px;
  9041. box-sizing:border-box;
  9042. width:100%;
  9043. }
  9044. #u32140_text {
  9045. border-width:0px;
  9046. word-wrap:break-word;
  9047. text-transform:none;
  9048. visibility:hidden;
  9049. }
  9050. #u32141_div {
  9051. border-width:0px;
  9052. position:absolute;
  9053. left:0px;
  9054. top:0px;
  9055. width:49px;
  9056. height:33px;
  9057. background:inherit;
  9058. background-color:rgba(255, 255, 255, 0);
  9059. border:none;
  9060. border-radius:0px;
  9061. -moz-box-shadow:none;
  9062. -webkit-box-shadow:none;
  9063. box-shadow:none;
  9064. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9065. font-weight:650;
  9066. font-style:normal;
  9067. font-size:24px;
  9068. text-align:center;
  9069. }
  9070. #u32141 {
  9071. border-width:0px;
  9072. position:absolute;
  9073. left:179px;
  9074. top:1267px;
  9075. width:49px;
  9076. height:33px;
  9077. display:flex;
  9078. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9079. font-weight:650;
  9080. font-style:normal;
  9081. font-size:24px;
  9082. text-align:center;
  9083. }
  9084. #u32141 .text {
  9085. position:absolute;
  9086. align-self:center;
  9087. padding:0px 0px 0px 0px;
  9088. box-sizing:border-box;
  9089. width:100%;
  9090. }
  9091. #u32141_text {
  9092. border-width:0px;
  9093. white-space:nowrap;
  9094. text-transform:none;
  9095. }
  9096. #u32142_div {
  9097. border-width:0px;
  9098. position:absolute;
  9099. left:0px;
  9100. top:0px;
  9101. width:173px;
  9102. height:60px;
  9103. background:inherit;
  9104. background-color:rgba(255, 255, 255, 0);
  9105. box-sizing:border-box;
  9106. border-width:1px;
  9107. border-style:solid;
  9108. border-color:rgba(215, 215, 215, 1);
  9109. border-left:0px;
  9110. border-bottom:0px;
  9111. border-radius:0px;
  9112. border-top-left-radius:0px;
  9113. border-bottom-right-radius:0px;
  9114. -moz-box-shadow:none;
  9115. -webkit-box-shadow:none;
  9116. box-shadow:none;
  9117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9118. font-weight:400;
  9119. font-style:normal;
  9120. font-size:22px;
  9121. color:#0099FF;
  9122. text-align:center;
  9123. }
  9124. #u32142 {
  9125. border-width:0px;
  9126. position:absolute;
  9127. left:29px;
  9128. top:1388px;
  9129. width:173px;
  9130. height:60px;
  9131. display:flex;
  9132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9133. font-weight:400;
  9134. font-style:normal;
  9135. font-size:22px;
  9136. color:#0099FF;
  9137. text-align:center;
  9138. }
  9139. #u32142 .text {
  9140. position:absolute;
  9141. align-self:center;
  9142. padding:0px 0px 0px 0px;
  9143. box-sizing:border-box;
  9144. width:100%;
  9145. }
  9146. #u32142_text {
  9147. border-width:0px;
  9148. word-wrap:break-word;
  9149. text-transform:none;
  9150. }
  9151. #u32143_div {
  9152. border-width:0px;
  9153. position:absolute;
  9154. left:0px;
  9155. top:0px;
  9156. width:173px;
  9157. height:60px;
  9158. background:inherit;
  9159. background-color:rgba(255, 255, 255, 0);
  9160. box-sizing:border-box;
  9161. border-width:1px;
  9162. border-style:solid;
  9163. border-color:rgba(215, 215, 215, 1);
  9164. border-left:0px;
  9165. border-right:0px;
  9166. border-bottom:0px;
  9167. border-radius:0px;
  9168. border-top-left-radius:0px;
  9169. border-top-right-radius:0px;
  9170. -moz-box-shadow:none;
  9171. -webkit-box-shadow:none;
  9172. box-shadow:none;
  9173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9174. font-weight:400;
  9175. font-style:normal;
  9176. font-size:22px;
  9177. color:#0099FF;
  9178. text-align:center;
  9179. }
  9180. #u32143 {
  9181. border-width:0px;
  9182. position:absolute;
  9183. left:202px;
  9184. top:1388px;
  9185. width:173px;
  9186. height:60px;
  9187. display:flex;
  9188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9189. font-weight:400;
  9190. font-style:normal;
  9191. font-size:22px;
  9192. color:#0099FF;
  9193. text-align:center;
  9194. }
  9195. #u32143 .text {
  9196. position:absolute;
  9197. align-self:center;
  9198. padding:0px 0px 0px 0px;
  9199. box-sizing:border-box;
  9200. width:100%;
  9201. }
  9202. #u32143_text {
  9203. border-width:0px;
  9204. word-wrap:break-word;
  9205. text-transform:none;
  9206. }
  9207. #u32144_div {
  9208. border-width:0px;
  9209. position:absolute;
  9210. left:0px;
  9211. top:0px;
  9212. width:287px;
  9213. height:40px;
  9214. background:inherit;
  9215. background-color:rgba(255, 255, 255, 0);
  9216. border:none;
  9217. border-radius:0px;
  9218. -moz-box-shadow:none;
  9219. -webkit-box-shadow:none;
  9220. box-shadow:none;
  9221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9222. font-weight:400;
  9223. font-style:normal;
  9224. font-size:14px;
  9225. text-align:center;
  9226. }
  9227. #u32144 {
  9228. border-width:0px;
  9229. position:absolute;
  9230. left:62px;
  9231. top:1322px;
  9232. width:287px;
  9233. height:40px;
  9234. display:flex;
  9235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9236. font-weight:400;
  9237. font-style:normal;
  9238. font-size:14px;
  9239. text-align:center;
  9240. }
  9241. #u32144 .text {
  9242. position:absolute;
  9243. align-self:center;
  9244. padding:0px 0px 0px 0px;
  9245. box-sizing:border-box;
  9246. width:100%;
  9247. }
  9248. #u32144_text {
  9249. border-width:0px;
  9250. word-wrap:break-word;
  9251. text-transform:none;
  9252. }
  9253. #u32145_div {
  9254. border-width:0px;
  9255. position:absolute;
  9256. left:0px;
  9257. top:0px;
  9258. width:329px;
  9259. height:25px;
  9260. background:inherit;
  9261. background-color:rgba(255, 255, 255, 0);
  9262. border:none;
  9263. border-left:0px;
  9264. border-top:0px;
  9265. border-right:0px;
  9266. border-radius:0px;
  9267. border-bottom-right-radius:0px;
  9268. border-bottom-left-radius:0px;
  9269. -moz-box-shadow:none;
  9270. -webkit-box-shadow:none;
  9271. box-shadow:none;
  9272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9273. font-weight:400;
  9274. font-style:normal;
  9275. font-size:12px;
  9276. color:#D9001B;
  9277. line-height:25px;
  9278. }
  9279. #u32145 {
  9280. border-width:0px;
  9281. position:absolute;
  9282. left:426px;
  9283. top:1469px;
  9284. width:329px;
  9285. height:25px;
  9286. display:flex;
  9287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9288. font-weight:400;
  9289. font-style:normal;
  9290. font-size:12px;
  9291. color:#D9001B;
  9292. line-height:25px;
  9293. }
  9294. #u32145 .text {
  9295. position:absolute;
  9296. align-self:flex-start;
  9297. padding:0px 0px 0px 0px;
  9298. box-sizing:border-box;
  9299. width:100%;
  9300. }
  9301. #u32145_text {
  9302. border-width:0px;
  9303. word-wrap:break-word;
  9304. text-transform:none;
  9305. }