styles.css 140 KB

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