styles.css 123 KB

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