styles.css 115 KB

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