styles.css 238 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:2620px;
  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. #u15816 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1600px;
  25. height:1250px;
  26. }
  27. #u15817_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1480px;
  33. height:1200px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. border-radius:0px;
  37. filter:drop-shadow(none);
  38. transition:none;
  39. }
  40. #u15817 {
  41. border-width:0px;
  42. position:absolute;
  43. left:120px;
  44. top:50px;
  45. width:1480px;
  46. height:1200px;
  47. display:flex;
  48. transition:none;
  49. transform-origin:50% 50%;
  50. }
  51. #u15817 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u15817_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u15818_div {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:129px;
  70. height:22px;
  71. background:inherit;
  72. background-color:rgba(255, 255, 255, 0);
  73. border-radius:0px;
  74. filter:drop-shadow(none);
  75. transition:none;
  76. font-size:16px;
  77. color:#FFFFFF;
  78. }
  79. #u15818 {
  80. border-width:0px;
  81. position:absolute;
  82. left:49px;
  83. top:14px;
  84. width:129px;
  85. height:22px;
  86. display:flex;
  87. transition:none;
  88. transform-origin:50% 50%;
  89. font-size:16px;
  90. color:#FFFFFF;
  91. }
  92. #u15818 .text {
  93. position:absolute;
  94. align-self:flex-start;
  95. padding:0px 0px 0px 0px;
  96. box-sizing:border-box;
  97. width:100%;
  98. }
  99. #u15818_text {
  100. border-width:0px;
  101. white-space:nowrap;
  102. text-transform:none;
  103. }
  104. #u15819_div {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:1600px;
  110. height:50px;
  111. background:inherit;
  112. background-color:rgba(30, 42, 68, 1);
  113. border-radius:0px;
  114. filter:drop-shadow(none);
  115. transition:none;
  116. color:#AFB3B6;
  117. }
  118. #u15819 {
  119. border-width:0px;
  120. position:absolute;
  121. left:0px;
  122. top:0px;
  123. width:1600px;
  124. height:50px;
  125. display:flex;
  126. transition:none;
  127. transform-origin:50% 50%;
  128. color:#AFB3B6;
  129. }
  130. #u15819 .text {
  131. position:absolute;
  132. align-self:center;
  133. padding:2px 2px 2px 2px;
  134. box-sizing:border-box;
  135. width:100%;
  136. }
  137. #u15819_text {
  138. border-width:0px;
  139. word-wrap:break-word;
  140. text-transform:none;
  141. visibility:hidden;
  142. }
  143. #u15820 {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:0px;
  149. height:0px;
  150. }
  151. #u15821 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. transition:none;
  160. }
  161. #u15821 .text {
  162. position:absolute;
  163. align-self:center;
  164. padding:2px 2px 2px 2px;
  165. box-sizing:border-box;
  166. width:100%;
  167. }
  168. #u15821_img {
  169. border-width:0px;
  170. position:absolute;
  171. left:0px;
  172. top:0px;
  173. width:31px;
  174. height:31px;
  175. }
  176. #u15821_text {
  177. border-width:0px;
  178. word-wrap:break-word;
  179. text-transform:none;
  180. }
  181. #u15822_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:161px;
  187. height:22px;
  188. background:inherit;
  189. background-color:rgba(255, 255, 255, 0);
  190. border-radius:0px;
  191. filter:drop-shadow(none);
  192. transition:none;
  193. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  194. font-weight:400;
  195. font-style:normal;
  196. font-size:16px;
  197. color:#FFFFFF;
  198. }
  199. #u15822 {
  200. border-width:0px;
  201. position:absolute;
  202. left:62px;
  203. top:14px;
  204. width:161px;
  205. height:22px;
  206. display:flex;
  207. transition:none;
  208. transform-origin:50% 50%;
  209. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  210. font-weight:400;
  211. font-style:normal;
  212. font-size:16px;
  213. color:#FFFFFF;
  214. }
  215. #u15822 .text {
  216. position:absolute;
  217. align-self:flex-start;
  218. padding:0px 0px 0px 0px;
  219. box-sizing:border-box;
  220. width:100%;
  221. }
  222. #u15822_text {
  223. border-width:0px;
  224. white-space:nowrap;
  225. text-transform:none;
  226. }
  227. #u15823_div {
  228. border-width:0px;
  229. position:absolute;
  230. left:0px;
  231. top:0px;
  232. width:120px;
  233. height:1200px;
  234. background:inherit;
  235. background-color:rgba(30, 42, 68, 1);
  236. border-radius:0px;
  237. filter:drop-shadow(none);
  238. transition:none;
  239. color:#AFB3B6;
  240. }
  241. #u15823 {
  242. border-width:0px;
  243. position:absolute;
  244. left:0px;
  245. top:47px;
  246. width:120px;
  247. height:1200px;
  248. display:flex;
  249. transition:none;
  250. transform-origin:50% 50%;
  251. color:#AFB3B6;
  252. }
  253. #u15823 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u15823_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u15824 {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:0px;
  272. height:0px;
  273. }
  274. #u15825_div {
  275. border-width:0px;
  276. position:absolute;
  277. left:0px;
  278. top:0px;
  279. width:33px;
  280. height:22px;
  281. background:inherit;
  282. background-color:rgba(255, 255, 255, 0);
  283. border-radius:0px;
  284. filter:drop-shadow(none);
  285. transition:none;
  286. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  287. font-weight:400;
  288. font-style:normal;
  289. font-size:16px;
  290. color:#FFFFFF;
  291. }
  292. #u15825 {
  293. border-width:0px;
  294. position:absolute;
  295. left:39px;
  296. top:171px;
  297. width:33px;
  298. height:22px;
  299. display:flex;
  300. transition:none;
  301. transform-origin:50% 50%;
  302. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  303. font-weight:400;
  304. font-style:normal;
  305. font-size:16px;
  306. color:#FFFFFF;
  307. }
  308. #u15825 .text {
  309. position:absolute;
  310. align-self:flex-start;
  311. padding:0px 0px 0px 0px;
  312. box-sizing:border-box;
  313. width:100%;
  314. }
  315. #u15825_text {
  316. border-width:0px;
  317. white-space:nowrap;
  318. text-transform:none;
  319. }
  320. #u15826 {
  321. border-width:0px;
  322. position:absolute;
  323. left:20px;
  324. top:175px;
  325. width:14px;
  326. height:14px;
  327. display:flex;
  328. transition:none;
  329. }
  330. #u15826 .text {
  331. position:absolute;
  332. align-self:center;
  333. padding:2px 2px 2px 2px;
  334. box-sizing:border-box;
  335. width:100%;
  336. }
  337. #u15826_img {
  338. border-width:0px;
  339. position:absolute;
  340. left:0px;
  341. top:0px;
  342. width:14px;
  343. height:14px;
  344. }
  345. #u15826_text {
  346. border-width:0px;
  347. word-wrap:break-word;
  348. text-transform:none;
  349. visibility:hidden;
  350. }
  351. #u15827 {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:0px;
  357. height:0px;
  358. }
  359. #u15828_div {
  360. border-width:0px;
  361. position:absolute;
  362. left:0px;
  363. top:0px;
  364. width:33px;
  365. height:22px;
  366. background:inherit;
  367. background-color:rgba(255, 255, 255, 0);
  368. border-radius:0px;
  369. filter:drop-shadow(none);
  370. transition:none;
  371. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  372. font-weight:400;
  373. font-style:normal;
  374. font-size:16px;
  375. color:#FFFFFF;
  376. }
  377. #u15828 {
  378. border-width:0px;
  379. position:absolute;
  380. left:39px;
  381. top:381px;
  382. width:33px;
  383. height:22px;
  384. display:flex;
  385. transition:none;
  386. transform-origin:50% 50%;
  387. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  388. font-weight:400;
  389. font-style:normal;
  390. font-size:16px;
  391. color:#FFFFFF;
  392. }
  393. #u15828 .text {
  394. position:absolute;
  395. align-self:flex-start;
  396. padding:0px 0px 0px 0px;
  397. box-sizing:border-box;
  398. width:100%;
  399. }
  400. #u15828_text {
  401. border-width:0px;
  402. white-space:nowrap;
  403. text-transform:none;
  404. }
  405. #u15829 {
  406. border-width:0px;
  407. position:absolute;
  408. left:20px;
  409. top:385px;
  410. width:14px;
  411. height:14px;
  412. display:flex;
  413. transition:none;
  414. }
  415. #u15829 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:2px 2px 2px 2px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u15829_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:14px;
  428. height:14px;
  429. }
  430. #u15829_text {
  431. border-width:0px;
  432. word-wrap:break-word;
  433. text-transform:none;
  434. visibility:hidden;
  435. }
  436. #u15830 {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:0px;
  442. height:0px;
  443. }
  444. #u15831_div {
  445. border-width:0px;
  446. position:absolute;
  447. left:0px;
  448. top:0px;
  449. width:49px;
  450. height:22px;
  451. background:inherit;
  452. background-color:rgba(255, 255, 255, 0);
  453. border-radius:0px;
  454. filter:drop-shadow(none);
  455. transition:none;
  456. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  457. font-weight:400;
  458. font-style:normal;
  459. font-size:16px;
  460. color:#FFFFFF;
  461. }
  462. #u15831 {
  463. border-width:0px;
  464. position:absolute;
  465. left:39px;
  466. top:133px;
  467. width:49px;
  468. height:22px;
  469. display:flex;
  470. transition:none;
  471. transform-origin:50% 50%;
  472. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  473. font-weight:400;
  474. font-style:normal;
  475. font-size:16px;
  476. color:#FFFFFF;
  477. }
  478. #u15831 .text {
  479. position:absolute;
  480. align-self:flex-start;
  481. padding:0px 0px 0px 0px;
  482. box-sizing:border-box;
  483. width:100%;
  484. }
  485. #u15831_text {
  486. border-width:0px;
  487. white-space:nowrap;
  488. text-transform:none;
  489. }
  490. #u15832 {
  491. border-width:0px;
  492. position:absolute;
  493. left:20px;
  494. top:137px;
  495. width:14px;
  496. height:14px;
  497. display:flex;
  498. transition:none;
  499. }
  500. #u15832 .text {
  501. position:absolute;
  502. align-self:center;
  503. padding:2px 2px 2px 2px;
  504. box-sizing:border-box;
  505. width:100%;
  506. }
  507. #u15832_img {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:14px;
  513. height:14px;
  514. }
  515. #u15832_text {
  516. border-width:0px;
  517. word-wrap:break-word;
  518. text-transform:none;
  519. visibility:hidden;
  520. }
  521. #u15833 {
  522. border-width:0px;
  523. position:absolute;
  524. left:0px;
  525. top:0px;
  526. width:0px;
  527. height:0px;
  528. }
  529. #u15834_div {
  530. border-width:0px;
  531. position:absolute;
  532. left:0px;
  533. top:0px;
  534. width:33px;
  535. height:22px;
  536. background:inherit;
  537. background-color:rgba(255, 255, 255, 0);
  538. border-radius:0px;
  539. filter:drop-shadow(none);
  540. transition:none;
  541. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  542. font-weight:400;
  543. font-style:normal;
  544. font-size:16px;
  545. color:#FFFFFF;
  546. }
  547. #u15834 {
  548. border-width:0px;
  549. position:absolute;
  550. left:39px;
  551. top:423px;
  552. width:33px;
  553. height:22px;
  554. display:flex;
  555. transition:none;
  556. transform-origin:50% 50%;
  557. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  558. font-weight:400;
  559. font-style:normal;
  560. font-size:16px;
  561. color:#FFFFFF;
  562. }
  563. #u15834 .text {
  564. position:absolute;
  565. align-self:flex-start;
  566. padding:0px 0px 0px 0px;
  567. box-sizing:border-box;
  568. width:100%;
  569. }
  570. #u15834_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u15835 {
  576. border-width:0px;
  577. position:absolute;
  578. left:20px;
  579. top:427px;
  580. width:14px;
  581. height:14px;
  582. display:flex;
  583. transition:none;
  584. }
  585. #u15835 .text {
  586. position:absolute;
  587. align-self:center;
  588. padding:2px 2px 2px 2px;
  589. box-sizing:border-box;
  590. width:100%;
  591. }
  592. #u15835_img {
  593. border-width:0px;
  594. position:absolute;
  595. left:0px;
  596. top:0px;
  597. width:14px;
  598. height:14px;
  599. }
  600. #u15835_text {
  601. border-width:0px;
  602. word-wrap:break-word;
  603. text-transform:none;
  604. visibility:hidden;
  605. }
  606. #u15836 {
  607. border-width:0px;
  608. position:absolute;
  609. left:0px;
  610. top:0px;
  611. width:0px;
  612. height:0px;
  613. }
  614. #u15837_div {
  615. border-width:0px;
  616. position:absolute;
  617. left:0px;
  618. top:0px;
  619. width:33px;
  620. height:22px;
  621. background:inherit;
  622. background-color:rgba(255, 255, 255, 0);
  623. border-radius:0px;
  624. filter:drop-shadow(none);
  625. transition:none;
  626. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  627. font-weight:400;
  628. font-style:normal;
  629. font-size:16px;
  630. color:#FFFFFF;
  631. }
  632. #u15837 {
  633. border-width:0px;
  634. position:absolute;
  635. left:39px;
  636. top:297px;
  637. width:33px;
  638. height:22px;
  639. display:flex;
  640. transition:none;
  641. transform-origin:50% 50%;
  642. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  643. font-weight:400;
  644. font-style:normal;
  645. font-size:16px;
  646. color:#FFFFFF;
  647. }
  648. #u15837 .text {
  649. position:absolute;
  650. align-self:flex-start;
  651. padding:0px 0px 0px 0px;
  652. box-sizing:border-box;
  653. width:100%;
  654. }
  655. #u15837_text {
  656. border-width:0px;
  657. white-space:nowrap;
  658. text-transform:none;
  659. }
  660. #u15838 {
  661. border-width:0px;
  662. position:absolute;
  663. left:20px;
  664. top:301px;
  665. width:14px;
  666. height:14px;
  667. display:flex;
  668. transition:none;
  669. }
  670. #u15838 .text {
  671. position:absolute;
  672. align-self:center;
  673. padding:2px 2px 2px 2px;
  674. box-sizing:border-box;
  675. width:100%;
  676. }
  677. #u15838_img {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:14px;
  683. height:14px;
  684. }
  685. #u15838_text {
  686. border-width:0px;
  687. word-wrap:break-word;
  688. text-transform:none;
  689. visibility:hidden;
  690. }
  691. #u15839 {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:0px;
  697. height:0px;
  698. }
  699. #u15840_div {
  700. border-width:0px;
  701. position:absolute;
  702. left:0px;
  703. top:0px;
  704. width:33px;
  705. height:22px;
  706. background:inherit;
  707. background-color:rgba(255, 255, 255, 0);
  708. border-radius:0px;
  709. filter:drop-shadow(none);
  710. transition:none;
  711. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  712. font-weight:400;
  713. font-style:normal;
  714. font-size:16px;
  715. color:#FFFFFF;
  716. }
  717. #u15840 {
  718. border-width:0px;
  719. position:absolute;
  720. left:39px;
  721. top:213px;
  722. width:33px;
  723. height:22px;
  724. display:flex;
  725. transition:none;
  726. transform-origin:50% 50%;
  727. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  728. font-weight:400;
  729. font-style:normal;
  730. font-size:16px;
  731. color:#FFFFFF;
  732. }
  733. #u15840 .text {
  734. position:absolute;
  735. align-self:flex-start;
  736. padding:0px 0px 0px 0px;
  737. box-sizing:border-box;
  738. width:100%;
  739. }
  740. #u15840_text {
  741. border-width:0px;
  742. white-space:nowrap;
  743. text-transform:none;
  744. }
  745. #u15841 {
  746. border-width:0px;
  747. position:absolute;
  748. left:20px;
  749. top:217px;
  750. width:14px;
  751. height:14px;
  752. display:flex;
  753. transition:none;
  754. }
  755. #u15841 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:2px 2px 2px 2px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u15841_img {
  763. border-width:0px;
  764. position:absolute;
  765. left:0px;
  766. top:0px;
  767. width:14px;
  768. height:14px;
  769. }
  770. #u15841_text {
  771. border-width:0px;
  772. word-wrap:break-word;
  773. text-transform:none;
  774. visibility:hidden;
  775. }
  776. #u15842 {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:0px;
  782. height:0px;
  783. }
  784. #u15843_div {
  785. border-width:0px;
  786. position:absolute;
  787. left:0px;
  788. top:0px;
  789. width:33px;
  790. height:22px;
  791. background:inherit;
  792. background-color:rgba(255, 255, 255, 0);
  793. border-radius:0px;
  794. filter:drop-shadow(none);
  795. transition:none;
  796. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  797. font-weight:400;
  798. font-style:normal;
  799. font-size:16px;
  800. color:#FFFFFF;
  801. }
  802. #u15843 {
  803. border-width:0px;
  804. position:absolute;
  805. left:39px;
  806. top:339px;
  807. width:33px;
  808. height:22px;
  809. display:flex;
  810. transition:none;
  811. transform-origin:50% 50%;
  812. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  813. font-weight:400;
  814. font-style:normal;
  815. font-size:16px;
  816. color:#FFFFFF;
  817. }
  818. #u15843 .text {
  819. position:absolute;
  820. align-self:flex-start;
  821. padding:0px 0px 0px 0px;
  822. box-sizing:border-box;
  823. width:100%;
  824. }
  825. #u15843_text {
  826. border-width:0px;
  827. white-space:nowrap;
  828. text-transform:none;
  829. }
  830. #u15844 {
  831. border-width:0px;
  832. position:absolute;
  833. left:20px;
  834. top:343px;
  835. width:14px;
  836. height:14px;
  837. display:flex;
  838. transition:none;
  839. }
  840. #u15844 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 2px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u15844_img {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:14px;
  853. height:14px;
  854. }
  855. #u15844_text {
  856. border-width:0px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. visibility:hidden;
  860. }
  861. #u15845 {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:0px;
  867. height:0px;
  868. }
  869. #u15846_div {
  870. border-width:0px;
  871. position:absolute;
  872. left:0px;
  873. top:0px;
  874. width:33px;
  875. height:22px;
  876. background:inherit;
  877. background-color:rgba(255, 255, 255, 0);
  878. border-radius:0px;
  879. filter:drop-shadow(none);
  880. transition:none;
  881. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u15846 {
  888. border-width:0px;
  889. position:absolute;
  890. left:39px;
  891. top:465px;
  892. width:33px;
  893. height:22px;
  894. display:flex;
  895. transition:none;
  896. transform-origin:50% 50%;
  897. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  898. font-weight:400;
  899. font-style:normal;
  900. font-size:16px;
  901. color:#FFFFFF;
  902. }
  903. #u15846 .text {
  904. position:absolute;
  905. align-self:flex-start;
  906. padding:0px 0px 0px 0px;
  907. box-sizing:border-box;
  908. width:100%;
  909. }
  910. #u15846_text {
  911. border-width:0px;
  912. white-space:nowrap;
  913. text-transform:none;
  914. }
  915. #u15847 {
  916. border-width:0px;
  917. position:absolute;
  918. left:20px;
  919. top:469px;
  920. width:14px;
  921. height:14px;
  922. display:flex;
  923. transition:none;
  924. }
  925. #u15847 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u15847_img {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:14px;
  938. height:14px;
  939. }
  940. #u15847_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. visibility:hidden;
  945. }
  946. #u15848 {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:0px;
  952. height:0px;
  953. }
  954. #u15849_div {
  955. border-width:0px;
  956. position:absolute;
  957. left:0px;
  958. top:0px;
  959. width:29px;
  960. height:20px;
  961. background:inherit;
  962. background-color:rgba(255, 255, 255, 0);
  963. border-radius:25px;
  964. filter:drop-shadow(none);
  965. transition:none;
  966. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  967. font-weight:400;
  968. font-style:normal;
  969. color:#FFFFFF;
  970. }
  971. #u15849 {
  972. border-width:0px;
  973. position:absolute;
  974. left:52px;
  975. top:1145px;
  976. width:29px;
  977. height:20px;
  978. display:flex;
  979. transition:none;
  980. transform-origin:50% 50%;
  981. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  982. font-weight:400;
  983. font-style:normal;
  984. color:#FFFFFF;
  985. }
  986. #u15849 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:0px 0px 0px 0px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u15849_text {
  994. border-width:0px;
  995. white-space:nowrap;
  996. text-transform:none;
  997. }
  998. #u15850 {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:20px;
  1002. top:1144px;
  1003. width:22px;
  1004. height:22px;
  1005. display:flex;
  1006. transition:none;
  1007. }
  1008. #u15850 .text {
  1009. position:absolute;
  1010. align-self:center;
  1011. padding:2px 2px 2px 2px;
  1012. box-sizing:border-box;
  1013. width:100%;
  1014. }
  1015. #u15850_img {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:22px;
  1021. height:22px;
  1022. }
  1023. #u15850_text {
  1024. border-width:0px;
  1025. word-wrap:break-word;
  1026. text-transform:none;
  1027. visibility:hidden;
  1028. }
  1029. #u15851 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:0px;
  1035. height:0px;
  1036. }
  1037. #u15852_div {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:0px;
  1041. top:0px;
  1042. width:29px;
  1043. height:20px;
  1044. background:inherit;
  1045. background-color:rgba(255, 255, 255, 0);
  1046. border-radius:25px;
  1047. filter:drop-shadow(none);
  1048. transition:none;
  1049. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1050. font-weight:400;
  1051. font-style:normal;
  1052. color:#FFFFFF;
  1053. }
  1054. #u15852 {
  1055. border-width:0px;
  1056. position:absolute;
  1057. left:52px;
  1058. top:1187px;
  1059. width:29px;
  1060. height:20px;
  1061. display:flex;
  1062. transition:none;
  1063. transform-origin:50% 50%;
  1064. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1065. font-weight:400;
  1066. font-style:normal;
  1067. color:#FFFFFF;
  1068. }
  1069. #u15852 .text {
  1070. position:absolute;
  1071. align-self:center;
  1072. padding:0px 0px 0px 0px;
  1073. box-sizing:border-box;
  1074. width:100%;
  1075. }
  1076. #u15852_text {
  1077. border-width:0px;
  1078. white-space:nowrap;
  1079. text-transform:none;
  1080. }
  1081. #u15853 {
  1082. border-width:0px;
  1083. position:absolute;
  1084. left:20px;
  1085. top:1186px;
  1086. width:22px;
  1087. height:22px;
  1088. display:flex;
  1089. transition:none;
  1090. }
  1091. #u15853 .text {
  1092. position:absolute;
  1093. align-self:center;
  1094. padding:2px 2px 2px 2px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u15853_img {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:22px;
  1104. height:22px;
  1105. }
  1106. #u15853_text {
  1107. border-width:0px;
  1108. word-wrap:break-word;
  1109. text-transform:none;
  1110. visibility:hidden;
  1111. }
  1112. #u15854 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:0px;
  1118. height:0px;
  1119. }
  1120. #u15855_div {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:0px;
  1124. top:0px;
  1125. width:33px;
  1126. height:22px;
  1127. background:inherit;
  1128. background-color:rgba(255, 255, 255, 0);
  1129. border-radius:0px;
  1130. filter:drop-shadow(none);
  1131. transition:none;
  1132. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1133. font-weight:400;
  1134. font-style:normal;
  1135. font-size:16px;
  1136. color:#FFFFFF;
  1137. }
  1138. #u15855 {
  1139. border-width:0px;
  1140. position:absolute;
  1141. left:39px;
  1142. top:255px;
  1143. width:33px;
  1144. height:22px;
  1145. display:flex;
  1146. transition:none;
  1147. transform-origin:50% 50%;
  1148. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. font-size:16px;
  1152. color:#FFFFFF;
  1153. }
  1154. #u15855 .text {
  1155. position:absolute;
  1156. align-self:flex-start;
  1157. padding:0px 0px 0px 0px;
  1158. box-sizing:border-box;
  1159. width:100%;
  1160. }
  1161. #u15855_text {
  1162. border-width:0px;
  1163. white-space:nowrap;
  1164. text-transform:none;
  1165. }
  1166. #u15856 {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:20px;
  1170. top:259px;
  1171. width:14px;
  1172. height:14px;
  1173. display:flex;
  1174. transition:none;
  1175. }
  1176. #u15856 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u15856_img {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:14px;
  1189. height:14px;
  1190. }
  1191. #u15856_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. visibility:hidden;
  1196. }
  1197. #u15857 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:0px;
  1203. height:0px;
  1204. }
  1205. #u15858_input {
  1206. position:absolute;
  1207. left:0px;
  1208. top:0px;
  1209. width:214px;
  1210. height:27px;
  1211. padding:2px 2px 2px 2px;
  1212. font-family:"ArialMT", "Arial", sans-serif;
  1213. font-weight:400;
  1214. font-style:normal;
  1215. font-size:14px;
  1216. letter-spacing:normal;
  1217. color:#FFFFFF;
  1218. vertical-align:none;
  1219. text-align:left;
  1220. text-transform:none;
  1221. background-color:transparent;
  1222. border-color:transparent;
  1223. }
  1224. #u15858_input.disabled {
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. padding:2px 2px 2px 2px;
  1231. font-family:"ArialMT", "Arial", sans-serif;
  1232. font-weight:400;
  1233. font-style:normal;
  1234. font-size:14px;
  1235. letter-spacing:normal;
  1236. color:#FFFFFF;
  1237. vertical-align:none;
  1238. text-align:left;
  1239. text-transform:none;
  1240. background-color:transparent;
  1241. border-color:transparent;
  1242. }
  1243. #u15858_div {
  1244. border-width:0px;
  1245. position:absolute;
  1246. left:0px;
  1247. top:0px;
  1248. width:214px;
  1249. height:27px;
  1250. background:inherit;
  1251. background-color:rgba(255, 255, 255, 0);
  1252. border-radius:0px;
  1253. filter:drop-shadow(none);
  1254. transition:none;
  1255. font-size:14px;
  1256. color:#FFFFFF;
  1257. }
  1258. #u15858 {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:1221px;
  1262. top:11px;
  1263. width:214px;
  1264. height:27px;
  1265. display:flex;
  1266. transition:none;
  1267. transform-origin:50% 50%;
  1268. font-size:14px;
  1269. color:#FFFFFF;
  1270. }
  1271. #u15858 .text {
  1272. position:absolute;
  1273. align-self:flex-start;
  1274. padding:2px 2px 2px 2px;
  1275. box-sizing:border-box;
  1276. width:100%;
  1277. }
  1278. #u15858_div.disabled {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:0px;
  1282. top:0px;
  1283. width:214px;
  1284. height:27px;
  1285. background:inherit;
  1286. background-color:rgba(240, 240, 240, 1);
  1287. border-radius:0px;
  1288. filter:drop-shadow(none);
  1289. transition:none;
  1290. font-size:14px;
  1291. color:#FFFFFF;
  1292. }
  1293. #u15858.disabled {
  1294. }
  1295. .u15858_input_option {
  1296. font-size:14px;
  1297. }
  1298. #u15859 {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:1194px;
  1302. top:14px;
  1303. width:22px;
  1304. height:22px;
  1305. display:flex;
  1306. transition:none;
  1307. }
  1308. #u15859 .text {
  1309. position:absolute;
  1310. align-self:center;
  1311. padding:2px 2px 2px 2px;
  1312. box-sizing:border-box;
  1313. width:100%;
  1314. }
  1315. #u15859_img {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:0px;
  1319. top:0px;
  1320. width:22px;
  1321. height:22px;
  1322. }
  1323. #u15859_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u15860_div {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:100px;
  1335. height:24px;
  1336. background:inherit;
  1337. background-color:rgba(242, 242, 242, 0.2);
  1338. border-radius:25px;
  1339. filter:drop-shadow(none);
  1340. transition:none;
  1341. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1342. font-weight:400;
  1343. font-style:normal;
  1344. color:#FFFFFF;
  1345. text-align:center;
  1346. }
  1347. #u15860 {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:1480px;
  1351. top:13px;
  1352. width:100px;
  1353. height:24px;
  1354. display:flex;
  1355. transition:none;
  1356. transform-origin:50% 50%;
  1357. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1358. font-weight:400;
  1359. font-style:normal;
  1360. color:#FFFFFF;
  1361. text-align:center;
  1362. }
  1363. #u15860 .text {
  1364. position:absolute;
  1365. align-self:center;
  1366. padding:0px 0px 0px 0px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u15860_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. }
  1375. #u15861 {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:1452px;
  1379. top:19px;
  1380. width:1px;
  1381. height:11px;
  1382. display:flex;
  1383. transition:none;
  1384. }
  1385. #u15861 .text {
  1386. position:absolute;
  1387. align-self:center;
  1388. padding:2px 2px 2px 2px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u15861_img {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:2px;
  1398. height:12px;
  1399. }
  1400. #u15861_text {
  1401. border-width:0px;
  1402. word-wrap:break-word;
  1403. text-transform:none;
  1404. visibility:hidden;
  1405. }
  1406. #u15862 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:0px;
  1412. height:0px;
  1413. }
  1414. #u15863_div {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:0px;
  1418. top:0px;
  1419. width:29px;
  1420. height:20px;
  1421. background:inherit;
  1422. background-color:rgba(255, 255, 255, 0);
  1423. border-radius:25px;
  1424. filter:drop-shadow(none);
  1425. transition:none;
  1426. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1427. font-weight:400;
  1428. font-style:normal;
  1429. color:#FFFFFF;
  1430. }
  1431. #u15863 {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:52px;
  1435. top:1082px;
  1436. width:29px;
  1437. height:20px;
  1438. display:flex;
  1439. transition:none;
  1440. transform-origin:50% 50%;
  1441. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1442. font-weight:400;
  1443. font-style:normal;
  1444. color:#FFFFFF;
  1445. }
  1446. #u15863 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:0px 0px 0px 0px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u15863_text {
  1454. border-width:0px;
  1455. white-space:nowrap;
  1456. text-transform:none;
  1457. }
  1458. #u15864 {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:20px;
  1462. top:1081px;
  1463. width:22px;
  1464. height:22px;
  1465. display:flex;
  1466. transition:none;
  1467. }
  1468. #u15864 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:2px 2px 2px 2px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u15864_img {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:22px;
  1481. height:22px;
  1482. }
  1483. #u15864_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u15865 {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:20px;
  1493. top:1123px;
  1494. width:68px;
  1495. height:1px;
  1496. display:flex;
  1497. transition:none;
  1498. }
  1499. #u15865 .text {
  1500. position:absolute;
  1501. align-self:center;
  1502. padding:2px 2px 2px 2px;
  1503. box-sizing:border-box;
  1504. width:100%;
  1505. }
  1506. #u15865_img {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:69px;
  1512. height:2px;
  1513. }
  1514. #u15865_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u15866 {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:20px;
  1524. top:1061px;
  1525. width:68px;
  1526. height:1px;
  1527. display:flex;
  1528. transition:none;
  1529. }
  1530. #u15866 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:2px 2px 2px 2px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u15866_img {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:69px;
  1543. height:2px;
  1544. }
  1545. #u15866_text {
  1546. border-width:0px;
  1547. word-wrap:break-word;
  1548. text-transform:none;
  1549. visibility:hidden;
  1550. }
  1551. #u15867 {
  1552. border-width:0px;
  1553. position:absolute;
  1554. left:20px;
  1555. top:112px;
  1556. width:56px;
  1557. height:1px;
  1558. display:flex;
  1559. transition:none;
  1560. }
  1561. #u15867 .text {
  1562. position:absolute;
  1563. align-self:center;
  1564. padding:2px 2px 2px 2px;
  1565. box-sizing:border-box;
  1566. width:100%;
  1567. }
  1568. #u15867_img {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:57px;
  1574. height:2px;
  1575. }
  1576. #u15867_text {
  1577. border-width:0px;
  1578. word-wrap:break-word;
  1579. text-transform:none;
  1580. visibility:hidden;
  1581. }
  1582. #u15868 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:0px;
  1588. height:0px;
  1589. }
  1590. #u15869_div {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:0px;
  1594. top:0px;
  1595. width:33px;
  1596. height:22px;
  1597. background:inherit;
  1598. background-color:rgba(255, 255, 255, 0);
  1599. border-radius:0px;
  1600. filter:drop-shadow(none);
  1601. transition:none;
  1602. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. font-size:16px;
  1606. color:#FFFFFF;
  1607. }
  1608. #u15869 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:43px;
  1612. top:71px;
  1613. width:33px;
  1614. height:22px;
  1615. display:flex;
  1616. transition:none;
  1617. transform-origin:50% 50%;
  1618. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1619. font-weight:400;
  1620. font-style:normal;
  1621. font-size:16px;
  1622. color:#FFFFFF;
  1623. }
  1624. #u15869 .text {
  1625. position:absolute;
  1626. align-self:flex-start;
  1627. padding:0px 0px 0px 0px;
  1628. box-sizing:border-box;
  1629. width:100%;
  1630. }
  1631. #u15869_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u15870 {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:20px;
  1640. top:75px;
  1641. width:18px;
  1642. height:14px;
  1643. display:flex;
  1644. transition:none;
  1645. }
  1646. #u15870 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 2px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u15870_img {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:0px;
  1657. top:0px;
  1658. width:18px;
  1659. height:14px;
  1660. }
  1661. #u15870_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u15871_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:1259px;
  1673. height:1180px;
  1674. background:inherit;
  1675. background-color:rgba(255, 255, 255, 1);
  1676. border-radius:0px;
  1677. filter:drop-shadow(none);
  1678. transition:none;
  1679. }
  1680. #u15871 {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:330px;
  1684. top:50px;
  1685. width:1259px;
  1686. height:1180px;
  1687. display:flex;
  1688. transition:none;
  1689. transform-origin:50% 50%;
  1690. }
  1691. #u15871 .text {
  1692. position:absolute;
  1693. align-self:center;
  1694. padding:2px 2px 2px 2px;
  1695. box-sizing:border-box;
  1696. width:100%;
  1697. }
  1698. #u15871_text {
  1699. border-width:0px;
  1700. word-wrap:break-word;
  1701. text-transform:none;
  1702. visibility:hidden;
  1703. }
  1704. #u15872_div {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:0px;
  1708. top:0px;
  1709. width:60px;
  1710. height:30px;
  1711. background:inherit;
  1712. background-color:rgba(24, 144, 255, 1);
  1713. border-radius:4px;
  1714. filter:drop-shadow(none);
  1715. transition:none;
  1716. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1717. font-weight:400;
  1718. font-style:normal;
  1719. font-size:14px;
  1720. color:#FFFFFF;
  1721. }
  1722. #u15872 {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:550px;
  1726. top:239px;
  1727. width:60px;
  1728. height:30px;
  1729. display:flex;
  1730. transition:none;
  1731. transform-origin:50% 50%;
  1732. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1733. font-weight:400;
  1734. font-style:normal;
  1735. font-size:14px;
  1736. color:#FFFFFF;
  1737. }
  1738. #u15872 .text {
  1739. position:absolute;
  1740. align-self:center;
  1741. padding:2px 2px 2px 2px;
  1742. box-sizing:border-box;
  1743. width:100%;
  1744. }
  1745. #u15872_text {
  1746. border-width:0px;
  1747. word-wrap:break-word;
  1748. text-transform:none;
  1749. }
  1750. #u15873_div {
  1751. border-width:0px;
  1752. position:absolute;
  1753. left:0px;
  1754. top:0px;
  1755. width:73px;
  1756. height:50px;
  1757. background:inherit;
  1758. background-color:rgba(255, 255, 255, 0);
  1759. border-left:0px;
  1760. border-top:0px;
  1761. border-right:0px;
  1762. border-radius:0px;
  1763. border-bottom-right-radius:0px;
  1764. border-bottom-left-radius:0px;
  1765. filter:drop-shadow(none);
  1766. transition:none;
  1767. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1768. font-weight:400;
  1769. font-style:normal;
  1770. font-size:18px;
  1771. }
  1772. #u15873 {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:349px;
  1776. top:52px;
  1777. width:73px;
  1778. height:50px;
  1779. display:flex;
  1780. transition:none;
  1781. transform-origin:50% 50%;
  1782. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1783. font-weight:400;
  1784. font-style:normal;
  1785. font-size:18px;
  1786. }
  1787. #u15873 .text {
  1788. position:absolute;
  1789. align-self:center;
  1790. padding:0px 0px 0px 0px;
  1791. box-sizing:border-box;
  1792. width:100%;
  1793. }
  1794. #u15873_text {
  1795. border-width:0px;
  1796. white-space:nowrap;
  1797. text-transform:none;
  1798. }
  1799. #u15874 {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:0px;
  1803. top:0px;
  1804. width:0px;
  1805. height:0px;
  1806. }
  1807. #u15875_div {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:0px;
  1811. top:0px;
  1812. width:60px;
  1813. height:30px;
  1814. background:inherit;
  1815. background-color:rgba(24, 144, 255, 1);
  1816. border-radius:4px;
  1817. filter:drop-shadow(none);
  1818. transition:none;
  1819. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1820. font-weight:400;
  1821. font-style:normal;
  1822. font-size:14px;
  1823. color:#FFFFFF;
  1824. }
  1825. #u15875 {
  1826. border-width:0px;
  1827. position:absolute;
  1828. left:844px;
  1829. top:190px;
  1830. width:60px;
  1831. height:30px;
  1832. display:flex;
  1833. transition:none;
  1834. transform-origin:50% 50%;
  1835. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1836. font-weight:400;
  1837. font-style:normal;
  1838. font-size:14px;
  1839. color:#FFFFFF;
  1840. }
  1841. #u15875 .text {
  1842. position:absolute;
  1843. align-self:center;
  1844. padding:2px 2px 2px 2px;
  1845. box-sizing:border-box;
  1846. width:100%;
  1847. }
  1848. #u15875_text {
  1849. border-width:0px;
  1850. word-wrap:break-word;
  1851. text-transform:none;
  1852. }
  1853. #u15876_div {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:0px;
  1857. top:0px;
  1858. width:60px;
  1859. height:30px;
  1860. background:inherit;
  1861. background-color:rgba(255, 255, 255, 1);
  1862. box-sizing:border-box;
  1863. border-width:1px;
  1864. border-style:solid;
  1865. border-color:rgba(170, 170, 170, 1);
  1866. border-radius:4px;
  1867. filter:drop-shadow(none);
  1868. transition:none;
  1869. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1870. font-weight:400;
  1871. font-style:normal;
  1872. font-size:14px;
  1873. }
  1874. #u15876 {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:914px;
  1878. top:190px;
  1879. width:60px;
  1880. height:30px;
  1881. display:flex;
  1882. transition:none;
  1883. transform-origin:50% 50%;
  1884. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1885. font-weight:400;
  1886. font-style:normal;
  1887. font-size:14px;
  1888. }
  1889. #u15876 .text {
  1890. position:absolute;
  1891. align-self:center;
  1892. padding:2px 2px 2px 2px;
  1893. box-sizing:border-box;
  1894. width:100%;
  1895. }
  1896. #u15876_text {
  1897. border-width:0px;
  1898. word-wrap:break-word;
  1899. text-transform:none;
  1900. }
  1901. #u15877 {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:0px;
  1905. top:0px;
  1906. width:0px;
  1907. height:0px;
  1908. }
  1909. #u15878_div {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:140px;
  1915. height:30px;
  1916. background:inherit;
  1917. background-color:rgba(255, 255, 255, 1);
  1918. box-sizing:border-box;
  1919. border-width:1px;
  1920. border-style:solid;
  1921. border-color:rgba(215, 215, 215, 1);
  1922. border-radius:4px;
  1923. filter:drop-shadow(none);
  1924. transition:none;
  1925. font-size:14px;
  1926. }
  1927. #u15878 {
  1928. border-width:0px;
  1929. position:absolute;
  1930. left:698px;
  1931. top:150px;
  1932. width:140px;
  1933. height:30px;
  1934. display:flex;
  1935. transition:none;
  1936. transform-origin:50% 50%;
  1937. font-size:14px;
  1938. }
  1939. #u15878 .text {
  1940. position:absolute;
  1941. align-self:center;
  1942. padding:2px 2px 2px 2px;
  1943. box-sizing:border-box;
  1944. width:100%;
  1945. }
  1946. #u15878_text {
  1947. border-width:0px;
  1948. word-wrap:break-word;
  1949. text-transform:none;
  1950. visibility:hidden;
  1951. }
  1952. #u15879_input {
  1953. position:absolute;
  1954. left:0px;
  1955. top:0px;
  1956. width:134px;
  1957. height:23px;
  1958. padding:2px 2px 2px 2px;
  1959. font-family:"ArialMT", "Arial", sans-serif;
  1960. font-weight:400;
  1961. font-style:normal;
  1962. font-size:14px;
  1963. letter-spacing:normal;
  1964. color:#AAAAAA;
  1965. vertical-align:none;
  1966. text-align:left;
  1967. text-transform:none;
  1968. background-color:transparent;
  1969. border-color:transparent;
  1970. }
  1971. #u15879_input.disabled {
  1972. position:absolute;
  1973. left:0px;
  1974. top:0px;
  1975. width:134px;
  1976. height:23px;
  1977. padding:2px 2px 2px 2px;
  1978. font-family:"ArialMT", "Arial", sans-serif;
  1979. font-weight:400;
  1980. font-style:normal;
  1981. font-size:14px;
  1982. letter-spacing:normal;
  1983. color:#AAAAAA;
  1984. vertical-align:none;
  1985. text-align:left;
  1986. text-transform:none;
  1987. background-color:transparent;
  1988. border-color:transparent;
  1989. }
  1990. #u15879_div {
  1991. border-width:0px;
  1992. position:absolute;
  1993. left:0px;
  1994. top:0px;
  1995. width:134px;
  1996. height:23px;
  1997. background:inherit;
  1998. background-color:rgba(255, 255, 255, 1);
  1999. border-radius:0px;
  2000. filter:drop-shadow(none);
  2001. transition:none;
  2002. font-size:14px;
  2003. color:#AAAAAA;
  2004. }
  2005. #u15879 {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:702px;
  2009. top:152px;
  2010. width:134px;
  2011. height:23px;
  2012. display:flex;
  2013. transition:none;
  2014. transform-origin:50% 50%;
  2015. font-size:14px;
  2016. color:#AAAAAA;
  2017. }
  2018. #u15879 .text {
  2019. position:absolute;
  2020. align-self:flex-start;
  2021. padding:2px 2px 2px 2px;
  2022. box-sizing:border-box;
  2023. width:100%;
  2024. }
  2025. #u15879_div.disabled {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:0px;
  2029. top:0px;
  2030. width:134px;
  2031. height:23px;
  2032. background:inherit;
  2033. background-color:rgba(240, 240, 240, 1);
  2034. border-radius:0px;
  2035. filter:drop-shadow(none);
  2036. transition:none;
  2037. font-size:14px;
  2038. color:#AAAAAA;
  2039. }
  2040. #u15879.disabled {
  2041. }
  2042. .u15879_input_option {
  2043. font-size:14px;
  2044. }
  2045. #u15880 {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:0px;
  2049. top:0px;
  2050. width:0px;
  2051. height:0px;
  2052. }
  2053. #u15881_div {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:0px;
  2057. top:0px;
  2058. width:140px;
  2059. height:30px;
  2060. background:inherit;
  2061. background-color:rgba(255, 255, 255, 1);
  2062. box-sizing:border-box;
  2063. border-width:1px;
  2064. border-style:solid;
  2065. border-color:rgba(215, 215, 215, 1);
  2066. border-radius:4px;
  2067. filter:drop-shadow(none);
  2068. transition:none;
  2069. font-size:14px;
  2070. }
  2071. #u15881 {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:698px;
  2075. top:190px;
  2076. width:140px;
  2077. height:30px;
  2078. display:flex;
  2079. transition:none;
  2080. transform-origin:50% 50%;
  2081. font-size:14px;
  2082. }
  2083. #u15881 .text {
  2084. position:absolute;
  2085. align-self:center;
  2086. padding:2px 2px 2px 2px;
  2087. box-sizing:border-box;
  2088. width:100%;
  2089. }
  2090. #u15881_text {
  2091. border-width:0px;
  2092. word-wrap:break-word;
  2093. text-transform:none;
  2094. visibility:hidden;
  2095. }
  2096. #u15882_input {
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:134px;
  2101. height:23px;
  2102. padding:2px 2px 2px 2px;
  2103. font-family:"ArialMT", "Arial", sans-serif;
  2104. font-weight:400;
  2105. font-style:normal;
  2106. font-size:14px;
  2107. letter-spacing:normal;
  2108. color:#AAAAAA;
  2109. vertical-align:none;
  2110. text-align:left;
  2111. text-transform:none;
  2112. background-color:transparent;
  2113. border-color:transparent;
  2114. }
  2115. #u15882_input.disabled {
  2116. position:absolute;
  2117. left:0px;
  2118. top:0px;
  2119. width:134px;
  2120. height:23px;
  2121. padding:2px 2px 2px 2px;
  2122. font-family:"ArialMT", "Arial", sans-serif;
  2123. font-weight:400;
  2124. font-style:normal;
  2125. font-size:14px;
  2126. letter-spacing:normal;
  2127. color:#AAAAAA;
  2128. vertical-align:none;
  2129. text-align:left;
  2130. text-transform:none;
  2131. background-color:transparent;
  2132. border-color:transparent;
  2133. }
  2134. #u15882_div {
  2135. border-width:0px;
  2136. position:absolute;
  2137. left:0px;
  2138. top:0px;
  2139. width:134px;
  2140. height:23px;
  2141. background:inherit;
  2142. background-color:rgba(255, 255, 255, 1);
  2143. border-radius:0px;
  2144. filter:drop-shadow(none);
  2145. transition:none;
  2146. font-size:14px;
  2147. color:#AAAAAA;
  2148. }
  2149. #u15882 {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:702px;
  2153. top:192px;
  2154. width:134px;
  2155. height:23px;
  2156. display:flex;
  2157. transition:none;
  2158. transform-origin:50% 50%;
  2159. font-size:14px;
  2160. color:#AAAAAA;
  2161. }
  2162. #u15882 .text {
  2163. position:absolute;
  2164. align-self:flex-start;
  2165. padding:2px 2px 2px 2px;
  2166. box-sizing:border-box;
  2167. width:100%;
  2168. }
  2169. #u15882_div.disabled {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:0px;
  2173. top:0px;
  2174. width:134px;
  2175. height:23px;
  2176. background:inherit;
  2177. background-color:rgba(240, 240, 240, 1);
  2178. border-radius:0px;
  2179. filter:drop-shadow(none);
  2180. transition:none;
  2181. font-size:14px;
  2182. color:#AAAAAA;
  2183. }
  2184. #u15882.disabled {
  2185. }
  2186. .u15882_input_option {
  2187. font-size:14px;
  2188. }
  2189. #u15883 {
  2190. border-width:0px;
  2191. position:absolute;
  2192. left:0px;
  2193. top:0px;
  2194. width:0px;
  2195. height:0px;
  2196. }
  2197. #u15884_div {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:0px;
  2201. top:0px;
  2202. width:140px;
  2203. height:30px;
  2204. background:inherit;
  2205. background-color:rgba(255, 255, 255, 1);
  2206. box-sizing:border-box;
  2207. border-width:1px;
  2208. border-style:solid;
  2209. border-color:rgba(201, 201, 201, 1);
  2210. border-radius:4px;
  2211. filter:drop-shadow(none);
  2212. transition:none;
  2213. font-family:"Microsoft YaHei", sans-serif;
  2214. font-weight:400;
  2215. font-style:normal;
  2216. font-size:14px;
  2217. color:#CCCCCC;
  2218. text-align:left;
  2219. }
  2220. #u15884 {
  2221. border-width:0px;
  2222. position:absolute;
  2223. left:998px;
  2224. top:150px;
  2225. width:140px;
  2226. height:30px;
  2227. display:flex;
  2228. transition:none;
  2229. transform-origin:50% 50%;
  2230. font-family:"Microsoft YaHei", sans-serif;
  2231. font-weight:400;
  2232. font-style:normal;
  2233. font-size:14px;
  2234. color:#CCCCCC;
  2235. text-align:left;
  2236. }
  2237. #u15884 .text {
  2238. position:absolute;
  2239. align-self:center;
  2240. padding:2px 8px 2px 8px;
  2241. box-sizing:border-box;
  2242. width:100%;
  2243. }
  2244. #u15884_text {
  2245. border-width:0px;
  2246. word-wrap:break-word;
  2247. text-transform:none;
  2248. visibility:hidden;
  2249. }
  2250. #u15885_input {
  2251. position:absolute;
  2252. left:0px;
  2253. top:0px;
  2254. width:127px;
  2255. height:25px;
  2256. padding:2px 2px 2px 2px;
  2257. font-family:"Microsoft YaHei", sans-serif;
  2258. font-weight:400;
  2259. font-style:normal;
  2260. font-size:10px;
  2261. letter-spacing:normal;
  2262. color:#000000;
  2263. vertical-align:none;
  2264. text-align:left;
  2265. text-transform:none;
  2266. background-color:transparent;
  2267. border-color:transparent;
  2268. }
  2269. #u15885_input.hint {
  2270. position:absolute;
  2271. left:0px;
  2272. top:0px;
  2273. width:127px;
  2274. height:25px;
  2275. padding:2px 2px 2px 2px;
  2276. font-family:"Microsoft YaHei", sans-serif;
  2277. font-weight:400;
  2278. font-style:normal;
  2279. font-size:12px;
  2280. letter-spacing:normal;
  2281. color:#AAAAAA;
  2282. vertical-align:none;
  2283. text-align:left;
  2284. text-transform:none;
  2285. background-color:transparent;
  2286. border-color:transparent;
  2287. }
  2288. #u15885_input.disabled {
  2289. position:absolute;
  2290. left:0px;
  2291. top:0px;
  2292. width:127px;
  2293. height:25px;
  2294. padding:2px 2px 2px 2px;
  2295. font-family:"Microsoft YaHei", sans-serif;
  2296. font-weight:400;
  2297. font-style:normal;
  2298. font-size:10px;
  2299. letter-spacing:normal;
  2300. color:#000000;
  2301. vertical-align:none;
  2302. text-align:left;
  2303. text-transform:none;
  2304. background-color:transparent;
  2305. border-color:transparent;
  2306. }
  2307. #u15885_input.hint.disabled {
  2308. position:absolute;
  2309. left:0px;
  2310. top:0px;
  2311. width:127px;
  2312. height:25px;
  2313. padding:2px 2px 2px 2px;
  2314. font-family:"Microsoft YaHei", sans-serif;
  2315. font-weight:400;
  2316. font-style:normal;
  2317. font-size:12px;
  2318. letter-spacing:normal;
  2319. color:#AAAAAA;
  2320. vertical-align:none;
  2321. text-align:left;
  2322. text-transform:none;
  2323. background-color:transparent;
  2324. border-color:transparent;
  2325. }
  2326. #u15885_div {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:0px;
  2330. top:0px;
  2331. width:127px;
  2332. height:25px;
  2333. background:inherit;
  2334. background-color:rgba(255, 255, 255, 1);
  2335. border-radius:0px;
  2336. filter:drop-shadow(none);
  2337. transition:none;
  2338. font-family:"Microsoft YaHei", sans-serif;
  2339. font-weight:400;
  2340. font-style:normal;
  2341. font-size:10px;
  2342. }
  2343. #u15885 {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:1006px;
  2347. top:151px;
  2348. width:127px;
  2349. height:25px;
  2350. display:flex;
  2351. transition:none;
  2352. transform-origin:50% 50%;
  2353. font-family:"Microsoft YaHei", sans-serif;
  2354. font-weight:400;
  2355. font-style:normal;
  2356. font-size:10px;
  2357. }
  2358. #u15885 .text {
  2359. position:absolute;
  2360. align-self:center;
  2361. padding:2px 2px 2px 2px;
  2362. box-sizing:border-box;
  2363. width:100%;
  2364. }
  2365. #u15885_div.hint {
  2366. border-width:0px;
  2367. position:absolute;
  2368. left:0px;
  2369. top:0px;
  2370. width:127px;
  2371. height:25px;
  2372. background:inherit;
  2373. background-color:rgba(255, 255, 255, 1);
  2374. border-radius:0px;
  2375. filter:drop-shadow(none);
  2376. transition:none;
  2377. font-family:"Microsoft YaHei", sans-serif;
  2378. font-weight:400;
  2379. font-style:normal;
  2380. font-size:10px;
  2381. }
  2382. #u15885.hint {
  2383. }
  2384. #u15885_div.disabled {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:0px;
  2388. top:0px;
  2389. width:127px;
  2390. height:25px;
  2391. background:inherit;
  2392. background-color:rgba(240, 240, 240, 1);
  2393. border-radius:0px;
  2394. filter:drop-shadow(none);
  2395. transition:none;
  2396. font-family:"Microsoft YaHei", sans-serif;
  2397. font-weight:400;
  2398. font-style:normal;
  2399. font-size:10px;
  2400. }
  2401. #u15885.disabled {
  2402. }
  2403. #u15885_div.hint.disabled {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:0px;
  2407. top:0px;
  2408. width:127px;
  2409. height:25px;
  2410. background:inherit;
  2411. background-color:rgba(240, 240, 240, 1);
  2412. border-radius:0px;
  2413. filter:drop-shadow(none);
  2414. transition:none;
  2415. font-family:"Microsoft YaHei", sans-serif;
  2416. font-weight:400;
  2417. font-style:normal;
  2418. font-size:10px;
  2419. }
  2420. #u15885.hint.disabled {
  2421. }
  2422. #u15886 {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:0px;
  2426. top:0px;
  2427. width:0px;
  2428. height:0px;
  2429. }
  2430. #u15887_div {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:0px;
  2434. top:0px;
  2435. width:140px;
  2436. height:30px;
  2437. background:inherit;
  2438. background-color:rgba(255, 255, 255, 1);
  2439. box-sizing:border-box;
  2440. border-width:1px;
  2441. border-style:solid;
  2442. border-color:rgba(201, 201, 201, 1);
  2443. border-radius:4px;
  2444. filter:drop-shadow(none);
  2445. transition:none;
  2446. font-family:"Microsoft YaHei", sans-serif;
  2447. font-weight:400;
  2448. font-style:normal;
  2449. font-size:14px;
  2450. color:#CCCCCC;
  2451. text-align:left;
  2452. }
  2453. #u15887 {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:1148px;
  2457. top:150px;
  2458. width:140px;
  2459. height:30px;
  2460. display:flex;
  2461. transition:none;
  2462. transform-origin:50% 50%;
  2463. font-family:"Microsoft YaHei", sans-serif;
  2464. font-weight:400;
  2465. font-style:normal;
  2466. font-size:14px;
  2467. color:#CCCCCC;
  2468. text-align:left;
  2469. }
  2470. #u15887 .text {
  2471. position:absolute;
  2472. align-self:center;
  2473. padding:2px 8px 2px 8px;
  2474. box-sizing:border-box;
  2475. width:100%;
  2476. }
  2477. #u15887_text {
  2478. border-width:0px;
  2479. word-wrap:break-word;
  2480. text-transform:none;
  2481. visibility:hidden;
  2482. }
  2483. #u15888_input {
  2484. position:absolute;
  2485. left:0px;
  2486. top:0px;
  2487. width:127px;
  2488. height:25px;
  2489. padding:2px 2px 2px 2px;
  2490. font-family:"Microsoft YaHei", sans-serif;
  2491. font-weight:400;
  2492. font-style:normal;
  2493. font-size:10px;
  2494. letter-spacing:normal;
  2495. color:#000000;
  2496. vertical-align:none;
  2497. text-align:left;
  2498. text-transform:none;
  2499. background-color:transparent;
  2500. border-color:transparent;
  2501. }
  2502. #u15888_input.hint {
  2503. position:absolute;
  2504. left:0px;
  2505. top:0px;
  2506. width:127px;
  2507. height:25px;
  2508. padding:2px 2px 2px 2px;
  2509. font-family:"Microsoft YaHei", sans-serif;
  2510. font-weight:400;
  2511. font-style:normal;
  2512. font-size:12px;
  2513. letter-spacing:normal;
  2514. color:#AAAAAA;
  2515. vertical-align:none;
  2516. text-align:left;
  2517. text-transform:none;
  2518. background-color:transparent;
  2519. border-color:transparent;
  2520. }
  2521. #u15888_input.disabled {
  2522. position:absolute;
  2523. left:0px;
  2524. top:0px;
  2525. width:127px;
  2526. height:25px;
  2527. padding:2px 2px 2px 2px;
  2528. font-family:"Microsoft YaHei", sans-serif;
  2529. font-weight:400;
  2530. font-style:normal;
  2531. font-size:10px;
  2532. letter-spacing:normal;
  2533. color:#000000;
  2534. vertical-align:none;
  2535. text-align:left;
  2536. text-transform:none;
  2537. background-color:transparent;
  2538. border-color:transparent;
  2539. }
  2540. #u15888_input.hint.disabled {
  2541. position:absolute;
  2542. left:0px;
  2543. top:0px;
  2544. width:127px;
  2545. height:25px;
  2546. padding:2px 2px 2px 2px;
  2547. font-family:"Microsoft YaHei", sans-serif;
  2548. font-weight:400;
  2549. font-style:normal;
  2550. font-size:12px;
  2551. letter-spacing:normal;
  2552. color:#AAAAAA;
  2553. vertical-align:none;
  2554. text-align:left;
  2555. text-transform:none;
  2556. background-color:transparent;
  2557. border-color:transparent;
  2558. }
  2559. #u15888_div {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:0px;
  2563. top:0px;
  2564. width:127px;
  2565. height:25px;
  2566. background:inherit;
  2567. background-color:rgba(255, 255, 255, 1);
  2568. border-radius:0px;
  2569. filter:drop-shadow(none);
  2570. transition:none;
  2571. font-family:"Microsoft YaHei", sans-serif;
  2572. font-weight:400;
  2573. font-style:normal;
  2574. font-size:10px;
  2575. }
  2576. #u15888 {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:1156px;
  2580. top:151px;
  2581. width:127px;
  2582. height:25px;
  2583. display:flex;
  2584. transition:none;
  2585. transform-origin:50% 50%;
  2586. font-family:"Microsoft YaHei", sans-serif;
  2587. font-weight:400;
  2588. font-style:normal;
  2589. font-size:10px;
  2590. }
  2591. #u15888 .text {
  2592. position:absolute;
  2593. align-self:center;
  2594. padding:2px 2px 2px 2px;
  2595. box-sizing:border-box;
  2596. width:100%;
  2597. }
  2598. #u15888_div.hint {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:0px;
  2602. top:0px;
  2603. width:127px;
  2604. height:25px;
  2605. background:inherit;
  2606. background-color:rgba(255, 255, 255, 1);
  2607. border-radius:0px;
  2608. filter:drop-shadow(none);
  2609. transition:none;
  2610. font-family:"Microsoft YaHei", sans-serif;
  2611. font-weight:400;
  2612. font-style:normal;
  2613. font-size:10px;
  2614. }
  2615. #u15888.hint {
  2616. }
  2617. #u15888_div.disabled {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:0px;
  2621. top:0px;
  2622. width:127px;
  2623. height:25px;
  2624. background:inherit;
  2625. background-color:rgba(240, 240, 240, 1);
  2626. border-radius:0px;
  2627. filter:drop-shadow(none);
  2628. transition:none;
  2629. font-family:"Microsoft YaHei", sans-serif;
  2630. font-weight:400;
  2631. font-style:normal;
  2632. font-size:10px;
  2633. }
  2634. #u15888.disabled {
  2635. }
  2636. #u15888_div.hint.disabled {
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:0px;
  2640. top:0px;
  2641. width:127px;
  2642. height:25px;
  2643. background:inherit;
  2644. background-color:rgba(240, 240, 240, 1);
  2645. border-radius:0px;
  2646. filter:drop-shadow(none);
  2647. transition:none;
  2648. font-family:"Microsoft YaHei", sans-serif;
  2649. font-weight:400;
  2650. font-style:normal;
  2651. font-size:10px;
  2652. }
  2653. #u15888.hint.disabled {
  2654. }
  2655. #u15889 {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:0px;
  2659. top:0px;
  2660. width:0px;
  2661. height:0px;
  2662. }
  2663. #u15890_div {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:0px;
  2668. width:140px;
  2669. height:30px;
  2670. background:inherit;
  2671. background-color:rgba(255, 255, 255, 1);
  2672. box-sizing:border-box;
  2673. border-width:1px;
  2674. border-style:solid;
  2675. border-color:rgba(201, 201, 201, 1);
  2676. border-radius:4px;
  2677. filter:drop-shadow(none);
  2678. transition:none;
  2679. font-family:"Microsoft YaHei", sans-serif;
  2680. font-weight:400;
  2681. font-style:normal;
  2682. font-size:14px;
  2683. color:#CCCCCC;
  2684. text-align:left;
  2685. }
  2686. #u15890 {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:550px;
  2690. top:190px;
  2691. width:140px;
  2692. height:30px;
  2693. display:flex;
  2694. transition:none;
  2695. transform-origin:50% 50%;
  2696. font-family:"Microsoft YaHei", sans-serif;
  2697. font-weight:400;
  2698. font-style:normal;
  2699. font-size:14px;
  2700. color:#CCCCCC;
  2701. text-align:left;
  2702. }
  2703. #u15890 .text {
  2704. position:absolute;
  2705. align-self:center;
  2706. padding:2px 8px 2px 8px;
  2707. box-sizing:border-box;
  2708. width:100%;
  2709. }
  2710. #u15890_text {
  2711. border-width:0px;
  2712. word-wrap:break-word;
  2713. text-transform:none;
  2714. visibility:hidden;
  2715. }
  2716. #u15891_input {
  2717. position:absolute;
  2718. left:0px;
  2719. top:0px;
  2720. width:127px;
  2721. height:25px;
  2722. padding:2px 2px 2px 2px;
  2723. font-family:"Microsoft YaHei", sans-serif;
  2724. font-weight:400;
  2725. font-style:normal;
  2726. font-size:10px;
  2727. letter-spacing:normal;
  2728. color:#000000;
  2729. vertical-align:none;
  2730. text-align:left;
  2731. text-transform:none;
  2732. background-color:transparent;
  2733. border-color:transparent;
  2734. }
  2735. #u15891_input.hint {
  2736. position:absolute;
  2737. left:0px;
  2738. top:0px;
  2739. width:127px;
  2740. height:25px;
  2741. padding:2px 2px 2px 2px;
  2742. font-family:"Microsoft YaHei", sans-serif;
  2743. font-weight:400;
  2744. font-style:normal;
  2745. font-size:12px;
  2746. letter-spacing:normal;
  2747. color:#AAAAAA;
  2748. vertical-align:none;
  2749. text-align:left;
  2750. text-transform:none;
  2751. background-color:transparent;
  2752. border-color:transparent;
  2753. }
  2754. #u15891_input.disabled {
  2755. position:absolute;
  2756. left:0px;
  2757. top:0px;
  2758. width:127px;
  2759. height:25px;
  2760. padding:2px 2px 2px 2px;
  2761. font-family:"Microsoft YaHei", sans-serif;
  2762. font-weight:400;
  2763. font-style:normal;
  2764. font-size:10px;
  2765. letter-spacing:normal;
  2766. color:#000000;
  2767. vertical-align:none;
  2768. text-align:left;
  2769. text-transform:none;
  2770. background-color:transparent;
  2771. border-color:transparent;
  2772. }
  2773. #u15891_input.hint.disabled {
  2774. position:absolute;
  2775. left:0px;
  2776. top:0px;
  2777. width:127px;
  2778. height:25px;
  2779. padding:2px 2px 2px 2px;
  2780. font-family:"Microsoft YaHei", sans-serif;
  2781. font-weight:400;
  2782. font-style:normal;
  2783. font-size:12px;
  2784. letter-spacing:normal;
  2785. color:#AAAAAA;
  2786. vertical-align:none;
  2787. text-align:left;
  2788. text-transform:none;
  2789. background-color:transparent;
  2790. border-color:transparent;
  2791. }
  2792. #u15891_div {
  2793. border-width:0px;
  2794. position:absolute;
  2795. left:0px;
  2796. top:0px;
  2797. width:127px;
  2798. height:25px;
  2799. background:inherit;
  2800. background-color:rgba(255, 255, 255, 1);
  2801. border-radius:0px;
  2802. filter:drop-shadow(none);
  2803. transition:none;
  2804. font-family:"Microsoft YaHei", sans-serif;
  2805. font-weight:400;
  2806. font-style:normal;
  2807. font-size:10px;
  2808. }
  2809. #u15891 {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:558px;
  2813. top:191px;
  2814. width:127px;
  2815. height:25px;
  2816. display:flex;
  2817. transition:none;
  2818. transform-origin:50% 50%;
  2819. font-family:"Microsoft YaHei", sans-serif;
  2820. font-weight:400;
  2821. font-style:normal;
  2822. font-size:10px;
  2823. }
  2824. #u15891 .text {
  2825. position:absolute;
  2826. align-self:center;
  2827. padding:2px 2px 2px 2px;
  2828. box-sizing:border-box;
  2829. width:100%;
  2830. }
  2831. #u15891_div.hint {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:0px;
  2835. top:0px;
  2836. width:127px;
  2837. height:25px;
  2838. background:inherit;
  2839. background-color:rgba(255, 255, 255, 1);
  2840. border-radius:0px;
  2841. filter:drop-shadow(none);
  2842. transition:none;
  2843. font-family:"Microsoft YaHei", sans-serif;
  2844. font-weight:400;
  2845. font-style:normal;
  2846. font-size:10px;
  2847. }
  2848. #u15891.hint {
  2849. }
  2850. #u15891_div.disabled {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:0px;
  2854. top:0px;
  2855. width:127px;
  2856. height:25px;
  2857. background:inherit;
  2858. background-color:rgba(240, 240, 240, 1);
  2859. border-radius:0px;
  2860. filter:drop-shadow(none);
  2861. transition:none;
  2862. font-family:"Microsoft YaHei", sans-serif;
  2863. font-weight:400;
  2864. font-style:normal;
  2865. font-size:10px;
  2866. }
  2867. #u15891.disabled {
  2868. }
  2869. #u15891_div.hint.disabled {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:0px;
  2873. top:0px;
  2874. width:127px;
  2875. height:25px;
  2876. background:inherit;
  2877. background-color:rgba(240, 240, 240, 1);
  2878. border-radius:0px;
  2879. filter:drop-shadow(none);
  2880. transition:none;
  2881. font-family:"Microsoft YaHei", sans-serif;
  2882. font-weight:400;
  2883. font-style:normal;
  2884. font-size:10px;
  2885. }
  2886. #u15891.hint.disabled {
  2887. }
  2888. #u15892 {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:0px;
  2892. top:0px;
  2893. width:0px;
  2894. height:0px;
  2895. }
  2896. #u15893_div {
  2897. border-width:0px;
  2898. position:absolute;
  2899. left:0px;
  2900. top:0px;
  2901. width:140px;
  2902. height:30px;
  2903. background:inherit;
  2904. background-color:rgba(255, 255, 255, 1);
  2905. box-sizing:border-box;
  2906. border-width:1px;
  2907. border-style:solid;
  2908. border-color:rgba(215, 215, 215, 1);
  2909. border-radius:4px;
  2910. filter:drop-shadow(none);
  2911. transition:none;
  2912. font-size:14px;
  2913. }
  2914. #u15893 {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:1298px;
  2918. top:150px;
  2919. width:140px;
  2920. height:30px;
  2921. display:flex;
  2922. transition:none;
  2923. transform-origin:50% 50%;
  2924. font-size:14px;
  2925. }
  2926. #u15893 .text {
  2927. position:absolute;
  2928. align-self:center;
  2929. padding:2px 2px 2px 2px;
  2930. box-sizing:border-box;
  2931. width:100%;
  2932. }
  2933. #u15893_text {
  2934. border-width:0px;
  2935. word-wrap:break-word;
  2936. text-transform:none;
  2937. visibility:hidden;
  2938. }
  2939. #u15894_input {
  2940. position:absolute;
  2941. left:0px;
  2942. top:0px;
  2943. width:134px;
  2944. height:23px;
  2945. padding:2px 2px 2px 2px;
  2946. font-family:"ArialMT", "Arial", sans-serif;
  2947. font-weight:400;
  2948. font-style:normal;
  2949. font-size:14px;
  2950. letter-spacing:normal;
  2951. color:#AAAAAA;
  2952. vertical-align:none;
  2953. text-align:left;
  2954. text-transform:none;
  2955. background-color:transparent;
  2956. border-color:transparent;
  2957. }
  2958. #u15894_input.disabled {
  2959. position:absolute;
  2960. left:0px;
  2961. top:0px;
  2962. width:134px;
  2963. height:23px;
  2964. padding:2px 2px 2px 2px;
  2965. font-family:"ArialMT", "Arial", sans-serif;
  2966. font-weight:400;
  2967. font-style:normal;
  2968. font-size:14px;
  2969. letter-spacing:normal;
  2970. color:#AAAAAA;
  2971. vertical-align:none;
  2972. text-align:left;
  2973. text-transform:none;
  2974. background-color:transparent;
  2975. border-color:transparent;
  2976. }
  2977. #u15894_div {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:0px;
  2981. top:0px;
  2982. width:134px;
  2983. height:23px;
  2984. background:inherit;
  2985. background-color:rgba(255, 255, 255, 1);
  2986. border-radius:0px;
  2987. filter:drop-shadow(none);
  2988. transition:none;
  2989. font-size:14px;
  2990. color:#AAAAAA;
  2991. }
  2992. #u15894 {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:1302px;
  2996. top:152px;
  2997. width:134px;
  2998. height:23px;
  2999. display:flex;
  3000. transition:none;
  3001. transform-origin:50% 50%;
  3002. font-size:14px;
  3003. color:#AAAAAA;
  3004. }
  3005. #u15894 .text {
  3006. position:absolute;
  3007. align-self:flex-start;
  3008. padding:2px 2px 2px 2px;
  3009. box-sizing:border-box;
  3010. width:100%;
  3011. }
  3012. #u15894_div.disabled {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:0px;
  3016. top:0px;
  3017. width:134px;
  3018. height:23px;
  3019. background:inherit;
  3020. background-color:rgba(240, 240, 240, 1);
  3021. border-radius:0px;
  3022. filter:drop-shadow(none);
  3023. transition:none;
  3024. font-size:14px;
  3025. color:#AAAAAA;
  3026. }
  3027. #u15894.disabled {
  3028. }
  3029. .u15894_input_option {
  3030. font-size:14px;
  3031. }
  3032. #u15895 {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:0px;
  3036. top:0px;
  3037. width:0px;
  3038. height:0px;
  3039. }
  3040. #u15896_div {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:0px;
  3044. top:0px;
  3045. width:140px;
  3046. height:30px;
  3047. background:inherit;
  3048. background-color:rgba(242, 242, 242, 1);
  3049. box-sizing:border-box;
  3050. border-width:1px;
  3051. border-style:solid;
  3052. border-color:rgba(215, 215, 215, 1);
  3053. border-radius:4px;
  3054. filter:drop-shadow(none);
  3055. transition:none;
  3056. font-size:14px;
  3057. }
  3058. #u15896 {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:550px;
  3062. top:150px;
  3063. width:140px;
  3064. height:30px;
  3065. display:flex;
  3066. transition:none;
  3067. transform-origin:50% 50%;
  3068. font-size:14px;
  3069. }
  3070. #u15896 .text {
  3071. position:absolute;
  3072. align-self:center;
  3073. padding:2px 2px 2px 2px;
  3074. box-sizing:border-box;
  3075. width:100%;
  3076. }
  3077. #u15896_text {
  3078. border-width:0px;
  3079. word-wrap:break-word;
  3080. text-transform:none;
  3081. visibility:hidden;
  3082. }
  3083. #u15897_input {
  3084. position:absolute;
  3085. left:0px;
  3086. top:0px;
  3087. width:134px;
  3088. height:23px;
  3089. padding:2px 2px 2px 2px;
  3090. font-family:"ArialMT", "Arial", sans-serif;
  3091. font-weight:400;
  3092. font-style:normal;
  3093. font-size:14px;
  3094. letter-spacing:normal;
  3095. color:#AAAAAA;
  3096. vertical-align:none;
  3097. text-align:left;
  3098. text-transform:none;
  3099. background-color:transparent;
  3100. border-color:transparent;
  3101. }
  3102. #u15897_input.disabled {
  3103. position:absolute;
  3104. left:0px;
  3105. top:0px;
  3106. width:134px;
  3107. height:23px;
  3108. padding:2px 2px 2px 2px;
  3109. font-family:"ArialMT", "Arial", sans-serif;
  3110. font-weight:400;
  3111. font-style:normal;
  3112. font-size:14px;
  3113. letter-spacing:normal;
  3114. color:#AAAAAA;
  3115. vertical-align:none;
  3116. text-align:left;
  3117. text-transform:none;
  3118. background-color:transparent;
  3119. border-color:transparent;
  3120. }
  3121. #u15897_div {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:0px;
  3125. top:0px;
  3126. width:134px;
  3127. height:23px;
  3128. background:inherit;
  3129. background-color:rgba(242, 242, 242, 1);
  3130. border-radius:0px;
  3131. filter:drop-shadow(none);
  3132. transition:none;
  3133. font-size:14px;
  3134. color:#AAAAAA;
  3135. }
  3136. #u15897 {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:554px;
  3140. top:152px;
  3141. width:134px;
  3142. height:23px;
  3143. display:flex;
  3144. transition:none;
  3145. transform-origin:50% 50%;
  3146. font-size:14px;
  3147. color:#AAAAAA;
  3148. }
  3149. #u15897 .text {
  3150. position:absolute;
  3151. align-self:flex-start;
  3152. padding:2px 2px 2px 2px;
  3153. box-sizing:border-box;
  3154. width:100%;
  3155. }
  3156. #u15897_div.disabled {
  3157. border-width:0px;
  3158. position:absolute;
  3159. left:0px;
  3160. top:0px;
  3161. width:134px;
  3162. height:23px;
  3163. background:inherit;
  3164. background-color:rgba(240, 240, 240, 1);
  3165. border-radius:0px;
  3166. filter:drop-shadow(none);
  3167. transition:none;
  3168. font-size:14px;
  3169. color:#AAAAAA;
  3170. }
  3171. #u15897.disabled {
  3172. }
  3173. .u15897_input_option {
  3174. font-size:14px;
  3175. }
  3176. #u15898 {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:0px;
  3180. top:0px;
  3181. width:0px;
  3182. height:0px;
  3183. }
  3184. #u15899_div {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:0px;
  3188. top:0px;
  3189. width:400px;
  3190. height:160px;
  3191. background:inherit;
  3192. background-color:rgba(255, 255, 255, 1);
  3193. box-sizing:border-box;
  3194. border-width:1px;
  3195. border-style:solid;
  3196. border-color:rgba(204, 204, 204, 1);
  3197. border-radius:0px;
  3198. filter:drop-shadow(none);
  3199. transition:none;
  3200. font-family:"Microsoft YaHei", sans-serif;
  3201. font-weight:400;
  3202. font-style:normal;
  3203. }
  3204. #u15899 {
  3205. border-width:0px;
  3206. position:absolute;
  3207. left:605px;
  3208. top:702px;
  3209. width:400px;
  3210. height:160px;
  3211. display:flex;
  3212. transition:none;
  3213. transform-origin:50% 50%;
  3214. font-family:"Microsoft YaHei", sans-serif;
  3215. font-weight:400;
  3216. font-style:normal;
  3217. }
  3218. #u15899 .text {
  3219. position:absolute;
  3220. align-self:center;
  3221. padding:2px 2px 2px 2px;
  3222. box-sizing:border-box;
  3223. width:100%;
  3224. }
  3225. #u15899_text {
  3226. border-width:0px;
  3227. word-wrap:break-word;
  3228. text-transform:none;
  3229. visibility:hidden;
  3230. }
  3231. #u15900_div {
  3232. border-width:0px;
  3233. position:absolute;
  3234. left:0px;
  3235. top:0px;
  3236. width:127px;
  3237. height:21px;
  3238. background:inherit;
  3239. background-color:rgba(255, 255, 255, 0);
  3240. border-radius:0px;
  3241. filter:drop-shadow(none);
  3242. transition:none;
  3243. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  3244. font-weight:650;
  3245. font-style:normal;
  3246. font-size:18px;
  3247. color:#000000;
  3248. line-height:22px;
  3249. }
  3250. #u15900 {
  3251. border-width:0px;
  3252. position:absolute;
  3253. left:655px;
  3254. top:727px;
  3255. width:127px;
  3256. height:21px;
  3257. display:flex;
  3258. transition:none;
  3259. transform-origin:50% 50%;
  3260. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  3261. font-weight:650;
  3262. font-style:normal;
  3263. font-size:18px;
  3264. color:#000000;
  3265. line-height:22px;
  3266. }
  3267. #u15900 .text {
  3268. position:absolute;
  3269. align-self:flex-start;
  3270. padding:0px 0px 0px 0px;
  3271. box-sizing:border-box;
  3272. width:100%;
  3273. }
  3274. #u15900_text {
  3275. border-width:0px;
  3276. white-space:nowrap;
  3277. text-transform:none;
  3278. }
  3279. #u15901_div {
  3280. border-width:0px;
  3281. position:absolute;
  3282. left:0px;
  3283. top:0px;
  3284. width:61px;
  3285. height:32px;
  3286. background:inherit;
  3287. background-color:rgba(24, 144, 255, 1);
  3288. border-radius:4px;
  3289. filter:drop-shadow(none);
  3290. transition:none;
  3291. font-family:"Microsoft YaHei", sans-serif;
  3292. font-weight:400;
  3293. font-style:normal;
  3294. font-size:14px;
  3295. color:#FFFFFF;
  3296. }
  3297. #u15901 {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:924px;
  3301. top:810px;
  3302. width:61px;
  3303. height:32px;
  3304. display:flex;
  3305. transition:none;
  3306. transform-origin:50% 50%;
  3307. font-family:"Microsoft YaHei", sans-serif;
  3308. font-weight:400;
  3309. font-style:normal;
  3310. font-size:14px;
  3311. color:#FFFFFF;
  3312. }
  3313. #u15901 .text {
  3314. position:absolute;
  3315. align-self:center;
  3316. padding:2px 16px 2px 16px;
  3317. box-sizing:border-box;
  3318. width:100%;
  3319. }
  3320. #u15901_text {
  3321. border-width:0px;
  3322. white-space:nowrap;
  3323. text-transform:none;
  3324. }
  3325. #u15902_div {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:0px;
  3329. top:0px;
  3330. width:66px;
  3331. height:32px;
  3332. background:inherit;
  3333. background-color:rgba(255, 255, 255, 1);
  3334. box-sizing:border-box;
  3335. border-width:1px;
  3336. border-style:solid;
  3337. border-color:rgba(217, 217, 217, 1);
  3338. border-radius:4px;
  3339. filter:drop-shadow(none);
  3340. transition:none;
  3341. font-family:"Microsoft YaHei", sans-serif;
  3342. font-weight:400;
  3343. font-style:normal;
  3344. font-size:14px;
  3345. color:rgba(0, 0, 0, 0.6470588235294118);
  3346. line-height:21px;
  3347. }
  3348. #u15902 {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:842px;
  3352. top:810px;
  3353. width:66px;
  3354. height:32px;
  3355. display:flex;
  3356. transition:none;
  3357. transform-origin:50% 50%;
  3358. font-family:"Microsoft YaHei", sans-serif;
  3359. font-weight:400;
  3360. font-style:normal;
  3361. font-size:14px;
  3362. color:rgba(0, 0, 0, 0.6470588235294118);
  3363. line-height:21px;
  3364. }
  3365. #u15902 .text {
  3366. position:absolute;
  3367. align-self:center;
  3368. padding:2px 16px 2px 16px;
  3369. box-sizing:border-box;
  3370. width:100%;
  3371. }
  3372. #u15902_text {
  3373. border-width:0px;
  3374. white-space:nowrap;
  3375. text-transform:none;
  3376. }
  3377. #u15903 {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:619px;
  3381. top:725px;
  3382. width:24px;
  3383. height:24px;
  3384. display:flex;
  3385. transition:none;
  3386. font-family:"Microsoft YaHei", sans-serif;
  3387. font-weight:400;
  3388. font-style:normal;
  3389. font-size:52px;
  3390. color:#FAAD14;
  3391. }
  3392. #u15903 .text {
  3393. position:absolute;
  3394. align-self:center;
  3395. padding:2px 2px 2px 2px;
  3396. box-sizing:border-box;
  3397. width:100%;
  3398. }
  3399. #u15903_img {
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:0px;
  3403. top:0px;
  3404. width:24px;
  3405. height:24px;
  3406. }
  3407. #u15903_text {
  3408. border-width:0px;
  3409. word-wrap:break-word;
  3410. text-transform:none;
  3411. visibility:hidden;
  3412. }
  3413. #u15904_div {
  3414. border-width:0px;
  3415. position:absolute;
  3416. left:0px;
  3417. top:0px;
  3418. width:326px;
  3419. height:44px;
  3420. background:inherit;
  3421. background-color:rgba(255, 255, 255, 0);
  3422. border-radius:0px;
  3423. filter:drop-shadow(none);
  3424. transition:none;
  3425. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3426. font-weight:400;
  3427. font-style:normal;
  3428. font-size:12px;
  3429. color:#7F7F7F;
  3430. line-height:22px;
  3431. }
  3432. #u15904 {
  3433. border-width:0px;
  3434. position:absolute;
  3435. left:655px;
  3436. top:759px;
  3437. width:326px;
  3438. height:44px;
  3439. display:flex;
  3440. transition:none;
  3441. transform-origin:50% 50%;
  3442. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3443. font-weight:400;
  3444. font-style:normal;
  3445. font-size:12px;
  3446. color:#7F7F7F;
  3447. line-height:22px;
  3448. }
  3449. #u15904 .text {
  3450. position:absolute;
  3451. align-self:flex-start;
  3452. padding:0px 0px 0px 0px;
  3453. box-sizing:border-box;
  3454. width:100%;
  3455. }
  3456. #u15904_text {
  3457. border-width:0px;
  3458. word-wrap:break-word;
  3459. text-transform:none;
  3460. }
  3461. #u15905 {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:0px;
  3465. top:0px;
  3466. width:0px;
  3467. height:0px;
  3468. }
  3469. #u15906_div {
  3470. border-width:0px;
  3471. position:absolute;
  3472. left:0px;
  3473. top:0px;
  3474. width:400px;
  3475. height:160px;
  3476. background:inherit;
  3477. background-color:rgba(255, 255, 255, 1);
  3478. box-sizing:border-box;
  3479. border-width:1px;
  3480. border-style:solid;
  3481. border-color:rgba(204, 204, 204, 1);
  3482. border-radius:0px;
  3483. filter:drop-shadow(none);
  3484. transition:none;
  3485. font-family:"Microsoft YaHei", sans-serif;
  3486. font-weight:400;
  3487. font-style:normal;
  3488. }
  3489. #u15906 {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:1022px;
  3493. top:702px;
  3494. width:400px;
  3495. height:160px;
  3496. display:flex;
  3497. transition:none;
  3498. transform-origin:50% 50%;
  3499. font-family:"Microsoft YaHei", sans-serif;
  3500. font-weight:400;
  3501. font-style:normal;
  3502. }
  3503. #u15906 .text {
  3504. position:absolute;
  3505. align-self:center;
  3506. padding:2px 2px 2px 2px;
  3507. box-sizing:border-box;
  3508. width:100%;
  3509. }
  3510. #u15906_text {
  3511. border-width:0px;
  3512. word-wrap:break-word;
  3513. text-transform:none;
  3514. visibility:hidden;
  3515. }
  3516. #u15907_div {
  3517. border-width:0px;
  3518. position:absolute;
  3519. left:0px;
  3520. top:0px;
  3521. width:127px;
  3522. height:21px;
  3523. background:inherit;
  3524. background-color:rgba(255, 255, 255, 0);
  3525. border-radius:0px;
  3526. filter:drop-shadow(none);
  3527. transition:none;
  3528. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  3529. font-weight:650;
  3530. font-style:normal;
  3531. font-size:18px;
  3532. color:#000000;
  3533. line-height:22px;
  3534. }
  3535. #u15907 {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:1082px;
  3539. top:737px;
  3540. width:127px;
  3541. height:21px;
  3542. display:flex;
  3543. transition:none;
  3544. transform-origin:50% 50%;
  3545. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  3546. font-weight:650;
  3547. font-style:normal;
  3548. font-size:18px;
  3549. color:#000000;
  3550. line-height:22px;
  3551. }
  3552. #u15907 .text {
  3553. position:absolute;
  3554. align-self:flex-start;
  3555. padding:0px 0px 0px 0px;
  3556. box-sizing:border-box;
  3557. width:100%;
  3558. }
  3559. #u15907_text {
  3560. border-width:0px;
  3561. white-space:nowrap;
  3562. text-transform:none;
  3563. }
  3564. #u15908_div {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:0px;
  3568. top:0px;
  3569. width:61px;
  3570. height:32px;
  3571. background:inherit;
  3572. background-color:rgba(24, 144, 255, 1);
  3573. border-radius:4px;
  3574. filter:drop-shadow(none);
  3575. transition:none;
  3576. font-family:"Microsoft YaHei", sans-serif;
  3577. font-weight:400;
  3578. font-style:normal;
  3579. font-size:14px;
  3580. color:#FFFFFF;
  3581. }
  3582. #u15908 {
  3583. border-width:0px;
  3584. position:absolute;
  3585. left:1341px;
  3586. top:807px;
  3587. width:61px;
  3588. height:32px;
  3589. display:flex;
  3590. transition:none;
  3591. transform-origin:50% 50%;
  3592. font-family:"Microsoft YaHei", sans-serif;
  3593. font-weight:400;
  3594. font-style:normal;
  3595. font-size:14px;
  3596. color:#FFFFFF;
  3597. }
  3598. #u15908 .text {
  3599. position:absolute;
  3600. align-self:center;
  3601. padding:2px 16px 2px 16px;
  3602. box-sizing:border-box;
  3603. width:100%;
  3604. }
  3605. #u15908_text {
  3606. border-width:0px;
  3607. white-space:nowrap;
  3608. text-transform:none;
  3609. }
  3610. #u15909_div {
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:0px;
  3614. top:0px;
  3615. width:66px;
  3616. height:32px;
  3617. background:inherit;
  3618. background-color:rgba(255, 255, 255, 1);
  3619. box-sizing:border-box;
  3620. border-width:1px;
  3621. border-style:solid;
  3622. border-color:rgba(217, 217, 217, 1);
  3623. border-radius:4px;
  3624. filter:drop-shadow(none);
  3625. transition:none;
  3626. font-family:"Microsoft YaHei", sans-serif;
  3627. font-weight:400;
  3628. font-style:normal;
  3629. font-size:14px;
  3630. color:rgba(0, 0, 0, 0.6470588235294118);
  3631. line-height:21px;
  3632. }
  3633. #u15909 {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:1259px;
  3637. top:807px;
  3638. width:66px;
  3639. height:32px;
  3640. display:flex;
  3641. transition:none;
  3642. transform-origin:50% 50%;
  3643. font-family:"Microsoft YaHei", sans-serif;
  3644. font-weight:400;
  3645. font-style:normal;
  3646. font-size:14px;
  3647. color:rgba(0, 0, 0, 0.6470588235294118);
  3648. line-height:21px;
  3649. }
  3650. #u15909 .text {
  3651. position:absolute;
  3652. align-self:center;
  3653. padding:2px 16px 2px 16px;
  3654. box-sizing:border-box;
  3655. width:100%;
  3656. }
  3657. #u15909_text {
  3658. border-width:0px;
  3659. white-space:nowrap;
  3660. text-transform:none;
  3661. }
  3662. #u15910_div {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:0px;
  3666. top:0px;
  3667. width:241px;
  3668. height:22px;
  3669. background:inherit;
  3670. background-color:rgba(255, 255, 255, 0);
  3671. border-radius:0px;
  3672. filter:drop-shadow(none);
  3673. transition:none;
  3674. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3675. font-weight:400;
  3676. font-style:normal;
  3677. font-size:12px;
  3678. color:#7F7F7F;
  3679. line-height:22px;
  3680. }
  3681. #u15910 {
  3682. border-width:0px;
  3683. position:absolute;
  3684. left:1082px;
  3685. top:769px;
  3686. width:241px;
  3687. height:22px;
  3688. display:flex;
  3689. transition:none;
  3690. transform-origin:50% 50%;
  3691. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3692. font-weight:400;
  3693. font-style:normal;
  3694. font-size:12px;
  3695. color:#7F7F7F;
  3696. line-height:22px;
  3697. }
  3698. #u15910 .text {
  3699. position:absolute;
  3700. align-self:flex-start;
  3701. padding:0px 0px 0px 0px;
  3702. box-sizing:border-box;
  3703. width:100%;
  3704. }
  3705. #u15910_text {
  3706. border-width:0px;
  3707. white-space:nowrap;
  3708. text-transform:none;
  3709. }
  3710. #u15911 {
  3711. border-width:0px;
  3712. position:absolute;
  3713. left:1046px;
  3714. top:737px;
  3715. width:24px;
  3716. height:24px;
  3717. display:flex;
  3718. transition:none;
  3719. }
  3720. #u15911 .text {
  3721. position:absolute;
  3722. align-self:center;
  3723. padding:2px 2px 2px 2px;
  3724. box-sizing:border-box;
  3725. width:100%;
  3726. }
  3727. #u15911_img {
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:0px;
  3731. top:0px;
  3732. width:24px;
  3733. height:24px;
  3734. }
  3735. #u15911_text {
  3736. border-width:0px;
  3737. word-wrap:break-word;
  3738. text-transform:none;
  3739. visibility:hidden;
  3740. }
  3741. #u15912 {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:120px;
  3745. top:50px;
  3746. width:201px;
  3747. height:1190px;
  3748. }
  3749. #u15913 {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:0px;
  3753. top:0px;
  3754. width:0px;
  3755. height:0px;
  3756. }
  3757. #u15914_div {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:0px;
  3761. top:0px;
  3762. width:200px;
  3763. height:1190px;
  3764. background:inherit;
  3765. background-color:rgba(255, 255, 255, 1);
  3766. border-radius:0px;
  3767. filter:drop-shadow(none);
  3768. transition:none;
  3769. }
  3770. #u15914 {
  3771. border-width:0px;
  3772. position:absolute;
  3773. left:0px;
  3774. top:0px;
  3775. width:200px;
  3776. height:1190px;
  3777. display:flex;
  3778. transition:none;
  3779. transform-origin:50% 50%;
  3780. }
  3781. #u15914 .text {
  3782. position:absolute;
  3783. align-self:center;
  3784. padding:2px 2px 2px 2px;
  3785. box-sizing:border-box;
  3786. width:100%;
  3787. }
  3788. #u15914_text {
  3789. border-width:0px;
  3790. word-wrap:break-word;
  3791. text-transform:none;
  3792. visibility:hidden;
  3793. }
  3794. #u15915_div {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:0px;
  3798. top:0px;
  3799. width:200px;
  3800. height:60px;
  3801. background:inherit;
  3802. background-color:rgba(224, 231, 247, 1);
  3803. border-radius:0px;
  3804. filter:drop-shadow(none);
  3805. transition:none;
  3806. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  3807. font-weight:500;
  3808. font-style:normal;
  3809. font-size:18px;
  3810. }
  3811. #u15915 {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:0px;
  3815. top:0px;
  3816. width:200px;
  3817. height:60px;
  3818. display:flex;
  3819. transition:none;
  3820. transform-origin:50% 50%;
  3821. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  3822. font-weight:500;
  3823. font-style:normal;
  3824. font-size:18px;
  3825. }
  3826. #u15915 .text {
  3827. position:absolute;
  3828. align-self:center;
  3829. padding:0px 0px 0px 20px;
  3830. box-sizing:border-box;
  3831. width:100%;
  3832. }
  3833. #u15915_text {
  3834. border-width:0px;
  3835. word-wrap:break-word;
  3836. text-transform:none;
  3837. }
  3838. #u15916_div {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:0px;
  3842. top:0px;
  3843. width:65px;
  3844. height:22px;
  3845. background:inherit;
  3846. background-color:rgba(255, 255, 255, 0);
  3847. border-radius:0px;
  3848. filter:drop-shadow(none);
  3849. transition:none;
  3850. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3851. font-weight:400;
  3852. font-style:normal;
  3853. font-size:16px;
  3854. }
  3855. #u15916 {
  3856. border-width:0px;
  3857. position:absolute;
  3858. left:25px;
  3859. top:456px;
  3860. width:65px;
  3861. height:22px;
  3862. display:flex;
  3863. transition:none;
  3864. transform-origin:50% 50%;
  3865. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3866. font-weight:400;
  3867. font-style:normal;
  3868. font-size:16px;
  3869. }
  3870. #u15916 .text {
  3871. position:absolute;
  3872. align-self:flex-start;
  3873. padding:0px 0px 0px 0px;
  3874. box-sizing:border-box;
  3875. width:100%;
  3876. }
  3877. #u15916_text {
  3878. border-width:0px;
  3879. white-space:nowrap;
  3880. text-transform:none;
  3881. }
  3882. #u15917_div {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:0px;
  3886. top:0px;
  3887. width:49px;
  3888. height:17px;
  3889. background:inherit;
  3890. background-color:rgba(255, 255, 255, 0);
  3891. border-radius:0px;
  3892. filter:drop-shadow(none);
  3893. transition:none;
  3894. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3895. font-weight:400;
  3896. font-style:normal;
  3897. font-size:12px;
  3898. color:#AAAAAA;
  3899. }
  3900. #u15917 {
  3901. border-width:0px;
  3902. position:absolute;
  3903. left:23px;
  3904. top:419px;
  3905. width:49px;
  3906. height:17px;
  3907. display:flex;
  3908. transition:none;
  3909. transform-origin:50% 50%;
  3910. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3911. font-weight:400;
  3912. font-style:normal;
  3913. font-size:12px;
  3914. color:#AAAAAA;
  3915. }
  3916. #u15917 .text {
  3917. position:absolute;
  3918. align-self:flex-start;
  3919. padding:0px 0px 0px 0px;
  3920. box-sizing:border-box;
  3921. width:100%;
  3922. }
  3923. #u15917_text {
  3924. border-width:0px;
  3925. white-space:nowrap;
  3926. text-transform:none;
  3927. }
  3928. #u15918_div {
  3929. border-width:0px;
  3930. position:absolute;
  3931. left:0px;
  3932. top:0px;
  3933. width:49px;
  3934. height:17px;
  3935. background:inherit;
  3936. background-color:rgba(255, 255, 255, 0);
  3937. border-radius:0px;
  3938. filter:drop-shadow(none);
  3939. transition:none;
  3940. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3941. font-weight:400;
  3942. font-style:normal;
  3943. font-size:12px;
  3944. color:#AAAAAA;
  3945. }
  3946. #u15918 {
  3947. border-width:0px;
  3948. position:absolute;
  3949. left:24px;
  3950. top:81px;
  3951. width:49px;
  3952. height:17px;
  3953. display:flex;
  3954. transition:none;
  3955. transform-origin:50% 50%;
  3956. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3957. font-weight:400;
  3958. font-style:normal;
  3959. font-size:12px;
  3960. color:#AAAAAA;
  3961. }
  3962. #u15918 .text {
  3963. position:absolute;
  3964. align-self:flex-start;
  3965. padding:0px 0px 0px 0px;
  3966. box-sizing:border-box;
  3967. width:100%;
  3968. }
  3969. #u15918_text {
  3970. border-width:0px;
  3971. white-space:nowrap;
  3972. text-transform:none;
  3973. }
  3974. #u15919_div {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:0px;
  3978. top:0px;
  3979. width:65px;
  3980. height:22px;
  3981. background:inherit;
  3982. background-color:rgba(255, 255, 255, 0);
  3983. border-radius:0px;
  3984. filter:drop-shadow(none);
  3985. transition:none;
  3986. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3987. font-weight:400;
  3988. font-style:normal;
  3989. font-size:16px;
  3990. }
  3991. #u15919 {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:26px;
  3995. top:118px;
  3996. width:65px;
  3997. height:22px;
  3998. display:flex;
  3999. transition:none;
  4000. transform-origin:50% 50%;
  4001. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4002. font-weight:400;
  4003. font-style:normal;
  4004. font-size:16px;
  4005. }
  4006. #u15919 .text {
  4007. position:absolute;
  4008. align-self:flex-start;
  4009. padding:0px 0px 0px 0px;
  4010. box-sizing:border-box;
  4011. width:100%;
  4012. }
  4013. #u15919_text {
  4014. border-width:0px;
  4015. white-space:nowrap;
  4016. text-transform:none;
  4017. }
  4018. #u15920 {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:0px;
  4022. top:398px;
  4023. width:200px;
  4024. height:1px;
  4025. display:flex;
  4026. transition:none;
  4027. }
  4028. #u15920 .text {
  4029. position:absolute;
  4030. align-self:center;
  4031. padding:2px 2px 2px 2px;
  4032. box-sizing:border-box;
  4033. width:100%;
  4034. }
  4035. #u15920_img {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:0px;
  4039. top:0px;
  4040. width:201px;
  4041. height:2px;
  4042. }
  4043. #u15920_text {
  4044. border-width:0px;
  4045. word-wrap:break-word;
  4046. text-transform:none;
  4047. visibility:hidden;
  4048. }
  4049. #u15921_div {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:0px;
  4053. top:0px;
  4054. width:65px;
  4055. height:22px;
  4056. background:inherit;
  4057. background-color:rgba(255, 255, 255, 0);
  4058. border-radius:0px;
  4059. filter:drop-shadow(none);
  4060. transition:none;
  4061. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4062. font-weight:400;
  4063. font-style:normal;
  4064. font-size:16px;
  4065. }
  4066. #u15921 {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:25px;
  4070. top:498px;
  4071. width:65px;
  4072. height:22px;
  4073. display:flex;
  4074. transition:none;
  4075. transform-origin:50% 50%;
  4076. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4077. font-weight:400;
  4078. font-style:normal;
  4079. font-size:16px;
  4080. }
  4081. #u15921 .text {
  4082. position:absolute;
  4083. align-self:flex-start;
  4084. padding:0px 0px 0px 0px;
  4085. box-sizing:border-box;
  4086. width:100%;
  4087. }
  4088. #u15921_text {
  4089. border-width:0px;
  4090. white-space:nowrap;
  4091. text-transform:none;
  4092. }
  4093. #u15922_div {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:0px;
  4097. top:0px;
  4098. width:49px;
  4099. height:17px;
  4100. background:inherit;
  4101. background-color:rgba(255, 255, 255, 0);
  4102. border-radius:0px;
  4103. filter:drop-shadow(none);
  4104. transition:none;
  4105. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4106. font-weight:400;
  4107. font-style:normal;
  4108. font-size:12px;
  4109. color:#AAAAAA;
  4110. }
  4111. #u15922 {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:24px;
  4115. top:235px;
  4116. width:49px;
  4117. height:17px;
  4118. display:flex;
  4119. transition:none;
  4120. transform-origin:50% 50%;
  4121. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4122. font-weight:400;
  4123. font-style:normal;
  4124. font-size:12px;
  4125. color:#AAAAAA;
  4126. }
  4127. #u15922 .text {
  4128. position:absolute;
  4129. align-self:flex-start;
  4130. padding:0px 0px 0px 0px;
  4131. box-sizing:border-box;
  4132. width:100%;
  4133. }
  4134. #u15922_text {
  4135. border-width:0px;
  4136. white-space:nowrap;
  4137. text-transform:none;
  4138. }
  4139. #u15923 {
  4140. border-width:0px;
  4141. position:absolute;
  4142. left:1px;
  4143. top:214px;
  4144. width:200px;
  4145. height:1px;
  4146. display:flex;
  4147. transition:none;
  4148. }
  4149. #u15923 .text {
  4150. position:absolute;
  4151. align-self:center;
  4152. padding:2px 2px 2px 2px;
  4153. box-sizing:border-box;
  4154. width:100%;
  4155. }
  4156. #u15923_img {
  4157. border-width:0px;
  4158. position:absolute;
  4159. left:0px;
  4160. top:0px;
  4161. width:201px;
  4162. height:2px;
  4163. }
  4164. #u15923_text {
  4165. border-width:0px;
  4166. word-wrap:break-word;
  4167. text-transform:none;
  4168. visibility:hidden;
  4169. }
  4170. #u15924_div {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:0px;
  4174. top:0px;
  4175. width:65px;
  4176. height:22px;
  4177. background:inherit;
  4178. background-color:rgba(255, 255, 255, 0);
  4179. border-radius:0px;
  4180. filter:drop-shadow(none);
  4181. transition:none;
  4182. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4183. font-weight:400;
  4184. font-style:normal;
  4185. font-size:16px;
  4186. }
  4187. #u15924 {
  4188. border-width:0px;
  4189. position:absolute;
  4190. left:26px;
  4191. top:272px;
  4192. width:65px;
  4193. height:22px;
  4194. display:flex;
  4195. transition:none;
  4196. transform-origin:50% 50%;
  4197. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4198. font-weight:400;
  4199. font-style:normal;
  4200. font-size:16px;
  4201. }
  4202. #u15924 .text {
  4203. position:absolute;
  4204. align-self:flex-start;
  4205. padding:0px 0px 0px 0px;
  4206. box-sizing:border-box;
  4207. width:100%;
  4208. }
  4209. #u15924_text {
  4210. border-width:0px;
  4211. white-space:nowrap;
  4212. text-transform:none;
  4213. }
  4214. #u15925_div {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:0px;
  4218. top:0px;
  4219. width:65px;
  4220. height:22px;
  4221. background:inherit;
  4222. background-color:rgba(255, 255, 255, 0);
  4223. border-radius:0px;
  4224. filter:drop-shadow(none);
  4225. transition:none;
  4226. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4227. font-weight:400;
  4228. font-style:normal;
  4229. font-size:16px;
  4230. }
  4231. #u15925 {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:26px;
  4235. top:314px;
  4236. width:65px;
  4237. height:22px;
  4238. display:flex;
  4239. transition:none;
  4240. transform-origin:50% 50%;
  4241. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4242. font-weight:400;
  4243. font-style:normal;
  4244. font-size:16px;
  4245. }
  4246. #u15925 .text {
  4247. position:absolute;
  4248. align-self:flex-start;
  4249. padding:0px 0px 0px 0px;
  4250. box-sizing:border-box;
  4251. width:100%;
  4252. }
  4253. #u15925_text {
  4254. border-width:0px;
  4255. white-space:nowrap;
  4256. text-transform:none;
  4257. }
  4258. #u15926_div {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:0px;
  4262. top:0px;
  4263. width:129px;
  4264. height:22px;
  4265. background:inherit;
  4266. background-color:rgba(255, 255, 255, 0);
  4267. border-radius:0px;
  4268. filter:drop-shadow(none);
  4269. transition:none;
  4270. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4271. font-weight:400;
  4272. font-style:normal;
  4273. font-size:16px;
  4274. }
  4275. #u15926 {
  4276. border-width:0px;
  4277. position:absolute;
  4278. left:25px;
  4279. top:956px;
  4280. width:129px;
  4281. height:22px;
  4282. display:flex;
  4283. transition:none;
  4284. transform-origin:50% 50%;
  4285. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4286. font-weight:400;
  4287. font-style:normal;
  4288. font-size:16px;
  4289. }
  4290. #u15926 .text {
  4291. position:absolute;
  4292. align-self:flex-start;
  4293. padding:0px 0px 0px 0px;
  4294. box-sizing:border-box;
  4295. width:100%;
  4296. }
  4297. #u15926_text {
  4298. border-width:0px;
  4299. white-space:nowrap;
  4300. text-transform:none;
  4301. }
  4302. #u15927_div {
  4303. border-width:0px;
  4304. position:absolute;
  4305. left:0px;
  4306. top:0px;
  4307. width:129px;
  4308. height:22px;
  4309. background:inherit;
  4310. background-color:rgba(255, 255, 255, 0);
  4311. border-radius:0px;
  4312. filter:drop-shadow(none);
  4313. transition:none;
  4314. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4315. font-weight:400;
  4316. font-style:normal;
  4317. font-size:16px;
  4318. }
  4319. #u15927 {
  4320. border-width:0px;
  4321. position:absolute;
  4322. left:25px;
  4323. top:748px;
  4324. width:129px;
  4325. height:22px;
  4326. display:flex;
  4327. transition:none;
  4328. transform-origin:50% 50%;
  4329. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4330. font-weight:400;
  4331. font-style:normal;
  4332. font-size:16px;
  4333. }
  4334. #u15927 .text {
  4335. position:absolute;
  4336. align-self:flex-start;
  4337. padding:0px 0px 0px 0px;
  4338. box-sizing:border-box;
  4339. width:100%;
  4340. }
  4341. #u15927_text {
  4342. border-width:0px;
  4343. white-space:nowrap;
  4344. text-transform:none;
  4345. }
  4346. #u15928_div {
  4347. border-width:0px;
  4348. position:absolute;
  4349. left:0px;
  4350. top:0px;
  4351. width:97px;
  4352. height:17px;
  4353. background:inherit;
  4354. background-color:rgba(255, 255, 255, 0);
  4355. border-radius:0px;
  4356. filter:drop-shadow(none);
  4357. transition:none;
  4358. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4359. font-weight:400;
  4360. font-style:normal;
  4361. font-size:12px;
  4362. color:#AAAAAA;
  4363. }
  4364. #u15928 {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:23px;
  4368. top:711px;
  4369. width:97px;
  4370. height:17px;
  4371. display:flex;
  4372. transition:none;
  4373. transform-origin:50% 50%;
  4374. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4375. font-weight:400;
  4376. font-style:normal;
  4377. font-size:12px;
  4378. color:#AAAAAA;
  4379. }
  4380. #u15928 .text {
  4381. position:absolute;
  4382. align-self:flex-start;
  4383. padding:0px 0px 0px 0px;
  4384. box-sizing:border-box;
  4385. width:100%;
  4386. }
  4387. #u15928_text {
  4388. border-width:0px;
  4389. white-space:nowrap;
  4390. text-transform:none;
  4391. }
  4392. #u15929 {
  4393. border-width:0px;
  4394. position:absolute;
  4395. left:0px;
  4396. top:690px;
  4397. width:200px;
  4398. height:1px;
  4399. display:flex;
  4400. transition:none;
  4401. }
  4402. #u15929 .text {
  4403. position:absolute;
  4404. align-self:center;
  4405. padding:2px 2px 2px 2px;
  4406. box-sizing:border-box;
  4407. width:100%;
  4408. }
  4409. #u15929_img {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:0px;
  4413. top:0px;
  4414. width:201px;
  4415. height:2px;
  4416. }
  4417. #u15929_text {
  4418. border-width:0px;
  4419. word-wrap:break-word;
  4420. text-transform:none;
  4421. visibility:hidden;
  4422. }
  4423. #u15930_div {
  4424. border-width:0px;
  4425. position:absolute;
  4426. left:0px;
  4427. top:0px;
  4428. width:129px;
  4429. height:22px;
  4430. background:inherit;
  4431. background-color:rgba(255, 255, 255, 0);
  4432. border-radius:0px;
  4433. filter:drop-shadow(none);
  4434. transition:none;
  4435. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4436. font-weight:400;
  4437. font-style:normal;
  4438. font-size:16px;
  4439. }
  4440. #u15930 {
  4441. border-width:0px;
  4442. position:absolute;
  4443. left:25px;
  4444. top:830px;
  4445. width:129px;
  4446. height:22px;
  4447. display:flex;
  4448. transition:none;
  4449. transform-origin:50% 50%;
  4450. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4451. font-weight:400;
  4452. font-style:normal;
  4453. font-size:16px;
  4454. }
  4455. #u15930 .text {
  4456. position:absolute;
  4457. align-self:flex-start;
  4458. padding:0px 0px 0px 0px;
  4459. box-sizing:border-box;
  4460. width:100%;
  4461. }
  4462. #u15930_text {
  4463. border-width:0px;
  4464. white-space:nowrap;
  4465. text-transform:none;
  4466. }
  4467. #u15931_div {
  4468. border-width:0px;
  4469. position:absolute;
  4470. left:0px;
  4471. top:0px;
  4472. width:129px;
  4473. height:22px;
  4474. background:inherit;
  4475. background-color:rgba(255, 255, 255, 0);
  4476. border-radius:0px;
  4477. filter:drop-shadow(none);
  4478. transition:none;
  4479. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4480. font-weight:400;
  4481. font-style:normal;
  4482. font-size:16px;
  4483. }
  4484. #u15931 {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:25px;
  4488. top:872px;
  4489. width:129px;
  4490. height:22px;
  4491. display:flex;
  4492. transition:none;
  4493. transform-origin:50% 50%;
  4494. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4495. font-weight:400;
  4496. font-style:normal;
  4497. font-size:16px;
  4498. }
  4499. #u15931 .text {
  4500. position:absolute;
  4501. align-self:flex-start;
  4502. padding:0px 0px 0px 0px;
  4503. box-sizing:border-box;
  4504. width:100%;
  4505. }
  4506. #u15931_text {
  4507. border-width:0px;
  4508. white-space:nowrap;
  4509. text-transform:none;
  4510. }
  4511. #u15932_div {
  4512. border-width:0px;
  4513. position:absolute;
  4514. left:0px;
  4515. top:0px;
  4516. width:65px;
  4517. height:22px;
  4518. background:inherit;
  4519. background-color:rgba(255, 255, 255, 0);
  4520. border-radius:0px;
  4521. filter:drop-shadow(none);
  4522. transition:none;
  4523. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4524. font-weight:400;
  4525. font-style:normal;
  4526. font-size:16px;
  4527. }
  4528. #u15932 {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:25px;
  4532. top:1056px;
  4533. width:65px;
  4534. height:22px;
  4535. display:flex;
  4536. transition:none;
  4537. transform-origin:50% 50%;
  4538. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4539. font-weight:400;
  4540. font-style:normal;
  4541. font-size:16px;
  4542. }
  4543. #u15932 .text {
  4544. position:absolute;
  4545. align-self:flex-start;
  4546. padding:0px 0px 0px 0px;
  4547. box-sizing:border-box;
  4548. width:100%;
  4549. }
  4550. #u15932_text {
  4551. border-width:0px;
  4552. white-space:nowrap;
  4553. text-transform:none;
  4554. }
  4555. #u15933_div {
  4556. border-width:0px;
  4557. position:absolute;
  4558. left:0px;
  4559. top:0px;
  4560. width:49px;
  4561. height:17px;
  4562. background:inherit;
  4563. background-color:rgba(255, 255, 255, 0);
  4564. border-radius:0px;
  4565. filter:drop-shadow(none);
  4566. transition:none;
  4567. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4568. font-weight:400;
  4569. font-style:normal;
  4570. font-size:12px;
  4571. color:#AAAAAA;
  4572. }
  4573. #u15933 {
  4574. border-width:0px;
  4575. position:absolute;
  4576. left:23px;
  4577. top:1019px;
  4578. width:49px;
  4579. height:17px;
  4580. display:flex;
  4581. transition:none;
  4582. transform-origin:50% 50%;
  4583. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4584. font-weight:400;
  4585. font-style:normal;
  4586. font-size:12px;
  4587. color:#AAAAAA;
  4588. }
  4589. #u15933 .text {
  4590. position:absolute;
  4591. align-self:flex-start;
  4592. padding:0px 0px 0px 0px;
  4593. box-sizing:border-box;
  4594. width:100%;
  4595. }
  4596. #u15933_text {
  4597. border-width:0px;
  4598. white-space:nowrap;
  4599. text-transform:none;
  4600. }
  4601. #u15934 {
  4602. border-width:0px;
  4603. position:absolute;
  4604. left:0px;
  4605. top:998px;
  4606. width:200px;
  4607. height:1px;
  4608. display:flex;
  4609. transition:none;
  4610. }
  4611. #u15934 .text {
  4612. position:absolute;
  4613. align-self:center;
  4614. padding:2px 2px 2px 2px;
  4615. box-sizing:border-box;
  4616. width:100%;
  4617. }
  4618. #u15934_img {
  4619. border-width:0px;
  4620. position:absolute;
  4621. left:0px;
  4622. top:0px;
  4623. width:201px;
  4624. height:2px;
  4625. }
  4626. #u15934_text {
  4627. border-width:0px;
  4628. word-wrap:break-word;
  4629. text-transform:none;
  4630. visibility:hidden;
  4631. }
  4632. #u15935_div {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:0px;
  4636. top:0px;
  4637. width:65px;
  4638. height:22px;
  4639. background:inherit;
  4640. background-color:rgba(255, 255, 255, 0);
  4641. border-radius:0px;
  4642. filter:drop-shadow(none);
  4643. transition:none;
  4644. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4645. font-weight:400;
  4646. font-style:normal;
  4647. font-size:16px;
  4648. }
  4649. #u15935 {
  4650. border-width:0px;
  4651. position:absolute;
  4652. left:25px;
  4653. top:1098px;
  4654. width:65px;
  4655. height:22px;
  4656. display:flex;
  4657. transition:none;
  4658. transform-origin:50% 50%;
  4659. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4660. font-weight:400;
  4661. font-style:normal;
  4662. font-size:16px;
  4663. }
  4664. #u15935 .text {
  4665. position:absolute;
  4666. align-self:flex-start;
  4667. padding:0px 0px 0px 0px;
  4668. box-sizing:border-box;
  4669. width:100%;
  4670. }
  4671. #u15935_text {
  4672. border-width:0px;
  4673. white-space:nowrap;
  4674. text-transform:none;
  4675. }
  4676. #u15936_div {
  4677. border-width:0px;
  4678. position:absolute;
  4679. left:0px;
  4680. top:0px;
  4681. width:129px;
  4682. height:22px;
  4683. background:inherit;
  4684. background-color:rgba(255, 255, 255, 0);
  4685. border-radius:0px;
  4686. filter:drop-shadow(none);
  4687. transition:none;
  4688. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4689. font-weight:400;
  4690. font-style:normal;
  4691. font-size:16px;
  4692. }
  4693. #u15936 {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:25px;
  4697. top:914px;
  4698. width:129px;
  4699. height:22px;
  4700. display:flex;
  4701. transition:none;
  4702. transform-origin:50% 50%;
  4703. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4704. font-weight:400;
  4705. font-style:normal;
  4706. font-size:16px;
  4707. }
  4708. #u15936 .text {
  4709. position:absolute;
  4710. align-self:flex-start;
  4711. padding:0px 0px 0px 0px;
  4712. box-sizing:border-box;
  4713. width:100%;
  4714. }
  4715. #u15936_text {
  4716. border-width:0px;
  4717. white-space:nowrap;
  4718. text-transform:none;
  4719. }
  4720. #u15937_div {
  4721. border-width:0px;
  4722. position:absolute;
  4723. left:0px;
  4724. top:0px;
  4725. width:81px;
  4726. height:22px;
  4727. background:inherit;
  4728. background-color:rgba(255, 255, 255, 0);
  4729. border-radius:0px;
  4730. filter:drop-shadow(none);
  4731. transition:none;
  4732. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4733. font-weight:400;
  4734. font-style:normal;
  4735. font-size:16px;
  4736. }
  4737. #u15937 {
  4738. border-width:0px;
  4739. position:absolute;
  4740. left:26px;
  4741. top:356px;
  4742. width:81px;
  4743. height:22px;
  4744. display:flex;
  4745. transition:none;
  4746. transform-origin:50% 50%;
  4747. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4748. font-weight:400;
  4749. font-style:normal;
  4750. font-size:16px;
  4751. }
  4752. #u15937 .text {
  4753. position:absolute;
  4754. align-self:flex-start;
  4755. padding:0px 0px 0px 0px;
  4756. box-sizing:border-box;
  4757. width:100%;
  4758. }
  4759. #u15937_text {
  4760. border-width:0px;
  4761. white-space:nowrap;
  4762. text-transform:none;
  4763. }
  4764. #u15938_div {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:0px;
  4768. top:0px;
  4769. width:129px;
  4770. height:22px;
  4771. background:inherit;
  4772. background-color:rgba(255, 255, 255, 0);
  4773. border-radius:0px;
  4774. filter:drop-shadow(none);
  4775. transition:none;
  4776. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4777. font-weight:400;
  4778. font-style:normal;
  4779. font-size:16px;
  4780. }
  4781. #u15938 {
  4782. border-width:0px;
  4783. position:absolute;
  4784. left:25px;
  4785. top:790px;
  4786. width:129px;
  4787. height:22px;
  4788. display:flex;
  4789. transition:none;
  4790. transform-origin:50% 50%;
  4791. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4792. font-weight:400;
  4793. font-style:normal;
  4794. font-size:16px;
  4795. }
  4796. #u15938 .text {
  4797. position:absolute;
  4798. align-self:flex-start;
  4799. padding:0px 0px 0px 0px;
  4800. box-sizing:border-box;
  4801. width:100%;
  4802. }
  4803. #u15938_text {
  4804. border-width:0px;
  4805. white-space:nowrap;
  4806. text-transform:none;
  4807. }
  4808. #u15939_div {
  4809. border-width:0px;
  4810. position:absolute;
  4811. left:0px;
  4812. top:0px;
  4813. width:65px;
  4814. height:22px;
  4815. background:inherit;
  4816. background-color:rgba(255, 255, 255, 0);
  4817. border-radius:0px;
  4818. filter:drop-shadow(none);
  4819. transition:none;
  4820. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4821. font-weight:400;
  4822. font-style:normal;
  4823. font-size:16px;
  4824. }
  4825. #u15939 {
  4826. border-width:0px;
  4827. position:absolute;
  4828. left:25px;
  4829. top:160px;
  4830. width:65px;
  4831. height:22px;
  4832. display:flex;
  4833. transition:none;
  4834. transform-origin:50% 50%;
  4835. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4836. font-weight:400;
  4837. font-style:normal;
  4838. font-size:16px;
  4839. }
  4840. #u15939 .text {
  4841. position:absolute;
  4842. align-self:flex-start;
  4843. padding:0px 0px 0px 0px;
  4844. box-sizing:border-box;
  4845. width:100%;
  4846. }
  4847. #u15939_text {
  4848. border-width:0px;
  4849. white-space:nowrap;
  4850. text-transform:none;
  4851. }
  4852. #u15940_div {
  4853. border-width:0px;
  4854. position:absolute;
  4855. left:0px;
  4856. top:0px;
  4857. width:81px;
  4858. height:22px;
  4859. background:inherit;
  4860. background-color:rgba(255, 255, 255, 0);
  4861. border-radius:0px;
  4862. filter:drop-shadow(none);
  4863. transition:none;
  4864. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4865. font-weight:400;
  4866. font-style:normal;
  4867. font-size:16px;
  4868. }
  4869. #u15940 {
  4870. border-width:0px;
  4871. position:absolute;
  4872. left:25px;
  4873. top:598px;
  4874. width:81px;
  4875. height:22px;
  4876. display:flex;
  4877. transition:none;
  4878. transform-origin:50% 50%;
  4879. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4880. font-weight:400;
  4881. font-style:normal;
  4882. font-size:16px;
  4883. }
  4884. #u15940 .text {
  4885. position:absolute;
  4886. align-self:flex-start;
  4887. padding:0px 0px 0px 0px;
  4888. box-sizing:border-box;
  4889. width:100%;
  4890. }
  4891. #u15940_text {
  4892. border-width:0px;
  4893. white-space:nowrap;
  4894. text-transform:none;
  4895. }
  4896. #u15941_div {
  4897. border-width:0px;
  4898. position:absolute;
  4899. left:0px;
  4900. top:0px;
  4901. width:65px;
  4902. height:22px;
  4903. background:inherit;
  4904. background-color:rgba(255, 255, 255, 0);
  4905. border-radius:0px;
  4906. filter:drop-shadow(none);
  4907. transition:none;
  4908. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4909. font-weight:400;
  4910. font-style:normal;
  4911. font-size:16px;
  4912. }
  4913. #u15941 {
  4914. border-width:0px;
  4915. position:absolute;
  4916. left:25px;
  4917. top:640px;
  4918. width:65px;
  4919. height:22px;
  4920. display:flex;
  4921. transition:none;
  4922. transform-origin:50% 50%;
  4923. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4924. font-weight:400;
  4925. font-style:normal;
  4926. font-size:16px;
  4927. }
  4928. #u15941 .text {
  4929. position:absolute;
  4930. align-self:flex-start;
  4931. padding:0px 0px 0px 0px;
  4932. box-sizing:border-box;
  4933. width:100%;
  4934. }
  4935. #u15941_text {
  4936. border-width:0px;
  4937. white-space:nowrap;
  4938. text-transform:none;
  4939. }
  4940. #u15942_div {
  4941. border-width:0px;
  4942. position:absolute;
  4943. left:0px;
  4944. top:0px;
  4945. width:73px;
  4946. height:17px;
  4947. background:inherit;
  4948. background-color:rgba(255, 255, 255, 0);
  4949. border-radius:0px;
  4950. filter:drop-shadow(none);
  4951. transition:none;
  4952. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4953. font-weight:400;
  4954. font-style:normal;
  4955. font-size:12px;
  4956. color:#AAAAAA;
  4957. }
  4958. #u15942 {
  4959. border-width:0px;
  4960. position:absolute;
  4961. left:23px;
  4962. top:561px;
  4963. width:73px;
  4964. height:17px;
  4965. display:flex;
  4966. transition:none;
  4967. transform-origin:50% 50%;
  4968. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4969. font-weight:400;
  4970. font-style:normal;
  4971. font-size:12px;
  4972. color:#AAAAAA;
  4973. }
  4974. #u15942 .text {
  4975. position:absolute;
  4976. align-self:flex-start;
  4977. padding:0px 0px 0px 0px;
  4978. box-sizing:border-box;
  4979. width:100%;
  4980. }
  4981. #u15942_text {
  4982. border-width:0px;
  4983. white-space:nowrap;
  4984. text-transform:none;
  4985. }
  4986. #u15943 {
  4987. border-width:0px;
  4988. position:absolute;
  4989. left:0px;
  4990. top:540px;
  4991. width:200px;
  4992. height:1px;
  4993. display:flex;
  4994. transition:none;
  4995. }
  4996. #u15943 .text {
  4997. position:absolute;
  4998. align-self:center;
  4999. padding:2px 2px 2px 2px;
  5000. box-sizing:border-box;
  5001. width:100%;
  5002. }
  5003. #u15943_img {
  5004. border-width:0px;
  5005. position:absolute;
  5006. left:0px;
  5007. top:0px;
  5008. width:201px;
  5009. height:2px;
  5010. }
  5011. #u15943_text {
  5012. border-width:0px;
  5013. word-wrap:break-word;
  5014. text-transform:none;
  5015. visibility:hidden;
  5016. }
  5017. #u15944_div {
  5018. border-width:0px;
  5019. position:absolute;
  5020. left:0px;
  5021. top:0px;
  5022. width:393px;
  5023. height:20px;
  5024. background:inherit;
  5025. background-color:rgba(255, 255, 255, 0);
  5026. border-left:0px;
  5027. border-top:0px;
  5028. border-right:0px;
  5029. border-radius:0px;
  5030. border-bottom-right-radius:0px;
  5031. border-bottom-left-radius:0px;
  5032. filter:drop-shadow(none);
  5033. transition:none;
  5034. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5035. font-weight:400;
  5036. font-style:normal;
  5037. font-size:14px;
  5038. color:#7F7F7F;
  5039. }
  5040. #u15944 {
  5041. border-width:0px;
  5042. position:absolute;
  5043. left:352px;
  5044. top:100px;
  5045. width:393px;
  5046. height:20px;
  5047. display:flex;
  5048. transition:none;
  5049. transform-origin:50% 50%;
  5050. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5051. font-weight:400;
  5052. font-style:normal;
  5053. font-size:14px;
  5054. color:#7F7F7F;
  5055. }
  5056. #u15944 .text {
  5057. position:absolute;
  5058. align-self:center;
  5059. padding:0px 0px 0px 0px;
  5060. box-sizing:border-box;
  5061. width:100%;
  5062. }
  5063. #u15944_text {
  5064. border-width:0px;
  5065. white-space:nowrap;
  5066. text-transform:none;
  5067. }
  5068. #u15945_div {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:0px;
  5072. top:0px;
  5073. width:680px;
  5074. height:44px;
  5075. background:inherit;
  5076. background-color:rgba(255, 255, 255, 0);
  5077. border-top:0px;
  5078. border-right:0px;
  5079. border-bottom:0px;
  5080. border-radius:0px;
  5081. border-top-left-radius:0px;
  5082. border-bottom-left-radius:0px;
  5083. filter:drop-shadow(none);
  5084. transition:none;
  5085. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5086. font-weight:400;
  5087. font-style:normal;
  5088. font-size:12px;
  5089. color:#D9001B;
  5090. }
  5091. #u15945 {
  5092. border-width:0px;
  5093. position:absolute;
  5094. left:605px;
  5095. top:640px;
  5096. width:680px;
  5097. height:44px;
  5098. display:flex;
  5099. transition:none;
  5100. transform-origin:50% 50%;
  5101. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5102. font-weight:400;
  5103. font-style:normal;
  5104. font-size:12px;
  5105. color:#D9001B;
  5106. }
  5107. #u15945 .text {
  5108. position:absolute;
  5109. align-self:center;
  5110. padding:5px 0px 5px 0px;
  5111. box-sizing:border-box;
  5112. width:100%;
  5113. }
  5114. #u15945_text {
  5115. border-width:0px;
  5116. white-space:nowrap;
  5117. text-transform:none;
  5118. }
  5119. #u15946_div {
  5120. border-width:0px;
  5121. position:absolute;
  5122. left:0px;
  5123. top:0px;
  5124. width:55px;
  5125. height:30px;
  5126. background:inherit;
  5127. background-color:rgba(255, 255, 255, 1);
  5128. box-sizing:border-box;
  5129. border-width:1px;
  5130. border-style:solid;
  5131. border-color:rgba(170, 170, 170, 1);
  5132. border-radius:4px;
  5133. filter:drop-shadow(none);
  5134. transition:none;
  5135. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5136. font-weight:400;
  5137. font-style:normal;
  5138. font-size:12px;
  5139. color:#555555;
  5140. }
  5141. #u15946 {
  5142. border-width:0px;
  5143. position:absolute;
  5144. left:689px;
  5145. top:239px;
  5146. width:55px;
  5147. height:30px;
  5148. display:flex;
  5149. transition:none;
  5150. transform-origin:50% 50%;
  5151. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5152. font-weight:400;
  5153. font-style:normal;
  5154. font-size:12px;
  5155. color:#555555;
  5156. }
  5157. #u15946 .text {
  5158. position:absolute;
  5159. align-self:center;
  5160. padding:5px 15px 5px 15px;
  5161. box-sizing:border-box;
  5162. width:100%;
  5163. }
  5164. #u15946_text {
  5165. border-width:0px;
  5166. white-space:nowrap;
  5167. text-transform:none;
  5168. }
  5169. #u15947_div {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:0px;
  5173. top:0px;
  5174. width:59px;
  5175. height:30px;
  5176. background:inherit;
  5177. background-color:rgba(255, 255, 255, 1);
  5178. box-sizing:border-box;
  5179. border-width:1px;
  5180. border-style:solid;
  5181. border-color:rgba(170, 170, 170, 1);
  5182. border-radius:4px;
  5183. filter:drop-shadow(none);
  5184. transition:none;
  5185. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5186. font-weight:400;
  5187. font-style:normal;
  5188. font-size:14px;
  5189. color:#555555;
  5190. }
  5191. #u15947 {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:620px;
  5195. top:239px;
  5196. width:59px;
  5197. height:30px;
  5198. display:flex;
  5199. transition:none;
  5200. transform-origin:50% 50%;
  5201. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5202. font-weight:400;
  5203. font-style:normal;
  5204. font-size:14px;
  5205. color:#555555;
  5206. }
  5207. #u15947 .text {
  5208. position:absolute;
  5209. align-self:center;
  5210. padding:5px 15px 5px 15px;
  5211. box-sizing:border-box;
  5212. width:100%;
  5213. }
  5214. #u15947_text {
  5215. border-width:0px;
  5216. white-space:nowrap;
  5217. text-transform:none;
  5218. }
  5219. #u15948_div {
  5220. border-width:0px;
  5221. position:absolute;
  5222. left:0px;
  5223. top:0px;
  5224. width:115px;
  5225. height:30px;
  5226. background:inherit;
  5227. background-color:rgba(255, 255, 255, 1);
  5228. border-radius:4px;
  5229. filter:drop-shadow(none);
  5230. transition:none;
  5231. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5232. font-weight:400;
  5233. font-style:normal;
  5234. font-size:12px;
  5235. text-decoration:underline ;
  5236. color:#298FFF;
  5237. }
  5238. #u15948 {
  5239. border-width:0px;
  5240. position:absolute;
  5241. left:1463px;
  5242. top:237px;
  5243. width:115px;
  5244. height:30px;
  5245. display:flex;
  5246. transition:none;
  5247. transform-origin:50% 50%;
  5248. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5249. font-weight:400;
  5250. font-style:normal;
  5251. font-size:12px;
  5252. text-decoration:underline ;
  5253. color:#298FFF;
  5254. }
  5255. #u15948 .text {
  5256. position:absolute;
  5257. align-self:center;
  5258. padding:5px 15px 5px 15px;
  5259. box-sizing:border-box;
  5260. width:100%;
  5261. }
  5262. #u15948_text {
  5263. border-width:0px;
  5264. white-space:nowrap;
  5265. text-transform:none;
  5266. }
  5267. #u15949 {
  5268. border-width:0px;
  5269. position:absolute;
  5270. left:0px;
  5271. top:0px;
  5272. width:0px;
  5273. height:0px;
  5274. }
  5275. #u15950 {
  5276. border-width:0px;
  5277. position:absolute;
  5278. left:350px;
  5279. top:221px;
  5280. width:117px;
  5281. height:400px;
  5282. transition:none;
  5283. }
  5284. #u15950_children {
  5285. border-width:0px;
  5286. position:absolute;
  5287. left:0px;
  5288. top:0px;
  5289. width:0px;
  5290. height:0px;
  5291. }
  5292. #u15951 {
  5293. border-width:0px;
  5294. position:absolute;
  5295. left:0px;
  5296. top:0px;
  5297. width:98px;
  5298. height:20px;
  5299. transition:none;
  5300. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5301. font-weight:400;
  5302. font-style:normal;
  5303. }
  5304. #u15952 {
  5305. border-width:0px;
  5306. position:absolute;
  5307. left:6px;
  5308. top:6px;
  5309. width:9px;
  5310. height:9px;
  5311. display:flex;
  5312. transition:none;
  5313. }
  5314. #u15952 .text {
  5315. position:absolute;
  5316. align-self:center;
  5317. padding:2px 2px 2px 2px;
  5318. box-sizing:border-box;
  5319. width:100%;
  5320. }
  5321. #u15952_img {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:0px;
  5325. top:0px;
  5326. width:9px;
  5327. height:9px;
  5328. }
  5329. #u15952_img.selected {
  5330. }
  5331. #u15952.selected {
  5332. }
  5333. #u15952_text {
  5334. border-width:0px;
  5335. word-wrap:break-word;
  5336. text-transform:none;
  5337. visibility:hidden;
  5338. }
  5339. #u15953_div {
  5340. border-width:0px;
  5341. position:absolute;
  5342. left:0px;
  5343. top:0px;
  5344. width:76px;
  5345. height:20px;
  5346. background:inherit;
  5347. background-color:rgba(255, 255, 255, 0);
  5348. border-radius:0px;
  5349. filter:drop-shadow(none);
  5350. transition:none;
  5351. }
  5352. #u15953 {
  5353. border-width:0px;
  5354. position:absolute;
  5355. left:22px;
  5356. top:0px;
  5357. width:76px;
  5358. height:20px;
  5359. display:flex;
  5360. transition:none;
  5361. transform-origin:50% 50%;
  5362. }
  5363. #u15953 .text {
  5364. position:absolute;
  5365. align-self:center;
  5366. padding:2px 2px 2px 3px;
  5367. box-sizing:border-box;
  5368. width:100%;
  5369. }
  5370. #u15953_text {
  5371. border-width:0px;
  5372. white-space:nowrap;
  5373. text-transform:none;
  5374. }
  5375. #u15951_children {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:0px;
  5379. top:0px;
  5380. width:0px;
  5381. height:0px;
  5382. }
  5383. #u15954 {
  5384. border-width:0px;
  5385. position:absolute;
  5386. left:20px;
  5387. top:20px;
  5388. width:62px;
  5389. height:20px;
  5390. transition:none;
  5391. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5392. font-weight:400;
  5393. font-style:normal;
  5394. }
  5395. #u15955_div {
  5396. border-width:0px;
  5397. position:absolute;
  5398. left:0px;
  5399. top:0px;
  5400. width:40px;
  5401. height:20px;
  5402. background:inherit;
  5403. background-color:rgba(255, 255, 255, 0);
  5404. border-radius:0px;
  5405. filter:drop-shadow(none);
  5406. transition:none;
  5407. }
  5408. #u15955 {
  5409. border-width:0px;
  5410. position:absolute;
  5411. left:22px;
  5412. top:0px;
  5413. width:40px;
  5414. height:20px;
  5415. display:flex;
  5416. transition:none;
  5417. transform-origin:50% 50%;
  5418. }
  5419. #u15955 .text {
  5420. position:absolute;
  5421. align-self:center;
  5422. padding:2px 2px 2px 3px;
  5423. box-sizing:border-box;
  5424. width:100%;
  5425. }
  5426. #u15955_text {
  5427. border-width:0px;
  5428. white-space:nowrap;
  5429. text-transform:none;
  5430. }
  5431. #u15956 {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:20px;
  5435. top:40px;
  5436. width:64px;
  5437. height:20px;
  5438. transition:none;
  5439. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5440. font-weight:400;
  5441. font-style:normal;
  5442. }
  5443. #u15957_div {
  5444. border-width:0px;
  5445. position:absolute;
  5446. left:0px;
  5447. top:0px;
  5448. width:42px;
  5449. height:20px;
  5450. background:inherit;
  5451. background-color:rgba(255, 255, 255, 0);
  5452. border-radius:0px;
  5453. filter:drop-shadow(none);
  5454. transition:none;
  5455. }
  5456. #u15957 {
  5457. border-width:0px;
  5458. position:absolute;
  5459. left:22px;
  5460. top:0px;
  5461. width:42px;
  5462. height:20px;
  5463. display:flex;
  5464. transition:none;
  5465. transform-origin:50% 50%;
  5466. }
  5467. #u15957 .text {
  5468. position:absolute;
  5469. align-self:center;
  5470. padding:2px 2px 2px 3px;
  5471. box-sizing:border-box;
  5472. width:100%;
  5473. }
  5474. #u15957_text {
  5475. border-width:0px;
  5476. white-space:nowrap;
  5477. text-transform:none;
  5478. }
  5479. #u15958 {
  5480. border-width:0px;
  5481. position:absolute;
  5482. left:20px;
  5483. top:60px;
  5484. width:62px;
  5485. height:20px;
  5486. transition:none;
  5487. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5488. font-weight:400;
  5489. font-style:normal;
  5490. color:#1890FF;
  5491. }
  5492. #u15959_div {
  5493. border-width:0px;
  5494. position:absolute;
  5495. left:0px;
  5496. top:0px;
  5497. width:40px;
  5498. height:20px;
  5499. background:inherit;
  5500. background-color:rgba(255, 255, 255, 0);
  5501. border-radius:0px;
  5502. filter:drop-shadow(none);
  5503. transition:none;
  5504. }
  5505. #u15959 {
  5506. border-width:0px;
  5507. position:absolute;
  5508. left:22px;
  5509. top:0px;
  5510. width:40px;
  5511. height:20px;
  5512. display:flex;
  5513. transition:none;
  5514. transform-origin:50% 50%;
  5515. }
  5516. #u15959 .text {
  5517. position:absolute;
  5518. align-self:center;
  5519. padding:2px 2px 2px 3px;
  5520. box-sizing:border-box;
  5521. width:100%;
  5522. }
  5523. #u15959_text {
  5524. border-width:0px;
  5525. white-space:nowrap;
  5526. text-transform:none;
  5527. }
  5528. #u15960 {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:20px;
  5532. top:80px;
  5533. width:64px;
  5534. height:20px;
  5535. transition:none;
  5536. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5537. font-weight:400;
  5538. font-style:normal;
  5539. }
  5540. #u15961_div {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:0px;
  5544. top:0px;
  5545. width:42px;
  5546. height:20px;
  5547. background:inherit;
  5548. background-color:rgba(255, 255, 255, 0);
  5549. border-radius:0px;
  5550. filter:drop-shadow(none);
  5551. transition:none;
  5552. }
  5553. #u15961 {
  5554. border-width:0px;
  5555. position:absolute;
  5556. left:22px;
  5557. top:0px;
  5558. width:42px;
  5559. height:20px;
  5560. display:flex;
  5561. transition:none;
  5562. transform-origin:50% 50%;
  5563. }
  5564. #u15961 .text {
  5565. position:absolute;
  5566. align-self:center;
  5567. padding:2px 2px 2px 3px;
  5568. box-sizing:border-box;
  5569. width:100%;
  5570. }
  5571. #u15961_text {
  5572. border-width:0px;
  5573. white-space:nowrap;
  5574. text-transform:none;
  5575. }
  5576. #u15962 {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:20px;
  5580. top:100px;
  5581. width:62px;
  5582. height:20px;
  5583. transition:none;
  5584. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5585. font-weight:400;
  5586. font-style:normal;
  5587. }
  5588. #u15963_div {
  5589. border-width:0px;
  5590. position:absolute;
  5591. left:0px;
  5592. top:0px;
  5593. width:40px;
  5594. height:20px;
  5595. background:inherit;
  5596. background-color:rgba(255, 255, 255, 0);
  5597. border-radius:0px;
  5598. filter:drop-shadow(none);
  5599. transition:none;
  5600. }
  5601. #u15963 {
  5602. border-width:0px;
  5603. position:absolute;
  5604. left:22px;
  5605. top:0px;
  5606. width:40px;
  5607. height:20px;
  5608. display:flex;
  5609. transition:none;
  5610. transform-origin:50% 50%;
  5611. }
  5612. #u15963 .text {
  5613. position:absolute;
  5614. align-self:center;
  5615. padding:2px 2px 2px 3px;
  5616. box-sizing:border-box;
  5617. width:100%;
  5618. }
  5619. #u15963_text {
  5620. border-width:0px;
  5621. white-space:nowrap;
  5622. text-transform:none;
  5623. }
  5624. #u15964 {
  5625. border-width:0px;
  5626. position:absolute;
  5627. left:20px;
  5628. top:120px;
  5629. width:64px;
  5630. height:20px;
  5631. transition:none;
  5632. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5633. font-weight:400;
  5634. font-style:normal;
  5635. }
  5636. #u15965_div {
  5637. border-width:0px;
  5638. position:absolute;
  5639. left:0px;
  5640. top:0px;
  5641. width:42px;
  5642. height:20px;
  5643. background:inherit;
  5644. background-color:rgba(255, 255, 255, 0);
  5645. border-radius:0px;
  5646. filter:drop-shadow(none);
  5647. transition:none;
  5648. }
  5649. #u15965 {
  5650. border-width:0px;
  5651. position:absolute;
  5652. left:22px;
  5653. top:0px;
  5654. width:42px;
  5655. height:20px;
  5656. display:flex;
  5657. transition:none;
  5658. transform-origin:50% 50%;
  5659. }
  5660. #u15965 .text {
  5661. position:absolute;
  5662. align-self:center;
  5663. padding:2px 2px 2px 3px;
  5664. box-sizing:border-box;
  5665. width:100%;
  5666. }
  5667. #u15965_text {
  5668. border-width:0px;
  5669. white-space:nowrap;
  5670. text-transform:none;
  5671. }
  5672. #u15966 {
  5673. border-width:0px;
  5674. position:absolute;
  5675. left:20px;
  5676. top:140px;
  5677. width:41px;
  5678. height:20px;
  5679. transition:none;
  5680. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5681. font-weight:400;
  5682. font-style:normal;
  5683. }
  5684. #u15967_div {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:0px;
  5688. top:0px;
  5689. width:19px;
  5690. height:20px;
  5691. background:inherit;
  5692. background-color:rgba(255, 255, 255, 0);
  5693. border-radius:0px;
  5694. filter:drop-shadow(none);
  5695. transition:none;
  5696. }
  5697. #u15967 {
  5698. border-width:0px;
  5699. position:absolute;
  5700. left:22px;
  5701. top:0px;
  5702. width:19px;
  5703. height:20px;
  5704. display:flex;
  5705. transition:none;
  5706. transform-origin:50% 50%;
  5707. }
  5708. #u15967 .text {
  5709. position:absolute;
  5710. align-self:center;
  5711. padding:2px 2px 2px 3px;
  5712. box-sizing:border-box;
  5713. width:100%;
  5714. }
  5715. #u15967_text {
  5716. border-width:0px;
  5717. white-space:nowrap;
  5718. text-transform:none;
  5719. }
  5720. #u15968 {
  5721. border-width:0px;
  5722. position:absolute;
  5723. left:0px;
  5724. top:160px;
  5725. width:101px;
  5726. height:20px;
  5727. transition:none;
  5728. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5729. font-weight:400;
  5730. font-style:normal;
  5731. }
  5732. #u15969 {
  5733. border-width:0px;
  5734. position:absolute;
  5735. left:6px;
  5736. top:6px;
  5737. width:9px;
  5738. height:9px;
  5739. display:flex;
  5740. transition:none;
  5741. }
  5742. #u15969 .text {
  5743. position:absolute;
  5744. align-self:center;
  5745. padding:2px 2px 2px 2px;
  5746. box-sizing:border-box;
  5747. width:100%;
  5748. }
  5749. #u15969_img {
  5750. border-width:0px;
  5751. position:absolute;
  5752. left:0px;
  5753. top:0px;
  5754. width:9px;
  5755. height:9px;
  5756. }
  5757. #u15969_img.selected {
  5758. }
  5759. #u15969.selected {
  5760. }
  5761. #u15969_text {
  5762. border-width:0px;
  5763. word-wrap:break-word;
  5764. text-transform:none;
  5765. visibility:hidden;
  5766. }
  5767. #u15970_div {
  5768. border-width:0px;
  5769. position:absolute;
  5770. left:0px;
  5771. top:0px;
  5772. width:79px;
  5773. height:20px;
  5774. background:inherit;
  5775. background-color:rgba(255, 255, 255, 0);
  5776. border-radius:0px;
  5777. filter:drop-shadow(none);
  5778. transition:none;
  5779. }
  5780. #u15970 {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:22px;
  5784. top:0px;
  5785. width:79px;
  5786. height:20px;
  5787. display:flex;
  5788. transition:none;
  5789. transform-origin:50% 50%;
  5790. }
  5791. #u15970 .text {
  5792. position:absolute;
  5793. align-self:center;
  5794. padding:2px 2px 2px 3px;
  5795. box-sizing:border-box;
  5796. width:100%;
  5797. }
  5798. #u15970_text {
  5799. border-width:0px;
  5800. white-space:nowrap;
  5801. text-transform:none;
  5802. }
  5803. #u15968_children {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:0px;
  5807. top:0px;
  5808. width:0px;
  5809. height:0px;
  5810. }
  5811. #u15971 {
  5812. border-width:0px;
  5813. position:absolute;
  5814. left:20px;
  5815. top:20px;
  5816. width:62px;
  5817. height:20px;
  5818. transition:none;
  5819. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5820. font-weight:400;
  5821. font-style:normal;
  5822. }
  5823. #u15972_div {
  5824. border-width:0px;
  5825. position:absolute;
  5826. left:0px;
  5827. top:0px;
  5828. width:40px;
  5829. height:20px;
  5830. background:inherit;
  5831. background-color:rgba(255, 255, 255, 0);
  5832. border-radius:0px;
  5833. filter:drop-shadow(none);
  5834. transition:none;
  5835. }
  5836. #u15972 {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:22px;
  5840. top:0px;
  5841. width:40px;
  5842. height:20px;
  5843. display:flex;
  5844. transition:none;
  5845. transform-origin:50% 50%;
  5846. }
  5847. #u15972 .text {
  5848. position:absolute;
  5849. align-self:center;
  5850. padding:2px 2px 2px 3px;
  5851. box-sizing:border-box;
  5852. width:100%;
  5853. }
  5854. #u15972_text {
  5855. border-width:0px;
  5856. white-space:nowrap;
  5857. text-transform:none;
  5858. }
  5859. #u15973 {
  5860. border-width:0px;
  5861. position:absolute;
  5862. left:20px;
  5863. top:40px;
  5864. width:64px;
  5865. height:20px;
  5866. transition:none;
  5867. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5868. font-weight:400;
  5869. font-style:normal;
  5870. }
  5871. #u15974_div {
  5872. border-width:0px;
  5873. position:absolute;
  5874. left:0px;
  5875. top:0px;
  5876. width:42px;
  5877. height:20px;
  5878. background:inherit;
  5879. background-color:rgba(255, 255, 255, 0);
  5880. border-radius:0px;
  5881. filter:drop-shadow(none);
  5882. transition:none;
  5883. }
  5884. #u15974 {
  5885. border-width:0px;
  5886. position:absolute;
  5887. left:22px;
  5888. top:0px;
  5889. width:42px;
  5890. height:20px;
  5891. display:flex;
  5892. transition:none;
  5893. transform-origin:50% 50%;
  5894. }
  5895. #u15974 .text {
  5896. position:absolute;
  5897. align-self:center;
  5898. padding:2px 2px 2px 3px;
  5899. box-sizing:border-box;
  5900. width:100%;
  5901. }
  5902. #u15974_text {
  5903. border-width:0px;
  5904. white-space:nowrap;
  5905. text-transform:none;
  5906. }
  5907. #u15975 {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:20px;
  5911. top:60px;
  5912. width:62px;
  5913. height:20px;
  5914. transition:none;
  5915. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5916. font-weight:400;
  5917. font-style:normal;
  5918. }
  5919. #u15976_div {
  5920. border-width:0px;
  5921. position:absolute;
  5922. left:0px;
  5923. top:0px;
  5924. width:40px;
  5925. height:20px;
  5926. background:inherit;
  5927. background-color:rgba(255, 255, 255, 0);
  5928. border-radius:0px;
  5929. filter:drop-shadow(none);
  5930. transition:none;
  5931. }
  5932. #u15976 {
  5933. border-width:0px;
  5934. position:absolute;
  5935. left:22px;
  5936. top:0px;
  5937. width:40px;
  5938. height:20px;
  5939. display:flex;
  5940. transition:none;
  5941. transform-origin:50% 50%;
  5942. }
  5943. #u15976 .text {
  5944. position:absolute;
  5945. align-self:center;
  5946. padding:2px 2px 2px 3px;
  5947. box-sizing:border-box;
  5948. width:100%;
  5949. }
  5950. #u15976_text {
  5951. border-width:0px;
  5952. white-space:nowrap;
  5953. text-transform:none;
  5954. }
  5955. #u15977 {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:20px;
  5959. top:80px;
  5960. width:64px;
  5961. height:20px;
  5962. transition:none;
  5963. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5964. font-weight:400;
  5965. font-style:normal;
  5966. }
  5967. #u15978_div {
  5968. border-width:0px;
  5969. position:absolute;
  5970. left:0px;
  5971. top:0px;
  5972. width:42px;
  5973. height:20px;
  5974. background:inherit;
  5975. background-color:rgba(255, 255, 255, 0);
  5976. border-radius:0px;
  5977. filter:drop-shadow(none);
  5978. transition:none;
  5979. }
  5980. #u15978 {
  5981. border-width:0px;
  5982. position:absolute;
  5983. left:22px;
  5984. top:0px;
  5985. width:42px;
  5986. height:20px;
  5987. display:flex;
  5988. transition:none;
  5989. transform-origin:50% 50%;
  5990. }
  5991. #u15978 .text {
  5992. position:absolute;
  5993. align-self:center;
  5994. padding:2px 2px 2px 3px;
  5995. box-sizing:border-box;
  5996. width:100%;
  5997. }
  5998. #u15978_text {
  5999. border-width:0px;
  6000. white-space:nowrap;
  6001. text-transform:none;
  6002. }
  6003. #u15979 {
  6004. border-width:0px;
  6005. position:absolute;
  6006. left:20px;
  6007. top:100px;
  6008. width:41px;
  6009. height:20px;
  6010. transition:none;
  6011. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6012. font-weight:400;
  6013. font-style:normal;
  6014. }
  6015. #u15980_div {
  6016. border-width:0px;
  6017. position:absolute;
  6018. left:0px;
  6019. top:0px;
  6020. width:19px;
  6021. height:20px;
  6022. background:inherit;
  6023. background-color:rgba(255, 255, 255, 0);
  6024. border-radius:0px;
  6025. filter:drop-shadow(none);
  6026. transition:none;
  6027. }
  6028. #u15980 {
  6029. border-width:0px;
  6030. position:absolute;
  6031. left:22px;
  6032. top:0px;
  6033. width:19px;
  6034. height:20px;
  6035. display:flex;
  6036. transition:none;
  6037. transform-origin:50% 50%;
  6038. }
  6039. #u15980 .text {
  6040. position:absolute;
  6041. align-self:center;
  6042. padding:2px 2px 2px 3px;
  6043. box-sizing:border-box;
  6044. width:100%;
  6045. }
  6046. #u15980_text {
  6047. border-width:0px;
  6048. white-space:nowrap;
  6049. text-transform:none;
  6050. }
  6051. #u15981 {
  6052. border-width:0px;
  6053. position:absolute;
  6054. left:0px;
  6055. top:280px;
  6056. width:101px;
  6057. height:20px;
  6058. transition:none;
  6059. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6060. font-weight:400;
  6061. font-style:normal;
  6062. }
  6063. #u15982 {
  6064. border-width:0px;
  6065. position:absolute;
  6066. left:6px;
  6067. top:6px;
  6068. width:9px;
  6069. height:9px;
  6070. display:flex;
  6071. transition:none;
  6072. }
  6073. #u15982 .text {
  6074. position:absolute;
  6075. align-self:center;
  6076. padding:2px 2px 2px 2px;
  6077. box-sizing:border-box;
  6078. width:100%;
  6079. }
  6080. #u15982_img {
  6081. border-width:0px;
  6082. position:absolute;
  6083. left:0px;
  6084. top:0px;
  6085. width:9px;
  6086. height:9px;
  6087. }
  6088. #u15982_img.selected {
  6089. }
  6090. #u15982.selected {
  6091. }
  6092. #u15982_text {
  6093. border-width:0px;
  6094. word-wrap:break-word;
  6095. text-transform:none;
  6096. visibility:hidden;
  6097. }
  6098. #u15983_div {
  6099. border-width:0px;
  6100. position:absolute;
  6101. left:0px;
  6102. top:0px;
  6103. width:79px;
  6104. height:20px;
  6105. background:inherit;
  6106. background-color:rgba(255, 255, 255, 0);
  6107. border-radius:0px;
  6108. filter:drop-shadow(none);
  6109. transition:none;
  6110. }
  6111. #u15983 {
  6112. border-width:0px;
  6113. position:absolute;
  6114. left:22px;
  6115. top:0px;
  6116. width:79px;
  6117. height:20px;
  6118. display:flex;
  6119. transition:none;
  6120. transform-origin:50% 50%;
  6121. }
  6122. #u15983 .text {
  6123. position:absolute;
  6124. align-self:center;
  6125. padding:2px 2px 2px 3px;
  6126. box-sizing:border-box;
  6127. width:100%;
  6128. }
  6129. #u15983_text {
  6130. border-width:0px;
  6131. white-space:nowrap;
  6132. text-transform:none;
  6133. }
  6134. #u15981_children {
  6135. border-width:0px;
  6136. position:absolute;
  6137. left:0px;
  6138. top:0px;
  6139. width:0px;
  6140. height:0px;
  6141. }
  6142. #u15984 {
  6143. border-width:0px;
  6144. position:absolute;
  6145. left:20px;
  6146. top:20px;
  6147. width:97px;
  6148. height:20px;
  6149. transition:none;
  6150. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6151. font-weight:400;
  6152. font-style:normal;
  6153. }
  6154. #u15985_div {
  6155. border-width:0px;
  6156. position:absolute;
  6157. left:0px;
  6158. top:0px;
  6159. width:75px;
  6160. height:20px;
  6161. background:inherit;
  6162. background-color:rgba(255, 255, 255, 0);
  6163. border-radius:0px;
  6164. filter:drop-shadow(none);
  6165. transition:none;
  6166. }
  6167. #u15985 {
  6168. border-width:0px;
  6169. position:absolute;
  6170. left:22px;
  6171. top:0px;
  6172. width:75px;
  6173. height:20px;
  6174. display:flex;
  6175. transition:none;
  6176. transform-origin:50% 50%;
  6177. }
  6178. #u15985 .text {
  6179. position:absolute;
  6180. align-self:center;
  6181. padding:2px 2px 2px 3px;
  6182. box-sizing:border-box;
  6183. width:100%;
  6184. }
  6185. #u15985_text {
  6186. border-width:0px;
  6187. white-space:nowrap;
  6188. text-transform:none;
  6189. }
  6190. #u15986 {
  6191. border-width:0px;
  6192. position:absolute;
  6193. left:0px;
  6194. top:320px;
  6195. width:101px;
  6196. height:20px;
  6197. transition:none;
  6198. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6199. font-weight:400;
  6200. font-style:normal;
  6201. }
  6202. #u15987 {
  6203. border-width:0px;
  6204. position:absolute;
  6205. left:6px;
  6206. top:6px;
  6207. width:9px;
  6208. height:9px;
  6209. display:flex;
  6210. transition:none;
  6211. }
  6212. #u15987 .text {
  6213. position:absolute;
  6214. align-self:center;
  6215. padding:2px 2px 2px 2px;
  6216. box-sizing:border-box;
  6217. width:100%;
  6218. }
  6219. #u15987_img {
  6220. border-width:0px;
  6221. position:absolute;
  6222. left:0px;
  6223. top:0px;
  6224. width:9px;
  6225. height:9px;
  6226. }
  6227. #u15987_img.selected {
  6228. }
  6229. #u15987.selected {
  6230. }
  6231. #u15987_text {
  6232. border-width:0px;
  6233. word-wrap:break-word;
  6234. text-transform:none;
  6235. visibility:hidden;
  6236. }
  6237. #u15988_div {
  6238. border-width:0px;
  6239. position:absolute;
  6240. left:0px;
  6241. top:0px;
  6242. width:79px;
  6243. height:20px;
  6244. background:inherit;
  6245. background-color:rgba(255, 255, 255, 0);
  6246. border-radius:0px;
  6247. filter:drop-shadow(none);
  6248. transition:none;
  6249. }
  6250. #u15988 {
  6251. border-width:0px;
  6252. position:absolute;
  6253. left:22px;
  6254. top:0px;
  6255. width:79px;
  6256. height:20px;
  6257. display:flex;
  6258. transition:none;
  6259. transform-origin:50% 50%;
  6260. }
  6261. #u15988 .text {
  6262. position:absolute;
  6263. align-self:center;
  6264. padding:2px 2px 2px 3px;
  6265. box-sizing:border-box;
  6266. width:100%;
  6267. }
  6268. #u15988_text {
  6269. border-width:0px;
  6270. white-space:nowrap;
  6271. text-transform:none;
  6272. }
  6273. #u15986_children {
  6274. border-width:0px;
  6275. position:absolute;
  6276. left:0px;
  6277. top:0px;
  6278. width:0px;
  6279. height:0px;
  6280. }
  6281. #u15989 {
  6282. border-width:0px;
  6283. position:absolute;
  6284. left:20px;
  6285. top:20px;
  6286. width:97px;
  6287. height:20px;
  6288. transition:none;
  6289. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6290. font-weight:400;
  6291. font-style:normal;
  6292. }
  6293. #u15990_div {
  6294. border-width:0px;
  6295. position:absolute;
  6296. left:0px;
  6297. top:0px;
  6298. width:75px;
  6299. height:20px;
  6300. background:inherit;
  6301. background-color:rgba(255, 255, 255, 0);
  6302. border-radius:0px;
  6303. filter:drop-shadow(none);
  6304. transition:none;
  6305. }
  6306. #u15990 {
  6307. border-width:0px;
  6308. position:absolute;
  6309. left:22px;
  6310. top:0px;
  6311. width:75px;
  6312. height:20px;
  6313. display:flex;
  6314. transition:none;
  6315. transform-origin:50% 50%;
  6316. }
  6317. #u15990 .text {
  6318. position:absolute;
  6319. align-self:center;
  6320. padding:2px 2px 2px 3px;
  6321. box-sizing:border-box;
  6322. width:100%;
  6323. }
  6324. #u15990_text {
  6325. border-width:0px;
  6326. white-space:nowrap;
  6327. text-transform:none;
  6328. }
  6329. #u15991 {
  6330. border-width:0px;
  6331. position:absolute;
  6332. left:0px;
  6333. top:360px;
  6334. width:103px;
  6335. height:20px;
  6336. transition:none;
  6337. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6338. font-weight:400;
  6339. font-style:normal;
  6340. }
  6341. #u15992 {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:6px;
  6345. top:6px;
  6346. width:9px;
  6347. height:9px;
  6348. display:flex;
  6349. transition:none;
  6350. }
  6351. #u15992 .text {
  6352. position:absolute;
  6353. align-self:center;
  6354. padding:2px 2px 2px 2px;
  6355. box-sizing:border-box;
  6356. width:100%;
  6357. }
  6358. #u15992_img {
  6359. border-width:0px;
  6360. position:absolute;
  6361. left:0px;
  6362. top:0px;
  6363. width:9px;
  6364. height:9px;
  6365. }
  6366. #u15992_img.selected {
  6367. }
  6368. #u15992.selected {
  6369. }
  6370. #u15992_text {
  6371. border-width:0px;
  6372. word-wrap:break-word;
  6373. text-transform:none;
  6374. visibility:hidden;
  6375. }
  6376. #u15993_div {
  6377. border-width:0px;
  6378. position:absolute;
  6379. left:0px;
  6380. top:0px;
  6381. width:81px;
  6382. height:20px;
  6383. background:inherit;
  6384. background-color:rgba(255, 255, 255, 0);
  6385. border-radius:0px;
  6386. filter:drop-shadow(none);
  6387. transition:none;
  6388. }
  6389. #u15993 {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:22px;
  6393. top:0px;
  6394. width:81px;
  6395. height:20px;
  6396. display:flex;
  6397. transition:none;
  6398. transform-origin:50% 50%;
  6399. }
  6400. #u15993 .text {
  6401. position:absolute;
  6402. align-self:center;
  6403. padding:2px 2px 2px 3px;
  6404. box-sizing:border-box;
  6405. width:100%;
  6406. }
  6407. #u15993_text {
  6408. border-width:0px;
  6409. white-space:nowrap;
  6410. text-transform:none;
  6411. }
  6412. #u15991_children {
  6413. border-width:0px;
  6414. position:absolute;
  6415. left:0px;
  6416. top:0px;
  6417. width:0px;
  6418. height:0px;
  6419. }
  6420. #u15994 {
  6421. border-width:0px;
  6422. position:absolute;
  6423. left:20px;
  6424. top:20px;
  6425. width:97px;
  6426. height:20px;
  6427. transition:none;
  6428. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6429. font-weight:400;
  6430. font-style:normal;
  6431. }
  6432. #u15995_div {
  6433. border-width:0px;
  6434. position:absolute;
  6435. left:0px;
  6436. top:0px;
  6437. width:75px;
  6438. height:20px;
  6439. background:inherit;
  6440. background-color:rgba(255, 255, 255, 0);
  6441. border-radius:0px;
  6442. filter:drop-shadow(none);
  6443. transition:none;
  6444. }
  6445. #u15995 {
  6446. border-width:0px;
  6447. position:absolute;
  6448. left:22px;
  6449. top:0px;
  6450. width:75px;
  6451. height:20px;
  6452. display:flex;
  6453. transition:none;
  6454. transform-origin:50% 50%;
  6455. }
  6456. #u15995 .text {
  6457. position:absolute;
  6458. align-self:center;
  6459. padding:2px 2px 2px 3px;
  6460. box-sizing:border-box;
  6461. width:100%;
  6462. }
  6463. #u15995_text {
  6464. border-width:0px;
  6465. white-space:nowrap;
  6466. text-transform:none;
  6467. }
  6468. #u15996 {
  6469. border-width:0px;
  6470. position:absolute;
  6471. left:0px;
  6472. top:0px;
  6473. width:0px;
  6474. height:0px;
  6475. }
  6476. #u15997_div {
  6477. border-width:0px;
  6478. position:absolute;
  6479. left:0px;
  6480. top:0px;
  6481. width:170px;
  6482. height:30px;
  6483. background:inherit;
  6484. background-color:rgba(255, 255, 255, 1);
  6485. box-sizing:border-box;
  6486. border-width:1px;
  6487. border-style:solid;
  6488. border-color:rgba(242, 242, 242, 1);
  6489. border-radius:4px;
  6490. filter:drop-shadow(none);
  6491. transition:none;
  6492. font-family:"Microsoft YaHei", sans-serif;
  6493. font-weight:400;
  6494. font-style:normal;
  6495. font-size:14px;
  6496. color:#CCCCCC;
  6497. text-align:left;
  6498. }
  6499. #u15997 {
  6500. border-width:0px;
  6501. position:absolute;
  6502. left:350px;
  6503. top:179px;
  6504. width:170px;
  6505. height:30px;
  6506. display:flex;
  6507. transition:none;
  6508. transform-origin:50% 50%;
  6509. font-family:"Microsoft YaHei", sans-serif;
  6510. font-weight:400;
  6511. font-style:normal;
  6512. font-size:14px;
  6513. color:#CCCCCC;
  6514. text-align:left;
  6515. }
  6516. #u15997 .text {
  6517. position:absolute;
  6518. align-self:center;
  6519. padding:2px 8px 2px 8px;
  6520. box-sizing:border-box;
  6521. width:100%;
  6522. }
  6523. #u15997_text {
  6524. border-width:0px;
  6525. word-wrap:break-word;
  6526. text-transform:none;
  6527. visibility:hidden;
  6528. }
  6529. #u15998_input {
  6530. position:absolute;
  6531. left:0px;
  6532. top:0px;
  6533. width:133px;
  6534. height:26px;
  6535. padding:2px 2px 2px 2px;
  6536. font-family:"Microsoft YaHei", sans-serif;
  6537. font-weight:400;
  6538. font-style:normal;
  6539. font-size:14px;
  6540. letter-spacing:normal;
  6541. color:#000000;
  6542. vertical-align:none;
  6543. text-align:left;
  6544. text-transform:none;
  6545. background-color:transparent;
  6546. border-color:transparent;
  6547. }
  6548. #u15998_input.hint {
  6549. position:absolute;
  6550. left:0px;
  6551. top:0px;
  6552. width:133px;
  6553. height:26px;
  6554. padding:2px 2px 2px 2px;
  6555. font-family:"Microsoft YaHei", sans-serif;
  6556. font-weight:400;
  6557. font-style:normal;
  6558. font-size:12px;
  6559. letter-spacing:normal;
  6560. color:#AAAAAA;
  6561. vertical-align:none;
  6562. text-align:left;
  6563. text-transform:none;
  6564. background-color:transparent;
  6565. border-color:transparent;
  6566. }
  6567. #u15998_input.disabled {
  6568. position:absolute;
  6569. left:0px;
  6570. top:0px;
  6571. width:133px;
  6572. height:26px;
  6573. padding:2px 2px 2px 2px;
  6574. font-family:"Microsoft YaHei", sans-serif;
  6575. font-weight:400;
  6576. font-style:normal;
  6577. font-size:14px;
  6578. letter-spacing:normal;
  6579. color:#000000;
  6580. vertical-align:none;
  6581. text-align:left;
  6582. text-transform:none;
  6583. background-color:transparent;
  6584. border-color:transparent;
  6585. }
  6586. #u15998_input.hint.disabled {
  6587. position:absolute;
  6588. left:0px;
  6589. top:0px;
  6590. width:133px;
  6591. height:26px;
  6592. padding:2px 2px 2px 2px;
  6593. font-family:"Microsoft YaHei", sans-serif;
  6594. font-weight:400;
  6595. font-style:normal;
  6596. font-size:12px;
  6597. letter-spacing:normal;
  6598. color:#AAAAAA;
  6599. vertical-align:none;
  6600. text-align:left;
  6601. text-transform:none;
  6602. background-color:transparent;
  6603. border-color:transparent;
  6604. }
  6605. #u15998_div {
  6606. border-width:0px;
  6607. position:absolute;
  6608. left:0px;
  6609. top:0px;
  6610. width:133px;
  6611. height:26px;
  6612. background:inherit;
  6613. background-color:rgba(255, 255, 255, 1);
  6614. border-radius:0px;
  6615. filter:drop-shadow(none);
  6616. transition:none;
  6617. font-family:"Microsoft YaHei", sans-serif;
  6618. font-weight:400;
  6619. font-style:normal;
  6620. font-size:14px;
  6621. }
  6622. #u15998 {
  6623. border-width:0px;
  6624. position:absolute;
  6625. left:355px;
  6626. top:181px;
  6627. width:133px;
  6628. height:26px;
  6629. display:flex;
  6630. transition:none;
  6631. transform-origin:50% 50%;
  6632. font-family:"Microsoft YaHei", sans-serif;
  6633. font-weight:400;
  6634. font-style:normal;
  6635. font-size:14px;
  6636. }
  6637. #u15998 .text {
  6638. position:absolute;
  6639. align-self:center;
  6640. padding:2px 2px 2px 2px;
  6641. box-sizing:border-box;
  6642. width:100%;
  6643. }
  6644. #u15998_div.hint {
  6645. border-width:0px;
  6646. position:absolute;
  6647. left:0px;
  6648. top:0px;
  6649. width:133px;
  6650. height:26px;
  6651. background:inherit;
  6652. background-color:rgba(255, 255, 255, 1);
  6653. border-radius:0px;
  6654. filter:drop-shadow(none);
  6655. transition:none;
  6656. font-family:"Microsoft YaHei", sans-serif;
  6657. font-weight:400;
  6658. font-style:normal;
  6659. font-size:14px;
  6660. }
  6661. #u15998.hint {
  6662. }
  6663. #u15998_div.disabled {
  6664. border-width:0px;
  6665. position:absolute;
  6666. left:0px;
  6667. top:0px;
  6668. width:133px;
  6669. height:26px;
  6670. background:inherit;
  6671. background-color:rgba(240, 240, 240, 1);
  6672. border-radius:0px;
  6673. filter:drop-shadow(none);
  6674. transition:none;
  6675. font-family:"Microsoft YaHei", sans-serif;
  6676. font-weight:400;
  6677. font-style:normal;
  6678. font-size:14px;
  6679. }
  6680. #u15998.disabled {
  6681. }
  6682. #u15998_div.hint.disabled {
  6683. border-width:0px;
  6684. position:absolute;
  6685. left:0px;
  6686. top:0px;
  6687. width:133px;
  6688. height:26px;
  6689. background:inherit;
  6690. background-color:rgba(240, 240, 240, 1);
  6691. border-radius:0px;
  6692. filter:drop-shadow(none);
  6693. transition:none;
  6694. font-family:"Microsoft YaHei", sans-serif;
  6695. font-weight:400;
  6696. font-style:normal;
  6697. font-size:14px;
  6698. }
  6699. #u15998.hint.disabled {
  6700. }
  6701. #u15999 {
  6702. border-width:0px;
  6703. position:absolute;
  6704. left:496px;
  6705. top:188px;
  6706. width:14px;
  6707. height:14px;
  6708. display:flex;
  6709. transition:none;
  6710. }
  6711. #u15999 .text {
  6712. position:absolute;
  6713. align-self:center;
  6714. padding:2px 2px 2px 2px;
  6715. box-sizing:border-box;
  6716. width:100%;
  6717. }
  6718. #u15999_img {
  6719. border-width:0px;
  6720. position:absolute;
  6721. left:0px;
  6722. top:0px;
  6723. width:14px;
  6724. height:14px;
  6725. }
  6726. #u15999_text {
  6727. border-width:0px;
  6728. word-wrap:break-word;
  6729. text-transform:none;
  6730. visibility:hidden;
  6731. }
  6732. #u16000 {
  6733. border-width:0px;
  6734. position:absolute;
  6735. left:0px;
  6736. top:0px;
  6737. width:0px;
  6738. height:0px;
  6739. }
  6740. #u16001_div {
  6741. border-width:0px;
  6742. position:absolute;
  6743. left:0px;
  6744. top:0px;
  6745. width:109px;
  6746. height:30px;
  6747. background:inherit;
  6748. background-color:rgba(255, 255, 255, 0);
  6749. border-radius:0px;
  6750. filter:drop-shadow(none);
  6751. transition:none;
  6752. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6753. font-weight:400;
  6754. font-style:normal;
  6755. font-size:18px;
  6756. color:#000000;
  6757. line-height:30px;
  6758. }
  6759. #u16001 {
  6760. border-width:0px;
  6761. position:absolute;
  6762. left:350px;
  6763. top:140px;
  6764. width:109px;
  6765. height:30px;
  6766. display:flex;
  6767. transition:none;
  6768. transform-origin:50% 50%;
  6769. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6770. font-weight:400;
  6771. font-style:normal;
  6772. font-size:18px;
  6773. color:#000000;
  6774. line-height:30px;
  6775. }
  6776. #u16001 .text {
  6777. position:absolute;
  6778. align-self:flex-start;
  6779. padding:0px 0px 0px 0px;
  6780. box-sizing:border-box;
  6781. width:100%;
  6782. }
  6783. #u16001_text {
  6784. border-width:0px;
  6785. white-space:nowrap;
  6786. text-transform:none;
  6787. }
  6788. #u16002 {
  6789. border-width:0px;
  6790. position:absolute;
  6791. left:471px;
  6792. top:151px;
  6793. width:12px;
  6794. height:7px;
  6795. display:flex;
  6796. transition:none;
  6797. }
  6798. #u16002 .text {
  6799. position:absolute;
  6800. align-self:center;
  6801. padding:2px 2px 2px 2px;
  6802. box-sizing:border-box;
  6803. width:100%;
  6804. }
  6805. #u16002_img {
  6806. border-width:0px;
  6807. position:absolute;
  6808. left:0px;
  6809. top:0px;
  6810. width:12px;
  6811. height:7px;
  6812. }
  6813. #u16002_text {
  6814. border-width:0px;
  6815. word-wrap:break-word;
  6816. text-transform:none;
  6817. visibility:hidden;
  6818. }
  6819. #u16003 {
  6820. border-width:0px;
  6821. position:absolute;
  6822. left:0px;
  6823. top:0px;
  6824. width:0px;
  6825. height:0px;
  6826. }
  6827. #u16004 {
  6828. border-width:0px;
  6829. position:absolute;
  6830. left:550px;
  6831. top:278px;
  6832. width:1016px;
  6833. height:303px;
  6834. }
  6835. #u16005 {
  6836. border-width:0px;
  6837. position:absolute;
  6838. left:0px;
  6839. top:0px;
  6840. width:126px;
  6841. height:36px;
  6842. display:flex;
  6843. transition:none;
  6844. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6845. font-weight:400;
  6846. font-style:normal;
  6847. font-size:12px;
  6848. color:#FFFFFF;
  6849. }
  6850. #u16005 .text {
  6851. position:absolute;
  6852. align-self:center;
  6853. padding:2px 2px 2px 0px;
  6854. box-sizing:border-box;
  6855. width:100%;
  6856. }
  6857. #u16005_img {
  6858. border-width:0px;
  6859. position:absolute;
  6860. left:0px;
  6861. top:0px;
  6862. width:126px;
  6863. height:36px;
  6864. }
  6865. #u16005_text {
  6866. border-width:0px;
  6867. word-wrap:break-word;
  6868. text-transform:none;
  6869. }
  6870. #u16006 {
  6871. border-width:0px;
  6872. position:absolute;
  6873. left:126px;
  6874. top:0px;
  6875. width:122px;
  6876. height:36px;
  6877. display:flex;
  6878. transition:none;
  6879. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6880. font-weight:400;
  6881. font-style:normal;
  6882. font-size:12px;
  6883. color:#FFFFFF;
  6884. }
  6885. #u16006 .text {
  6886. position:absolute;
  6887. align-self:center;
  6888. padding:2px 2px 2px 0px;
  6889. box-sizing:border-box;
  6890. width:100%;
  6891. }
  6892. #u16006_img {
  6893. border-width:0px;
  6894. position:absolute;
  6895. left:0px;
  6896. top:0px;
  6897. width:122px;
  6898. height:36px;
  6899. }
  6900. #u16006_text {
  6901. border-width:0px;
  6902. word-wrap:break-word;
  6903. text-transform:none;
  6904. }
  6905. #u16007 {
  6906. border-width:0px;
  6907. position:absolute;
  6908. left:248px;
  6909. top:0px;
  6910. width:122px;
  6911. height:36px;
  6912. display:flex;
  6913. transition:none;
  6914. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6915. font-weight:400;
  6916. font-style:normal;
  6917. font-size:12px;
  6918. color:#FFFFFF;
  6919. }
  6920. #u16007 .text {
  6921. position:absolute;
  6922. align-self:center;
  6923. padding:2px 2px 2px 0px;
  6924. box-sizing:border-box;
  6925. width:100%;
  6926. }
  6927. #u16007_img {
  6928. border-width:0px;
  6929. position:absolute;
  6930. left:0px;
  6931. top:0px;
  6932. width:122px;
  6933. height:36px;
  6934. }
  6935. #u16007_text {
  6936. border-width:0px;
  6937. word-wrap:break-word;
  6938. text-transform:none;
  6939. }
  6940. #u16008 {
  6941. border-width:0px;
  6942. position:absolute;
  6943. left:370px;
  6944. top:0px;
  6945. width:107px;
  6946. height:36px;
  6947. display:flex;
  6948. transition:none;
  6949. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6950. font-weight:400;
  6951. font-style:normal;
  6952. font-size:12px;
  6953. color:#FFFFFF;
  6954. }
  6955. #u16008 .text {
  6956. position:absolute;
  6957. align-self:center;
  6958. padding:2px 2px 2px 0px;
  6959. box-sizing:border-box;
  6960. width:100%;
  6961. }
  6962. #u16008_img {
  6963. border-width:0px;
  6964. position:absolute;
  6965. left:0px;
  6966. top:0px;
  6967. width:107px;
  6968. height:36px;
  6969. }
  6970. #u16008_text {
  6971. border-width:0px;
  6972. word-wrap:break-word;
  6973. text-transform:none;
  6974. }
  6975. #u16009 {
  6976. border-width:0px;
  6977. position:absolute;
  6978. left:478px;
  6979. top:0px;
  6980. width:107px;
  6981. height:36px;
  6982. display:flex;
  6983. transition:none;
  6984. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6985. font-weight:400;
  6986. font-style:normal;
  6987. font-size:12px;
  6988. color:#FFFFFF;
  6989. }
  6990. #u16009 .text {
  6991. position:absolute;
  6992. align-self:center;
  6993. padding:2px 2px 2px 0px;
  6994. box-sizing:border-box;
  6995. width:100%;
  6996. }
  6997. #u16009_img {
  6998. border-width:0px;
  6999. position:absolute;
  7000. left:0px;
  7001. top:0px;
  7002. width:107px;
  7003. height:36px;
  7004. }
  7005. #u16009_text {
  7006. border-width:0px;
  7007. word-wrap:break-word;
  7008. text-transform:none;
  7009. }
  7010. #u16010 {
  7011. border-width:0px;
  7012. position:absolute;
  7013. left:585px;
  7014. top:0px;
  7015. width:107px;
  7016. height:36px;
  7017. display:flex;
  7018. transition:none;
  7019. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7020. font-weight:400;
  7021. font-style:normal;
  7022. font-size:12px;
  7023. color:#FFFFFF;
  7024. }
  7025. #u16010 .text {
  7026. position:absolute;
  7027. align-self:center;
  7028. padding:2px 2px 2px 0px;
  7029. box-sizing:border-box;
  7030. width:100%;
  7031. }
  7032. #u16010_img {
  7033. border-width:0px;
  7034. position:absolute;
  7035. left:0px;
  7036. top:0px;
  7037. width:107px;
  7038. height:36px;
  7039. }
  7040. #u16010_text {
  7041. border-width:0px;
  7042. word-wrap:break-word;
  7043. text-transform:none;
  7044. }
  7045. #u16011 {
  7046. border-width:0px;
  7047. position:absolute;
  7048. left:692px;
  7049. top:0px;
  7050. width:107px;
  7051. height:36px;
  7052. display:flex;
  7053. transition:none;
  7054. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7055. font-weight:400;
  7056. font-style:normal;
  7057. font-size:12px;
  7058. color:#FFFFFF;
  7059. }
  7060. #u16011 .text {
  7061. position:absolute;
  7062. align-self:center;
  7063. padding:2px 2px 2px 0px;
  7064. box-sizing:border-box;
  7065. width:100%;
  7066. }
  7067. #u16011_img {
  7068. border-width:0px;
  7069. position:absolute;
  7070. left:0px;
  7071. top:0px;
  7072. width:107px;
  7073. height:36px;
  7074. }
  7075. #u16011_text {
  7076. border-width:0px;
  7077. word-wrap:break-word;
  7078. text-transform:none;
  7079. }
  7080. #u16012 {
  7081. border-width:0px;
  7082. position:absolute;
  7083. left:799px;
  7084. top:0px;
  7085. width:107px;
  7086. height:36px;
  7087. display:flex;
  7088. transition:none;
  7089. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7090. font-weight:400;
  7091. font-style:normal;
  7092. font-size:12px;
  7093. color:#FFFFFF;
  7094. }
  7095. #u16012 .text {
  7096. position:absolute;
  7097. align-self:center;
  7098. padding:2px 2px 2px 0px;
  7099. box-sizing:border-box;
  7100. width:100%;
  7101. }
  7102. #u16012_img {
  7103. border-width:0px;
  7104. position:absolute;
  7105. left:0px;
  7106. top:0px;
  7107. width:107px;
  7108. height:36px;
  7109. }
  7110. #u16012_text {
  7111. border-width:0px;
  7112. word-wrap:break-word;
  7113. text-transform:none;
  7114. }
  7115. #u16013 {
  7116. border-width:0px;
  7117. position:absolute;
  7118. left:906px;
  7119. top:0px;
  7120. width:110px;
  7121. height:36px;
  7122. display:flex;
  7123. transition:none;
  7124. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7125. font-weight:400;
  7126. font-style:normal;
  7127. font-size:12px;
  7128. color:#FFFFFF;
  7129. }
  7130. #u16013 .text {
  7131. position:absolute;
  7132. align-self:center;
  7133. padding:2px 2px 2px 0px;
  7134. box-sizing:border-box;
  7135. width:100%;
  7136. }
  7137. #u16013_img {
  7138. border-width:0px;
  7139. position:absolute;
  7140. left:0px;
  7141. top:0px;
  7142. width:110px;
  7143. height:36px;
  7144. }
  7145. #u16013_text {
  7146. border-width:0px;
  7147. word-wrap:break-word;
  7148. text-transform:none;
  7149. }
  7150. #u16014 {
  7151. border-width:0px;
  7152. position:absolute;
  7153. left:0px;
  7154. top:36px;
  7155. width:126px;
  7156. height:44px;
  7157. display:flex;
  7158. transition:none;
  7159. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7160. font-weight:400;
  7161. font-style:normal;
  7162. font-size:12px;
  7163. color:#333333;
  7164. line-height:40px;
  7165. }
  7166. #u16014 .text {
  7167. position:absolute;
  7168. align-self:center;
  7169. padding:2px 2px 2px 0px;
  7170. box-sizing:border-box;
  7171. width:100%;
  7172. }
  7173. #u16014_img {
  7174. border-width:0px;
  7175. position:absolute;
  7176. left:0px;
  7177. top:0px;
  7178. width:126px;
  7179. height:44px;
  7180. }
  7181. #u16014_text {
  7182. border-width:0px;
  7183. word-wrap:break-word;
  7184. text-transform:none;
  7185. }
  7186. #u16015 {
  7187. border-width:0px;
  7188. position:absolute;
  7189. left:126px;
  7190. top:36px;
  7191. width:122px;
  7192. height:44px;
  7193. display:flex;
  7194. transition:none;
  7195. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7196. font-weight:400;
  7197. font-style:normal;
  7198. font-size:12px;
  7199. }
  7200. #u16015 .text {
  7201. position:absolute;
  7202. align-self:center;
  7203. padding:2px 2px 2px 0px;
  7204. box-sizing:border-box;
  7205. width:100%;
  7206. }
  7207. #u16015_img {
  7208. border-width:0px;
  7209. position:absolute;
  7210. left:0px;
  7211. top:0px;
  7212. width:122px;
  7213. height:44px;
  7214. }
  7215. #u16015_text {
  7216. border-width:0px;
  7217. word-wrap:break-word;
  7218. text-transform:none;
  7219. }
  7220. #u16016 {
  7221. border-width:0px;
  7222. position:absolute;
  7223. left:248px;
  7224. top:36px;
  7225. width:122px;
  7226. height:44px;
  7227. display:flex;
  7228. transition:none;
  7229. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7230. font-weight:400;
  7231. font-style:normal;
  7232. font-size:12px;
  7233. color:#606266;
  7234. }
  7235. #u16016 .text {
  7236. position:absolute;
  7237. align-self:center;
  7238. padding:2px 2px 2px 0px;
  7239. box-sizing:border-box;
  7240. width:100%;
  7241. }
  7242. #u16016_img {
  7243. border-width:0px;
  7244. position:absolute;
  7245. left:0px;
  7246. top:0px;
  7247. width:122px;
  7248. height:44px;
  7249. }
  7250. #u16016_text {
  7251. border-width:0px;
  7252. word-wrap:break-word;
  7253. text-transform:none;
  7254. }
  7255. #u16017 {
  7256. border-width:0px;
  7257. position:absolute;
  7258. left:370px;
  7259. top:36px;
  7260. width:107px;
  7261. height:44px;
  7262. display:flex;
  7263. transition:none;
  7264. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7265. font-weight:400;
  7266. font-style:normal;
  7267. font-size:12px;
  7268. color:#333333;
  7269. }
  7270. #u16017 .text {
  7271. position:absolute;
  7272. align-self:center;
  7273. padding:2px 2px 2px 0px;
  7274. box-sizing:border-box;
  7275. width:100%;
  7276. }
  7277. #u16017_img {
  7278. border-width:0px;
  7279. position:absolute;
  7280. left:0px;
  7281. top:0px;
  7282. width:107px;
  7283. height:44px;
  7284. }
  7285. #u16017_text {
  7286. border-width:0px;
  7287. word-wrap:break-word;
  7288. text-transform:none;
  7289. visibility:hidden;
  7290. }
  7291. #u16018 {
  7292. border-width:0px;
  7293. position:absolute;
  7294. left:478px;
  7295. top:36px;
  7296. width:107px;
  7297. height:44px;
  7298. display:flex;
  7299. transition:none;
  7300. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7301. font-weight:400;
  7302. font-style:normal;
  7303. font-size:12px;
  7304. color:#333333;
  7305. }
  7306. #u16018 .text {
  7307. position:absolute;
  7308. align-self:center;
  7309. padding:2px 2px 2px 0px;
  7310. box-sizing:border-box;
  7311. width:100%;
  7312. }
  7313. #u16018_img {
  7314. border-width:0px;
  7315. position:absolute;
  7316. left:0px;
  7317. top:0px;
  7318. width:107px;
  7319. height:44px;
  7320. }
  7321. #u16018_text {
  7322. border-width:0px;
  7323. word-wrap:break-word;
  7324. text-transform:none;
  7325. visibility:hidden;
  7326. }
  7327. #u16019 {
  7328. border-width:0px;
  7329. position:absolute;
  7330. left:585px;
  7331. top:36px;
  7332. width:107px;
  7333. height:44px;
  7334. display:flex;
  7335. transition:none;
  7336. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7337. font-weight:400;
  7338. font-style:normal;
  7339. font-size:12px;
  7340. color:#333333;
  7341. }
  7342. #u16019 .text {
  7343. position:absolute;
  7344. align-self:center;
  7345. padding:2px 2px 2px 0px;
  7346. box-sizing:border-box;
  7347. width:100%;
  7348. }
  7349. #u16019_img {
  7350. border-width:0px;
  7351. position:absolute;
  7352. left:0px;
  7353. top:0px;
  7354. width:107px;
  7355. height:44px;
  7356. }
  7357. #u16019_text {
  7358. border-width:0px;
  7359. word-wrap:break-word;
  7360. text-transform:none;
  7361. visibility:hidden;
  7362. }
  7363. #u16020 {
  7364. border-width:0px;
  7365. position:absolute;
  7366. left:692px;
  7367. top:36px;
  7368. width:107px;
  7369. height:44px;
  7370. display:flex;
  7371. transition:none;
  7372. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7373. font-weight:400;
  7374. font-style:normal;
  7375. font-size:12px;
  7376. color:#333333;
  7377. }
  7378. #u16020 .text {
  7379. position:absolute;
  7380. align-self:center;
  7381. padding:2px 2px 2px 0px;
  7382. box-sizing:border-box;
  7383. width:100%;
  7384. }
  7385. #u16020_img {
  7386. border-width:0px;
  7387. position:absolute;
  7388. left:0px;
  7389. top:0px;
  7390. width:107px;
  7391. height:44px;
  7392. }
  7393. #u16020_text {
  7394. border-width:0px;
  7395. word-wrap:break-word;
  7396. text-transform:none;
  7397. visibility:hidden;
  7398. }
  7399. #u16021 {
  7400. border-width:0px;
  7401. position:absolute;
  7402. left:799px;
  7403. top:36px;
  7404. width:107px;
  7405. height:44px;
  7406. display:flex;
  7407. transition:none;
  7408. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7409. font-weight:400;
  7410. font-style:normal;
  7411. font-size:12px;
  7412. color:#333333;
  7413. }
  7414. #u16021 .text {
  7415. position:absolute;
  7416. align-self:center;
  7417. padding:2px 2px 2px 0px;
  7418. box-sizing:border-box;
  7419. width:100%;
  7420. }
  7421. #u16021_img {
  7422. border-width:0px;
  7423. position:absolute;
  7424. left:0px;
  7425. top:0px;
  7426. width:107px;
  7427. height:44px;
  7428. }
  7429. #u16021_text {
  7430. border-width:0px;
  7431. word-wrap:break-word;
  7432. text-transform:none;
  7433. visibility:hidden;
  7434. }
  7435. #u16022 {
  7436. border-width:0px;
  7437. position:absolute;
  7438. left:906px;
  7439. top:36px;
  7440. width:110px;
  7441. height:44px;
  7442. display:flex;
  7443. transition:none;
  7444. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7445. font-weight:400;
  7446. font-style:normal;
  7447. font-size:12px;
  7448. color:#298FFF;
  7449. line-height:35px;
  7450. }
  7451. #u16022 .text {
  7452. position:absolute;
  7453. align-self:center;
  7454. padding:2px 2px 2px 0px;
  7455. box-sizing:border-box;
  7456. width:100%;
  7457. }
  7458. #u16022_img {
  7459. border-width:0px;
  7460. position:absolute;
  7461. left:0px;
  7462. top:0px;
  7463. width:110px;
  7464. height:44px;
  7465. }
  7466. #u16022_text {
  7467. border-width:0px;
  7468. word-wrap:break-word;
  7469. text-transform:none;
  7470. }
  7471. #u16023 {
  7472. border-width:0px;
  7473. position:absolute;
  7474. left:0px;
  7475. top:80px;
  7476. width:126px;
  7477. height:40px;
  7478. display:flex;
  7479. transition:none;
  7480. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7481. font-weight:400;
  7482. font-style:normal;
  7483. font-size:12px;
  7484. color:#333333;
  7485. line-height:40px;
  7486. }
  7487. #u16023 .text {
  7488. position:absolute;
  7489. align-self:center;
  7490. padding:2px 2px 2px 0px;
  7491. box-sizing:border-box;
  7492. width:100%;
  7493. }
  7494. #u16023_img {
  7495. border-width:0px;
  7496. position:absolute;
  7497. left:0px;
  7498. top:0px;
  7499. width:126px;
  7500. height:40px;
  7501. }
  7502. #u16023_text {
  7503. border-width:0px;
  7504. word-wrap:break-word;
  7505. text-transform:none;
  7506. visibility:hidden;
  7507. }
  7508. #u16024 {
  7509. border-width:0px;
  7510. position:absolute;
  7511. left:126px;
  7512. top:80px;
  7513. width:122px;
  7514. height:40px;
  7515. display:flex;
  7516. transition:none;
  7517. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7518. font-weight:400;
  7519. font-style:normal;
  7520. font-size:12px;
  7521. }
  7522. #u16024 .text {
  7523. position:absolute;
  7524. align-self:center;
  7525. padding:2px 2px 2px 0px;
  7526. box-sizing:border-box;
  7527. width:100%;
  7528. }
  7529. #u16024_img {
  7530. border-width:0px;
  7531. position:absolute;
  7532. left:0px;
  7533. top:0px;
  7534. width:122px;
  7535. height:40px;
  7536. }
  7537. #u16024_text {
  7538. border-width:0px;
  7539. word-wrap:break-word;
  7540. text-transform:none;
  7541. visibility:hidden;
  7542. }
  7543. #u16025 {
  7544. border-width:0px;
  7545. position:absolute;
  7546. left:248px;
  7547. top:80px;
  7548. width:122px;
  7549. height:40px;
  7550. display:flex;
  7551. transition:none;
  7552. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7553. font-weight:400;
  7554. font-style:normal;
  7555. font-size:12px;
  7556. color:#606266;
  7557. }
  7558. #u16025 .text {
  7559. position:absolute;
  7560. align-self:center;
  7561. padding:2px 2px 2px 0px;
  7562. box-sizing:border-box;
  7563. width:100%;
  7564. }
  7565. #u16025_img {
  7566. border-width:0px;
  7567. position:absolute;
  7568. left:0px;
  7569. top:0px;
  7570. width:122px;
  7571. height:40px;
  7572. }
  7573. #u16025_text {
  7574. border-width:0px;
  7575. word-wrap:break-word;
  7576. text-transform:none;
  7577. visibility:hidden;
  7578. }
  7579. #u16026 {
  7580. border-width:0px;
  7581. position:absolute;
  7582. left:370px;
  7583. top:80px;
  7584. width:107px;
  7585. height:40px;
  7586. display:flex;
  7587. transition:none;
  7588. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7589. font-weight:400;
  7590. font-style:normal;
  7591. font-size:12px;
  7592. color:#333333;
  7593. }
  7594. #u16026 .text {
  7595. position:absolute;
  7596. align-self:center;
  7597. padding:2px 2px 2px 0px;
  7598. box-sizing:border-box;
  7599. width:100%;
  7600. }
  7601. #u16026_img {
  7602. border-width:0px;
  7603. position:absolute;
  7604. left:0px;
  7605. top:0px;
  7606. width:107px;
  7607. height:40px;
  7608. }
  7609. #u16026_text {
  7610. border-width:0px;
  7611. word-wrap:break-word;
  7612. text-transform:none;
  7613. visibility:hidden;
  7614. }
  7615. #u16027 {
  7616. border-width:0px;
  7617. position:absolute;
  7618. left:478px;
  7619. top:80px;
  7620. width:107px;
  7621. height:40px;
  7622. display:flex;
  7623. transition:none;
  7624. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7625. font-weight:400;
  7626. font-style:normal;
  7627. font-size:12px;
  7628. color:#333333;
  7629. }
  7630. #u16027 .text {
  7631. position:absolute;
  7632. align-self:center;
  7633. padding:2px 2px 2px 0px;
  7634. box-sizing:border-box;
  7635. width:100%;
  7636. }
  7637. #u16027_img {
  7638. border-width:0px;
  7639. position:absolute;
  7640. left:0px;
  7641. top:0px;
  7642. width:107px;
  7643. height:40px;
  7644. }
  7645. #u16027_text {
  7646. border-width:0px;
  7647. word-wrap:break-word;
  7648. text-transform:none;
  7649. visibility:hidden;
  7650. }
  7651. #u16028 {
  7652. border-width:0px;
  7653. position:absolute;
  7654. left:585px;
  7655. top:80px;
  7656. width:107px;
  7657. height:40px;
  7658. display:flex;
  7659. transition:none;
  7660. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7661. font-weight:400;
  7662. font-style:normal;
  7663. font-size:12px;
  7664. color:#333333;
  7665. }
  7666. #u16028 .text {
  7667. position:absolute;
  7668. align-self:center;
  7669. padding:2px 2px 2px 0px;
  7670. box-sizing:border-box;
  7671. width:100%;
  7672. }
  7673. #u16028_img {
  7674. border-width:0px;
  7675. position:absolute;
  7676. left:0px;
  7677. top:0px;
  7678. width:107px;
  7679. height:40px;
  7680. }
  7681. #u16028_text {
  7682. border-width:0px;
  7683. word-wrap:break-word;
  7684. text-transform:none;
  7685. visibility:hidden;
  7686. }
  7687. #u16029 {
  7688. border-width:0px;
  7689. position:absolute;
  7690. left:692px;
  7691. top:80px;
  7692. width:107px;
  7693. height:40px;
  7694. display:flex;
  7695. transition:none;
  7696. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7697. font-weight:400;
  7698. font-style:normal;
  7699. font-size:12px;
  7700. color:#333333;
  7701. }
  7702. #u16029 .text {
  7703. position:absolute;
  7704. align-self:center;
  7705. padding:2px 2px 2px 0px;
  7706. box-sizing:border-box;
  7707. width:100%;
  7708. }
  7709. #u16029_img {
  7710. border-width:0px;
  7711. position:absolute;
  7712. left:0px;
  7713. top:0px;
  7714. width:107px;
  7715. height:40px;
  7716. }
  7717. #u16029_text {
  7718. border-width:0px;
  7719. word-wrap:break-word;
  7720. text-transform:none;
  7721. visibility:hidden;
  7722. }
  7723. #u16030 {
  7724. border-width:0px;
  7725. position:absolute;
  7726. left:799px;
  7727. top:80px;
  7728. width:107px;
  7729. height:40px;
  7730. display:flex;
  7731. transition:none;
  7732. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7733. font-weight:400;
  7734. font-style:normal;
  7735. font-size:12px;
  7736. color:#333333;
  7737. }
  7738. #u16030 .text {
  7739. position:absolute;
  7740. align-self:center;
  7741. padding:2px 2px 2px 0px;
  7742. box-sizing:border-box;
  7743. width:100%;
  7744. }
  7745. #u16030_img {
  7746. border-width:0px;
  7747. position:absolute;
  7748. left:0px;
  7749. top:0px;
  7750. width:107px;
  7751. height:40px;
  7752. }
  7753. #u16030_text {
  7754. border-width:0px;
  7755. word-wrap:break-word;
  7756. text-transform:none;
  7757. visibility:hidden;
  7758. }
  7759. #u16031 {
  7760. border-width:0px;
  7761. position:absolute;
  7762. left:906px;
  7763. top:80px;
  7764. width:110px;
  7765. height:40px;
  7766. display:flex;
  7767. transition:none;
  7768. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7769. font-weight:400;
  7770. font-style:normal;
  7771. font-size:12px;
  7772. color:#1890FF;
  7773. }
  7774. #u16031 .text {
  7775. position:absolute;
  7776. align-self:center;
  7777. padding:2px 2px 2px 0px;
  7778. box-sizing:border-box;
  7779. width:100%;
  7780. }
  7781. #u16031_img {
  7782. border-width:0px;
  7783. position:absolute;
  7784. left:0px;
  7785. top:0px;
  7786. width:110px;
  7787. height:40px;
  7788. }
  7789. #u16031_text {
  7790. border-width:0px;
  7791. word-wrap:break-word;
  7792. text-transform:none;
  7793. visibility:hidden;
  7794. }
  7795. #u16032 {
  7796. border-width:0px;
  7797. position:absolute;
  7798. left:0px;
  7799. top:120px;
  7800. width:126px;
  7801. height:43px;
  7802. display:flex;
  7803. transition:none;
  7804. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7805. font-weight:400;
  7806. font-style:normal;
  7807. font-size:12px;
  7808. color:#333333;
  7809. line-height:40px;
  7810. }
  7811. #u16032 .text {
  7812. position:absolute;
  7813. align-self:center;
  7814. padding:2px 2px 2px 0px;
  7815. box-sizing:border-box;
  7816. width:100%;
  7817. }
  7818. #u16032_img {
  7819. border-width:0px;
  7820. position:absolute;
  7821. left:0px;
  7822. top:0px;
  7823. width:126px;
  7824. height:43px;
  7825. }
  7826. #u16032_text {
  7827. border-width:0px;
  7828. word-wrap:break-word;
  7829. text-transform:none;
  7830. visibility:hidden;
  7831. }
  7832. #u16033 {
  7833. border-width:0px;
  7834. position:absolute;
  7835. left:126px;
  7836. top:120px;
  7837. width:122px;
  7838. height:43px;
  7839. display:flex;
  7840. transition:none;
  7841. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  7842. font-weight:400;
  7843. font-style:normal;
  7844. font-size:12px;
  7845. color:#606266;
  7846. }
  7847. #u16033 .text {
  7848. position:absolute;
  7849. align-self:center;
  7850. padding:2px 2px 2px 0px;
  7851. box-sizing:border-box;
  7852. width:100%;
  7853. }
  7854. #u16033_img {
  7855. border-width:0px;
  7856. position:absolute;
  7857. left:0px;
  7858. top:0px;
  7859. width:122px;
  7860. height:43px;
  7861. }
  7862. #u16033_text {
  7863. border-width:0px;
  7864. word-wrap:break-word;
  7865. text-transform:none;
  7866. visibility:hidden;
  7867. }
  7868. #u16034 {
  7869. border-width:0px;
  7870. position:absolute;
  7871. left:248px;
  7872. top:120px;
  7873. width:122px;
  7874. height:43px;
  7875. display:flex;
  7876. transition:none;
  7877. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  7878. font-weight:400;
  7879. font-style:normal;
  7880. font-size:12px;
  7881. color:#606266;
  7882. }
  7883. #u16034 .text {
  7884. position:absolute;
  7885. align-self:center;
  7886. padding:2px 2px 2px 0px;
  7887. box-sizing:border-box;
  7888. width:100%;
  7889. }
  7890. #u16034_img {
  7891. border-width:0px;
  7892. position:absolute;
  7893. left:0px;
  7894. top:0px;
  7895. width:122px;
  7896. height:43px;
  7897. }
  7898. #u16034_text {
  7899. border-width:0px;
  7900. word-wrap:break-word;
  7901. text-transform:none;
  7902. visibility:hidden;
  7903. }
  7904. #u16035 {
  7905. border-width:0px;
  7906. position:absolute;
  7907. left:370px;
  7908. top:120px;
  7909. width:107px;
  7910. height:43px;
  7911. display:flex;
  7912. transition:none;
  7913. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  7914. font-weight:400;
  7915. font-style:normal;
  7916. font-size:12px;
  7917. color:#606266;
  7918. }
  7919. #u16035 .text {
  7920. position:absolute;
  7921. align-self:center;
  7922. padding:2px 2px 2px 0px;
  7923. box-sizing:border-box;
  7924. width:100%;
  7925. }
  7926. #u16035_img {
  7927. border-width:0px;
  7928. position:absolute;
  7929. left:0px;
  7930. top:0px;
  7931. width:107px;
  7932. height:43px;
  7933. }
  7934. #u16035_text {
  7935. border-width:0px;
  7936. word-wrap:break-word;
  7937. text-transform:none;
  7938. visibility:hidden;
  7939. }
  7940. #u16036 {
  7941. border-width:0px;
  7942. position:absolute;
  7943. left:478px;
  7944. top:120px;
  7945. width:107px;
  7946. height:43px;
  7947. display:flex;
  7948. transition:none;
  7949. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  7950. font-weight:400;
  7951. font-style:normal;
  7952. font-size:12px;
  7953. color:#606266;
  7954. }
  7955. #u16036 .text {
  7956. position:absolute;
  7957. align-self:center;
  7958. padding:2px 2px 2px 0px;
  7959. box-sizing:border-box;
  7960. width:100%;
  7961. }
  7962. #u16036_img {
  7963. border-width:0px;
  7964. position:absolute;
  7965. left:0px;
  7966. top:0px;
  7967. width:107px;
  7968. height:43px;
  7969. }
  7970. #u16036_text {
  7971. border-width:0px;
  7972. word-wrap:break-word;
  7973. text-transform:none;
  7974. visibility:hidden;
  7975. }
  7976. #u16037 {
  7977. border-width:0px;
  7978. position:absolute;
  7979. left:585px;
  7980. top:120px;
  7981. width:107px;
  7982. height:43px;
  7983. display:flex;
  7984. transition:none;
  7985. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7986. font-weight:400;
  7987. font-style:normal;
  7988. font-size:12px;
  7989. color:#606266;
  7990. }
  7991. #u16037 .text {
  7992. position:absolute;
  7993. align-self:center;
  7994. padding:2px 2px 2px 0px;
  7995. box-sizing:border-box;
  7996. width:100%;
  7997. }
  7998. #u16037_img {
  7999. border-width:0px;
  8000. position:absolute;
  8001. left:0px;
  8002. top:0px;
  8003. width:107px;
  8004. height:43px;
  8005. }
  8006. #u16037_text {
  8007. border-width:0px;
  8008. word-wrap:break-word;
  8009. text-transform:none;
  8010. visibility:hidden;
  8011. }
  8012. #u16038 {
  8013. border-width:0px;
  8014. position:absolute;
  8015. left:692px;
  8016. top:120px;
  8017. width:107px;
  8018. height:43px;
  8019. display:flex;
  8020. transition:none;
  8021. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8022. font-weight:400;
  8023. font-style:normal;
  8024. font-size:12px;
  8025. color:#606266;
  8026. }
  8027. #u16038 .text {
  8028. position:absolute;
  8029. align-self:center;
  8030. padding:2px 2px 2px 0px;
  8031. box-sizing:border-box;
  8032. width:100%;
  8033. }
  8034. #u16038_img {
  8035. border-width:0px;
  8036. position:absolute;
  8037. left:0px;
  8038. top:0px;
  8039. width:107px;
  8040. height:43px;
  8041. }
  8042. #u16038_text {
  8043. border-width:0px;
  8044. word-wrap:break-word;
  8045. text-transform:none;
  8046. visibility:hidden;
  8047. }
  8048. #u16039 {
  8049. border-width:0px;
  8050. position:absolute;
  8051. left:799px;
  8052. top:120px;
  8053. width:107px;
  8054. height:43px;
  8055. display:flex;
  8056. transition:none;
  8057. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8058. font-weight:400;
  8059. font-style:normal;
  8060. font-size:12px;
  8061. color:#606266;
  8062. }
  8063. #u16039 .text {
  8064. position:absolute;
  8065. align-self:center;
  8066. padding:2px 2px 2px 0px;
  8067. box-sizing:border-box;
  8068. width:100%;
  8069. }
  8070. #u16039_img {
  8071. border-width:0px;
  8072. position:absolute;
  8073. left:0px;
  8074. top:0px;
  8075. width:107px;
  8076. height:43px;
  8077. }
  8078. #u16039_text {
  8079. border-width:0px;
  8080. word-wrap:break-word;
  8081. text-transform:none;
  8082. visibility:hidden;
  8083. }
  8084. #u16040 {
  8085. border-width:0px;
  8086. position:absolute;
  8087. left:906px;
  8088. top:120px;
  8089. width:110px;
  8090. height:43px;
  8091. display:flex;
  8092. transition:none;
  8093. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8094. font-weight:400;
  8095. font-style:normal;
  8096. font-size:12px;
  8097. color:#1890FF;
  8098. }
  8099. #u16040 .text {
  8100. position:absolute;
  8101. align-self:center;
  8102. padding:2px 2px 2px 0px;
  8103. box-sizing:border-box;
  8104. width:100%;
  8105. }
  8106. #u16040_img {
  8107. border-width:0px;
  8108. position:absolute;
  8109. left:0px;
  8110. top:0px;
  8111. width:110px;
  8112. height:43px;
  8113. }
  8114. #u16040_text {
  8115. border-width:0px;
  8116. word-wrap:break-word;
  8117. text-transform:none;
  8118. visibility:hidden;
  8119. }
  8120. #u16041 {
  8121. border-width:0px;
  8122. position:absolute;
  8123. left:0px;
  8124. top:163px;
  8125. width:126px;
  8126. height:40px;
  8127. display:flex;
  8128. transition:none;
  8129. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  8130. font-weight:400;
  8131. font-style:normal;
  8132. font-size:12px;
  8133. color:#606266;
  8134. }
  8135. #u16041 .text {
  8136. position:absolute;
  8137. align-self:center;
  8138. padding:2px 2px 2px 0px;
  8139. box-sizing:border-box;
  8140. width:100%;
  8141. }
  8142. #u16041_img {
  8143. border-width:0px;
  8144. position:absolute;
  8145. left:0px;
  8146. top:0px;
  8147. width:126px;
  8148. height:40px;
  8149. }
  8150. #u16041_text {
  8151. border-width:0px;
  8152. word-wrap:break-word;
  8153. text-transform:none;
  8154. visibility:hidden;
  8155. }
  8156. #u16042 {
  8157. border-width:0px;
  8158. position:absolute;
  8159. left:126px;
  8160. top:163px;
  8161. width:122px;
  8162. height:40px;
  8163. display:flex;
  8164. transition:none;
  8165. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  8166. font-weight:400;
  8167. font-style:normal;
  8168. font-size:12px;
  8169. color:#606266;
  8170. }
  8171. #u16042 .text {
  8172. position:absolute;
  8173. align-self:center;
  8174. padding:2px 2px 2px 0px;
  8175. box-sizing:border-box;
  8176. width:100%;
  8177. }
  8178. #u16042_img {
  8179. border-width:0px;
  8180. position:absolute;
  8181. left:0px;
  8182. top:0px;
  8183. width:122px;
  8184. height:40px;
  8185. }
  8186. #u16042_text {
  8187. border-width:0px;
  8188. word-wrap:break-word;
  8189. text-transform:none;
  8190. visibility:hidden;
  8191. }
  8192. #u16043 {
  8193. border-width:0px;
  8194. position:absolute;
  8195. left:248px;
  8196. top:163px;
  8197. width:122px;
  8198. height:40px;
  8199. display:flex;
  8200. transition:none;
  8201. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  8202. font-weight:400;
  8203. font-style:normal;
  8204. font-size:12px;
  8205. color:#606266;
  8206. }
  8207. #u16043 .text {
  8208. position:absolute;
  8209. align-self:center;
  8210. padding:2px 2px 2px 0px;
  8211. box-sizing:border-box;
  8212. width:100%;
  8213. }
  8214. #u16043_img {
  8215. border-width:0px;
  8216. position:absolute;
  8217. left:0px;
  8218. top:0px;
  8219. width:122px;
  8220. height:40px;
  8221. }
  8222. #u16043_text {
  8223. border-width:0px;
  8224. word-wrap:break-word;
  8225. text-transform:none;
  8226. visibility:hidden;
  8227. }
  8228. #u16044 {
  8229. border-width:0px;
  8230. position:absolute;
  8231. left:370px;
  8232. top:163px;
  8233. width:107px;
  8234. height:40px;
  8235. display:flex;
  8236. transition:none;
  8237. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  8238. font-weight:400;
  8239. font-style:normal;
  8240. font-size:12px;
  8241. color:#606266;
  8242. }
  8243. #u16044 .text {
  8244. position:absolute;
  8245. align-self:center;
  8246. padding:2px 2px 2px 0px;
  8247. box-sizing:border-box;
  8248. width:100%;
  8249. }
  8250. #u16044_img {
  8251. border-width:0px;
  8252. position:absolute;
  8253. left:0px;
  8254. top:0px;
  8255. width:107px;
  8256. height:40px;
  8257. }
  8258. #u16044_text {
  8259. border-width:0px;
  8260. word-wrap:break-word;
  8261. text-transform:none;
  8262. visibility:hidden;
  8263. }
  8264. #u16045 {
  8265. border-width:0px;
  8266. position:absolute;
  8267. left:478px;
  8268. top:163px;
  8269. width:107px;
  8270. height:40px;
  8271. display:flex;
  8272. transition:none;
  8273. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  8274. font-weight:400;
  8275. font-style:normal;
  8276. font-size:12px;
  8277. color:#606266;
  8278. }
  8279. #u16045 .text {
  8280. position:absolute;
  8281. align-self:center;
  8282. padding:2px 2px 2px 0px;
  8283. box-sizing:border-box;
  8284. width:100%;
  8285. }
  8286. #u16045_img {
  8287. border-width:0px;
  8288. position:absolute;
  8289. left:0px;
  8290. top:0px;
  8291. width:107px;
  8292. height:40px;
  8293. }
  8294. #u16045_text {
  8295. border-width:0px;
  8296. word-wrap:break-word;
  8297. text-transform:none;
  8298. visibility:hidden;
  8299. }
  8300. #u16046 {
  8301. border-width:0px;
  8302. position:absolute;
  8303. left:585px;
  8304. top:163px;
  8305. width:107px;
  8306. height:40px;
  8307. display:flex;
  8308. transition:none;
  8309. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  8310. font-weight:400;
  8311. font-style:normal;
  8312. font-size:12px;
  8313. color:#606266;
  8314. }
  8315. #u16046 .text {
  8316. position:absolute;
  8317. align-self:center;
  8318. padding:2px 2px 2px 0px;
  8319. box-sizing:border-box;
  8320. width:100%;
  8321. }
  8322. #u16046_img {
  8323. border-width:0px;
  8324. position:absolute;
  8325. left:0px;
  8326. top:0px;
  8327. width:107px;
  8328. height:40px;
  8329. }
  8330. #u16046_text {
  8331. border-width:0px;
  8332. word-wrap:break-word;
  8333. text-transform:none;
  8334. visibility:hidden;
  8335. }
  8336. #u16047 {
  8337. border-width:0px;
  8338. position:absolute;
  8339. left:692px;
  8340. top:163px;
  8341. width:107px;
  8342. height:40px;
  8343. display:flex;
  8344. transition:none;
  8345. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  8346. font-weight:400;
  8347. font-style:normal;
  8348. font-size:12px;
  8349. color:#606266;
  8350. }
  8351. #u16047 .text {
  8352. position:absolute;
  8353. align-self:center;
  8354. padding:2px 2px 2px 0px;
  8355. box-sizing:border-box;
  8356. width:100%;
  8357. }
  8358. #u16047_img {
  8359. border-width:0px;
  8360. position:absolute;
  8361. left:0px;
  8362. top:0px;
  8363. width:107px;
  8364. height:40px;
  8365. }
  8366. #u16047_text {
  8367. border-width:0px;
  8368. word-wrap:break-word;
  8369. text-transform:none;
  8370. visibility:hidden;
  8371. }
  8372. #u16048 {
  8373. border-width:0px;
  8374. position:absolute;
  8375. left:799px;
  8376. top:163px;
  8377. width:107px;
  8378. height:40px;
  8379. display:flex;
  8380. transition:none;
  8381. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  8382. font-weight:400;
  8383. font-style:normal;
  8384. font-size:12px;
  8385. color:#606266;
  8386. }
  8387. #u16048 .text {
  8388. position:absolute;
  8389. align-self:center;
  8390. padding:2px 2px 2px 0px;
  8391. box-sizing:border-box;
  8392. width:100%;
  8393. }
  8394. #u16048_img {
  8395. border-width:0px;
  8396. position:absolute;
  8397. left:0px;
  8398. top:0px;
  8399. width:107px;
  8400. height:40px;
  8401. }
  8402. #u16048_text {
  8403. border-width:0px;
  8404. word-wrap:break-word;
  8405. text-transform:none;
  8406. visibility:hidden;
  8407. }
  8408. #u16049 {
  8409. border-width:0px;
  8410. position:absolute;
  8411. left:906px;
  8412. top:163px;
  8413. width:110px;
  8414. height:40px;
  8415. display:flex;
  8416. transition:none;
  8417. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  8418. font-weight:400;
  8419. font-style:normal;
  8420. font-size:12px;
  8421. color:#606266;
  8422. }
  8423. #u16049 .text {
  8424. position:absolute;
  8425. align-self:center;
  8426. padding:2px 2px 2px 0px;
  8427. box-sizing:border-box;
  8428. width:100%;
  8429. }
  8430. #u16049_img {
  8431. border-width:0px;
  8432. position:absolute;
  8433. left:0px;
  8434. top:0px;
  8435. width:110px;
  8436. height:40px;
  8437. }
  8438. #u16049_text {
  8439. border-width:0px;
  8440. word-wrap:break-word;
  8441. text-transform:none;
  8442. visibility:hidden;
  8443. }
  8444. #u16050 {
  8445. border-width:0px;
  8446. position:absolute;
  8447. left:0px;
  8448. top:203px;
  8449. width:126px;
  8450. height:40px;
  8451. display:flex;
  8452. transition:none;
  8453. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  8454. font-weight:400;
  8455. font-style:normal;
  8456. font-size:12px;
  8457. color:#606266;
  8458. }
  8459. #u16050 .text {
  8460. position:absolute;
  8461. align-self:center;
  8462. padding:2px 2px 2px 0px;
  8463. box-sizing:border-box;
  8464. width:100%;
  8465. }
  8466. #u16050_img {
  8467. border-width:0px;
  8468. position:absolute;
  8469. left:0px;
  8470. top:0px;
  8471. width:126px;
  8472. height:40px;
  8473. }
  8474. #u16050_text {
  8475. border-width:0px;
  8476. word-wrap:break-word;
  8477. text-transform:none;
  8478. visibility:hidden;
  8479. }
  8480. #u16051 {
  8481. border-width:0px;
  8482. position:absolute;
  8483. left:126px;
  8484. top:203px;
  8485. width:122px;
  8486. height:40px;
  8487. display:flex;
  8488. transition:none;
  8489. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  8490. font-weight:400;
  8491. font-style:normal;
  8492. font-size:12px;
  8493. color:#606266;
  8494. }
  8495. #u16051 .text {
  8496. position:absolute;
  8497. align-self:center;
  8498. padding:2px 2px 2px 0px;
  8499. box-sizing:border-box;
  8500. width:100%;
  8501. }
  8502. #u16051_img {
  8503. border-width:0px;
  8504. position:absolute;
  8505. left:0px;
  8506. top:0px;
  8507. width:122px;
  8508. height:40px;
  8509. }
  8510. #u16051_text {
  8511. border-width:0px;
  8512. word-wrap:break-word;
  8513. text-transform:none;
  8514. visibility:hidden;
  8515. }
  8516. #u16052 {
  8517. border-width:0px;
  8518. position:absolute;
  8519. left:248px;
  8520. top:203px;
  8521. width:122px;
  8522. height:40px;
  8523. display:flex;
  8524. transition:none;
  8525. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  8526. font-weight:400;
  8527. font-style:normal;
  8528. font-size:12px;
  8529. color:#606266;
  8530. }
  8531. #u16052 .text {
  8532. position:absolute;
  8533. align-self:center;
  8534. padding:2px 2px 2px 0px;
  8535. box-sizing:border-box;
  8536. width:100%;
  8537. }
  8538. #u16052_img {
  8539. border-width:0px;
  8540. position:absolute;
  8541. left:0px;
  8542. top:0px;
  8543. width:122px;
  8544. height:40px;
  8545. }
  8546. #u16052_text {
  8547. border-width:0px;
  8548. word-wrap:break-word;
  8549. text-transform:none;
  8550. visibility:hidden;
  8551. }
  8552. #u16053 {
  8553. border-width:0px;
  8554. position:absolute;
  8555. left:370px;
  8556. top:203px;
  8557. width:107px;
  8558. height:40px;
  8559. display:flex;
  8560. transition:none;
  8561. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  8562. font-weight:400;
  8563. font-style:normal;
  8564. font-size:12px;
  8565. color:#606266;
  8566. }
  8567. #u16053 .text {
  8568. position:absolute;
  8569. align-self:center;
  8570. padding:2px 2px 2px 0px;
  8571. box-sizing:border-box;
  8572. width:100%;
  8573. }
  8574. #u16053_img {
  8575. border-width:0px;
  8576. position:absolute;
  8577. left:0px;
  8578. top:0px;
  8579. width:107px;
  8580. height:40px;
  8581. }
  8582. #u16053_text {
  8583. border-width:0px;
  8584. word-wrap:break-word;
  8585. text-transform:none;
  8586. visibility:hidden;
  8587. }
  8588. #u16054 {
  8589. border-width:0px;
  8590. position:absolute;
  8591. left:478px;
  8592. top:203px;
  8593. width:107px;
  8594. height:40px;
  8595. display:flex;
  8596. transition:none;
  8597. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  8598. font-weight:400;
  8599. font-style:normal;
  8600. font-size:12px;
  8601. color:#606266;
  8602. }
  8603. #u16054 .text {
  8604. position:absolute;
  8605. align-self:center;
  8606. padding:2px 2px 2px 0px;
  8607. box-sizing:border-box;
  8608. width:100%;
  8609. }
  8610. #u16054_img {
  8611. border-width:0px;
  8612. position:absolute;
  8613. left:0px;
  8614. top:0px;
  8615. width:107px;
  8616. height:40px;
  8617. }
  8618. #u16054_text {
  8619. border-width:0px;
  8620. word-wrap:break-word;
  8621. text-transform:none;
  8622. visibility:hidden;
  8623. }
  8624. #u16055 {
  8625. border-width:0px;
  8626. position:absolute;
  8627. left:585px;
  8628. top:203px;
  8629. width:107px;
  8630. height:40px;
  8631. display:flex;
  8632. transition:none;
  8633. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  8634. font-weight:400;
  8635. font-style:normal;
  8636. font-size:12px;
  8637. color:#606266;
  8638. }
  8639. #u16055 .text {
  8640. position:absolute;
  8641. align-self:center;
  8642. padding:2px 2px 2px 0px;
  8643. box-sizing:border-box;
  8644. width:100%;
  8645. }
  8646. #u16055_img {
  8647. border-width:0px;
  8648. position:absolute;
  8649. left:0px;
  8650. top:0px;
  8651. width:107px;
  8652. height:40px;
  8653. }
  8654. #u16055_text {
  8655. border-width:0px;
  8656. word-wrap:break-word;
  8657. text-transform:none;
  8658. visibility:hidden;
  8659. }
  8660. #u16056 {
  8661. border-width:0px;
  8662. position:absolute;
  8663. left:692px;
  8664. top:203px;
  8665. width:107px;
  8666. height:40px;
  8667. display:flex;
  8668. transition:none;
  8669. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  8670. font-weight:400;
  8671. font-style:normal;
  8672. font-size:12px;
  8673. color:#606266;
  8674. }
  8675. #u16056 .text {
  8676. position:absolute;
  8677. align-self:center;
  8678. padding:2px 2px 2px 0px;
  8679. box-sizing:border-box;
  8680. width:100%;
  8681. }
  8682. #u16056_img {
  8683. border-width:0px;
  8684. position:absolute;
  8685. left:0px;
  8686. top:0px;
  8687. width:107px;
  8688. height:40px;
  8689. }
  8690. #u16056_text {
  8691. border-width:0px;
  8692. word-wrap:break-word;
  8693. text-transform:none;
  8694. visibility:hidden;
  8695. }
  8696. #u16057 {
  8697. border-width:0px;
  8698. position:absolute;
  8699. left:799px;
  8700. top:203px;
  8701. width:107px;
  8702. height:40px;
  8703. display:flex;
  8704. transition:none;
  8705. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  8706. font-weight:400;
  8707. font-style:normal;
  8708. font-size:12px;
  8709. color:#606266;
  8710. }
  8711. #u16057 .text {
  8712. position:absolute;
  8713. align-self:center;
  8714. padding:2px 2px 2px 0px;
  8715. box-sizing:border-box;
  8716. width:100%;
  8717. }
  8718. #u16057_img {
  8719. border-width:0px;
  8720. position:absolute;
  8721. left:0px;
  8722. top:0px;
  8723. width:107px;
  8724. height:40px;
  8725. }
  8726. #u16057_text {
  8727. border-width:0px;
  8728. word-wrap:break-word;
  8729. text-transform:none;
  8730. visibility:hidden;
  8731. }
  8732. #u16058 {
  8733. border-width:0px;
  8734. position:absolute;
  8735. left:906px;
  8736. top:203px;
  8737. width:110px;
  8738. height:40px;
  8739. display:flex;
  8740. transition:none;
  8741. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  8742. font-weight:400;
  8743. font-style:normal;
  8744. font-size:12px;
  8745. color:#606266;
  8746. }
  8747. #u16058 .text {
  8748. position:absolute;
  8749. align-self:center;
  8750. padding:2px 2px 2px 0px;
  8751. box-sizing:border-box;
  8752. width:100%;
  8753. }
  8754. #u16058_img {
  8755. border-width:0px;
  8756. position:absolute;
  8757. left:0px;
  8758. top:0px;
  8759. width:110px;
  8760. height:40px;
  8761. }
  8762. #u16058_text {
  8763. border-width:0px;
  8764. word-wrap:break-word;
  8765. text-transform:none;
  8766. visibility:hidden;
  8767. }
  8768. #u16059 {
  8769. border-width:0px;
  8770. position:absolute;
  8771. left:0px;
  8772. top:243px;
  8773. width:126px;
  8774. height:40px;
  8775. display:flex;
  8776. transition:none;
  8777. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  8778. font-weight:400;
  8779. font-style:normal;
  8780. font-size:12px;
  8781. color:#606266;
  8782. }
  8783. #u16059 .text {
  8784. position:absolute;
  8785. align-self:center;
  8786. padding:2px 2px 2px 0px;
  8787. box-sizing:border-box;
  8788. width:100%;
  8789. }
  8790. #u16059_img {
  8791. border-width:0px;
  8792. position:absolute;
  8793. left:0px;
  8794. top:0px;
  8795. width:126px;
  8796. height:40px;
  8797. }
  8798. #u16059_text {
  8799. border-width:0px;
  8800. word-wrap:break-word;
  8801. text-transform:none;
  8802. visibility:hidden;
  8803. }
  8804. #u16060 {
  8805. border-width:0px;
  8806. position:absolute;
  8807. left:126px;
  8808. top:243px;
  8809. width:122px;
  8810. height:40px;
  8811. display:flex;
  8812. transition:none;
  8813. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  8814. font-weight:400;
  8815. font-style:normal;
  8816. font-size:12px;
  8817. color:#606266;
  8818. }
  8819. #u16060 .text {
  8820. position:absolute;
  8821. align-self:center;
  8822. padding:2px 2px 2px 0px;
  8823. box-sizing:border-box;
  8824. width:100%;
  8825. }
  8826. #u16060_img {
  8827. border-width:0px;
  8828. position:absolute;
  8829. left:0px;
  8830. top:0px;
  8831. width:122px;
  8832. height:40px;
  8833. }
  8834. #u16060_text {
  8835. border-width:0px;
  8836. word-wrap:break-word;
  8837. text-transform:none;
  8838. visibility:hidden;
  8839. }
  8840. #u16061 {
  8841. border-width:0px;
  8842. position:absolute;
  8843. left:248px;
  8844. top:243px;
  8845. width:122px;
  8846. height:40px;
  8847. display:flex;
  8848. transition:none;
  8849. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  8850. font-weight:400;
  8851. font-style:normal;
  8852. font-size:12px;
  8853. color:#606266;
  8854. }
  8855. #u16061 .text {
  8856. position:absolute;
  8857. align-self:center;
  8858. padding:2px 2px 2px 0px;
  8859. box-sizing:border-box;
  8860. width:100%;
  8861. }
  8862. #u16061_img {
  8863. border-width:0px;
  8864. position:absolute;
  8865. left:0px;
  8866. top:0px;
  8867. width:122px;
  8868. height:40px;
  8869. }
  8870. #u16061_text {
  8871. border-width:0px;
  8872. word-wrap:break-word;
  8873. text-transform:none;
  8874. visibility:hidden;
  8875. }
  8876. #u16062 {
  8877. border-width:0px;
  8878. position:absolute;
  8879. left:370px;
  8880. top:243px;
  8881. width:107px;
  8882. height:40px;
  8883. display:flex;
  8884. transition:none;
  8885. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  8886. font-weight:400;
  8887. font-style:normal;
  8888. font-size:12px;
  8889. color:#606266;
  8890. }
  8891. #u16062 .text {
  8892. position:absolute;
  8893. align-self:center;
  8894. padding:2px 2px 2px 0px;
  8895. box-sizing:border-box;
  8896. width:100%;
  8897. }
  8898. #u16062_img {
  8899. border-width:0px;
  8900. position:absolute;
  8901. left:0px;
  8902. top:0px;
  8903. width:107px;
  8904. height:40px;
  8905. }
  8906. #u16062_text {
  8907. border-width:0px;
  8908. word-wrap:break-word;
  8909. text-transform:none;
  8910. visibility:hidden;
  8911. }
  8912. #u16063 {
  8913. border-width:0px;
  8914. position:absolute;
  8915. left:478px;
  8916. top:243px;
  8917. width:107px;
  8918. height:40px;
  8919. display:flex;
  8920. transition:none;
  8921. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  8922. font-weight:400;
  8923. font-style:normal;
  8924. font-size:12px;
  8925. color:#606266;
  8926. }
  8927. #u16063 .text {
  8928. position:absolute;
  8929. align-self:center;
  8930. padding:2px 2px 2px 0px;
  8931. box-sizing:border-box;
  8932. width:100%;
  8933. }
  8934. #u16063_img {
  8935. border-width:0px;
  8936. position:absolute;
  8937. left:0px;
  8938. top:0px;
  8939. width:107px;
  8940. height:40px;
  8941. }
  8942. #u16063_text {
  8943. border-width:0px;
  8944. word-wrap:break-word;
  8945. text-transform:none;
  8946. visibility:hidden;
  8947. }
  8948. #u16064 {
  8949. border-width:0px;
  8950. position:absolute;
  8951. left:585px;
  8952. top:243px;
  8953. width:107px;
  8954. height:40px;
  8955. display:flex;
  8956. transition:none;
  8957. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  8958. font-weight:400;
  8959. font-style:normal;
  8960. font-size:12px;
  8961. color:#606266;
  8962. }
  8963. #u16064 .text {
  8964. position:absolute;
  8965. align-self:center;
  8966. padding:2px 2px 2px 0px;
  8967. box-sizing:border-box;
  8968. width:100%;
  8969. }
  8970. #u16064_img {
  8971. border-width:0px;
  8972. position:absolute;
  8973. left:0px;
  8974. top:0px;
  8975. width:107px;
  8976. height:40px;
  8977. }
  8978. #u16064_text {
  8979. border-width:0px;
  8980. word-wrap:break-word;
  8981. text-transform:none;
  8982. visibility:hidden;
  8983. }
  8984. #u16065 {
  8985. border-width:0px;
  8986. position:absolute;
  8987. left:692px;
  8988. top:243px;
  8989. width:107px;
  8990. height:40px;
  8991. display:flex;
  8992. transition:none;
  8993. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  8994. font-weight:400;
  8995. font-style:normal;
  8996. font-size:12px;
  8997. color:#606266;
  8998. }
  8999. #u16065 .text {
  9000. position:absolute;
  9001. align-self:center;
  9002. padding:2px 2px 2px 0px;
  9003. box-sizing:border-box;
  9004. width:100%;
  9005. }
  9006. #u16065_img {
  9007. border-width:0px;
  9008. position:absolute;
  9009. left:0px;
  9010. top:0px;
  9011. width:107px;
  9012. height:40px;
  9013. }
  9014. #u16065_text {
  9015. border-width:0px;
  9016. word-wrap:break-word;
  9017. text-transform:none;
  9018. visibility:hidden;
  9019. }
  9020. #u16066 {
  9021. border-width:0px;
  9022. position:absolute;
  9023. left:799px;
  9024. top:243px;
  9025. width:107px;
  9026. height:40px;
  9027. display:flex;
  9028. transition:none;
  9029. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  9030. font-weight:400;
  9031. font-style:normal;
  9032. font-size:12px;
  9033. color:#606266;
  9034. }
  9035. #u16066 .text {
  9036. position:absolute;
  9037. align-self:center;
  9038. padding:2px 2px 2px 0px;
  9039. box-sizing:border-box;
  9040. width:100%;
  9041. }
  9042. #u16066_img {
  9043. border-width:0px;
  9044. position:absolute;
  9045. left:0px;
  9046. top:0px;
  9047. width:107px;
  9048. height:40px;
  9049. }
  9050. #u16066_text {
  9051. border-width:0px;
  9052. word-wrap:break-word;
  9053. text-transform:none;
  9054. visibility:hidden;
  9055. }
  9056. #u16067 {
  9057. border-width:0px;
  9058. position:absolute;
  9059. left:906px;
  9060. top:243px;
  9061. width:110px;
  9062. height:40px;
  9063. display:flex;
  9064. transition:none;
  9065. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  9066. font-weight:400;
  9067. font-style:normal;
  9068. font-size:12px;
  9069. color:#606266;
  9070. }
  9071. #u16067 .text {
  9072. position:absolute;
  9073. align-self:center;
  9074. padding:2px 2px 2px 0px;
  9075. box-sizing:border-box;
  9076. width:100%;
  9077. }
  9078. #u16067_img {
  9079. border-width:0px;
  9080. position:absolute;
  9081. left:0px;
  9082. top:0px;
  9083. width:110px;
  9084. height:40px;
  9085. }
  9086. #u16067_text {
  9087. border-width:0px;
  9088. word-wrap:break-word;
  9089. text-transform:none;
  9090. visibility:hidden;
  9091. }
  9092. #u16068 {
  9093. border-width:0px;
  9094. position:absolute;
  9095. left:0px;
  9096. top:283px;
  9097. width:126px;
  9098. height:20px;
  9099. display:flex;
  9100. transition:none;
  9101. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  9102. font-weight:400;
  9103. font-style:normal;
  9104. font-size:12px;
  9105. color:#606266;
  9106. }
  9107. #u16068 .text {
  9108. position:absolute;
  9109. align-self:center;
  9110. padding:2px 2px 2px 0px;
  9111. box-sizing:border-box;
  9112. width:100%;
  9113. }
  9114. #u16068_img {
  9115. border-width:0px;
  9116. position:absolute;
  9117. left:0px;
  9118. top:0px;
  9119. width:126px;
  9120. height:20px;
  9121. }
  9122. #u16068_text {
  9123. border-width:0px;
  9124. word-wrap:break-word;
  9125. text-transform:none;
  9126. visibility:hidden;
  9127. }
  9128. #u16069 {
  9129. border-width:0px;
  9130. position:absolute;
  9131. left:126px;
  9132. top:283px;
  9133. width:122px;
  9134. height:20px;
  9135. display:flex;
  9136. transition:none;
  9137. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  9138. font-weight:400;
  9139. font-style:normal;
  9140. font-size:12px;
  9141. color:#606266;
  9142. }
  9143. #u16069 .text {
  9144. position:absolute;
  9145. align-self:center;
  9146. padding:2px 2px 2px 0px;
  9147. box-sizing:border-box;
  9148. width:100%;
  9149. }
  9150. #u16069_img {
  9151. border-width:0px;
  9152. position:absolute;
  9153. left:0px;
  9154. top:0px;
  9155. width:122px;
  9156. height:20px;
  9157. }
  9158. #u16069_text {
  9159. border-width:0px;
  9160. word-wrap:break-word;
  9161. text-transform:none;
  9162. visibility:hidden;
  9163. }
  9164. #u16070 {
  9165. border-width:0px;
  9166. position:absolute;
  9167. left:248px;
  9168. top:283px;
  9169. width:122px;
  9170. height:20px;
  9171. display:flex;
  9172. transition:none;
  9173. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  9174. font-weight:400;
  9175. font-style:normal;
  9176. font-size:12px;
  9177. color:#606266;
  9178. }
  9179. #u16070 .text {
  9180. position:absolute;
  9181. align-self:center;
  9182. padding:2px 2px 2px 0px;
  9183. box-sizing:border-box;
  9184. width:100%;
  9185. }
  9186. #u16070_img {
  9187. border-width:0px;
  9188. position:absolute;
  9189. left:0px;
  9190. top:0px;
  9191. width:122px;
  9192. height:20px;
  9193. }
  9194. #u16070_text {
  9195. border-width:0px;
  9196. word-wrap:break-word;
  9197. text-transform:none;
  9198. visibility:hidden;
  9199. }
  9200. #u16071 {
  9201. border-width:0px;
  9202. position:absolute;
  9203. left:370px;
  9204. top:283px;
  9205. width:107px;
  9206. height:20px;
  9207. display:flex;
  9208. transition:none;
  9209. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  9210. font-weight:400;
  9211. font-style:normal;
  9212. font-size:12px;
  9213. color:#606266;
  9214. }
  9215. #u16071 .text {
  9216. position:absolute;
  9217. align-self:center;
  9218. padding:2px 2px 2px 0px;
  9219. box-sizing:border-box;
  9220. width:100%;
  9221. }
  9222. #u16071_img {
  9223. border-width:0px;
  9224. position:absolute;
  9225. left:0px;
  9226. top:0px;
  9227. width:107px;
  9228. height:20px;
  9229. }
  9230. #u16071_text {
  9231. border-width:0px;
  9232. word-wrap:break-word;
  9233. text-transform:none;
  9234. visibility:hidden;
  9235. }
  9236. #u16072 {
  9237. border-width:0px;
  9238. position:absolute;
  9239. left:478px;
  9240. top:283px;
  9241. width:107px;
  9242. height:20px;
  9243. display:flex;
  9244. transition:none;
  9245. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  9246. font-weight:400;
  9247. font-style:normal;
  9248. font-size:12px;
  9249. color:#606266;
  9250. }
  9251. #u16072 .text {
  9252. position:absolute;
  9253. align-self:center;
  9254. padding:2px 2px 2px 0px;
  9255. box-sizing:border-box;
  9256. width:100%;
  9257. }
  9258. #u16072_img {
  9259. border-width:0px;
  9260. position:absolute;
  9261. left:0px;
  9262. top:0px;
  9263. width:107px;
  9264. height:20px;
  9265. }
  9266. #u16072_text {
  9267. border-width:0px;
  9268. word-wrap:break-word;
  9269. text-transform:none;
  9270. visibility:hidden;
  9271. }
  9272. #u16073 {
  9273. border-width:0px;
  9274. position:absolute;
  9275. left:585px;
  9276. top:283px;
  9277. width:107px;
  9278. height:20px;
  9279. display:flex;
  9280. transition:none;
  9281. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  9282. font-weight:400;
  9283. font-style:normal;
  9284. font-size:12px;
  9285. color:#606266;
  9286. }
  9287. #u16073 .text {
  9288. position:absolute;
  9289. align-self:center;
  9290. padding:2px 2px 2px 0px;
  9291. box-sizing:border-box;
  9292. width:100%;
  9293. }
  9294. #u16073_img {
  9295. border-width:0px;
  9296. position:absolute;
  9297. left:0px;
  9298. top:0px;
  9299. width:107px;
  9300. height:20px;
  9301. }
  9302. #u16073_text {
  9303. border-width:0px;
  9304. word-wrap:break-word;
  9305. text-transform:none;
  9306. visibility:hidden;
  9307. }
  9308. #u16074 {
  9309. border-width:0px;
  9310. position:absolute;
  9311. left:692px;
  9312. top:283px;
  9313. width:107px;
  9314. height:20px;
  9315. display:flex;
  9316. transition:none;
  9317. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  9318. font-weight:400;
  9319. font-style:normal;
  9320. font-size:12px;
  9321. color:#606266;
  9322. }
  9323. #u16074 .text {
  9324. position:absolute;
  9325. align-self:center;
  9326. padding:2px 2px 2px 0px;
  9327. box-sizing:border-box;
  9328. width:100%;
  9329. }
  9330. #u16074_img {
  9331. border-width:0px;
  9332. position:absolute;
  9333. left:0px;
  9334. top:0px;
  9335. width:107px;
  9336. height:20px;
  9337. }
  9338. #u16074_text {
  9339. border-width:0px;
  9340. word-wrap:break-word;
  9341. text-transform:none;
  9342. visibility:hidden;
  9343. }
  9344. #u16075 {
  9345. border-width:0px;
  9346. position:absolute;
  9347. left:799px;
  9348. top:283px;
  9349. width:107px;
  9350. height:20px;
  9351. display:flex;
  9352. transition:none;
  9353. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  9354. font-weight:400;
  9355. font-style:normal;
  9356. font-size:12px;
  9357. color:#606266;
  9358. }
  9359. #u16075 .text {
  9360. position:absolute;
  9361. align-self:center;
  9362. padding:2px 2px 2px 0px;
  9363. box-sizing:border-box;
  9364. width:100%;
  9365. }
  9366. #u16075_img {
  9367. border-width:0px;
  9368. position:absolute;
  9369. left:0px;
  9370. top:0px;
  9371. width:107px;
  9372. height:20px;
  9373. }
  9374. #u16075_text {
  9375. border-width:0px;
  9376. word-wrap:break-word;
  9377. text-transform:none;
  9378. visibility:hidden;
  9379. }
  9380. #u16076 {
  9381. border-width:0px;
  9382. position:absolute;
  9383. left:906px;
  9384. top:283px;
  9385. width:110px;
  9386. height:20px;
  9387. display:flex;
  9388. transition:none;
  9389. font-family:"MicrosoftSansSerif", "Microsoft Sans Serif", sans-serif;
  9390. font-weight:400;
  9391. font-style:normal;
  9392. font-size:12px;
  9393. color:#606266;
  9394. }
  9395. #u16076 .text {
  9396. position:absolute;
  9397. align-self:center;
  9398. padding:2px 2px 2px 0px;
  9399. box-sizing:border-box;
  9400. width:100%;
  9401. }
  9402. #u16076_img {
  9403. border-width:0px;
  9404. position:absolute;
  9405. left:0px;
  9406. top:0px;
  9407. width:110px;
  9408. height:20px;
  9409. }
  9410. #u16076_text {
  9411. border-width:0px;
  9412. word-wrap:break-word;
  9413. text-transform:none;
  9414. visibility:hidden;
  9415. }
  9416. #u16077 {
  9417. border-width:0px;
  9418. position:absolute;
  9419. left:0px;
  9420. top:0px;
  9421. width:0px;
  9422. height:0px;
  9423. }
  9424. #u16078_div {
  9425. border-width:0px;
  9426. position:absolute;
  9427. left:0px;
  9428. top:0px;
  9429. width:80px;
  9430. height:100px;
  9431. background:inherit;
  9432. background-color:rgba(255, 255, 255, 1);
  9433. box-sizing:border-box;
  9434. border-width:1px;
  9435. border-style:solid;
  9436. border-color:rgba(242, 242, 242, 1);
  9437. border-radius:4px;
  9438. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  9439. transition:none;
  9440. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9441. font-weight:400;
  9442. font-style:normal;
  9443. font-size:14px;
  9444. text-align:left;
  9445. }
  9446. #u16078 {
  9447. border-width:0px;
  9448. position:absolute;
  9449. left:1473px;
  9450. top:350px;
  9451. width:80px;
  9452. height:100px;
  9453. display:flex;
  9454. transition:none;
  9455. transform-origin:50% 50%;
  9456. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9457. font-weight:400;
  9458. font-style:normal;
  9459. font-size:14px;
  9460. text-align:left;
  9461. }
  9462. #u16078 .text {
  9463. position:absolute;
  9464. align-self:center;
  9465. padding:2px 2px 2px 2px;
  9466. box-sizing:border-box;
  9467. width:100%;
  9468. }
  9469. #u16078_text {
  9470. border-width:0px;
  9471. word-wrap:break-word;
  9472. text-transform:none;
  9473. visibility:hidden;
  9474. }
  9475. #u16079_div {
  9476. border-width:0px;
  9477. position:absolute;
  9478. left:0px;
  9479. top:0px;
  9480. width:66px;
  9481. height:40px;
  9482. background:inherit;
  9483. background-color:rgba(255, 255, 255, 1);
  9484. box-sizing:border-box;
  9485. border-width:1px;
  9486. border-style:solid;
  9487. border-color:rgba(215, 215, 215, 1);
  9488. border-left:0px;
  9489. border-top:0px;
  9490. border-right:0px;
  9491. border-radius:0px;
  9492. border-bottom-right-radius:0px;
  9493. border-bottom-left-radius:0px;
  9494. filter:drop-shadow(none);
  9495. transition:none;
  9496. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9497. font-weight:400;
  9498. font-style:normal;
  9499. font-size:14px;
  9500. }
  9501. #u16079 {
  9502. border-width:0px;
  9503. position:absolute;
  9504. left:1479px;
  9505. top:360px;
  9506. width:66px;
  9507. height:40px;
  9508. display:flex;
  9509. transition:none;
  9510. transform-origin:50% 50%;
  9511. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9512. font-weight:400;
  9513. font-style:normal;
  9514. font-size:14px;
  9515. }
  9516. #u16079 .text {
  9517. position:absolute;
  9518. align-self:center;
  9519. padding:2px 2px 2px 2px;
  9520. box-sizing:border-box;
  9521. width:100%;
  9522. }
  9523. #u16079_text {
  9524. border-width:0px;
  9525. word-wrap:break-word;
  9526. text-transform:none;
  9527. }
  9528. #u16080_div {
  9529. border-width:0px;
  9530. position:absolute;
  9531. left:0px;
  9532. top:0px;
  9533. width:66px;
  9534. height:40px;
  9535. background:inherit;
  9536. background-color:rgba(255, 255, 255, 1);
  9537. border-left:0px;
  9538. border-top:0px;
  9539. border-right:0px;
  9540. border-radius:0px;
  9541. border-bottom-right-radius:0px;
  9542. border-bottom-left-radius:0px;
  9543. filter:drop-shadow(none);
  9544. transition:none;
  9545. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9546. font-weight:400;
  9547. font-style:normal;
  9548. font-size:14px;
  9549. }
  9550. #u16080 {
  9551. border-width:0px;
  9552. position:absolute;
  9553. left:1479px;
  9554. top:400px;
  9555. width:66px;
  9556. height:40px;
  9557. display:flex;
  9558. transition:none;
  9559. transform-origin:50% 50%;
  9560. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9561. font-weight:400;
  9562. font-style:normal;
  9563. font-size:14px;
  9564. }
  9565. #u16080 .text {
  9566. position:absolute;
  9567. align-self:center;
  9568. padding:2px 2px 2px 2px;
  9569. box-sizing:border-box;
  9570. width:100%;
  9571. }
  9572. #u16080_text {
  9573. border-width:0px;
  9574. word-wrap:break-word;
  9575. text-transform:none;
  9576. }
  9577. #u16081 {
  9578. border-width:0px;
  9579. position:absolute;
  9580. left:1267px;
  9581. top:320px;
  9582. width:50px;
  9583. height:31px;
  9584. display:flex;
  9585. transition:none;
  9586. }
  9587. #u16081 .text {
  9588. position:absolute;
  9589. align-self:center;
  9590. padding:2px 2px 2px 2px;
  9591. box-sizing:border-box;
  9592. width:100%;
  9593. }
  9594. #u16081_img {
  9595. border-width:0px;
  9596. position:absolute;
  9597. left:0px;
  9598. top:0px;
  9599. width:50px;
  9600. height:31px;
  9601. }
  9602. #u16081_text {
  9603. border-width:0px;
  9604. word-wrap:break-word;
  9605. text-transform:none;
  9606. visibility:hidden;
  9607. }
  9608. #u16082 {
  9609. border-width:0px;
  9610. position:absolute;
  9611. left:0px;
  9612. top:0px;
  9613. width:0px;
  9614. height:0px;
  9615. }
  9616. #u16083_div {
  9617. border-width:0px;
  9618. position:absolute;
  9619. left:0px;
  9620. top:0px;
  9621. width:140px;
  9622. height:30px;
  9623. background:inherit;
  9624. background-color:rgba(255, 255, 255, 1);
  9625. box-sizing:border-box;
  9626. border-width:1px;
  9627. border-style:solid;
  9628. border-color:rgba(215, 215, 215, 1);
  9629. border-radius:4px;
  9630. filter:drop-shadow(none);
  9631. transition:none;
  9632. font-size:14px;
  9633. }
  9634. #u16083 {
  9635. border-width:0px;
  9636. position:absolute;
  9637. left:848px;
  9638. top:150px;
  9639. width:140px;
  9640. height:30px;
  9641. display:flex;
  9642. transition:none;
  9643. transform-origin:50% 50%;
  9644. font-size:14px;
  9645. }
  9646. #u16083 .text {
  9647. position:absolute;
  9648. align-self:center;
  9649. padding:2px 2px 2px 2px;
  9650. box-sizing:border-box;
  9651. width:100%;
  9652. }
  9653. #u16083_text {
  9654. border-width:0px;
  9655. word-wrap:break-word;
  9656. text-transform:none;
  9657. visibility:hidden;
  9658. }
  9659. #u16084_input {
  9660. position:absolute;
  9661. left:0px;
  9662. top:0px;
  9663. width:134px;
  9664. height:23px;
  9665. padding:2px 2px 2px 2px;
  9666. font-family:"ArialMT", "Arial", sans-serif;
  9667. font-weight:400;
  9668. font-style:normal;
  9669. font-size:14px;
  9670. letter-spacing:normal;
  9671. color:#AAAAAA;
  9672. vertical-align:none;
  9673. text-align:left;
  9674. text-transform:none;
  9675. background-color:transparent;
  9676. border-color:transparent;
  9677. }
  9678. #u16084_input.disabled {
  9679. position:absolute;
  9680. left:0px;
  9681. top:0px;
  9682. width:134px;
  9683. height:23px;
  9684. padding:2px 2px 2px 2px;
  9685. font-family:"ArialMT", "Arial", sans-serif;
  9686. font-weight:400;
  9687. font-style:normal;
  9688. font-size:14px;
  9689. letter-spacing:normal;
  9690. color:#AAAAAA;
  9691. vertical-align:none;
  9692. text-align:left;
  9693. text-transform:none;
  9694. background-color:transparent;
  9695. border-color:transparent;
  9696. }
  9697. #u16084_div {
  9698. border-width:0px;
  9699. position:absolute;
  9700. left:0px;
  9701. top:0px;
  9702. width:134px;
  9703. height:23px;
  9704. background:inherit;
  9705. background-color:rgba(255, 255, 255, 1);
  9706. border-radius:0px;
  9707. filter:drop-shadow(none);
  9708. transition:none;
  9709. font-size:14px;
  9710. color:#AAAAAA;
  9711. }
  9712. #u16084 {
  9713. border-width:0px;
  9714. position:absolute;
  9715. left:852px;
  9716. top:152px;
  9717. width:134px;
  9718. height:23px;
  9719. display:flex;
  9720. transition:none;
  9721. transform-origin:50% 50%;
  9722. font-size:14px;
  9723. color:#AAAAAA;
  9724. }
  9725. #u16084 .text {
  9726. position:absolute;
  9727. align-self:flex-start;
  9728. padding:2px 2px 2px 2px;
  9729. box-sizing:border-box;
  9730. width:100%;
  9731. }
  9732. #u16084_div.disabled {
  9733. border-width:0px;
  9734. position:absolute;
  9735. left:0px;
  9736. top:0px;
  9737. width:134px;
  9738. height:23px;
  9739. background:inherit;
  9740. background-color:rgba(240, 240, 240, 1);
  9741. border-radius:0px;
  9742. filter:drop-shadow(none);
  9743. transition:none;
  9744. font-size:14px;
  9745. color:#AAAAAA;
  9746. }
  9747. #u16084.disabled {
  9748. }
  9749. .u16084_input_option {
  9750. font-size:14px;
  9751. }
  9752. #u16085 {
  9753. border-width:0px;
  9754. position:absolute;
  9755. left:0px;
  9756. top:0px;
  9757. width:0px;
  9758. height:0px;
  9759. }
  9760. #u16086_div {
  9761. border-width:0px;
  9762. position:absolute;
  9763. left:0px;
  9764. top:0px;
  9765. width:1000px;
  9766. height:1196px;
  9767. background:inherit;
  9768. background-color:rgba(255, 255, 255, 1);
  9769. box-sizing:border-box;
  9770. border-width:1px;
  9771. border-style:solid;
  9772. border-color:rgba(215, 215, 215, 1);
  9773. border-radius:0px;
  9774. filter:drop-shadow(none);
  9775. transition:none;
  9776. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9777. font-weight:400;
  9778. font-style:normal;
  9779. font-size:14px;
  9780. color:#AAAAAA;
  9781. text-align:center;
  9782. line-height:30px;
  9783. }
  9784. #u16086 {
  9785. border-width:0px;
  9786. position:absolute;
  9787. left:1620px;
  9788. top:47px;
  9789. width:1000px;
  9790. height:1196px;
  9791. display:flex;
  9792. transition:none;
  9793. transform-origin:50% 50%;
  9794. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9795. font-weight:400;
  9796. font-style:normal;
  9797. font-size:14px;
  9798. color:#AAAAAA;
  9799. text-align:center;
  9800. line-height:30px;
  9801. }
  9802. #u16086 .text {
  9803. position:absolute;
  9804. align-self:center;
  9805. padding:5px 10px 5px 10px;
  9806. box-sizing:border-box;
  9807. width:100%;
  9808. }
  9809. #u16086_text {
  9810. border-width:0px;
  9811. word-wrap:break-word;
  9812. text-transform:none;
  9813. visibility:hidden;
  9814. }
  9815. #u16087_div {
  9816. border-width:0px;
  9817. position:absolute;
  9818. left:0px;
  9819. top:0px;
  9820. width:137px;
  9821. height:35px;
  9822. background:inherit;
  9823. background-color:rgba(255, 255, 255, 0);
  9824. border-top:0px;
  9825. border-right:0px;
  9826. border-bottom:0px;
  9827. border-radius:0px;
  9828. border-top-left-radius:0px;
  9829. border-bottom-left-radius:0px;
  9830. filter:drop-shadow(none);
  9831. transition:none;
  9832. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9833. font-weight:500;
  9834. font-style:normal;
  9835. font-size:18px;
  9836. }
  9837. #u16087 {
  9838. border-width:0px;
  9839. position:absolute;
  9840. left:1640px;
  9841. top:65px;
  9842. width:137px;
  9843. height:35px;
  9844. display:flex;
  9845. transition:none;
  9846. transform-origin:50% 50%;
  9847. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9848. font-weight:500;
  9849. font-style:normal;
  9850. font-size:18px;
  9851. }
  9852. #u16087 .text {
  9853. position:absolute;
  9854. align-self:center;
  9855. padding:5px 10px 5px 0px;
  9856. box-sizing:border-box;
  9857. width:100%;
  9858. }
  9859. #u16087_text {
  9860. border-width:0px;
  9861. white-space:nowrap;
  9862. text-transform:none;
  9863. }
  9864. #u16088 {
  9865. border-width:0px;
  9866. position:absolute;
  9867. left:0px;
  9868. top:0px;
  9869. width:0px;
  9870. height:0px;
  9871. }
  9872. #u16089_div {
  9873. border-width:0px;
  9874. position:absolute;
  9875. left:0px;
  9876. top:0px;
  9877. width:40px;
  9878. height:40px;
  9879. background:inherit;
  9880. background-color:rgba(255, 255, 255, 0);
  9881. border-top:0px;
  9882. border-right:0px;
  9883. border-bottom:0px;
  9884. border-radius:0px;
  9885. border-top-left-radius:0px;
  9886. border-bottom-left-radius:0px;
  9887. filter:drop-shadow(none);
  9888. transition:none;
  9889. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9890. font-weight:500;
  9891. font-style:normal;
  9892. font-size:18px;
  9893. text-align:center;
  9894. }
  9895. #u16089 {
  9896. border-width:0px;
  9897. position:absolute;
  9898. left:2580px;
  9899. top:47px;
  9900. width:40px;
  9901. height:40px;
  9902. display:flex;
  9903. transition:none;
  9904. transform-origin:50% 50%;
  9905. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9906. font-weight:500;
  9907. font-style:normal;
  9908. font-size:18px;
  9909. text-align:center;
  9910. }
  9911. #u16089 .text {
  9912. position:absolute;
  9913. align-self:center;
  9914. padding:5px 10px 5px 0px;
  9915. box-sizing:border-box;
  9916. width:100%;
  9917. }
  9918. #u16089_text {
  9919. border-width:0px;
  9920. word-wrap:break-word;
  9921. text-transform:none;
  9922. }
  9923. #u16090 {
  9924. border-width:0px;
  9925. position:absolute;
  9926. left:2568px;
  9927. top:63px;
  9928. width:13px;
  9929. height:13px;
  9930. display:flex;
  9931. transition:none;
  9932. }
  9933. #u16090 .text {
  9934. position:absolute;
  9935. align-self:center;
  9936. padding:2px 2px 2px 2px;
  9937. box-sizing:border-box;
  9938. width:100%;
  9939. }
  9940. #u16090_img {
  9941. border-width:0px;
  9942. position:absolute;
  9943. left:0px;
  9944. top:0px;
  9945. width:13px;
  9946. height:13px;
  9947. }
  9948. #u16090_text {
  9949. border-width:0px;
  9950. word-wrap:break-word;
  9951. text-transform:none;
  9952. visibility:hidden;
  9953. }
  9954. #u16091 {
  9955. border-width:0px;
  9956. position:absolute;
  9957. left:0px;
  9958. top:0px;
  9959. width:0px;
  9960. height:0px;
  9961. }
  9962. #u16092_div {
  9963. border-width:0px;
  9964. position:absolute;
  9965. left:0px;
  9966. top:0px;
  9967. width:1000px;
  9968. height:50px;
  9969. background:inherit;
  9970. background-color:rgba(255, 255, 255, 1);
  9971. box-sizing:border-box;
  9972. border-width:1px;
  9973. border-style:solid;
  9974. border-color:rgba(215, 215, 215, 1);
  9975. border-radius:0px;
  9976. filter:drop-shadow(none);
  9977. transition:none;
  9978. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9979. font-weight:400;
  9980. font-style:normal;
  9981. font-size:14px;
  9982. color:#AAAAAA;
  9983. text-align:center;
  9984. line-height:30px;
  9985. }
  9986. #u16092 {
  9987. border-width:0px;
  9988. position:absolute;
  9989. left:1620px;
  9990. top:1193px;
  9991. width:1000px;
  9992. height:50px;
  9993. display:flex;
  9994. transition:none;
  9995. transform-origin:50% 50%;
  9996. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9997. font-weight:400;
  9998. font-style:normal;
  9999. font-size:14px;
  10000. color:#AAAAAA;
  10001. text-align:center;
  10002. line-height:30px;
  10003. }
  10004. #u16092 .text {
  10005. position:absolute;
  10006. align-self:center;
  10007. padding:5px 10px 5px 10px;
  10008. box-sizing:border-box;
  10009. width:100%;
  10010. }
  10011. #u16092_text {
  10012. border-width:0px;
  10013. word-wrap:break-word;
  10014. text-transform:none;
  10015. visibility:hidden;
  10016. }
  10017. #u16093_div {
  10018. border-width:0px;
  10019. position:absolute;
  10020. left:0px;
  10021. top:0px;
  10022. width:80px;
  10023. height:30px;
  10024. background:inherit;
  10025. background-color:rgba(255, 255, 255, 1);
  10026. box-sizing:border-box;
  10027. border-width:1px;
  10028. border-style:solid;
  10029. border-color:rgba(121, 121, 121, 1);
  10030. border-radius:4px;
  10031. filter:drop-shadow(none);
  10032. transition:none;
  10033. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10034. font-weight:400;
  10035. font-style:normal;
  10036. font-size:14px;
  10037. }
  10038. #u16093 {
  10039. border-width:0px;
  10040. position:absolute;
  10041. left:2520px;
  10042. top:1203px;
  10043. width:80px;
  10044. height:30px;
  10045. display:flex;
  10046. transition:none;
  10047. transform-origin:50% 50%;
  10048. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10049. font-weight:400;
  10050. font-style:normal;
  10051. font-size:14px;
  10052. }
  10053. #u16093 .text {
  10054. position:absolute;
  10055. align-self:center;
  10056. padding:2px 2px 2px 2px;
  10057. box-sizing:border-box;
  10058. width:100%;
  10059. }
  10060. #u16093_text {
  10061. border-width:0px;
  10062. word-wrap:break-word;
  10063. text-transform:none;
  10064. }
  10065. #u16094 {
  10066. border-width:0px;
  10067. position:absolute;
  10068. left:1640px;
  10069. top:170px;
  10070. width:960px;
  10071. height:213px;
  10072. }
  10073. #u16095 {
  10074. border-width:0px;
  10075. position:absolute;
  10076. left:0px;
  10077. top:0px;
  10078. width:59px;
  10079. height:30px;
  10080. display:flex;
  10081. transition:none;
  10082. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10083. font-weight:400;
  10084. font-style:normal;
  10085. color:#FFFFFF;
  10086. }
  10087. #u16095 .text {
  10088. position:absolute;
  10089. align-self:center;
  10090. padding:2px 2px 2px 2px;
  10091. box-sizing:border-box;
  10092. width:100%;
  10093. }
  10094. #u16095_img {
  10095. border-width:0px;
  10096. position:absolute;
  10097. left:0px;
  10098. top:0px;
  10099. width:59px;
  10100. height:30px;
  10101. }
  10102. #u16095_text {
  10103. border-width:0px;
  10104. word-wrap:break-word;
  10105. text-transform:none;
  10106. }
  10107. #u16096 {
  10108. border-width:0px;
  10109. position:absolute;
  10110. left:59px;
  10111. top:0px;
  10112. width:113px;
  10113. height:30px;
  10114. display:flex;
  10115. transition:none;
  10116. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10117. font-weight:400;
  10118. font-style:normal;
  10119. color:#FFFFFF;
  10120. }
  10121. #u16096 .text {
  10122. position:absolute;
  10123. align-self:center;
  10124. padding:2px 2px 2px 2px;
  10125. box-sizing:border-box;
  10126. width:100%;
  10127. }
  10128. #u16096_img {
  10129. border-width:0px;
  10130. position:absolute;
  10131. left:0px;
  10132. top:0px;
  10133. width:113px;
  10134. height:30px;
  10135. }
  10136. #u16096_text {
  10137. border-width:0px;
  10138. word-wrap:break-word;
  10139. text-transform:none;
  10140. }
  10141. #u16097 {
  10142. border-width:0px;
  10143. position:absolute;
  10144. left:171px;
  10145. top:0px;
  10146. width:113px;
  10147. height:30px;
  10148. display:flex;
  10149. transition:none;
  10150. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10151. font-weight:400;
  10152. font-style:normal;
  10153. color:#FFFFFF;
  10154. }
  10155. #u16097 .text {
  10156. position:absolute;
  10157. align-self:center;
  10158. padding:2px 2px 2px 2px;
  10159. box-sizing:border-box;
  10160. width:100%;
  10161. }
  10162. #u16097_img {
  10163. border-width:0px;
  10164. position:absolute;
  10165. left:0px;
  10166. top:0px;
  10167. width:113px;
  10168. height:30px;
  10169. }
  10170. #u16097_text {
  10171. border-width:0px;
  10172. word-wrap:break-word;
  10173. text-transform:none;
  10174. }
  10175. #u16098 {
  10176. border-width:0px;
  10177. position:absolute;
  10178. left:284px;
  10179. top:0px;
  10180. width:113px;
  10181. height:30px;
  10182. display:flex;
  10183. transition:none;
  10184. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10185. font-weight:400;
  10186. font-style:normal;
  10187. color:#FFFFFF;
  10188. }
  10189. #u16098 .text {
  10190. position:absolute;
  10191. align-self:center;
  10192. padding:2px 2px 2px 2px;
  10193. box-sizing:border-box;
  10194. width:100%;
  10195. }
  10196. #u16098_img {
  10197. border-width:0px;
  10198. position:absolute;
  10199. left:0px;
  10200. top:0px;
  10201. width:113px;
  10202. height:30px;
  10203. }
  10204. #u16098_text {
  10205. border-width:0px;
  10206. word-wrap:break-word;
  10207. text-transform:none;
  10208. }
  10209. #u16099 {
  10210. border-width:0px;
  10211. position:absolute;
  10212. left:396px;
  10213. top:0px;
  10214. width:113px;
  10215. height:30px;
  10216. display:flex;
  10217. transition:none;
  10218. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10219. font-weight:400;
  10220. font-style:normal;
  10221. color:#FFFFFF;
  10222. }
  10223. #u16099 .text {
  10224. position:absolute;
  10225. align-self:center;
  10226. padding:2px 2px 2px 2px;
  10227. box-sizing:border-box;
  10228. width:100%;
  10229. }
  10230. #u16099_img {
  10231. border-width:0px;
  10232. position:absolute;
  10233. left:0px;
  10234. top:0px;
  10235. width:113px;
  10236. height:30px;
  10237. }
  10238. #u16099_text {
  10239. border-width:0px;
  10240. word-wrap:break-word;
  10241. text-transform:none;
  10242. }
  10243. #u16100 {
  10244. border-width:0px;
  10245. position:absolute;
  10246. left:509px;
  10247. top:0px;
  10248. width:113px;
  10249. height:30px;
  10250. display:flex;
  10251. transition:none;
  10252. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10253. font-weight:400;
  10254. font-style:normal;
  10255. color:#FFFFFF;
  10256. }
  10257. #u16100 .text {
  10258. position:absolute;
  10259. align-self:center;
  10260. padding:2px 2px 2px 2px;
  10261. box-sizing:border-box;
  10262. width:100%;
  10263. }
  10264. #u16100_img {
  10265. border-width:0px;
  10266. position:absolute;
  10267. left:0px;
  10268. top:0px;
  10269. width:113px;
  10270. height:30px;
  10271. }
  10272. #u16100_text {
  10273. border-width:0px;
  10274. word-wrap:break-word;
  10275. text-transform:none;
  10276. }
  10277. #u16101 {
  10278. border-width:0px;
  10279. position:absolute;
  10280. left:622px;
  10281. top:0px;
  10282. width:113px;
  10283. height:30px;
  10284. display:flex;
  10285. transition:none;
  10286. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10287. font-weight:400;
  10288. font-style:normal;
  10289. color:#FFFFFF;
  10290. }
  10291. #u16101 .text {
  10292. position:absolute;
  10293. align-self:center;
  10294. padding:2px 2px 2px 2px;
  10295. box-sizing:border-box;
  10296. width:100%;
  10297. }
  10298. #u16101_img {
  10299. border-width:0px;
  10300. position:absolute;
  10301. left:0px;
  10302. top:0px;
  10303. width:113px;
  10304. height:30px;
  10305. }
  10306. #u16101_text {
  10307. border-width:0px;
  10308. word-wrap:break-word;
  10309. text-transform:none;
  10310. }
  10311. #u16102 {
  10312. border-width:0px;
  10313. position:absolute;
  10314. left:734px;
  10315. top:0px;
  10316. width:113px;
  10317. height:30px;
  10318. display:flex;
  10319. transition:none;
  10320. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10321. font-weight:400;
  10322. font-style:normal;
  10323. color:#FFFFFF;
  10324. }
  10325. #u16102 .text {
  10326. position:absolute;
  10327. align-self:center;
  10328. padding:2px 2px 2px 2px;
  10329. box-sizing:border-box;
  10330. width:100%;
  10331. }
  10332. #u16102_img {
  10333. border-width:0px;
  10334. position:absolute;
  10335. left:0px;
  10336. top:0px;
  10337. width:113px;
  10338. height:30px;
  10339. }
  10340. #u16102_text {
  10341. border-width:0px;
  10342. word-wrap:break-word;
  10343. text-transform:none;
  10344. }
  10345. #u16103 {
  10346. border-width:0px;
  10347. position:absolute;
  10348. left:847px;
  10349. top:0px;
  10350. width:113px;
  10351. height:30px;
  10352. display:flex;
  10353. transition:none;
  10354. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10355. font-weight:400;
  10356. font-style:normal;
  10357. color:#FFFFFF;
  10358. }
  10359. #u16103 .text {
  10360. position:absolute;
  10361. align-self:center;
  10362. padding:2px 2px 2px 2px;
  10363. box-sizing:border-box;
  10364. width:100%;
  10365. }
  10366. #u16103_img {
  10367. border-width:0px;
  10368. position:absolute;
  10369. left:0px;
  10370. top:0px;
  10371. width:113px;
  10372. height:30px;
  10373. }
  10374. #u16103_text {
  10375. border-width:0px;
  10376. word-wrap:break-word;
  10377. text-transform:none;
  10378. }
  10379. #u16104 {
  10380. border-width:0px;
  10381. position:absolute;
  10382. left:0px;
  10383. top:30px;
  10384. width:59px;
  10385. height:40px;
  10386. display:flex;
  10387. transition:none;
  10388. }
  10389. #u16104 .text {
  10390. position:absolute;
  10391. align-self:center;
  10392. padding:2px 2px 2px 2px;
  10393. box-sizing:border-box;
  10394. width:100%;
  10395. }
  10396. #u16104_img {
  10397. border-width:0px;
  10398. position:absolute;
  10399. left:0px;
  10400. top:0px;
  10401. width:59px;
  10402. height:40px;
  10403. }
  10404. #u16104_text {
  10405. border-width:0px;
  10406. word-wrap:break-word;
  10407. text-transform:none;
  10408. }
  10409. #u16105 {
  10410. border-width:0px;
  10411. position:absolute;
  10412. left:59px;
  10413. top:30px;
  10414. width:113px;
  10415. height:40px;
  10416. display:flex;
  10417. transition:none;
  10418. }
  10419. #u16105 .text {
  10420. position:absolute;
  10421. align-self:center;
  10422. padding:2px 2px 2px 2px;
  10423. box-sizing:border-box;
  10424. width:100%;
  10425. }
  10426. #u16105_img {
  10427. border-width:0px;
  10428. position:absolute;
  10429. left:0px;
  10430. top:0px;
  10431. width:113px;
  10432. height:40px;
  10433. }
  10434. #u16105_text {
  10435. border-width:0px;
  10436. word-wrap:break-word;
  10437. text-transform:none;
  10438. }
  10439. #u16106 {
  10440. border-width:0px;
  10441. position:absolute;
  10442. left:171px;
  10443. top:30px;
  10444. width:113px;
  10445. height:40px;
  10446. display:flex;
  10447. transition:none;
  10448. }
  10449. #u16106 .text {
  10450. position:absolute;
  10451. align-self:center;
  10452. padding:2px 2px 2px 2px;
  10453. box-sizing:border-box;
  10454. width:100%;
  10455. }
  10456. #u16106_img {
  10457. border-width:0px;
  10458. position:absolute;
  10459. left:0px;
  10460. top:0px;
  10461. width:113px;
  10462. height:40px;
  10463. }
  10464. #u16106_text {
  10465. border-width:0px;
  10466. word-wrap:break-word;
  10467. text-transform:none;
  10468. }
  10469. #u16107 {
  10470. border-width:0px;
  10471. position:absolute;
  10472. left:284px;
  10473. top:30px;
  10474. width:113px;
  10475. height:40px;
  10476. display:flex;
  10477. transition:none;
  10478. }
  10479. #u16107 .text {
  10480. position:absolute;
  10481. align-self:center;
  10482. padding:2px 2px 2px 2px;
  10483. box-sizing:border-box;
  10484. width:100%;
  10485. }
  10486. #u16107_img {
  10487. border-width:0px;
  10488. position:absolute;
  10489. left:0px;
  10490. top:0px;
  10491. width:113px;
  10492. height:40px;
  10493. }
  10494. #u16107_text {
  10495. border-width:0px;
  10496. word-wrap:break-word;
  10497. text-transform:none;
  10498. }
  10499. #u16108 {
  10500. border-width:0px;
  10501. position:absolute;
  10502. left:396px;
  10503. top:30px;
  10504. width:113px;
  10505. height:40px;
  10506. display:flex;
  10507. transition:none;
  10508. }
  10509. #u16108 .text {
  10510. position:absolute;
  10511. align-self:center;
  10512. padding:2px 2px 2px 2px;
  10513. box-sizing:border-box;
  10514. width:100%;
  10515. }
  10516. #u16108_img {
  10517. border-width:0px;
  10518. position:absolute;
  10519. left:0px;
  10520. top:0px;
  10521. width:113px;
  10522. height:40px;
  10523. }
  10524. #u16108_text {
  10525. border-width:0px;
  10526. word-wrap:break-word;
  10527. text-transform:none;
  10528. visibility:hidden;
  10529. }
  10530. #u16109 {
  10531. border-width:0px;
  10532. position:absolute;
  10533. left:509px;
  10534. top:30px;
  10535. width:113px;
  10536. height:40px;
  10537. display:flex;
  10538. transition:none;
  10539. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10540. font-weight:400;
  10541. font-style:normal;
  10542. }
  10543. #u16109 .text {
  10544. position:absolute;
  10545. align-self:center;
  10546. padding:2px 2px 2px 2px;
  10547. box-sizing:border-box;
  10548. width:100%;
  10549. }
  10550. #u16109_img {
  10551. border-width:0px;
  10552. position:absolute;
  10553. left:0px;
  10554. top:0px;
  10555. width:113px;
  10556. height:40px;
  10557. }
  10558. #u16109_text {
  10559. border-width:0px;
  10560. word-wrap:break-word;
  10561. text-transform:none;
  10562. }
  10563. #u16110 {
  10564. border-width:0px;
  10565. position:absolute;
  10566. left:622px;
  10567. top:30px;
  10568. width:113px;
  10569. height:40px;
  10570. display:flex;
  10571. transition:none;
  10572. }
  10573. #u16110 .text {
  10574. position:absolute;
  10575. align-self:center;
  10576. padding:2px 2px 2px 2px;
  10577. box-sizing:border-box;
  10578. width:100%;
  10579. }
  10580. #u16110_img {
  10581. border-width:0px;
  10582. position:absolute;
  10583. left:0px;
  10584. top:0px;
  10585. width:113px;
  10586. height:40px;
  10587. }
  10588. #u16110_text {
  10589. border-width:0px;
  10590. word-wrap:break-word;
  10591. text-transform:none;
  10592. }
  10593. #u16111 {
  10594. border-width:0px;
  10595. position:absolute;
  10596. left:734px;
  10597. top:30px;
  10598. width:113px;
  10599. height:40px;
  10600. display:flex;
  10601. transition:none;
  10602. }
  10603. #u16111 .text {
  10604. position:absolute;
  10605. align-self:center;
  10606. padding:2px 2px 2px 2px;
  10607. box-sizing:border-box;
  10608. width:100%;
  10609. }
  10610. #u16111_img {
  10611. border-width:0px;
  10612. position:absolute;
  10613. left:0px;
  10614. top:0px;
  10615. width:113px;
  10616. height:40px;
  10617. }
  10618. #u16111_text {
  10619. border-width:0px;
  10620. word-wrap:break-word;
  10621. text-transform:none;
  10622. }
  10623. #u16112 {
  10624. border-width:0px;
  10625. position:absolute;
  10626. left:847px;
  10627. top:30px;
  10628. width:113px;
  10629. height:40px;
  10630. display:flex;
  10631. transition:none;
  10632. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10633. font-weight:400;
  10634. font-style:normal;
  10635. color:#298FFF;
  10636. }
  10637. #u16112 .text {
  10638. position:absolute;
  10639. align-self:center;
  10640. padding:2px 2px 2px 2px;
  10641. box-sizing:border-box;
  10642. width:100%;
  10643. }
  10644. #u16112_img {
  10645. border-width:0px;
  10646. position:absolute;
  10647. left:0px;
  10648. top:0px;
  10649. width:113px;
  10650. height:40px;
  10651. }
  10652. #u16112_text {
  10653. border-width:0px;
  10654. word-wrap:break-word;
  10655. text-transform:none;
  10656. }
  10657. #u16113 {
  10658. border-width:0px;
  10659. position:absolute;
  10660. left:0px;
  10661. top:70px;
  10662. width:59px;
  10663. height:30px;
  10664. display:flex;
  10665. transition:none;
  10666. }
  10667. #u16113 .text {
  10668. position:absolute;
  10669. align-self:center;
  10670. padding:2px 2px 2px 2px;
  10671. box-sizing:border-box;
  10672. width:100%;
  10673. }
  10674. #u16113_img {
  10675. border-width:0px;
  10676. position:absolute;
  10677. left:0px;
  10678. top:0px;
  10679. width:59px;
  10680. height:30px;
  10681. }
  10682. #u16113_text {
  10683. border-width:0px;
  10684. word-wrap:break-word;
  10685. text-transform:none;
  10686. }
  10687. #u16114 {
  10688. border-width:0px;
  10689. position:absolute;
  10690. left:59px;
  10691. top:70px;
  10692. width:113px;
  10693. height:30px;
  10694. display:flex;
  10695. transition:none;
  10696. }
  10697. #u16114 .text {
  10698. position:absolute;
  10699. align-self:center;
  10700. padding:2px 2px 2px 2px;
  10701. box-sizing:border-box;
  10702. width:100%;
  10703. }
  10704. #u16114_img {
  10705. border-width:0px;
  10706. position:absolute;
  10707. left:0px;
  10708. top:0px;
  10709. width:113px;
  10710. height:30px;
  10711. }
  10712. #u16114_text {
  10713. border-width:0px;
  10714. word-wrap:break-word;
  10715. text-transform:none;
  10716. visibility:hidden;
  10717. }
  10718. #u16115 {
  10719. border-width:0px;
  10720. position:absolute;
  10721. left:171px;
  10722. top:70px;
  10723. width:113px;
  10724. height:30px;
  10725. display:flex;
  10726. transition:none;
  10727. }
  10728. #u16115 .text {
  10729. position:absolute;
  10730. align-self:center;
  10731. padding:2px 2px 2px 2px;
  10732. box-sizing:border-box;
  10733. width:100%;
  10734. }
  10735. #u16115_img {
  10736. border-width:0px;
  10737. position:absolute;
  10738. left:0px;
  10739. top:0px;
  10740. width:113px;
  10741. height:30px;
  10742. }
  10743. #u16115_text {
  10744. border-width:0px;
  10745. word-wrap:break-word;
  10746. text-transform:none;
  10747. visibility:hidden;
  10748. }
  10749. #u16116 {
  10750. border-width:0px;
  10751. position:absolute;
  10752. left:284px;
  10753. top:70px;
  10754. width:113px;
  10755. height:30px;
  10756. display:flex;
  10757. transition:none;
  10758. }
  10759. #u16116 .text {
  10760. position:absolute;
  10761. align-self:center;
  10762. padding:2px 2px 2px 2px;
  10763. box-sizing:border-box;
  10764. width:100%;
  10765. }
  10766. #u16116_img {
  10767. border-width:0px;
  10768. position:absolute;
  10769. left:0px;
  10770. top:0px;
  10771. width:113px;
  10772. height:30px;
  10773. }
  10774. #u16116_text {
  10775. border-width:0px;
  10776. word-wrap:break-word;
  10777. text-transform:none;
  10778. visibility:hidden;
  10779. }
  10780. #u16117 {
  10781. border-width:0px;
  10782. position:absolute;
  10783. left:396px;
  10784. top:70px;
  10785. width:113px;
  10786. height:30px;
  10787. display:flex;
  10788. transition:none;
  10789. }
  10790. #u16117 .text {
  10791. position:absolute;
  10792. align-self:center;
  10793. padding:2px 2px 2px 2px;
  10794. box-sizing:border-box;
  10795. width:100%;
  10796. }
  10797. #u16117_img {
  10798. border-width:0px;
  10799. position:absolute;
  10800. left:0px;
  10801. top:0px;
  10802. width:113px;
  10803. height:30px;
  10804. }
  10805. #u16117_text {
  10806. border-width:0px;
  10807. word-wrap:break-word;
  10808. text-transform:none;
  10809. visibility:hidden;
  10810. }
  10811. #u16118 {
  10812. border-width:0px;
  10813. position:absolute;
  10814. left:509px;
  10815. top:70px;
  10816. width:113px;
  10817. height:30px;
  10818. display:flex;
  10819. transition:none;
  10820. }
  10821. #u16118 .text {
  10822. position:absolute;
  10823. align-self:center;
  10824. padding:2px 2px 2px 2px;
  10825. box-sizing:border-box;
  10826. width:100%;
  10827. }
  10828. #u16118_img {
  10829. border-width:0px;
  10830. position:absolute;
  10831. left:0px;
  10832. top:0px;
  10833. width:113px;
  10834. height:30px;
  10835. }
  10836. #u16118_text {
  10837. border-width:0px;
  10838. word-wrap:break-word;
  10839. text-transform:none;
  10840. visibility:hidden;
  10841. }
  10842. #u16119 {
  10843. border-width:0px;
  10844. position:absolute;
  10845. left:622px;
  10846. top:70px;
  10847. width:113px;
  10848. height:30px;
  10849. display:flex;
  10850. transition:none;
  10851. }
  10852. #u16119 .text {
  10853. position:absolute;
  10854. align-self:center;
  10855. padding:2px 2px 2px 2px;
  10856. box-sizing:border-box;
  10857. width:100%;
  10858. }
  10859. #u16119_img {
  10860. border-width:0px;
  10861. position:absolute;
  10862. left:0px;
  10863. top:0px;
  10864. width:113px;
  10865. height:30px;
  10866. }
  10867. #u16119_text {
  10868. border-width:0px;
  10869. word-wrap:break-word;
  10870. text-transform:none;
  10871. visibility:hidden;
  10872. }
  10873. #u16120 {
  10874. border-width:0px;
  10875. position:absolute;
  10876. left:734px;
  10877. top:70px;
  10878. width:113px;
  10879. height:30px;
  10880. display:flex;
  10881. transition:none;
  10882. }
  10883. #u16120 .text {
  10884. position:absolute;
  10885. align-self:center;
  10886. padding:2px 2px 2px 2px;
  10887. box-sizing:border-box;
  10888. width:100%;
  10889. }
  10890. #u16120_img {
  10891. border-width:0px;
  10892. position:absolute;
  10893. left:0px;
  10894. top:0px;
  10895. width:113px;
  10896. height:30px;
  10897. }
  10898. #u16120_text {
  10899. border-width:0px;
  10900. word-wrap:break-word;
  10901. text-transform:none;
  10902. visibility:hidden;
  10903. }
  10904. #u16121 {
  10905. border-width:0px;
  10906. position:absolute;
  10907. left:847px;
  10908. top:70px;
  10909. width:113px;
  10910. height:30px;
  10911. display:flex;
  10912. transition:none;
  10913. }
  10914. #u16121 .text {
  10915. position:absolute;
  10916. align-self:center;
  10917. padding:2px 2px 2px 2px;
  10918. box-sizing:border-box;
  10919. width:100%;
  10920. }
  10921. #u16121_img {
  10922. border-width:0px;
  10923. position:absolute;
  10924. left:0px;
  10925. top:0px;
  10926. width:113px;
  10927. height:30px;
  10928. }
  10929. #u16121_text {
  10930. border-width:0px;
  10931. word-wrap:break-word;
  10932. text-transform:none;
  10933. visibility:hidden;
  10934. }
  10935. #u16122 {
  10936. border-width:0px;
  10937. position:absolute;
  10938. left:0px;
  10939. top:100px;
  10940. width:59px;
  10941. height:30px;
  10942. display:flex;
  10943. transition:none;
  10944. }
  10945. #u16122 .text {
  10946. position:absolute;
  10947. align-self:center;
  10948. padding:2px 2px 2px 2px;
  10949. box-sizing:border-box;
  10950. width:100%;
  10951. }
  10952. #u16122_img {
  10953. border-width:0px;
  10954. position:absolute;
  10955. left:0px;
  10956. top:0px;
  10957. width:59px;
  10958. height:30px;
  10959. }
  10960. #u16122_text {
  10961. border-width:0px;
  10962. word-wrap:break-word;
  10963. text-transform:none;
  10964. }
  10965. #u16123 {
  10966. border-width:0px;
  10967. position:absolute;
  10968. left:59px;
  10969. top:100px;
  10970. width:113px;
  10971. height:30px;
  10972. display:flex;
  10973. transition:none;
  10974. }
  10975. #u16123 .text {
  10976. position:absolute;
  10977. align-self:center;
  10978. padding:2px 2px 2px 2px;
  10979. box-sizing:border-box;
  10980. width:100%;
  10981. }
  10982. #u16123_img {
  10983. border-width:0px;
  10984. position:absolute;
  10985. left:0px;
  10986. top:0px;
  10987. width:113px;
  10988. height:30px;
  10989. }
  10990. #u16123_text {
  10991. border-width:0px;
  10992. word-wrap:break-word;
  10993. text-transform:none;
  10994. visibility:hidden;
  10995. }
  10996. #u16124 {
  10997. border-width:0px;
  10998. position:absolute;
  10999. left:171px;
  11000. top:100px;
  11001. width:113px;
  11002. height:30px;
  11003. display:flex;
  11004. transition:none;
  11005. }
  11006. #u16124 .text {
  11007. position:absolute;
  11008. align-self:center;
  11009. padding:2px 2px 2px 2px;
  11010. box-sizing:border-box;
  11011. width:100%;
  11012. }
  11013. #u16124_img {
  11014. border-width:0px;
  11015. position:absolute;
  11016. left:0px;
  11017. top:0px;
  11018. width:113px;
  11019. height:30px;
  11020. }
  11021. #u16124_text {
  11022. border-width:0px;
  11023. word-wrap:break-word;
  11024. text-transform:none;
  11025. visibility:hidden;
  11026. }
  11027. #u16125 {
  11028. border-width:0px;
  11029. position:absolute;
  11030. left:284px;
  11031. top:100px;
  11032. width:113px;
  11033. height:30px;
  11034. display:flex;
  11035. transition:none;
  11036. }
  11037. #u16125 .text {
  11038. position:absolute;
  11039. align-self:center;
  11040. padding:2px 2px 2px 2px;
  11041. box-sizing:border-box;
  11042. width:100%;
  11043. }
  11044. #u16125_img {
  11045. border-width:0px;
  11046. position:absolute;
  11047. left:0px;
  11048. top:0px;
  11049. width:113px;
  11050. height:30px;
  11051. }
  11052. #u16125_text {
  11053. border-width:0px;
  11054. word-wrap:break-word;
  11055. text-transform:none;
  11056. visibility:hidden;
  11057. }
  11058. #u16126 {
  11059. border-width:0px;
  11060. position:absolute;
  11061. left:396px;
  11062. top:100px;
  11063. width:113px;
  11064. height:30px;
  11065. display:flex;
  11066. transition:none;
  11067. }
  11068. #u16126 .text {
  11069. position:absolute;
  11070. align-self:center;
  11071. padding:2px 2px 2px 2px;
  11072. box-sizing:border-box;
  11073. width:100%;
  11074. }
  11075. #u16126_img {
  11076. border-width:0px;
  11077. position:absolute;
  11078. left:0px;
  11079. top:0px;
  11080. width:113px;
  11081. height:30px;
  11082. }
  11083. #u16126_text {
  11084. border-width:0px;
  11085. word-wrap:break-word;
  11086. text-transform:none;
  11087. visibility:hidden;
  11088. }
  11089. #u16127 {
  11090. border-width:0px;
  11091. position:absolute;
  11092. left:509px;
  11093. top:100px;
  11094. width:113px;
  11095. height:30px;
  11096. display:flex;
  11097. transition:none;
  11098. }
  11099. #u16127 .text {
  11100. position:absolute;
  11101. align-self:center;
  11102. padding:2px 2px 2px 2px;
  11103. box-sizing:border-box;
  11104. width:100%;
  11105. }
  11106. #u16127_img {
  11107. border-width:0px;
  11108. position:absolute;
  11109. left:0px;
  11110. top:0px;
  11111. width:113px;
  11112. height:30px;
  11113. }
  11114. #u16127_text {
  11115. border-width:0px;
  11116. word-wrap:break-word;
  11117. text-transform:none;
  11118. visibility:hidden;
  11119. }
  11120. #u16128 {
  11121. border-width:0px;
  11122. position:absolute;
  11123. left:622px;
  11124. top:100px;
  11125. width:113px;
  11126. height:30px;
  11127. display:flex;
  11128. transition:none;
  11129. }
  11130. #u16128 .text {
  11131. position:absolute;
  11132. align-self:center;
  11133. padding:2px 2px 2px 2px;
  11134. box-sizing:border-box;
  11135. width:100%;
  11136. }
  11137. #u16128_img {
  11138. border-width:0px;
  11139. position:absolute;
  11140. left:0px;
  11141. top:0px;
  11142. width:113px;
  11143. height:30px;
  11144. }
  11145. #u16128_text {
  11146. border-width:0px;
  11147. word-wrap:break-word;
  11148. text-transform:none;
  11149. visibility:hidden;
  11150. }
  11151. #u16129 {
  11152. border-width:0px;
  11153. position:absolute;
  11154. left:734px;
  11155. top:100px;
  11156. width:113px;
  11157. height:30px;
  11158. display:flex;
  11159. transition:none;
  11160. }
  11161. #u16129 .text {
  11162. position:absolute;
  11163. align-self:center;
  11164. padding:2px 2px 2px 2px;
  11165. box-sizing:border-box;
  11166. width:100%;
  11167. }
  11168. #u16129_img {
  11169. border-width:0px;
  11170. position:absolute;
  11171. left:0px;
  11172. top:0px;
  11173. width:113px;
  11174. height:30px;
  11175. }
  11176. #u16129_text {
  11177. border-width:0px;
  11178. word-wrap:break-word;
  11179. text-transform:none;
  11180. visibility:hidden;
  11181. }
  11182. #u16130 {
  11183. border-width:0px;
  11184. position:absolute;
  11185. left:847px;
  11186. top:100px;
  11187. width:113px;
  11188. height:30px;
  11189. display:flex;
  11190. transition:none;
  11191. }
  11192. #u16130 .text {
  11193. position:absolute;
  11194. align-self:center;
  11195. padding:2px 2px 2px 2px;
  11196. box-sizing:border-box;
  11197. width:100%;
  11198. }
  11199. #u16130_img {
  11200. border-width:0px;
  11201. position:absolute;
  11202. left:0px;
  11203. top:0px;
  11204. width:113px;
  11205. height:30px;
  11206. }
  11207. #u16130_text {
  11208. border-width:0px;
  11209. word-wrap:break-word;
  11210. text-transform:none;
  11211. visibility:hidden;
  11212. }
  11213. #u16131 {
  11214. border-width:0px;
  11215. position:absolute;
  11216. left:0px;
  11217. top:130px;
  11218. width:59px;
  11219. height:30px;
  11220. display:flex;
  11221. transition:none;
  11222. }
  11223. #u16131 .text {
  11224. position:absolute;
  11225. align-self:center;
  11226. padding:2px 2px 2px 2px;
  11227. box-sizing:border-box;
  11228. width:100%;
  11229. }
  11230. #u16131_img {
  11231. border-width:0px;
  11232. position:absolute;
  11233. left:0px;
  11234. top:0px;
  11235. width:59px;
  11236. height:30px;
  11237. }
  11238. #u16131_text {
  11239. border-width:0px;
  11240. word-wrap:break-word;
  11241. text-transform:none;
  11242. }
  11243. #u16132 {
  11244. border-width:0px;
  11245. position:absolute;
  11246. left:59px;
  11247. top:130px;
  11248. width:113px;
  11249. height:30px;
  11250. display:flex;
  11251. transition:none;
  11252. }
  11253. #u16132 .text {
  11254. position:absolute;
  11255. align-self:center;
  11256. padding:2px 2px 2px 2px;
  11257. box-sizing:border-box;
  11258. width:100%;
  11259. }
  11260. #u16132_img {
  11261. border-width:0px;
  11262. position:absolute;
  11263. left:0px;
  11264. top:0px;
  11265. width:113px;
  11266. height:30px;
  11267. }
  11268. #u16132_text {
  11269. border-width:0px;
  11270. word-wrap:break-word;
  11271. text-transform:none;
  11272. visibility:hidden;
  11273. }
  11274. #u16133 {
  11275. border-width:0px;
  11276. position:absolute;
  11277. left:171px;
  11278. top:130px;
  11279. width:113px;
  11280. height:30px;
  11281. display:flex;
  11282. transition:none;
  11283. }
  11284. #u16133 .text {
  11285. position:absolute;
  11286. align-self:center;
  11287. padding:2px 2px 2px 2px;
  11288. box-sizing:border-box;
  11289. width:100%;
  11290. }
  11291. #u16133_img {
  11292. border-width:0px;
  11293. position:absolute;
  11294. left:0px;
  11295. top:0px;
  11296. width:113px;
  11297. height:30px;
  11298. }
  11299. #u16133_text {
  11300. border-width:0px;
  11301. word-wrap:break-word;
  11302. text-transform:none;
  11303. visibility:hidden;
  11304. }
  11305. #u16134 {
  11306. border-width:0px;
  11307. position:absolute;
  11308. left:284px;
  11309. top:130px;
  11310. width:113px;
  11311. height:30px;
  11312. display:flex;
  11313. transition:none;
  11314. }
  11315. #u16134 .text {
  11316. position:absolute;
  11317. align-self:center;
  11318. padding:2px 2px 2px 2px;
  11319. box-sizing:border-box;
  11320. width:100%;
  11321. }
  11322. #u16134_img {
  11323. border-width:0px;
  11324. position:absolute;
  11325. left:0px;
  11326. top:0px;
  11327. width:113px;
  11328. height:30px;
  11329. }
  11330. #u16134_text {
  11331. border-width:0px;
  11332. word-wrap:break-word;
  11333. text-transform:none;
  11334. visibility:hidden;
  11335. }
  11336. #u16135 {
  11337. border-width:0px;
  11338. position:absolute;
  11339. left:396px;
  11340. top:130px;
  11341. width:113px;
  11342. height:30px;
  11343. display:flex;
  11344. transition:none;
  11345. }
  11346. #u16135 .text {
  11347. position:absolute;
  11348. align-self:center;
  11349. padding:2px 2px 2px 2px;
  11350. box-sizing:border-box;
  11351. width:100%;
  11352. }
  11353. #u16135_img {
  11354. border-width:0px;
  11355. position:absolute;
  11356. left:0px;
  11357. top:0px;
  11358. width:113px;
  11359. height:30px;
  11360. }
  11361. #u16135_text {
  11362. border-width:0px;
  11363. word-wrap:break-word;
  11364. text-transform:none;
  11365. visibility:hidden;
  11366. }
  11367. #u16136 {
  11368. border-width:0px;
  11369. position:absolute;
  11370. left:509px;
  11371. top:130px;
  11372. width:113px;
  11373. height:30px;
  11374. display:flex;
  11375. transition:none;
  11376. }
  11377. #u16136 .text {
  11378. position:absolute;
  11379. align-self:center;
  11380. padding:2px 2px 2px 2px;
  11381. box-sizing:border-box;
  11382. width:100%;
  11383. }
  11384. #u16136_img {
  11385. border-width:0px;
  11386. position:absolute;
  11387. left:0px;
  11388. top:0px;
  11389. width:113px;
  11390. height:30px;
  11391. }
  11392. #u16136_text {
  11393. border-width:0px;
  11394. word-wrap:break-word;
  11395. text-transform:none;
  11396. visibility:hidden;
  11397. }
  11398. #u16137 {
  11399. border-width:0px;
  11400. position:absolute;
  11401. left:622px;
  11402. top:130px;
  11403. width:113px;
  11404. height:30px;
  11405. display:flex;
  11406. transition:none;
  11407. }
  11408. #u16137 .text {
  11409. position:absolute;
  11410. align-self:center;
  11411. padding:2px 2px 2px 2px;
  11412. box-sizing:border-box;
  11413. width:100%;
  11414. }
  11415. #u16137_img {
  11416. border-width:0px;
  11417. position:absolute;
  11418. left:0px;
  11419. top:0px;
  11420. width:113px;
  11421. height:30px;
  11422. }
  11423. #u16137_text {
  11424. border-width:0px;
  11425. word-wrap:break-word;
  11426. text-transform:none;
  11427. visibility:hidden;
  11428. }
  11429. #u16138 {
  11430. border-width:0px;
  11431. position:absolute;
  11432. left:734px;
  11433. top:130px;
  11434. width:113px;
  11435. height:30px;
  11436. display:flex;
  11437. transition:none;
  11438. }
  11439. #u16138 .text {
  11440. position:absolute;
  11441. align-self:center;
  11442. padding:2px 2px 2px 2px;
  11443. box-sizing:border-box;
  11444. width:100%;
  11445. }
  11446. #u16138_img {
  11447. border-width:0px;
  11448. position:absolute;
  11449. left:0px;
  11450. top:0px;
  11451. width:113px;
  11452. height:30px;
  11453. }
  11454. #u16138_text {
  11455. border-width:0px;
  11456. word-wrap:break-word;
  11457. text-transform:none;
  11458. visibility:hidden;
  11459. }
  11460. #u16139 {
  11461. border-width:0px;
  11462. position:absolute;
  11463. left:847px;
  11464. top:130px;
  11465. width:113px;
  11466. height:30px;
  11467. display:flex;
  11468. transition:none;
  11469. }
  11470. #u16139 .text {
  11471. position:absolute;
  11472. align-self:center;
  11473. padding:2px 2px 2px 2px;
  11474. box-sizing:border-box;
  11475. width:100%;
  11476. }
  11477. #u16139_img {
  11478. border-width:0px;
  11479. position:absolute;
  11480. left:0px;
  11481. top:0px;
  11482. width:113px;
  11483. height:30px;
  11484. }
  11485. #u16139_text {
  11486. border-width:0px;
  11487. word-wrap:break-word;
  11488. text-transform:none;
  11489. visibility:hidden;
  11490. }
  11491. #u16140 {
  11492. border-width:0px;
  11493. position:absolute;
  11494. left:0px;
  11495. top:160px;
  11496. width:59px;
  11497. height:30px;
  11498. display:flex;
  11499. transition:none;
  11500. }
  11501. #u16140 .text {
  11502. position:absolute;
  11503. align-self:center;
  11504. padding:2px 2px 2px 2px;
  11505. box-sizing:border-box;
  11506. width:100%;
  11507. }
  11508. #u16140_img {
  11509. border-width:0px;
  11510. position:absolute;
  11511. left:0px;
  11512. top:0px;
  11513. width:59px;
  11514. height:30px;
  11515. }
  11516. #u16140_text {
  11517. border-width:0px;
  11518. word-wrap:break-word;
  11519. text-transform:none;
  11520. }
  11521. #u16141 {
  11522. border-width:0px;
  11523. position:absolute;
  11524. left:59px;
  11525. top:160px;
  11526. width:113px;
  11527. height:30px;
  11528. display:flex;
  11529. transition:none;
  11530. }
  11531. #u16141 .text {
  11532. position:absolute;
  11533. align-self:center;
  11534. padding:2px 2px 2px 2px;
  11535. box-sizing:border-box;
  11536. width:100%;
  11537. }
  11538. #u16141_img {
  11539. border-width:0px;
  11540. position:absolute;
  11541. left:0px;
  11542. top:0px;
  11543. width:113px;
  11544. height:30px;
  11545. }
  11546. #u16141_text {
  11547. border-width:0px;
  11548. word-wrap:break-word;
  11549. text-transform:none;
  11550. visibility:hidden;
  11551. }
  11552. #u16142 {
  11553. border-width:0px;
  11554. position:absolute;
  11555. left:171px;
  11556. top:160px;
  11557. width:113px;
  11558. height:30px;
  11559. display:flex;
  11560. transition:none;
  11561. }
  11562. #u16142 .text {
  11563. position:absolute;
  11564. align-self:center;
  11565. padding:2px 2px 2px 2px;
  11566. box-sizing:border-box;
  11567. width:100%;
  11568. }
  11569. #u16142_img {
  11570. border-width:0px;
  11571. position:absolute;
  11572. left:0px;
  11573. top:0px;
  11574. width:113px;
  11575. height:30px;
  11576. }
  11577. #u16142_text {
  11578. border-width:0px;
  11579. word-wrap:break-word;
  11580. text-transform:none;
  11581. visibility:hidden;
  11582. }
  11583. #u16143 {
  11584. border-width:0px;
  11585. position:absolute;
  11586. left:284px;
  11587. top:160px;
  11588. width:113px;
  11589. height:30px;
  11590. display:flex;
  11591. transition:none;
  11592. }
  11593. #u16143 .text {
  11594. position:absolute;
  11595. align-self:center;
  11596. padding:2px 2px 2px 2px;
  11597. box-sizing:border-box;
  11598. width:100%;
  11599. }
  11600. #u16143_img {
  11601. border-width:0px;
  11602. position:absolute;
  11603. left:0px;
  11604. top:0px;
  11605. width:113px;
  11606. height:30px;
  11607. }
  11608. #u16143_text {
  11609. border-width:0px;
  11610. word-wrap:break-word;
  11611. text-transform:none;
  11612. visibility:hidden;
  11613. }
  11614. #u16144 {
  11615. border-width:0px;
  11616. position:absolute;
  11617. left:396px;
  11618. top:160px;
  11619. width:113px;
  11620. height:30px;
  11621. display:flex;
  11622. transition:none;
  11623. }
  11624. #u16144 .text {
  11625. position:absolute;
  11626. align-self:center;
  11627. padding:2px 2px 2px 2px;
  11628. box-sizing:border-box;
  11629. width:100%;
  11630. }
  11631. #u16144_img {
  11632. border-width:0px;
  11633. position:absolute;
  11634. left:0px;
  11635. top:0px;
  11636. width:113px;
  11637. height:30px;
  11638. }
  11639. #u16144_text {
  11640. border-width:0px;
  11641. word-wrap:break-word;
  11642. text-transform:none;
  11643. visibility:hidden;
  11644. }
  11645. #u16145 {
  11646. border-width:0px;
  11647. position:absolute;
  11648. left:509px;
  11649. top:160px;
  11650. width:113px;
  11651. height:30px;
  11652. display:flex;
  11653. transition:none;
  11654. }
  11655. #u16145 .text {
  11656. position:absolute;
  11657. align-self:center;
  11658. padding:2px 2px 2px 2px;
  11659. box-sizing:border-box;
  11660. width:100%;
  11661. }
  11662. #u16145_img {
  11663. border-width:0px;
  11664. position:absolute;
  11665. left:0px;
  11666. top:0px;
  11667. width:113px;
  11668. height:30px;
  11669. }
  11670. #u16145_text {
  11671. border-width:0px;
  11672. word-wrap:break-word;
  11673. text-transform:none;
  11674. visibility:hidden;
  11675. }
  11676. #u16146 {
  11677. border-width:0px;
  11678. position:absolute;
  11679. left:622px;
  11680. top:160px;
  11681. width:113px;
  11682. height:30px;
  11683. display:flex;
  11684. transition:none;
  11685. }
  11686. #u16146 .text {
  11687. position:absolute;
  11688. align-self:center;
  11689. padding:2px 2px 2px 2px;
  11690. box-sizing:border-box;
  11691. width:100%;
  11692. }
  11693. #u16146_img {
  11694. border-width:0px;
  11695. position:absolute;
  11696. left:0px;
  11697. top:0px;
  11698. width:113px;
  11699. height:30px;
  11700. }
  11701. #u16146_text {
  11702. border-width:0px;
  11703. word-wrap:break-word;
  11704. text-transform:none;
  11705. visibility:hidden;
  11706. }
  11707. #u16147 {
  11708. border-width:0px;
  11709. position:absolute;
  11710. left:734px;
  11711. top:160px;
  11712. width:113px;
  11713. height:30px;
  11714. display:flex;
  11715. transition:none;
  11716. }
  11717. #u16147 .text {
  11718. position:absolute;
  11719. align-self:center;
  11720. padding:2px 2px 2px 2px;
  11721. box-sizing:border-box;
  11722. width:100%;
  11723. }
  11724. #u16147_img {
  11725. border-width:0px;
  11726. position:absolute;
  11727. left:0px;
  11728. top:0px;
  11729. width:113px;
  11730. height:30px;
  11731. }
  11732. #u16147_text {
  11733. border-width:0px;
  11734. word-wrap:break-word;
  11735. text-transform:none;
  11736. visibility:hidden;
  11737. }
  11738. #u16148 {
  11739. border-width:0px;
  11740. position:absolute;
  11741. left:847px;
  11742. top:160px;
  11743. width:113px;
  11744. height:30px;
  11745. display:flex;
  11746. transition:none;
  11747. }
  11748. #u16148 .text {
  11749. position:absolute;
  11750. align-self:center;
  11751. padding:2px 2px 2px 2px;
  11752. box-sizing:border-box;
  11753. width:100%;
  11754. }
  11755. #u16148_img {
  11756. border-width:0px;
  11757. position:absolute;
  11758. left:0px;
  11759. top:0px;
  11760. width:113px;
  11761. height:30px;
  11762. }
  11763. #u16148_text {
  11764. border-width:0px;
  11765. word-wrap:break-word;
  11766. text-transform:none;
  11767. visibility:hidden;
  11768. }
  11769. #u16149 {
  11770. border-width:0px;
  11771. position:absolute;
  11772. left:0px;
  11773. top:190px;
  11774. width:59px;
  11775. height:23px;
  11776. display:flex;
  11777. transition:none;
  11778. }
  11779. #u16149 .text {
  11780. position:absolute;
  11781. align-self:center;
  11782. padding:2px 2px 2px 2px;
  11783. box-sizing:border-box;
  11784. width:100%;
  11785. }
  11786. #u16149_img {
  11787. border-width:0px;
  11788. position:absolute;
  11789. left:0px;
  11790. top:0px;
  11791. width:59px;
  11792. height:23px;
  11793. }
  11794. #u16149_text {
  11795. border-width:0px;
  11796. word-wrap:break-word;
  11797. text-transform:none;
  11798. }
  11799. #u16150 {
  11800. border-width:0px;
  11801. position:absolute;
  11802. left:59px;
  11803. top:190px;
  11804. width:113px;
  11805. height:23px;
  11806. display:flex;
  11807. transition:none;
  11808. }
  11809. #u16150 .text {
  11810. position:absolute;
  11811. align-self:center;
  11812. padding:2px 2px 2px 2px;
  11813. box-sizing:border-box;
  11814. width:100%;
  11815. }
  11816. #u16150_img {
  11817. border-width:0px;
  11818. position:absolute;
  11819. left:0px;
  11820. top:0px;
  11821. width:113px;
  11822. height:23px;
  11823. }
  11824. #u16150_text {
  11825. border-width:0px;
  11826. word-wrap:break-word;
  11827. text-transform:none;
  11828. visibility:hidden;
  11829. }
  11830. #u16151 {
  11831. border-width:0px;
  11832. position:absolute;
  11833. left:171px;
  11834. top:190px;
  11835. width:113px;
  11836. height:23px;
  11837. display:flex;
  11838. transition:none;
  11839. }
  11840. #u16151 .text {
  11841. position:absolute;
  11842. align-self:center;
  11843. padding:2px 2px 2px 2px;
  11844. box-sizing:border-box;
  11845. width:100%;
  11846. }
  11847. #u16151_img {
  11848. border-width:0px;
  11849. position:absolute;
  11850. left:0px;
  11851. top:0px;
  11852. width:113px;
  11853. height:23px;
  11854. }
  11855. #u16151_text {
  11856. border-width:0px;
  11857. word-wrap:break-word;
  11858. text-transform:none;
  11859. visibility:hidden;
  11860. }
  11861. #u16152 {
  11862. border-width:0px;
  11863. position:absolute;
  11864. left:284px;
  11865. top:190px;
  11866. width:113px;
  11867. height:23px;
  11868. display:flex;
  11869. transition:none;
  11870. }
  11871. #u16152 .text {
  11872. position:absolute;
  11873. align-self:center;
  11874. padding:2px 2px 2px 2px;
  11875. box-sizing:border-box;
  11876. width:100%;
  11877. }
  11878. #u16152_img {
  11879. border-width:0px;
  11880. position:absolute;
  11881. left:0px;
  11882. top:0px;
  11883. width:113px;
  11884. height:23px;
  11885. }
  11886. #u16152_text {
  11887. border-width:0px;
  11888. word-wrap:break-word;
  11889. text-transform:none;
  11890. visibility:hidden;
  11891. }
  11892. #u16153 {
  11893. border-width:0px;
  11894. position:absolute;
  11895. left:396px;
  11896. top:190px;
  11897. width:113px;
  11898. height:23px;
  11899. display:flex;
  11900. transition:none;
  11901. }
  11902. #u16153 .text {
  11903. position:absolute;
  11904. align-self:center;
  11905. padding:2px 2px 2px 2px;
  11906. box-sizing:border-box;
  11907. width:100%;
  11908. }
  11909. #u16153_img {
  11910. border-width:0px;
  11911. position:absolute;
  11912. left:0px;
  11913. top:0px;
  11914. width:113px;
  11915. height:23px;
  11916. }
  11917. #u16153_text {
  11918. border-width:0px;
  11919. word-wrap:break-word;
  11920. text-transform:none;
  11921. visibility:hidden;
  11922. }
  11923. #u16154 {
  11924. border-width:0px;
  11925. position:absolute;
  11926. left:509px;
  11927. top:190px;
  11928. width:113px;
  11929. height:23px;
  11930. display:flex;
  11931. transition:none;
  11932. }
  11933. #u16154 .text {
  11934. position:absolute;
  11935. align-self:center;
  11936. padding:2px 2px 2px 2px;
  11937. box-sizing:border-box;
  11938. width:100%;
  11939. }
  11940. #u16154_img {
  11941. border-width:0px;
  11942. position:absolute;
  11943. left:0px;
  11944. top:0px;
  11945. width:113px;
  11946. height:23px;
  11947. }
  11948. #u16154_text {
  11949. border-width:0px;
  11950. word-wrap:break-word;
  11951. text-transform:none;
  11952. visibility:hidden;
  11953. }
  11954. #u16155 {
  11955. border-width:0px;
  11956. position:absolute;
  11957. left:622px;
  11958. top:190px;
  11959. width:113px;
  11960. height:23px;
  11961. display:flex;
  11962. transition:none;
  11963. }
  11964. #u16155 .text {
  11965. position:absolute;
  11966. align-self:center;
  11967. padding:2px 2px 2px 2px;
  11968. box-sizing:border-box;
  11969. width:100%;
  11970. }
  11971. #u16155_img {
  11972. border-width:0px;
  11973. position:absolute;
  11974. left:0px;
  11975. top:0px;
  11976. width:113px;
  11977. height:23px;
  11978. }
  11979. #u16155_text {
  11980. border-width:0px;
  11981. word-wrap:break-word;
  11982. text-transform:none;
  11983. visibility:hidden;
  11984. }
  11985. #u16156 {
  11986. border-width:0px;
  11987. position:absolute;
  11988. left:734px;
  11989. top:190px;
  11990. width:113px;
  11991. height:23px;
  11992. display:flex;
  11993. transition:none;
  11994. }
  11995. #u16156 .text {
  11996. position:absolute;
  11997. align-self:center;
  11998. padding:2px 2px 2px 2px;
  11999. box-sizing:border-box;
  12000. width:100%;
  12001. }
  12002. #u16156_img {
  12003. border-width:0px;
  12004. position:absolute;
  12005. left:0px;
  12006. top:0px;
  12007. width:113px;
  12008. height:23px;
  12009. }
  12010. #u16156_text {
  12011. border-width:0px;
  12012. word-wrap:break-word;
  12013. text-transform:none;
  12014. visibility:hidden;
  12015. }
  12016. #u16157 {
  12017. border-width:0px;
  12018. position:absolute;
  12019. left:847px;
  12020. top:190px;
  12021. width:113px;
  12022. height:23px;
  12023. display:flex;
  12024. transition:none;
  12025. }
  12026. #u16157 .text {
  12027. position:absolute;
  12028. align-self:center;
  12029. padding:2px 2px 2px 2px;
  12030. box-sizing:border-box;
  12031. width:100%;
  12032. }
  12033. #u16157_img {
  12034. border-width:0px;
  12035. position:absolute;
  12036. left:0px;
  12037. top:0px;
  12038. width:113px;
  12039. height:23px;
  12040. }
  12041. #u16157_text {
  12042. border-width:0px;
  12043. word-wrap:break-word;
  12044. text-transform:none;
  12045. visibility:hidden;
  12046. }
  12047. #u16158 {
  12048. border-width:0px;
  12049. position:absolute;
  12050. left:0px;
  12051. top:0px;
  12052. width:0px;
  12053. height:0px;
  12054. }
  12055. #u16159_div {
  12056. border-width:0px;
  12057. position:absolute;
  12058. left:0px;
  12059. top:0px;
  12060. width:120px;
  12061. height:30px;
  12062. background:inherit;
  12063. background-color:rgba(255, 255, 255, 1);
  12064. box-sizing:border-box;
  12065. border-width:1px;
  12066. border-style:solid;
  12067. border-color:rgba(201, 201, 201, 1);
  12068. border-radius:4px;
  12069. filter:drop-shadow(none);
  12070. transition:none;
  12071. font-family:"Microsoft YaHei", sans-serif;
  12072. font-weight:400;
  12073. font-style:normal;
  12074. font-size:14px;
  12075. color:#CCCCCC;
  12076. text-align:left;
  12077. }
  12078. #u16159 {
  12079. border-width:0px;
  12080. position:absolute;
  12081. left:2160px;
  12082. top:120px;
  12083. width:120px;
  12084. height:30px;
  12085. display:flex;
  12086. transition:none;
  12087. transform-origin:50% 50%;
  12088. font-family:"Microsoft YaHei", sans-serif;
  12089. font-weight:400;
  12090. font-style:normal;
  12091. font-size:14px;
  12092. color:#CCCCCC;
  12093. text-align:left;
  12094. }
  12095. #u16159 .text {
  12096. position:absolute;
  12097. align-self:center;
  12098. padding:2px 8px 2px 8px;
  12099. box-sizing:border-box;
  12100. width:100%;
  12101. }
  12102. #u16159_text {
  12103. border-width:0px;
  12104. word-wrap:break-word;
  12105. text-transform:none;
  12106. visibility:hidden;
  12107. }
  12108. #u16160_input {
  12109. position:absolute;
  12110. left:0px;
  12111. top:0px;
  12112. width:109px;
  12113. height:25px;
  12114. padding:2px 2px 2px 2px;
  12115. font-family:"Microsoft YaHei", sans-serif;
  12116. font-weight:400;
  12117. font-style:normal;
  12118. font-size:10px;
  12119. letter-spacing:normal;
  12120. color:#000000;
  12121. vertical-align:none;
  12122. text-align:left;
  12123. text-transform:none;
  12124. background-color:transparent;
  12125. border-color:transparent;
  12126. }
  12127. #u16160_input.hint {
  12128. position:absolute;
  12129. left:0px;
  12130. top:0px;
  12131. width:109px;
  12132. height:25px;
  12133. padding:2px 2px 2px 2px;
  12134. font-family:"Microsoft YaHei", sans-serif;
  12135. font-weight:400;
  12136. font-style:normal;
  12137. font-size:12px;
  12138. letter-spacing:normal;
  12139. color:#AAAAAA;
  12140. vertical-align:none;
  12141. text-align:left;
  12142. text-transform:none;
  12143. background-color:transparent;
  12144. border-color:transparent;
  12145. }
  12146. #u16160_input.disabled {
  12147. position:absolute;
  12148. left:0px;
  12149. top:0px;
  12150. width:109px;
  12151. height:25px;
  12152. padding:2px 2px 2px 2px;
  12153. font-family:"Microsoft YaHei", sans-serif;
  12154. font-weight:400;
  12155. font-style:normal;
  12156. font-size:10px;
  12157. letter-spacing:normal;
  12158. color:#000000;
  12159. vertical-align:none;
  12160. text-align:left;
  12161. text-transform:none;
  12162. background-color:transparent;
  12163. border-color:transparent;
  12164. }
  12165. #u16160_input.hint.disabled {
  12166. position:absolute;
  12167. left:0px;
  12168. top:0px;
  12169. width:109px;
  12170. height:25px;
  12171. padding:2px 2px 2px 2px;
  12172. font-family:"Microsoft YaHei", sans-serif;
  12173. font-weight:400;
  12174. font-style:normal;
  12175. font-size:12px;
  12176. letter-spacing:normal;
  12177. color:#AAAAAA;
  12178. vertical-align:none;
  12179. text-align:left;
  12180. text-transform:none;
  12181. background-color:transparent;
  12182. border-color:transparent;
  12183. }
  12184. #u16160_div {
  12185. border-width:0px;
  12186. position:absolute;
  12187. left:0px;
  12188. top:0px;
  12189. width:109px;
  12190. height:25px;
  12191. background:inherit;
  12192. background-color:rgba(255, 255, 255, 1);
  12193. border-radius:0px;
  12194. filter:drop-shadow(none);
  12195. transition:none;
  12196. font-family:"Microsoft YaHei", sans-serif;
  12197. font-weight:400;
  12198. font-style:normal;
  12199. font-size:10px;
  12200. }
  12201. #u16160 {
  12202. border-width:0px;
  12203. position:absolute;
  12204. left:2167px;
  12205. top:121px;
  12206. width:109px;
  12207. height:25px;
  12208. display:flex;
  12209. transition:none;
  12210. transform-origin:50% 50%;
  12211. font-family:"Microsoft YaHei", sans-serif;
  12212. font-weight:400;
  12213. font-style:normal;
  12214. font-size:10px;
  12215. }
  12216. #u16160 .text {
  12217. position:absolute;
  12218. align-self:center;
  12219. padding:2px 2px 2px 2px;
  12220. box-sizing:border-box;
  12221. width:100%;
  12222. }
  12223. #u16160_div.hint {
  12224. border-width:0px;
  12225. position:absolute;
  12226. left:0px;
  12227. top:0px;
  12228. width:109px;
  12229. height:25px;
  12230. background:inherit;
  12231. background-color:rgba(255, 255, 255, 1);
  12232. border-radius:0px;
  12233. filter:drop-shadow(none);
  12234. transition:none;
  12235. font-family:"Microsoft YaHei", sans-serif;
  12236. font-weight:400;
  12237. font-style:normal;
  12238. font-size:10px;
  12239. }
  12240. #u16160.hint {
  12241. }
  12242. #u16160_div.disabled {
  12243. border-width:0px;
  12244. position:absolute;
  12245. left:0px;
  12246. top:0px;
  12247. width:109px;
  12248. height:25px;
  12249. background:inherit;
  12250. background-color:rgba(240, 240, 240, 1);
  12251. border-radius:0px;
  12252. filter:drop-shadow(none);
  12253. transition:none;
  12254. font-family:"Microsoft YaHei", sans-serif;
  12255. font-weight:400;
  12256. font-style:normal;
  12257. font-size:10px;
  12258. }
  12259. #u16160.disabled {
  12260. }
  12261. #u16160_div.hint.disabled {
  12262. border-width:0px;
  12263. position:absolute;
  12264. left:0px;
  12265. top:0px;
  12266. width:109px;
  12267. height:25px;
  12268. background:inherit;
  12269. background-color:rgba(240, 240, 240, 1);
  12270. border-radius:0px;
  12271. filter:drop-shadow(none);
  12272. transition:none;
  12273. font-family:"Microsoft YaHei", sans-serif;
  12274. font-weight:400;
  12275. font-style:normal;
  12276. font-size:10px;
  12277. }
  12278. #u16160.hint.disabled {
  12279. }
  12280. #u16161 {
  12281. border-width:0px;
  12282. position:absolute;
  12283. left:0px;
  12284. top:0px;
  12285. width:0px;
  12286. height:0px;
  12287. }
  12288. #u16162_div {
  12289. border-width:0px;
  12290. position:absolute;
  12291. left:0px;
  12292. top:0px;
  12293. width:120px;
  12294. height:30px;
  12295. background:inherit;
  12296. background-color:rgba(255, 255, 255, 1);
  12297. box-sizing:border-box;
  12298. border-width:1px;
  12299. border-style:solid;
  12300. border-color:rgba(201, 201, 201, 1);
  12301. border-radius:4px;
  12302. filter:drop-shadow(none);
  12303. transition:none;
  12304. font-family:"Microsoft YaHei", sans-serif;
  12305. font-weight:400;
  12306. font-style:normal;
  12307. font-size:14px;
  12308. color:#CCCCCC;
  12309. text-align:left;
  12310. }
  12311. #u16162 {
  12312. border-width:0px;
  12313. position:absolute;
  12314. left:2290px;
  12315. top:120px;
  12316. width:120px;
  12317. height:30px;
  12318. display:flex;
  12319. transition:none;
  12320. transform-origin:50% 50%;
  12321. font-family:"Microsoft YaHei", sans-serif;
  12322. font-weight:400;
  12323. font-style:normal;
  12324. font-size:14px;
  12325. color:#CCCCCC;
  12326. text-align:left;
  12327. }
  12328. #u16162 .text {
  12329. position:absolute;
  12330. align-self:center;
  12331. padding:2px 8px 2px 8px;
  12332. box-sizing:border-box;
  12333. width:100%;
  12334. }
  12335. #u16162_text {
  12336. border-width:0px;
  12337. word-wrap:break-word;
  12338. text-transform:none;
  12339. visibility:hidden;
  12340. }
  12341. #u16163_input {
  12342. position:absolute;
  12343. left:0px;
  12344. top:0px;
  12345. width:109px;
  12346. height:25px;
  12347. padding:2px 2px 2px 2px;
  12348. font-family:"Microsoft YaHei", sans-serif;
  12349. font-weight:400;
  12350. font-style:normal;
  12351. font-size:10px;
  12352. letter-spacing:normal;
  12353. color:#000000;
  12354. vertical-align:none;
  12355. text-align:left;
  12356. text-transform:none;
  12357. background-color:transparent;
  12358. border-color:transparent;
  12359. }
  12360. #u16163_input.hint {
  12361. position:absolute;
  12362. left:0px;
  12363. top:0px;
  12364. width:109px;
  12365. height:25px;
  12366. padding:2px 2px 2px 2px;
  12367. font-family:"Microsoft YaHei", sans-serif;
  12368. font-weight:400;
  12369. font-style:normal;
  12370. font-size:12px;
  12371. letter-spacing:normal;
  12372. color:#AAAAAA;
  12373. vertical-align:none;
  12374. text-align:left;
  12375. text-transform:none;
  12376. background-color:transparent;
  12377. border-color:transparent;
  12378. }
  12379. #u16163_input.disabled {
  12380. position:absolute;
  12381. left:0px;
  12382. top:0px;
  12383. width:109px;
  12384. height:25px;
  12385. padding:2px 2px 2px 2px;
  12386. font-family:"Microsoft YaHei", sans-serif;
  12387. font-weight:400;
  12388. font-style:normal;
  12389. font-size:10px;
  12390. letter-spacing:normal;
  12391. color:#000000;
  12392. vertical-align:none;
  12393. text-align:left;
  12394. text-transform:none;
  12395. background-color:transparent;
  12396. border-color:transparent;
  12397. }
  12398. #u16163_input.hint.disabled {
  12399. position:absolute;
  12400. left:0px;
  12401. top:0px;
  12402. width:109px;
  12403. height:25px;
  12404. padding:2px 2px 2px 2px;
  12405. font-family:"Microsoft YaHei", sans-serif;
  12406. font-weight:400;
  12407. font-style:normal;
  12408. font-size:12px;
  12409. letter-spacing:normal;
  12410. color:#AAAAAA;
  12411. vertical-align:none;
  12412. text-align:left;
  12413. text-transform:none;
  12414. background-color:transparent;
  12415. border-color:transparent;
  12416. }
  12417. #u16163_div {
  12418. border-width:0px;
  12419. position:absolute;
  12420. left:0px;
  12421. top:0px;
  12422. width:109px;
  12423. height:25px;
  12424. background:inherit;
  12425. background-color:rgba(255, 255, 255, 1);
  12426. border-radius:0px;
  12427. filter:drop-shadow(none);
  12428. transition:none;
  12429. font-family:"Microsoft YaHei", sans-serif;
  12430. font-weight:400;
  12431. font-style:normal;
  12432. font-size:10px;
  12433. }
  12434. #u16163 {
  12435. border-width:0px;
  12436. position:absolute;
  12437. left:2297px;
  12438. top:121px;
  12439. width:109px;
  12440. height:25px;
  12441. display:flex;
  12442. transition:none;
  12443. transform-origin:50% 50%;
  12444. font-family:"Microsoft YaHei", sans-serif;
  12445. font-weight:400;
  12446. font-style:normal;
  12447. font-size:10px;
  12448. }
  12449. #u16163 .text {
  12450. position:absolute;
  12451. align-self:center;
  12452. padding:2px 2px 2px 2px;
  12453. box-sizing:border-box;
  12454. width:100%;
  12455. }
  12456. #u16163_div.hint {
  12457. border-width:0px;
  12458. position:absolute;
  12459. left:0px;
  12460. top:0px;
  12461. width:109px;
  12462. height:25px;
  12463. background:inherit;
  12464. background-color:rgba(255, 255, 255, 1);
  12465. border-radius:0px;
  12466. filter:drop-shadow(none);
  12467. transition:none;
  12468. font-family:"Microsoft YaHei", sans-serif;
  12469. font-weight:400;
  12470. font-style:normal;
  12471. font-size:10px;
  12472. }
  12473. #u16163.hint {
  12474. }
  12475. #u16163_div.disabled {
  12476. border-width:0px;
  12477. position:absolute;
  12478. left:0px;
  12479. top:0px;
  12480. width:109px;
  12481. height:25px;
  12482. background:inherit;
  12483. background-color:rgba(240, 240, 240, 1);
  12484. border-radius:0px;
  12485. filter:drop-shadow(none);
  12486. transition:none;
  12487. font-family:"Microsoft YaHei", sans-serif;
  12488. font-weight:400;
  12489. font-style:normal;
  12490. font-size:10px;
  12491. }
  12492. #u16163.disabled {
  12493. }
  12494. #u16163_div.hint.disabled {
  12495. border-width:0px;
  12496. position:absolute;
  12497. left:0px;
  12498. top:0px;
  12499. width:109px;
  12500. height:25px;
  12501. background:inherit;
  12502. background-color:rgba(240, 240, 240, 1);
  12503. border-radius:0px;
  12504. filter:drop-shadow(none);
  12505. transition:none;
  12506. font-family:"Microsoft YaHei", sans-serif;
  12507. font-weight:400;
  12508. font-style:normal;
  12509. font-size:10px;
  12510. }
  12511. #u16163.hint.disabled {
  12512. }
  12513. #u16164 {
  12514. border-width:0px;
  12515. position:absolute;
  12516. left:0px;
  12517. top:0px;
  12518. width:0px;
  12519. height:0px;
  12520. }
  12521. #u16165_div {
  12522. border-width:0px;
  12523. position:absolute;
  12524. left:0px;
  12525. top:0px;
  12526. width:60px;
  12527. height:30px;
  12528. background:inherit;
  12529. background-color:rgba(24, 144, 255, 1);
  12530. border-radius:4px;
  12531. filter:drop-shadow(none);
  12532. transition:none;
  12533. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  12534. font-weight:400;
  12535. font-style:normal;
  12536. font-size:14px;
  12537. color:#FFFFFF;
  12538. }
  12539. #u16165 {
  12540. border-width:0px;
  12541. position:absolute;
  12542. left:2420px;
  12543. top:120px;
  12544. width:60px;
  12545. height:30px;
  12546. display:flex;
  12547. transition:none;
  12548. transform-origin:50% 50%;
  12549. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  12550. font-weight:400;
  12551. font-style:normal;
  12552. font-size:14px;
  12553. color:#FFFFFF;
  12554. }
  12555. #u16165 .text {
  12556. position:absolute;
  12557. align-self:center;
  12558. padding:2px 2px 2px 2px;
  12559. box-sizing:border-box;
  12560. width:100%;
  12561. }
  12562. #u16165_text {
  12563. border-width:0px;
  12564. word-wrap:break-word;
  12565. text-transform:none;
  12566. }
  12567. #u16166_div {
  12568. border-width:0px;
  12569. position:absolute;
  12570. left:0px;
  12571. top:0px;
  12572. width:60px;
  12573. height:30px;
  12574. background:inherit;
  12575. background-color:rgba(255, 255, 255, 1);
  12576. box-sizing:border-box;
  12577. border-width:1px;
  12578. border-style:solid;
  12579. border-color:rgba(170, 170, 170, 1);
  12580. border-radius:4px;
  12581. filter:drop-shadow(none);
  12582. transition:none;
  12583. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  12584. font-weight:400;
  12585. font-style:normal;
  12586. font-size:14px;
  12587. }
  12588. #u16166 {
  12589. border-width:0px;
  12590. position:absolute;
  12591. left:2490px;
  12592. top:120px;
  12593. width:60px;
  12594. height:30px;
  12595. display:flex;
  12596. transition:none;
  12597. transform-origin:50% 50%;
  12598. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  12599. font-weight:400;
  12600. font-style:normal;
  12601. font-size:14px;
  12602. }
  12603. #u16166 .text {
  12604. position:absolute;
  12605. align-self:center;
  12606. padding:2px 2px 2px 2px;
  12607. box-sizing:border-box;
  12608. width:100%;
  12609. }
  12610. #u16166_text {
  12611. border-width:0px;
  12612. word-wrap:break-word;
  12613. text-transform:none;
  12614. }
  12615. #u16167 {
  12616. border-width:0px;
  12617. position:absolute;
  12618. left:0px;
  12619. top:0px;
  12620. width:0px;
  12621. height:0px;
  12622. }
  12623. #u16168_div {
  12624. border-width:0px;
  12625. position:absolute;
  12626. left:0px;
  12627. top:0px;
  12628. width:120px;
  12629. height:30px;
  12630. background:inherit;
  12631. background-color:rgba(255, 255, 255, 1);
  12632. box-sizing:border-box;
  12633. border-width:1px;
  12634. border-style:solid;
  12635. border-color:rgba(215, 215, 215, 1);
  12636. border-radius:4px;
  12637. filter:drop-shadow(none);
  12638. transition:none;
  12639. font-size:14px;
  12640. }
  12641. #u16168 {
  12642. border-width:0px;
  12643. position:absolute;
  12644. left:1900px;
  12645. top:120px;
  12646. width:120px;
  12647. height:30px;
  12648. display:flex;
  12649. transition:none;
  12650. transform-origin:50% 50%;
  12651. font-size:14px;
  12652. }
  12653. #u16168 .text {
  12654. position:absolute;
  12655. align-self:center;
  12656. padding:2px 2px 2px 2px;
  12657. box-sizing:border-box;
  12658. width:100%;
  12659. }
  12660. #u16168_text {
  12661. border-width:0px;
  12662. word-wrap:break-word;
  12663. text-transform:none;
  12664. visibility:hidden;
  12665. }
  12666. #u16169_input {
  12667. position:absolute;
  12668. left:0px;
  12669. top:0px;
  12670. width:115px;
  12671. height:23px;
  12672. padding:2px 2px 2px 2px;
  12673. font-family:"ArialMT", "Arial", sans-serif;
  12674. font-weight:400;
  12675. font-style:normal;
  12676. font-size:14px;
  12677. letter-spacing:normal;
  12678. color:#AAAAAA;
  12679. vertical-align:none;
  12680. text-align:left;
  12681. text-transform:none;
  12682. background-color:transparent;
  12683. border-color:transparent;
  12684. }
  12685. #u16169_input.disabled {
  12686. position:absolute;
  12687. left:0px;
  12688. top:0px;
  12689. width:115px;
  12690. height:23px;
  12691. padding:2px 2px 2px 2px;
  12692. font-family:"ArialMT", "Arial", sans-serif;
  12693. font-weight:400;
  12694. font-style:normal;
  12695. font-size:14px;
  12696. letter-spacing:normal;
  12697. color:#AAAAAA;
  12698. vertical-align:none;
  12699. text-align:left;
  12700. text-transform:none;
  12701. background-color:transparent;
  12702. border-color:transparent;
  12703. }
  12704. #u16169_div {
  12705. border-width:0px;
  12706. position:absolute;
  12707. left:0px;
  12708. top:0px;
  12709. width:115px;
  12710. height:23px;
  12711. background:inherit;
  12712. background-color:rgba(255, 255, 255, 1);
  12713. border-radius:0px;
  12714. filter:drop-shadow(none);
  12715. transition:none;
  12716. font-size:14px;
  12717. color:#AAAAAA;
  12718. }
  12719. #u16169 {
  12720. border-width:0px;
  12721. position:absolute;
  12722. left:1903px;
  12723. top:122px;
  12724. width:115px;
  12725. height:23px;
  12726. display:flex;
  12727. transition:none;
  12728. transform-origin:50% 50%;
  12729. font-size:14px;
  12730. color:#AAAAAA;
  12731. }
  12732. #u16169 .text {
  12733. position:absolute;
  12734. align-self:flex-start;
  12735. padding:2px 2px 2px 2px;
  12736. box-sizing:border-box;
  12737. width:100%;
  12738. }
  12739. #u16169_div.disabled {
  12740. border-width:0px;
  12741. position:absolute;
  12742. left:0px;
  12743. top:0px;
  12744. width:115px;
  12745. height:23px;
  12746. background:inherit;
  12747. background-color:rgba(240, 240, 240, 1);
  12748. border-radius:0px;
  12749. filter:drop-shadow(none);
  12750. transition:none;
  12751. font-size:14px;
  12752. color:#AAAAAA;
  12753. }
  12754. #u16169.disabled {
  12755. }
  12756. .u16169_input_option {
  12757. font-size:14px;
  12758. }
  12759. #u16170 {
  12760. border-width:0px;
  12761. position:absolute;
  12762. left:0px;
  12763. top:0px;
  12764. width:0px;
  12765. height:0px;
  12766. }
  12767. #u16171_div {
  12768. border-width:0px;
  12769. position:absolute;
  12770. left:0px;
  12771. top:0px;
  12772. width:120px;
  12773. height:30px;
  12774. background:inherit;
  12775. background-color:rgba(255, 255, 255, 1);
  12776. box-sizing:border-box;
  12777. border-width:1px;
  12778. border-style:solid;
  12779. border-color:rgba(215, 215, 215, 1);
  12780. border-radius:4px;
  12781. filter:drop-shadow(none);
  12782. transition:none;
  12783. font-size:14px;
  12784. }
  12785. #u16171 {
  12786. border-width:0px;
  12787. position:absolute;
  12788. left:1770px;
  12789. top:120px;
  12790. width:120px;
  12791. height:30px;
  12792. display:flex;
  12793. transition:none;
  12794. transform-origin:50% 50%;
  12795. font-size:14px;
  12796. }
  12797. #u16171 .text {
  12798. position:absolute;
  12799. align-self:center;
  12800. padding:2px 2px 2px 2px;
  12801. box-sizing:border-box;
  12802. width:100%;
  12803. }
  12804. #u16171_text {
  12805. border-width:0px;
  12806. word-wrap:break-word;
  12807. text-transform:none;
  12808. visibility:hidden;
  12809. }
  12810. #u16172_input {
  12811. position:absolute;
  12812. left:0px;
  12813. top:0px;
  12814. width:115px;
  12815. height:23px;
  12816. padding:2px 2px 2px 2px;
  12817. font-family:"ArialMT", "Arial", sans-serif;
  12818. font-weight:400;
  12819. font-style:normal;
  12820. font-size:14px;
  12821. letter-spacing:normal;
  12822. color:#AAAAAA;
  12823. vertical-align:none;
  12824. text-align:left;
  12825. text-transform:none;
  12826. background-color:transparent;
  12827. border-color:transparent;
  12828. }
  12829. #u16172_input.disabled {
  12830. position:absolute;
  12831. left:0px;
  12832. top:0px;
  12833. width:115px;
  12834. height:23px;
  12835. padding:2px 2px 2px 2px;
  12836. font-family:"ArialMT", "Arial", sans-serif;
  12837. font-weight:400;
  12838. font-style:normal;
  12839. font-size:14px;
  12840. letter-spacing:normal;
  12841. color:#AAAAAA;
  12842. vertical-align:none;
  12843. text-align:left;
  12844. text-transform:none;
  12845. background-color:transparent;
  12846. border-color:transparent;
  12847. }
  12848. #u16172_div {
  12849. border-width:0px;
  12850. position:absolute;
  12851. left:0px;
  12852. top:0px;
  12853. width:115px;
  12854. height:23px;
  12855. background:inherit;
  12856. background-color:rgba(255, 255, 255, 1);
  12857. border-radius:0px;
  12858. filter:drop-shadow(none);
  12859. transition:none;
  12860. font-size:14px;
  12861. color:#AAAAAA;
  12862. }
  12863. #u16172 {
  12864. border-width:0px;
  12865. position:absolute;
  12866. left:1773px;
  12867. top:122px;
  12868. width:115px;
  12869. height:23px;
  12870. display:flex;
  12871. transition:none;
  12872. transform-origin:50% 50%;
  12873. font-size:14px;
  12874. color:#AAAAAA;
  12875. }
  12876. #u16172 .text {
  12877. position:absolute;
  12878. align-self:flex-start;
  12879. padding:2px 2px 2px 2px;
  12880. box-sizing:border-box;
  12881. width:100%;
  12882. }
  12883. #u16172_div.disabled {
  12884. border-width:0px;
  12885. position:absolute;
  12886. left:0px;
  12887. top:0px;
  12888. width:115px;
  12889. height:23px;
  12890. background:inherit;
  12891. background-color:rgba(240, 240, 240, 1);
  12892. border-radius:0px;
  12893. filter:drop-shadow(none);
  12894. transition:none;
  12895. font-size:14px;
  12896. color:#AAAAAA;
  12897. }
  12898. #u16172.disabled {
  12899. }
  12900. .u16172_input_option {
  12901. font-size:14px;
  12902. }
  12903. #u16173 {
  12904. border-width:0px;
  12905. position:absolute;
  12906. left:0px;
  12907. top:0px;
  12908. width:0px;
  12909. height:0px;
  12910. }
  12911. #u16174_div {
  12912. border-width:0px;
  12913. position:absolute;
  12914. left:0px;
  12915. top:0px;
  12916. width:120px;
  12917. height:30px;
  12918. background:inherit;
  12919. background-color:rgba(255, 255, 255, 1);
  12920. box-sizing:border-box;
  12921. border-width:1px;
  12922. border-style:solid;
  12923. border-color:rgba(215, 215, 215, 1);
  12924. border-radius:4px;
  12925. filter:drop-shadow(none);
  12926. transition:none;
  12927. font-size:14px;
  12928. }
  12929. #u16174 {
  12930. border-width:0px;
  12931. position:absolute;
  12932. left:1640px;
  12933. top:120px;
  12934. width:120px;
  12935. height:30px;
  12936. display:flex;
  12937. transition:none;
  12938. transform-origin:50% 50%;
  12939. font-size:14px;
  12940. }
  12941. #u16174 .text {
  12942. position:absolute;
  12943. align-self:center;
  12944. padding:2px 2px 2px 2px;
  12945. box-sizing:border-box;
  12946. width:100%;
  12947. }
  12948. #u16174_text {
  12949. border-width:0px;
  12950. word-wrap:break-word;
  12951. text-transform:none;
  12952. visibility:hidden;
  12953. }
  12954. #u16175_input {
  12955. position:absolute;
  12956. left:0px;
  12957. top:0px;
  12958. width:115px;
  12959. height:23px;
  12960. padding:2px 2px 2px 2px;
  12961. font-family:"ArialMT", "Arial", sans-serif;
  12962. font-weight:400;
  12963. font-style:normal;
  12964. font-size:14px;
  12965. letter-spacing:normal;
  12966. color:#AAAAAA;
  12967. vertical-align:none;
  12968. text-align:left;
  12969. text-transform:none;
  12970. background-color:transparent;
  12971. border-color:transparent;
  12972. }
  12973. #u16175_input.disabled {
  12974. position:absolute;
  12975. left:0px;
  12976. top:0px;
  12977. width:115px;
  12978. height:23px;
  12979. padding:2px 2px 2px 2px;
  12980. font-family:"ArialMT", "Arial", sans-serif;
  12981. font-weight:400;
  12982. font-style:normal;
  12983. font-size:14px;
  12984. letter-spacing:normal;
  12985. color:#AAAAAA;
  12986. vertical-align:none;
  12987. text-align:left;
  12988. text-transform:none;
  12989. background-color:transparent;
  12990. border-color:transparent;
  12991. }
  12992. #u16175_div {
  12993. border-width:0px;
  12994. position:absolute;
  12995. left:0px;
  12996. top:0px;
  12997. width:115px;
  12998. height:23px;
  12999. background:inherit;
  13000. background-color:rgba(255, 255, 255, 1);
  13001. border-radius:0px;
  13002. filter:drop-shadow(none);
  13003. transition:none;
  13004. font-size:14px;
  13005. color:#AAAAAA;
  13006. }
  13007. #u16175 {
  13008. border-width:0px;
  13009. position:absolute;
  13010. left:1643px;
  13011. top:122px;
  13012. width:115px;
  13013. height:23px;
  13014. display:flex;
  13015. transition:none;
  13016. transform-origin:50% 50%;
  13017. font-size:14px;
  13018. color:#AAAAAA;
  13019. }
  13020. #u16175 .text {
  13021. position:absolute;
  13022. align-self:flex-start;
  13023. padding:2px 2px 2px 2px;
  13024. box-sizing:border-box;
  13025. width:100%;
  13026. }
  13027. #u16175_div.disabled {
  13028. border-width:0px;
  13029. position:absolute;
  13030. left:0px;
  13031. top:0px;
  13032. width:115px;
  13033. height:23px;
  13034. background:inherit;
  13035. background-color:rgba(240, 240, 240, 1);
  13036. border-radius:0px;
  13037. filter:drop-shadow(none);
  13038. transition:none;
  13039. font-size:14px;
  13040. color:#AAAAAA;
  13041. }
  13042. #u16175.disabled {
  13043. }
  13044. .u16175_input_option {
  13045. font-size:14px;
  13046. }
  13047. #u16176 {
  13048. border-width:0px;
  13049. position:absolute;
  13050. left:0px;
  13051. top:0px;
  13052. width:0px;
  13053. height:0px;
  13054. }
  13055. #u16177_div {
  13056. border-width:0px;
  13057. position:absolute;
  13058. left:0px;
  13059. top:0px;
  13060. width:120px;
  13061. height:30px;
  13062. background:inherit;
  13063. background-color:rgba(255, 255, 255, 1);
  13064. box-sizing:border-box;
  13065. border-width:1px;
  13066. border-style:solid;
  13067. border-color:rgba(201, 201, 201, 1);
  13068. border-radius:4px;
  13069. filter:drop-shadow(none);
  13070. transition:none;
  13071. font-family:"Microsoft YaHei", sans-serif;
  13072. font-weight:400;
  13073. font-style:normal;
  13074. font-size:14px;
  13075. color:#CCCCCC;
  13076. text-align:left;
  13077. }
  13078. #u16177 {
  13079. border-width:0px;
  13080. position:absolute;
  13081. left:2030px;
  13082. top:120px;
  13083. width:120px;
  13084. height:30px;
  13085. display:flex;
  13086. transition:none;
  13087. transform-origin:50% 50%;
  13088. font-family:"Microsoft YaHei", sans-serif;
  13089. font-weight:400;
  13090. font-style:normal;
  13091. font-size:14px;
  13092. color:#CCCCCC;
  13093. text-align:left;
  13094. }
  13095. #u16177 .text {
  13096. position:absolute;
  13097. align-self:center;
  13098. padding:2px 8px 2px 8px;
  13099. box-sizing:border-box;
  13100. width:100%;
  13101. }
  13102. #u16177_text {
  13103. border-width:0px;
  13104. word-wrap:break-word;
  13105. text-transform:none;
  13106. visibility:hidden;
  13107. }
  13108. #u16178_input {
  13109. position:absolute;
  13110. left:0px;
  13111. top:0px;
  13112. width:109px;
  13113. height:25px;
  13114. padding:2px 2px 2px 2px;
  13115. font-family:"Microsoft YaHei", sans-serif;
  13116. font-weight:400;
  13117. font-style:normal;
  13118. font-size:10px;
  13119. letter-spacing:normal;
  13120. color:#000000;
  13121. vertical-align:none;
  13122. text-align:left;
  13123. text-transform:none;
  13124. background-color:transparent;
  13125. border-color:transparent;
  13126. }
  13127. #u16178_input.hint {
  13128. position:absolute;
  13129. left:0px;
  13130. top:0px;
  13131. width:109px;
  13132. height:25px;
  13133. padding:2px 2px 2px 2px;
  13134. font-family:"Microsoft YaHei", sans-serif;
  13135. font-weight:400;
  13136. font-style:normal;
  13137. font-size:12px;
  13138. letter-spacing:normal;
  13139. color:#AAAAAA;
  13140. vertical-align:none;
  13141. text-align:left;
  13142. text-transform:none;
  13143. background-color:transparent;
  13144. border-color:transparent;
  13145. }
  13146. #u16178_input.disabled {
  13147. position:absolute;
  13148. left:0px;
  13149. top:0px;
  13150. width:109px;
  13151. height:25px;
  13152. padding:2px 2px 2px 2px;
  13153. font-family:"Microsoft YaHei", sans-serif;
  13154. font-weight:400;
  13155. font-style:normal;
  13156. font-size:10px;
  13157. letter-spacing:normal;
  13158. color:#000000;
  13159. vertical-align:none;
  13160. text-align:left;
  13161. text-transform:none;
  13162. background-color:transparent;
  13163. border-color:transparent;
  13164. }
  13165. #u16178_input.hint.disabled {
  13166. position:absolute;
  13167. left:0px;
  13168. top:0px;
  13169. width:109px;
  13170. height:25px;
  13171. padding:2px 2px 2px 2px;
  13172. font-family:"Microsoft YaHei", sans-serif;
  13173. font-weight:400;
  13174. font-style:normal;
  13175. font-size:12px;
  13176. letter-spacing:normal;
  13177. color:#AAAAAA;
  13178. vertical-align:none;
  13179. text-align:left;
  13180. text-transform:none;
  13181. background-color:transparent;
  13182. border-color:transparent;
  13183. }
  13184. #u16178_div {
  13185. border-width:0px;
  13186. position:absolute;
  13187. left:0px;
  13188. top:0px;
  13189. width:109px;
  13190. height:25px;
  13191. background:inherit;
  13192. background-color:rgba(255, 255, 255, 1);
  13193. border-radius:0px;
  13194. filter:drop-shadow(none);
  13195. transition:none;
  13196. font-family:"Microsoft YaHei", sans-serif;
  13197. font-weight:400;
  13198. font-style:normal;
  13199. font-size:10px;
  13200. }
  13201. #u16178 {
  13202. border-width:0px;
  13203. position:absolute;
  13204. left:2037px;
  13205. top:121px;
  13206. width:109px;
  13207. height:25px;
  13208. display:flex;
  13209. transition:none;
  13210. transform-origin:50% 50%;
  13211. font-family:"Microsoft YaHei", sans-serif;
  13212. font-weight:400;
  13213. font-style:normal;
  13214. font-size:10px;
  13215. }
  13216. #u16178 .text {
  13217. position:absolute;
  13218. align-self:center;
  13219. padding:2px 2px 2px 2px;
  13220. box-sizing:border-box;
  13221. width:100%;
  13222. }
  13223. #u16178_div.hint {
  13224. border-width:0px;
  13225. position:absolute;
  13226. left:0px;
  13227. top:0px;
  13228. width:109px;
  13229. height:25px;
  13230. background:inherit;
  13231. background-color:rgba(255, 255, 255, 1);
  13232. border-radius:0px;
  13233. filter:drop-shadow(none);
  13234. transition:none;
  13235. font-family:"Microsoft YaHei", sans-serif;
  13236. font-weight:400;
  13237. font-style:normal;
  13238. font-size:10px;
  13239. }
  13240. #u16178.hint {
  13241. }
  13242. #u16178_div.disabled {
  13243. border-width:0px;
  13244. position:absolute;
  13245. left:0px;
  13246. top:0px;
  13247. width:109px;
  13248. height:25px;
  13249. background:inherit;
  13250. background-color:rgba(240, 240, 240, 1);
  13251. border-radius:0px;
  13252. filter:drop-shadow(none);
  13253. transition:none;
  13254. font-family:"Microsoft YaHei", sans-serif;
  13255. font-weight:400;
  13256. font-style:normal;
  13257. font-size:10px;
  13258. }
  13259. #u16178.disabled {
  13260. }
  13261. #u16178_div.hint.disabled {
  13262. border-width:0px;
  13263. position:absolute;
  13264. left:0px;
  13265. top:0px;
  13266. width:109px;
  13267. height:25px;
  13268. background:inherit;
  13269. background-color:rgba(240, 240, 240, 1);
  13270. border-radius:0px;
  13271. filter:drop-shadow(none);
  13272. transition:none;
  13273. font-family:"Microsoft YaHei", sans-serif;
  13274. font-weight:400;
  13275. font-style:normal;
  13276. font-size:10px;
  13277. }
  13278. #u16178.hint.disabled {
  13279. }
  13280. #u16179 {
  13281. border-width:0px;
  13282. position:absolute;
  13283. left:0px;
  13284. top:0px;
  13285. width:0px;
  13286. height:0px;
  13287. }
  13288. #u16180 {
  13289. border-width:0px;
  13290. position:absolute;
  13291. left:0px;
  13292. top:0px;
  13293. width:0px;
  13294. height:0px;
  13295. }
  13296. #u16181_div {
  13297. border-width:0px;
  13298. position:absolute;
  13299. left:0px;
  13300. top:0px;
  13301. width:380px;
  13302. height:160px;
  13303. background:inherit;
  13304. background-color:rgba(255, 255, 255, 1);
  13305. box-sizing:border-box;
  13306. border-width:1px;
  13307. border-style:solid;
  13308. border-color:rgba(242, 242, 242, 1);
  13309. border-radius:4px;
  13310. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  13311. transition:none;
  13312. font-family:"Microsoft YaHei", sans-serif;
  13313. font-weight:400;
  13314. font-style:normal;
  13315. }
  13316. #u16181 {
  13317. border-width:0px;
  13318. position:absolute;
  13319. left:1955px;
  13320. top:368px;
  13321. width:380px;
  13322. height:160px;
  13323. display:flex;
  13324. transition:none;
  13325. transform-origin:50% 50%;
  13326. font-family:"Microsoft YaHei", sans-serif;
  13327. font-weight:400;
  13328. font-style:normal;
  13329. }
  13330. #u16181 .text {
  13331. position:absolute;
  13332. align-self:center;
  13333. padding:2px 2px 2px 2px;
  13334. box-sizing:border-box;
  13335. width:100%;
  13336. }
  13337. #u16181_text {
  13338. border-width:0px;
  13339. word-wrap:break-word;
  13340. text-transform:none;
  13341. visibility:hidden;
  13342. }
  13343. #u16182_div {
  13344. border-width:0px;
  13345. position:absolute;
  13346. left:0px;
  13347. top:0px;
  13348. width:217px;
  13349. height:21px;
  13350. background:inherit;
  13351. background-color:rgba(255, 255, 255, 0);
  13352. border-radius:0px;
  13353. filter:drop-shadow(none);
  13354. transition:none;
  13355. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  13356. font-weight:650;
  13357. font-style:normal;
  13358. font-size:18px;
  13359. color:#000000;
  13360. line-height:22px;
  13361. }
  13362. #u16182 {
  13363. border-width:0px;
  13364. position:absolute;
  13365. left:2015px;
  13366. top:393px;
  13367. width:217px;
  13368. height:21px;
  13369. display:flex;
  13370. transition:none;
  13371. transform-origin:50% 50%;
  13372. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  13373. font-weight:650;
  13374. font-style:normal;
  13375. font-size:18px;
  13376. color:#000000;
  13377. line-height:22px;
  13378. }
  13379. #u16182 .text {
  13380. position:absolute;
  13381. align-self:flex-start;
  13382. padding:0px 0px 0px 0px;
  13383. box-sizing:border-box;
  13384. width:100%;
  13385. }
  13386. #u16182_text {
  13387. border-width:0px;
  13388. white-space:nowrap;
  13389. text-transform:none;
  13390. }
  13391. #u16183_div {
  13392. border-width:0px;
  13393. position:absolute;
  13394. left:0px;
  13395. top:0px;
  13396. width:61px;
  13397. height:32px;
  13398. background:inherit;
  13399. background-color:rgba(24, 144, 255, 1);
  13400. border-radius:4px;
  13401. filter:drop-shadow(none);
  13402. transition:none;
  13403. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  13404. font-weight:400;
  13405. font-style:normal;
  13406. font-size:14px;
  13407. color:#FFFFFF;
  13408. }
  13409. #u16183 {
  13410. border-width:0px;
  13411. position:absolute;
  13412. left:2254px;
  13413. top:480px;
  13414. width:61px;
  13415. height:32px;
  13416. display:flex;
  13417. transition:none;
  13418. transform-origin:50% 50%;
  13419. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  13420. font-weight:400;
  13421. font-style:normal;
  13422. font-size:14px;
  13423. color:#FFFFFF;
  13424. }
  13425. #u16183 .text {
  13426. position:absolute;
  13427. align-self:center;
  13428. padding:2px 16px 2px 16px;
  13429. box-sizing:border-box;
  13430. width:100%;
  13431. }
  13432. #u16183_text {
  13433. border-width:0px;
  13434. white-space:nowrap;
  13435. text-transform:none;
  13436. }
  13437. #u16184 {
  13438. border-width:0px;
  13439. position:absolute;
  13440. left:1984px;
  13441. top:397px;
  13442. width:20px;
  13443. height:20px;
  13444. display:flex;
  13445. transition:none;
  13446. }
  13447. #u16184 .text {
  13448. position:absolute;
  13449. align-self:center;
  13450. padding:2px 2px 2px 2px;
  13451. box-sizing:border-box;
  13452. width:100%;
  13453. }
  13454. #u16184_img {
  13455. border-width:0px;
  13456. position:absolute;
  13457. left:0px;
  13458. top:0px;
  13459. width:20px;
  13460. height:20px;
  13461. }
  13462. #u16184_text {
  13463. border-width:0px;
  13464. word-wrap:break-word;
  13465. text-transform:none;
  13466. visibility:hidden;
  13467. }
  13468. #u16185_div {
  13469. border-width:0px;
  13470. position:absolute;
  13471. left:0px;
  13472. top:0px;
  13473. width:300px;
  13474. height:44px;
  13475. background:inherit;
  13476. background-color:rgba(255, 255, 255, 0);
  13477. border-radius:0px;
  13478. filter:drop-shadow(none);
  13479. transition:none;
  13480. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  13481. font-weight:400;
  13482. font-style:normal;
  13483. font-size:14px;
  13484. color:#7F7F7F;
  13485. line-height:22px;
  13486. }
  13487. #u16185 {
  13488. border-width:0px;
  13489. position:absolute;
  13490. left:2015px;
  13491. top:427px;
  13492. width:300px;
  13493. height:44px;
  13494. display:flex;
  13495. transition:none;
  13496. transform-origin:50% 50%;
  13497. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  13498. font-weight:400;
  13499. font-style:normal;
  13500. font-size:14px;
  13501. color:#7F7F7F;
  13502. line-height:22px;
  13503. }
  13504. #u16185 .text {
  13505. position:absolute;
  13506. align-self:flex-start;
  13507. padding:0px 0px 0px 0px;
  13508. box-sizing:border-box;
  13509. width:100%;
  13510. }
  13511. #u16185_text {
  13512. border-width:0px;
  13513. word-wrap:break-word;
  13514. text-transform:none;
  13515. }
  13516. #u16186_div {
  13517. border-width:0px;
  13518. position:absolute;
  13519. left:0px;
  13520. top:0px;
  13521. width:66px;
  13522. height:32px;
  13523. background:inherit;
  13524. background-color:rgba(255, 255, 255, 1);
  13525. box-sizing:border-box;
  13526. border-width:1px;
  13527. border-style:solid;
  13528. border-color:rgba(217, 217, 217, 1);
  13529. border-radius:4px;
  13530. filter:drop-shadow(none);
  13531. transition:none;
  13532. font-family:"Microsoft YaHei", sans-serif;
  13533. font-weight:400;
  13534. font-style:normal;
  13535. font-size:14px;
  13536. color:rgba(0, 0, 0, 0.6470588235294118);
  13537. line-height:21px;
  13538. }
  13539. #u16186 {
  13540. border-width:0px;
  13541. position:absolute;
  13542. left:2171px;
  13543. top:480px;
  13544. width:66px;
  13545. height:32px;
  13546. display:flex;
  13547. transition:none;
  13548. transform-origin:50% 50%;
  13549. font-family:"Microsoft YaHei", sans-serif;
  13550. font-weight:400;
  13551. font-style:normal;
  13552. font-size:14px;
  13553. color:rgba(0, 0, 0, 0.6470588235294118);
  13554. line-height:21px;
  13555. }
  13556. #u16186 .text {
  13557. position:absolute;
  13558. align-self:center;
  13559. padding:2px 16px 2px 16px;
  13560. box-sizing:border-box;
  13561. width:100%;
  13562. }
  13563. #u16186_text {
  13564. border-width:0px;
  13565. white-space:nowrap;
  13566. text-transform:none;
  13567. }