styles.css 130 KB

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