styles.css 137 KB

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