styles.css 128 KB

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