styles.css 137 KB

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