styles.css 167 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u4054_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:129px;
  25. height:22px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. color:#FFFFFF;
  35. }
  36. #u4054 {
  37. border-width:0px;
  38. position:absolute;
  39. left:49px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u4054 .text {
  48. position:absolute;
  49. align-self:flex-start;
  50. padding:0px 0px 0px 0px;
  51. box-sizing:border-box;
  52. width:100%;
  53. }
  54. #u4054_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u4055_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:1600px;
  65. height:50px;
  66. background:inherit;
  67. background-color:rgba(30, 42, 68, 1);
  68. border:none;
  69. border-radius:0px;
  70. -moz-box-shadow:none;
  71. -webkit-box-shadow:none;
  72. box-shadow:none;
  73. color:#AFB3B6;
  74. }
  75. #u4055 {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u4055 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u4055_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u4056 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u4057_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u4057 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u4057 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u4057_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u4058_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:161px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:16px;
  153. color:#FFFFFF;
  154. }
  155. #u4058 {
  156. border-width:0px;
  157. position:absolute;
  158. left:62px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u4058 .text {
  170. position:absolute;
  171. align-self:flex-start;
  172. padding:0px 0px 0px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u4058_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u4059_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:120px;
  187. height:1200px;
  188. background:inherit;
  189. background-color:rgba(30, 42, 68, 1);
  190. border:none;
  191. border-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. color:#AFB3B6;
  196. }
  197. #u4059 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u4059 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u4059_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u4060_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:1480px;
  226. height:1200px;
  227. background:inherit;
  228. background-color:rgba(242, 242, 242, 1);
  229. border:none;
  230. border-radius:0px;
  231. -moz-box-shadow:none;
  232. -webkit-box-shadow:none;
  233. box-shadow:none;
  234. }
  235. #u4060 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u4060 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u4060_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u4061 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u4062_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u4062 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:67px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u4062 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u4062_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u4063_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u4063 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u4063 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u4063_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u4064 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u4065_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u4065 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:109px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u4065 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u4065_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u4066_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u4066 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u4066 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u4066_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u4067 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u4068_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:29px;
  439. height:20px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:25px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. color:#FFFFFF;
  451. }
  452. #u4068 {
  453. border-width:0px;
  454. position:absolute;
  455. left:59px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u4068 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u4068_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u4069_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u4069 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u4069 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u4069_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u4070 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u4071_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:29px;
  521. height:20px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-radius:25px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  530. font-weight:400;
  531. font-style:normal;
  532. color:#FFFFFF;
  533. }
  534. #u4071 {
  535. border-width:0px;
  536. position:absolute;
  537. left:59px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u4071 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u4071_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u4072_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u4072 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u4072 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u4072_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u4073 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u4074_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:33px;
  603. height:22px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. font-size:16px;
  615. color:#FFFFFF;
  616. }
  617. #u4074 {
  618. border-width:0px;
  619. position:absolute;
  620. left:39px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u4074 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 0px 0px 0px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u4074_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u4075_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u4075 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u4075 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u4075_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u4076 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u4077_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:33px;
  687. height:22px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FFFFFF;
  700. }
  701. #u4077 {
  702. border-width:0px;
  703. position:absolute;
  704. left:39px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u4077 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u4077_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u4078_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u4078 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u4078 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u4078_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u4079 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u4080_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:33px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u4080 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:403px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u4080 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u4080_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u4081_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u4081 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u4081 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u4081_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u4082 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u4083_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:33px;
  855. height:22px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 0);
  858. border:none;
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:16px;
  867. color:#FFFFFF;
  868. }
  869. #u4083 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:445px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u4083 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u4083_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u4084_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u4084 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u4084 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u4084_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u4085 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u4086_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:33px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u4086 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:529px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u4086 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u4086_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u4087_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u4087 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:533px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u4087 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u4087_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u4088_input {
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:214px;
  1014. height:27px;
  1015. padding:2px 2px 2px 2px;
  1016. font-family:'ArialMT', 'Arial', sans-serif;
  1017. font-weight:400;
  1018. font-style:normal;
  1019. font-size:14px;
  1020. letter-spacing:normal;
  1021. color:#FFFFFF;
  1022. vertical-align:none;
  1023. text-align:left;
  1024. text-transform:none;
  1025. background-color:transparent;
  1026. border-color:transparent;
  1027. }
  1028. #u4088_input.disabled {
  1029. position:absolute;
  1030. left:0px;
  1031. top:0px;
  1032. width:214px;
  1033. height:27px;
  1034. padding:2px 2px 2px 2px;
  1035. font-family:'ArialMT', 'Arial', sans-serif;
  1036. font-weight:400;
  1037. font-style:normal;
  1038. font-size:14px;
  1039. letter-spacing:normal;
  1040. color:#FFFFFF;
  1041. vertical-align:none;
  1042. text-align:left;
  1043. text-transform:none;
  1044. background-color:transparent;
  1045. border-color:transparent;
  1046. }
  1047. #u4088_div {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:214px;
  1053. height:27px;
  1054. background:inherit;
  1055. background-color:rgba(255, 255, 255, 0);
  1056. border:none;
  1057. border-radius:0px;
  1058. -moz-box-shadow:none;
  1059. -webkit-box-shadow:none;
  1060. box-shadow:none;
  1061. font-size:14px;
  1062. color:#FFFFFF;
  1063. }
  1064. #u4088 {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:1221px;
  1068. top:10px;
  1069. width:214px;
  1070. height:27px;
  1071. display:flex;
  1072. font-size:14px;
  1073. color:#FFFFFF;
  1074. }
  1075. #u4088 .text {
  1076. position:absolute;
  1077. align-self:flex-start;
  1078. padding:2px 2px 2px 2px;
  1079. box-sizing:border-box;
  1080. width:100%;
  1081. }
  1082. #u4088_div.disabled {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:0px;
  1086. top:0px;
  1087. width:214px;
  1088. height:27px;
  1089. background:inherit;
  1090. background-color:rgba(240, 240, 240, 1);
  1091. border:none;
  1092. border-radius:0px;
  1093. -moz-box-shadow:none;
  1094. -webkit-box-shadow:none;
  1095. box-shadow:none;
  1096. font-size:14px;
  1097. color:#FFFFFF;
  1098. }
  1099. #u4088.disabled {
  1100. }
  1101. .u4088_input_option {
  1102. font-size:14px;
  1103. }
  1104. #u4089_img {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:0px;
  1108. top:0px;
  1109. width:22px;
  1110. height:22px;
  1111. }
  1112. #u4089 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:1194px;
  1116. top:15px;
  1117. width:22px;
  1118. height:22px;
  1119. display:flex;
  1120. }
  1121. #u4089 .text {
  1122. position:absolute;
  1123. align-self:center;
  1124. padding:2px 2px 2px 2px;
  1125. box-sizing:border-box;
  1126. width:100%;
  1127. }
  1128. #u4089_text {
  1129. border-width:0px;
  1130. word-wrap:break-word;
  1131. text-transform:none;
  1132. visibility:hidden;
  1133. }
  1134. #u4090_div {
  1135. border-width:0px;
  1136. position:absolute;
  1137. left:0px;
  1138. top:0px;
  1139. width:100px;
  1140. height:24px;
  1141. background:inherit;
  1142. background-color:rgba(242, 242, 242, 0.2);
  1143. border:none;
  1144. border-radius:25px;
  1145. -moz-box-shadow:none;
  1146. -webkit-box-shadow:none;
  1147. box-shadow:none;
  1148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. color:#FFFFFF;
  1152. text-align:center;
  1153. }
  1154. #u4090 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:1480px;
  1158. top:12px;
  1159. width:100px;
  1160. height:24px;
  1161. display:flex;
  1162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1163. font-weight:400;
  1164. font-style:normal;
  1165. color:#FFFFFF;
  1166. text-align:center;
  1167. }
  1168. #u4090 .text {
  1169. position:absolute;
  1170. align-self:center;
  1171. padding:0px 0px 0px 0px;
  1172. box-sizing:border-box;
  1173. width:100%;
  1174. }
  1175. #u4090_text {
  1176. border-width:0px;
  1177. word-wrap:break-word;
  1178. text-transform:none;
  1179. }
  1180. #u4091_img {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:2px;
  1186. height:12px;
  1187. }
  1188. #u4091 {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:1452px;
  1192. top:19px;
  1193. width:1px;
  1194. height:11px;
  1195. display:flex;
  1196. }
  1197. #u4091 .text {
  1198. position:absolute;
  1199. align-self:center;
  1200. padding:2px 2px 2px 2px;
  1201. box-sizing:border-box;
  1202. width:100%;
  1203. }
  1204. #u4091_text {
  1205. border-width:0px;
  1206. word-wrap:break-word;
  1207. text-transform:none;
  1208. visibility:hidden;
  1209. }
  1210. #u4092 {
  1211. border-width:0px;
  1212. position:absolute;
  1213. left:0px;
  1214. top:0px;
  1215. width:0px;
  1216. height:0px;
  1217. }
  1218. #u4093_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:33px;
  1224. height:22px;
  1225. background:inherit;
  1226. background-color:rgba(255, 255, 255, 0);
  1227. border:none;
  1228. border-radius:0px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. font-size:16px;
  1236. color:#FFFFFF;
  1237. }
  1238. #u4093 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:39px;
  1242. top:319px;
  1243. width:33px;
  1244. height:22px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. font-size:16px;
  1250. color:#FFFFFF;
  1251. }
  1252. #u4093 .text {
  1253. position:absolute;
  1254. align-self:flex-start;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u4093_text {
  1260. border-width:0px;
  1261. white-space:nowrap;
  1262. text-transform:none;
  1263. }
  1264. #u4094_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:14px;
  1270. height:14px;
  1271. }
  1272. #u4094 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:20px;
  1276. top:323px;
  1277. width:14px;
  1278. height:14px;
  1279. display:flex;
  1280. }
  1281. #u4094 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u4094_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u4095 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u4096_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:33px;
  1308. height:22px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border:none;
  1312. border-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:16px;
  1320. color:#FFFFFF;
  1321. }
  1322. #u4096 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:361px;
  1327. width:33px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:16px;
  1334. color:#FFFFFF;
  1335. }
  1336. #u4096 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u4096_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u4097_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u4097 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:365px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u4097 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u4097_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u4098 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u4099_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:33px;
  1392. height:22px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:16px;
  1404. color:#FFFFFF;
  1405. }
  1406. #u4099 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:151px;
  1411. width:33px;
  1412. height:22px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:16px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u4099 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:0px 0px 0px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u4099_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u4100_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u4100 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:155px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u4100 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u4100_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u4101 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u4102_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:33px;
  1476. height:22px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:16px;
  1488. color:#FFFFFF;
  1489. }
  1490. #u4102 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:487px;
  1495. width:33px;
  1496. height:22px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:16px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u4102 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u4102_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u4103_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u4103 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:491px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u4103 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u4103_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u4104 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u4105_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:33px;
  1560. height:22px;
  1561. background:inherit;
  1562. background-color:rgba(255, 255, 255, 0);
  1563. border:none;
  1564. border-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:16px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u4105 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:193px;
  1579. width:33px;
  1580. height:22px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:16px;
  1586. color:#FFFFFF;
  1587. }
  1588. #u4105 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u4105_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u4106_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u4106 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:197px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u4106 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u4106_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u4107_div {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:1260px;
  1636. height:1192px;
  1637. background:inherit;
  1638. background-color:rgba(255, 255, 255, 1);
  1639. border:none;
  1640. border-radius:0px;
  1641. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1642. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1643. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1644. }
  1645. #u4107 {
  1646. border-width:0px;
  1647. position:absolute;
  1648. left:330px;
  1649. top:50px;
  1650. width:1260px;
  1651. height:1192px;
  1652. display:flex;
  1653. }
  1654. #u4107 .text {
  1655. position:absolute;
  1656. align-self:center;
  1657. padding:2px 2px 2px 2px;
  1658. box-sizing:border-box;
  1659. width:100%;
  1660. }
  1661. #u4107_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u4108 {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:350px;
  1671. top:231px;
  1672. width:1220px;
  1673. height:288px;
  1674. }
  1675. #u4109_img {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:39px;
  1681. height:38px;
  1682. }
  1683. #u4109 {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:39px;
  1689. height:38px;
  1690. display:flex;
  1691. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1692. font-weight:400;
  1693. font-style:normal;
  1694. font-size:12px;
  1695. color:#FFFFFF;
  1696. }
  1697. #u4109 .text {
  1698. position:absolute;
  1699. align-self:center;
  1700. padding:2px 2px 2px 0px;
  1701. box-sizing:border-box;
  1702. width:100%;
  1703. }
  1704. #u4109_text {
  1705. border-width:0px;
  1706. word-wrap:break-word;
  1707. text-transform:none;
  1708. }
  1709. #u4110_img {
  1710. border-width:0px;
  1711. position:absolute;
  1712. left:0px;
  1713. top:0px;
  1714. width:72px;
  1715. height:38px;
  1716. }
  1717. #u4110 {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:39px;
  1721. top:0px;
  1722. width:72px;
  1723. height:38px;
  1724. display:flex;
  1725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1726. font-weight:400;
  1727. font-style:normal;
  1728. font-size:12px;
  1729. color:#FFFFFF;
  1730. }
  1731. #u4110 .text {
  1732. position:absolute;
  1733. align-self:center;
  1734. padding:2px 2px 2px 0px;
  1735. box-sizing:border-box;
  1736. width:100%;
  1737. }
  1738. #u4110_text {
  1739. border-width:0px;
  1740. word-wrap:break-word;
  1741. text-transform:none;
  1742. }
  1743. #u4111_img {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:0px;
  1747. top:0px;
  1748. width:68px;
  1749. height:38px;
  1750. }
  1751. #u4111 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:111px;
  1755. top:0px;
  1756. width:68px;
  1757. height:38px;
  1758. display:flex;
  1759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1760. font-weight:400;
  1761. font-style:normal;
  1762. font-size:12px;
  1763. color:#FFFFFF;
  1764. }
  1765. #u4111 .text {
  1766. position:absolute;
  1767. align-self:center;
  1768. padding:2px 2px 2px 0px;
  1769. box-sizing:border-box;
  1770. width:100%;
  1771. }
  1772. #u4111_text {
  1773. border-width:0px;
  1774. word-wrap:break-word;
  1775. text-transform:none;
  1776. }
  1777. #u4112_img {
  1778. border-width:0px;
  1779. position:absolute;
  1780. left:0px;
  1781. top:0px;
  1782. width:68px;
  1783. height:38px;
  1784. }
  1785. #u4112 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:179px;
  1789. top:0px;
  1790. width:68px;
  1791. height:38px;
  1792. display:flex;
  1793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1794. font-weight:400;
  1795. font-style:normal;
  1796. font-size:12px;
  1797. color:#FFFFFF;
  1798. }
  1799. #u4112 .text {
  1800. position:absolute;
  1801. align-self:center;
  1802. padding:2px 2px 2px 0px;
  1803. box-sizing:border-box;
  1804. width:100%;
  1805. }
  1806. #u4112_text {
  1807. border-width:0px;
  1808. word-wrap:break-word;
  1809. text-transform:none;
  1810. }
  1811. #u4113_img {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:0px;
  1815. top:0px;
  1816. width:68px;
  1817. height:38px;
  1818. }
  1819. #u4113 {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:247px;
  1823. top:0px;
  1824. width:68px;
  1825. height:38px;
  1826. display:flex;
  1827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1828. font-weight:400;
  1829. font-style:normal;
  1830. font-size:12px;
  1831. color:#FFFFFF;
  1832. }
  1833. #u4113 .text {
  1834. position:absolute;
  1835. align-self:center;
  1836. padding:2px 2px 2px 0px;
  1837. box-sizing:border-box;
  1838. width:100%;
  1839. }
  1840. #u4113_text {
  1841. border-width:0px;
  1842. word-wrap:break-word;
  1843. text-transform:none;
  1844. }
  1845. #u4114_img {
  1846. border-width:0px;
  1847. position:absolute;
  1848. left:0px;
  1849. top:0px;
  1850. width:68px;
  1851. height:38px;
  1852. }
  1853. #u4114 {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:315px;
  1857. top:0px;
  1858. width:68px;
  1859. height:38px;
  1860. display:flex;
  1861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1862. font-weight:400;
  1863. font-style:normal;
  1864. font-size:12px;
  1865. color:#FFFFFF;
  1866. }
  1867. #u4114 .text {
  1868. position:absolute;
  1869. align-self:center;
  1870. padding:2px 2px 2px 0px;
  1871. box-sizing:border-box;
  1872. width:100%;
  1873. }
  1874. #u4114_text {
  1875. border-width:0px;
  1876. word-wrap:break-word;
  1877. text-transform:none;
  1878. }
  1879. #u4115_img {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:0px;
  1883. top:0px;
  1884. width:76px;
  1885. height:38px;
  1886. }
  1887. #u4115 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:383px;
  1891. top:0px;
  1892. width:76px;
  1893. height:38px;
  1894. display:flex;
  1895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1896. font-weight:400;
  1897. font-style:normal;
  1898. font-size:12px;
  1899. color:#FFFFFF;
  1900. }
  1901. #u4115 .text {
  1902. position:absolute;
  1903. align-self:center;
  1904. padding:2px 2px 2px 0px;
  1905. box-sizing:border-box;
  1906. width:100%;
  1907. }
  1908. #u4115_text {
  1909. border-width:0px;
  1910. word-wrap:break-word;
  1911. text-transform:none;
  1912. }
  1913. #u4116_img {
  1914. border-width:0px;
  1915. position:absolute;
  1916. left:0px;
  1917. top:0px;
  1918. width:85px;
  1919. height:38px;
  1920. }
  1921. #u4116 {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:459px;
  1925. top:0px;
  1926. width:85px;
  1927. height:38px;
  1928. display:flex;
  1929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1930. font-weight:400;
  1931. font-style:normal;
  1932. font-size:12px;
  1933. color:#FFFFFF;
  1934. }
  1935. #u4116 .text {
  1936. position:absolute;
  1937. align-self:center;
  1938. padding:2px 2px 2px 0px;
  1939. box-sizing:border-box;
  1940. width:100%;
  1941. }
  1942. #u4116_text {
  1943. border-width:0px;
  1944. word-wrap:break-word;
  1945. text-transform:none;
  1946. }
  1947. #u4117_img {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:85px;
  1953. height:38px;
  1954. }
  1955. #u4117 {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:544px;
  1959. top:0px;
  1960. width:85px;
  1961. height:38px;
  1962. display:flex;
  1963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1964. font-weight:400;
  1965. font-style:normal;
  1966. font-size:12px;
  1967. color:#FFFFFF;
  1968. }
  1969. #u4117 .text {
  1970. position:absolute;
  1971. align-self:center;
  1972. padding:2px 2px 2px 0px;
  1973. box-sizing:border-box;
  1974. width:100%;
  1975. }
  1976. #u4117_text {
  1977. border-width:0px;
  1978. word-wrap:break-word;
  1979. text-transform:none;
  1980. }
  1981. #u4118_img {
  1982. border-width:0px;
  1983. position:absolute;
  1984. left:0px;
  1985. top:0px;
  1986. width:85px;
  1987. height:38px;
  1988. }
  1989. #u4118 {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:629px;
  1993. top:0px;
  1994. width:85px;
  1995. height:38px;
  1996. display:flex;
  1997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1998. font-weight:400;
  1999. font-style:normal;
  2000. font-size:12px;
  2001. color:#FFFFFF;
  2002. }
  2003. #u4118 .text {
  2004. position:absolute;
  2005. align-self:center;
  2006. padding:2px 2px 2px 0px;
  2007. box-sizing:border-box;
  2008. width:100%;
  2009. }
  2010. #u4118_text {
  2011. border-width:0px;
  2012. word-wrap:break-word;
  2013. text-transform:none;
  2014. }
  2015. #u4119_img {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:0px;
  2019. top:0px;
  2020. width:85px;
  2021. height:38px;
  2022. }
  2023. #u4119 {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:714px;
  2027. top:0px;
  2028. width:85px;
  2029. height:38px;
  2030. display:flex;
  2031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2032. font-weight:400;
  2033. font-style:normal;
  2034. font-size:12px;
  2035. color:#FFFFFF;
  2036. }
  2037. #u4119 .text {
  2038. position:absolute;
  2039. align-self:center;
  2040. padding:2px 2px 2px 0px;
  2041. box-sizing:border-box;
  2042. width:100%;
  2043. }
  2044. #u4119_text {
  2045. border-width:0px;
  2046. word-wrap:break-word;
  2047. text-transform:none;
  2048. }
  2049. #u4120_img {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:68px;
  2055. height:38px;
  2056. }
  2057. #u4120 {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:799px;
  2061. top:0px;
  2062. width:68px;
  2063. height:38px;
  2064. display:flex;
  2065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2066. font-weight:400;
  2067. font-style:normal;
  2068. font-size:12px;
  2069. color:#FFFFFF;
  2070. }
  2071. #u4120 .text {
  2072. position:absolute;
  2073. align-self:center;
  2074. padding:2px 2px 2px 0px;
  2075. box-sizing:border-box;
  2076. width:100%;
  2077. }
  2078. #u4120_text {
  2079. border-width:0px;
  2080. word-wrap:break-word;
  2081. text-transform:none;
  2082. }
  2083. #u4121_img {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:0px;
  2087. top:0px;
  2088. width:68px;
  2089. height:38px;
  2090. }
  2091. #u4121 {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:867px;
  2095. top:0px;
  2096. width:68px;
  2097. height:38px;
  2098. display:flex;
  2099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2100. font-weight:400;
  2101. font-style:normal;
  2102. font-size:12px;
  2103. color:#FFFFFF;
  2104. }
  2105. #u4121 .text {
  2106. position:absolute;
  2107. align-self:center;
  2108. padding:2px 2px 2px 0px;
  2109. box-sizing:border-box;
  2110. width:100%;
  2111. }
  2112. #u4121_text {
  2113. border-width:0px;
  2114. word-wrap:break-word;
  2115. text-transform:none;
  2116. }
  2117. #u4122_img {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:0px;
  2121. top:0px;
  2122. width:68px;
  2123. height:38px;
  2124. }
  2125. #u4122 {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:935px;
  2129. top:0px;
  2130. width:68px;
  2131. height:38px;
  2132. display:flex;
  2133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2134. font-weight:400;
  2135. font-style:normal;
  2136. font-size:12px;
  2137. color:#FFFFFF;
  2138. }
  2139. #u4122 .text {
  2140. position:absolute;
  2141. align-self:center;
  2142. padding:2px 2px 2px 0px;
  2143. box-sizing:border-box;
  2144. width:100%;
  2145. }
  2146. #u4122_text {
  2147. border-width:0px;
  2148. word-wrap:break-word;
  2149. text-transform:none;
  2150. }
  2151. #u4123_img {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:0px;
  2155. top:0px;
  2156. width:76px;
  2157. height:38px;
  2158. }
  2159. #u4123 {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:1003px;
  2163. top:0px;
  2164. width:76px;
  2165. height:38px;
  2166. display:flex;
  2167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2168. font-weight:400;
  2169. font-style:normal;
  2170. font-size:12px;
  2171. color:#FFFFFF;
  2172. }
  2173. #u4123 .text {
  2174. position:absolute;
  2175. align-self:center;
  2176. padding:2px 2px 2px 0px;
  2177. box-sizing:border-box;
  2178. width:100%;
  2179. }
  2180. #u4123_text {
  2181. border-width:0px;
  2182. word-wrap:break-word;
  2183. text-transform:none;
  2184. }
  2185. #u4124_img {
  2186. border-width:0px;
  2187. position:absolute;
  2188. left:0px;
  2189. top:0px;
  2190. width:76px;
  2191. height:38px;
  2192. }
  2193. #u4124 {
  2194. border-width:0px;
  2195. position:absolute;
  2196. left:1079px;
  2197. top:0px;
  2198. width:76px;
  2199. height:38px;
  2200. display:flex;
  2201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2202. font-weight:400;
  2203. font-style:normal;
  2204. font-size:12px;
  2205. color:#FFFFFF;
  2206. }
  2207. #u4124 .text {
  2208. position:absolute;
  2209. align-self:center;
  2210. padding:2px 2px 2px 0px;
  2211. box-sizing:border-box;
  2212. width:100%;
  2213. }
  2214. #u4124_text {
  2215. border-width:0px;
  2216. word-wrap:break-word;
  2217. text-transform:none;
  2218. }
  2219. #u4125_img {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:0px;
  2223. top:0px;
  2224. width:65px;
  2225. height:38px;
  2226. }
  2227. #u4125 {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:1155px;
  2231. top:0px;
  2232. width:65px;
  2233. height:38px;
  2234. display:flex;
  2235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2236. font-weight:400;
  2237. font-style:normal;
  2238. font-size:12px;
  2239. color:#FFFFFF;
  2240. }
  2241. #u4125 .text {
  2242. position:absolute;
  2243. align-self:center;
  2244. padding:2px 2px 2px 0px;
  2245. box-sizing:border-box;
  2246. width:100%;
  2247. }
  2248. #u4125_text {
  2249. border-width:0px;
  2250. word-wrap:break-word;
  2251. text-transform:none;
  2252. }
  2253. #u4126_img {
  2254. border-width:0px;
  2255. position:absolute;
  2256. left:0px;
  2257. top:0px;
  2258. width:39px;
  2259. height:39px;
  2260. }
  2261. #u4126 {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:0px;
  2265. top:38px;
  2266. width:39px;
  2267. height:39px;
  2268. display:flex;
  2269. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2270. font-weight:400;
  2271. font-style:normal;
  2272. font-size:12px;
  2273. }
  2274. #u4126 .text {
  2275. position:absolute;
  2276. align-self:center;
  2277. padding:2px 2px 2px 0px;
  2278. box-sizing:border-box;
  2279. width:100%;
  2280. }
  2281. #u4126_text {
  2282. border-width:0px;
  2283. word-wrap:break-word;
  2284. text-transform:none;
  2285. }
  2286. #u4127_img {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:0px;
  2290. top:0px;
  2291. width:72px;
  2292. height:39px;
  2293. }
  2294. #u4127 {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:39px;
  2298. top:38px;
  2299. width:72px;
  2300. height:39px;
  2301. display:flex;
  2302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2303. font-weight:400;
  2304. font-style:normal;
  2305. font-size:12px;
  2306. color:#333333;
  2307. }
  2308. #u4127 .text {
  2309. position:absolute;
  2310. align-self:center;
  2311. padding:2px 2px 2px 0px;
  2312. box-sizing:border-box;
  2313. width:100%;
  2314. }
  2315. #u4127_text {
  2316. border-width:0px;
  2317. word-wrap:break-word;
  2318. text-transform:none;
  2319. visibility:hidden;
  2320. }
  2321. #u4128_img {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:0px;
  2325. top:0px;
  2326. width:68px;
  2327. height:39px;
  2328. }
  2329. #u4128 {
  2330. border-width:0px;
  2331. position:absolute;
  2332. left:111px;
  2333. top:38px;
  2334. width:68px;
  2335. height:39px;
  2336. display:flex;
  2337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2338. font-weight:400;
  2339. font-style:normal;
  2340. font-size:12px;
  2341. color:#333333;
  2342. }
  2343. #u4128 .text {
  2344. position:absolute;
  2345. align-self:center;
  2346. padding:2px 2px 2px 0px;
  2347. box-sizing:border-box;
  2348. width:100%;
  2349. }
  2350. #u4128_text {
  2351. border-width:0px;
  2352. word-wrap:break-word;
  2353. text-transform:none;
  2354. visibility:hidden;
  2355. }
  2356. #u4129_img {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:0px;
  2360. top:0px;
  2361. width:68px;
  2362. height:39px;
  2363. }
  2364. #u4129 {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:179px;
  2368. top:38px;
  2369. width:68px;
  2370. height:39px;
  2371. display:flex;
  2372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2373. font-weight:400;
  2374. font-style:normal;
  2375. font-size:12px;
  2376. color:#333333;
  2377. }
  2378. #u4129 .text {
  2379. position:absolute;
  2380. align-self:center;
  2381. padding:2px 2px 2px 0px;
  2382. box-sizing:border-box;
  2383. width:100%;
  2384. }
  2385. #u4129_text {
  2386. border-width:0px;
  2387. word-wrap:break-word;
  2388. text-transform:none;
  2389. visibility:hidden;
  2390. }
  2391. #u4130_img {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:0px;
  2395. top:0px;
  2396. width:68px;
  2397. height:39px;
  2398. }
  2399. #u4130 {
  2400. border-width:0px;
  2401. position:absolute;
  2402. left:247px;
  2403. top:38px;
  2404. width:68px;
  2405. height:39px;
  2406. display:flex;
  2407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2408. font-weight:400;
  2409. font-style:normal;
  2410. font-size:12px;
  2411. color:#333333;
  2412. }
  2413. #u4130 .text {
  2414. position:absolute;
  2415. align-self:center;
  2416. padding:2px 2px 2px 0px;
  2417. box-sizing:border-box;
  2418. width:100%;
  2419. }
  2420. #u4130_text {
  2421. border-width:0px;
  2422. word-wrap:break-word;
  2423. text-transform:none;
  2424. visibility:hidden;
  2425. }
  2426. #u4131_img {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:0px;
  2430. top:0px;
  2431. width:68px;
  2432. height:39px;
  2433. }
  2434. #u4131 {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:315px;
  2438. top:38px;
  2439. width:68px;
  2440. height:39px;
  2441. display:flex;
  2442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2443. font-weight:400;
  2444. font-style:normal;
  2445. font-size:12px;
  2446. color:#333333;
  2447. }
  2448. #u4131 .text {
  2449. position:absolute;
  2450. align-self:center;
  2451. padding:2px 2px 2px 0px;
  2452. box-sizing:border-box;
  2453. width:100%;
  2454. }
  2455. #u4131_text {
  2456. border-width:0px;
  2457. word-wrap:break-word;
  2458. text-transform:none;
  2459. visibility:hidden;
  2460. }
  2461. #u4132_img {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:0px;
  2465. top:0px;
  2466. width:76px;
  2467. height:39px;
  2468. }
  2469. #u4132 {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:383px;
  2473. top:38px;
  2474. width:76px;
  2475. height:39px;
  2476. display:flex;
  2477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2478. font-weight:400;
  2479. font-style:normal;
  2480. font-size:12px;
  2481. color:#333333;
  2482. }
  2483. #u4132 .text {
  2484. position:absolute;
  2485. align-self:center;
  2486. padding:2px 2px 2px 0px;
  2487. box-sizing:border-box;
  2488. width:100%;
  2489. }
  2490. #u4132_text {
  2491. border-width:0px;
  2492. word-wrap:break-word;
  2493. text-transform:none;
  2494. }
  2495. #u4133_img {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:0px;
  2499. top:0px;
  2500. width:85px;
  2501. height:39px;
  2502. }
  2503. #u4133 {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:459px;
  2507. top:38px;
  2508. width:85px;
  2509. height:39px;
  2510. display:flex;
  2511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2512. font-weight:400;
  2513. font-style:normal;
  2514. font-size:12px;
  2515. color:#333333;
  2516. }
  2517. #u4133 .text {
  2518. position:absolute;
  2519. align-self:center;
  2520. padding:2px 2px 2px 0px;
  2521. box-sizing:border-box;
  2522. width:100%;
  2523. }
  2524. #u4133_text {
  2525. border-width:0px;
  2526. word-wrap:break-word;
  2527. text-transform:none;
  2528. visibility:hidden;
  2529. }
  2530. #u4134_img {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:0px;
  2534. top:0px;
  2535. width:85px;
  2536. height:39px;
  2537. }
  2538. #u4134 {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:544px;
  2542. top:38px;
  2543. width:85px;
  2544. height:39px;
  2545. display:flex;
  2546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2547. font-weight:400;
  2548. font-style:normal;
  2549. font-size:12px;
  2550. color:#333333;
  2551. }
  2552. #u4134 .text {
  2553. position:absolute;
  2554. align-self:center;
  2555. padding:2px 2px 2px 0px;
  2556. box-sizing:border-box;
  2557. width:100%;
  2558. }
  2559. #u4134_text {
  2560. border-width:0px;
  2561. word-wrap:break-word;
  2562. text-transform:none;
  2563. visibility:hidden;
  2564. }
  2565. #u4135_img {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:0px;
  2569. top:0px;
  2570. width:85px;
  2571. height:39px;
  2572. }
  2573. #u4135 {
  2574. border-width:0px;
  2575. position:absolute;
  2576. left:629px;
  2577. top:38px;
  2578. width:85px;
  2579. height:39px;
  2580. display:flex;
  2581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2582. font-weight:400;
  2583. font-style:normal;
  2584. font-size:12px;
  2585. color:#333333;
  2586. }
  2587. #u4135 .text {
  2588. position:absolute;
  2589. align-self:center;
  2590. padding:2px 2px 2px 0px;
  2591. box-sizing:border-box;
  2592. width:100%;
  2593. }
  2594. #u4135_text {
  2595. border-width:0px;
  2596. word-wrap:break-word;
  2597. text-transform:none;
  2598. visibility:hidden;
  2599. }
  2600. #u4136_img {
  2601. border-width:0px;
  2602. position:absolute;
  2603. left:0px;
  2604. top:0px;
  2605. width:85px;
  2606. height:39px;
  2607. }
  2608. #u4136 {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:714px;
  2612. top:38px;
  2613. width:85px;
  2614. height:39px;
  2615. display:flex;
  2616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2617. font-weight:400;
  2618. font-style:normal;
  2619. font-size:12px;
  2620. color:#333333;
  2621. }
  2622. #u4136 .text {
  2623. position:absolute;
  2624. align-self:center;
  2625. padding:2px 2px 2px 0px;
  2626. box-sizing:border-box;
  2627. width:100%;
  2628. }
  2629. #u4136_text {
  2630. border-width:0px;
  2631. word-wrap:break-word;
  2632. text-transform:none;
  2633. }
  2634. #u4137_img {
  2635. border-width:0px;
  2636. position:absolute;
  2637. left:0px;
  2638. top:0px;
  2639. width:68px;
  2640. height:39px;
  2641. }
  2642. #u4137 {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:799px;
  2646. top:38px;
  2647. width:68px;
  2648. height:39px;
  2649. display:flex;
  2650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2651. font-weight:400;
  2652. font-style:normal;
  2653. font-size:12px;
  2654. color:#333333;
  2655. }
  2656. #u4137 .text {
  2657. position:absolute;
  2658. align-self:center;
  2659. padding:2px 2px 2px 0px;
  2660. box-sizing:border-box;
  2661. width:100%;
  2662. }
  2663. #u4137_text {
  2664. border-width:0px;
  2665. word-wrap:break-word;
  2666. text-transform:none;
  2667. }
  2668. #u4138_img {
  2669. border-width:0px;
  2670. position:absolute;
  2671. left:0px;
  2672. top:0px;
  2673. width:68px;
  2674. height:39px;
  2675. }
  2676. #u4138 {
  2677. border-width:0px;
  2678. position:absolute;
  2679. left:867px;
  2680. top:38px;
  2681. width:68px;
  2682. height:39px;
  2683. display:flex;
  2684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2685. font-weight:400;
  2686. font-style:normal;
  2687. font-size:12px;
  2688. color:#333333;
  2689. }
  2690. #u4138 .text {
  2691. position:absolute;
  2692. align-self:center;
  2693. padding:2px 2px 2px 0px;
  2694. box-sizing:border-box;
  2695. width:100%;
  2696. }
  2697. #u4138_text {
  2698. border-width:0px;
  2699. word-wrap:break-word;
  2700. text-transform:none;
  2701. visibility:hidden;
  2702. }
  2703. #u4139_img {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:0px;
  2707. top:0px;
  2708. width:68px;
  2709. height:39px;
  2710. }
  2711. #u4139 {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:935px;
  2715. top:38px;
  2716. width:68px;
  2717. height:39px;
  2718. display:flex;
  2719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2720. font-weight:400;
  2721. font-style:normal;
  2722. font-size:12px;
  2723. color:#333333;
  2724. }
  2725. #u4139 .text {
  2726. position:absolute;
  2727. align-self:center;
  2728. padding:2px 2px 2px 0px;
  2729. box-sizing:border-box;
  2730. width:100%;
  2731. }
  2732. #u4139_text {
  2733. border-width:0px;
  2734. word-wrap:break-word;
  2735. text-transform:none;
  2736. visibility:hidden;
  2737. }
  2738. #u4140_img {
  2739. border-width:0px;
  2740. position:absolute;
  2741. left:0px;
  2742. top:0px;
  2743. width:76px;
  2744. height:39px;
  2745. }
  2746. #u4140 {
  2747. border-width:0px;
  2748. position:absolute;
  2749. left:1003px;
  2750. top:38px;
  2751. width:76px;
  2752. height:39px;
  2753. display:flex;
  2754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2755. font-weight:400;
  2756. font-style:normal;
  2757. font-size:12px;
  2758. color:#333333;
  2759. }
  2760. #u4140 .text {
  2761. position:absolute;
  2762. align-self:center;
  2763. padding:2px 2px 2px 0px;
  2764. box-sizing:border-box;
  2765. width:100%;
  2766. }
  2767. #u4140_text {
  2768. border-width:0px;
  2769. word-wrap:break-word;
  2770. text-transform:none;
  2771. visibility:hidden;
  2772. }
  2773. #u4141_img {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:0px;
  2777. top:0px;
  2778. width:76px;
  2779. height:39px;
  2780. }
  2781. #u4141 {
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:1079px;
  2785. top:38px;
  2786. width:76px;
  2787. height:39px;
  2788. display:flex;
  2789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2790. font-weight:400;
  2791. font-style:normal;
  2792. font-size:12px;
  2793. color:#333333;
  2794. }
  2795. #u4141 .text {
  2796. position:absolute;
  2797. align-self:center;
  2798. padding:2px 2px 2px 0px;
  2799. box-sizing:border-box;
  2800. width:100%;
  2801. }
  2802. #u4141_text {
  2803. border-width:0px;
  2804. word-wrap:break-word;
  2805. text-transform:none;
  2806. visibility:hidden;
  2807. }
  2808. #u4142_img {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:0px;
  2812. top:0px;
  2813. width:65px;
  2814. height:39px;
  2815. }
  2816. #u4142 {
  2817. border-width:0px;
  2818. position:absolute;
  2819. left:1155px;
  2820. top:38px;
  2821. width:65px;
  2822. height:39px;
  2823. display:flex;
  2824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2825. font-weight:400;
  2826. font-style:normal;
  2827. font-size:12px;
  2828. color:#1890FF;
  2829. }
  2830. #u4142 .text {
  2831. position:absolute;
  2832. align-self:center;
  2833. padding:2px 2px 2px 0px;
  2834. box-sizing:border-box;
  2835. width:100%;
  2836. }
  2837. #u4142_text {
  2838. border-width:0px;
  2839. word-wrap:break-word;
  2840. text-transform:none;
  2841. }
  2842. #u4143_img {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:0px;
  2846. top:0px;
  2847. width:39px;
  2848. height:35px;
  2849. }
  2850. #u4143 {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:0px;
  2854. top:77px;
  2855. width:39px;
  2856. height:35px;
  2857. display:flex;
  2858. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2859. font-weight:400;
  2860. font-style:normal;
  2861. font-size:12px;
  2862. color:#606266;
  2863. }
  2864. #u4143 .text {
  2865. position:absolute;
  2866. align-self:center;
  2867. padding:2px 2px 2px 0px;
  2868. box-sizing:border-box;
  2869. width:100%;
  2870. }
  2871. #u4143_text {
  2872. border-width:0px;
  2873. word-wrap:break-word;
  2874. text-transform:none;
  2875. }
  2876. #u4144_img {
  2877. border-width:0px;
  2878. position:absolute;
  2879. left:0px;
  2880. top:0px;
  2881. width:72px;
  2882. height:35px;
  2883. }
  2884. #u4144 {
  2885. border-width:0px;
  2886. position:absolute;
  2887. left:39px;
  2888. top:77px;
  2889. width:72px;
  2890. height:35px;
  2891. display:flex;
  2892. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2893. font-weight:400;
  2894. font-style:normal;
  2895. font-size:12px;
  2896. color:#606266;
  2897. }
  2898. #u4144 .text {
  2899. position:absolute;
  2900. align-self:center;
  2901. padding:2px 2px 2px 0px;
  2902. box-sizing:border-box;
  2903. width:100%;
  2904. }
  2905. #u4144_text {
  2906. border-width:0px;
  2907. word-wrap:break-word;
  2908. text-transform:none;
  2909. visibility:hidden;
  2910. }
  2911. #u4145_img {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:0px;
  2915. top:0px;
  2916. width:68px;
  2917. height:35px;
  2918. }
  2919. #u4145 {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:111px;
  2923. top:77px;
  2924. width:68px;
  2925. height:35px;
  2926. display:flex;
  2927. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2928. font-weight:400;
  2929. font-style:normal;
  2930. font-size:12px;
  2931. color:#606266;
  2932. }
  2933. #u4145 .text {
  2934. position:absolute;
  2935. align-self:center;
  2936. padding:2px 2px 2px 0px;
  2937. box-sizing:border-box;
  2938. width:100%;
  2939. }
  2940. #u4145_text {
  2941. border-width:0px;
  2942. word-wrap:break-word;
  2943. text-transform:none;
  2944. visibility:hidden;
  2945. }
  2946. #u4146_img {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:0px;
  2950. top:0px;
  2951. width:68px;
  2952. height:35px;
  2953. }
  2954. #u4146 {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:179px;
  2958. top:77px;
  2959. width:68px;
  2960. height:35px;
  2961. display:flex;
  2962. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2963. font-weight:400;
  2964. font-style:normal;
  2965. font-size:12px;
  2966. color:#606266;
  2967. }
  2968. #u4146 .text {
  2969. position:absolute;
  2970. align-self:center;
  2971. padding:2px 2px 2px 0px;
  2972. box-sizing:border-box;
  2973. width:100%;
  2974. }
  2975. #u4146_text {
  2976. border-width:0px;
  2977. word-wrap:break-word;
  2978. text-transform:none;
  2979. visibility:hidden;
  2980. }
  2981. #u4147_img {
  2982. border-width:0px;
  2983. position:absolute;
  2984. left:0px;
  2985. top:0px;
  2986. width:68px;
  2987. height:35px;
  2988. }
  2989. #u4147 {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:247px;
  2993. top:77px;
  2994. width:68px;
  2995. height:35px;
  2996. display:flex;
  2997. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2998. font-weight:400;
  2999. font-style:normal;
  3000. font-size:12px;
  3001. color:#606266;
  3002. }
  3003. #u4147 .text {
  3004. position:absolute;
  3005. align-self:center;
  3006. padding:2px 2px 2px 0px;
  3007. box-sizing:border-box;
  3008. width:100%;
  3009. }
  3010. #u4147_text {
  3011. border-width:0px;
  3012. word-wrap:break-word;
  3013. text-transform:none;
  3014. visibility:hidden;
  3015. }
  3016. #u4148_img {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:0px;
  3020. top:0px;
  3021. width:68px;
  3022. height:35px;
  3023. }
  3024. #u4148 {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:315px;
  3028. top:77px;
  3029. width:68px;
  3030. height:35px;
  3031. display:flex;
  3032. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3033. font-weight:400;
  3034. font-style:normal;
  3035. font-size:12px;
  3036. color:#606266;
  3037. }
  3038. #u4148 .text {
  3039. position:absolute;
  3040. align-self:center;
  3041. padding:2px 2px 2px 0px;
  3042. box-sizing:border-box;
  3043. width:100%;
  3044. }
  3045. #u4148_text {
  3046. border-width:0px;
  3047. word-wrap:break-word;
  3048. text-transform:none;
  3049. visibility:hidden;
  3050. }
  3051. #u4149_img {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:0px;
  3055. top:0px;
  3056. width:76px;
  3057. height:35px;
  3058. }
  3059. #u4149 {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:383px;
  3063. top:77px;
  3064. width:76px;
  3065. height:35px;
  3066. display:flex;
  3067. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3068. font-weight:400;
  3069. font-style:normal;
  3070. font-size:12px;
  3071. color:#606266;
  3072. }
  3073. #u4149 .text {
  3074. position:absolute;
  3075. align-self:center;
  3076. padding:2px 2px 2px 0px;
  3077. box-sizing:border-box;
  3078. width:100%;
  3079. }
  3080. #u4149_text {
  3081. border-width:0px;
  3082. word-wrap:break-word;
  3083. text-transform:none;
  3084. visibility:hidden;
  3085. }
  3086. #u4150_img {
  3087. border-width:0px;
  3088. position:absolute;
  3089. left:0px;
  3090. top:0px;
  3091. width:85px;
  3092. height:35px;
  3093. }
  3094. #u4150 {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:459px;
  3098. top:77px;
  3099. width:85px;
  3100. height:35px;
  3101. display:flex;
  3102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3103. font-weight:400;
  3104. font-style:normal;
  3105. font-size:12px;
  3106. color:#606266;
  3107. }
  3108. #u4150 .text {
  3109. position:absolute;
  3110. align-self:center;
  3111. padding:2px 2px 2px 0px;
  3112. box-sizing:border-box;
  3113. width:100%;
  3114. }
  3115. #u4150_text {
  3116. border-width:0px;
  3117. word-wrap:break-word;
  3118. text-transform:none;
  3119. visibility:hidden;
  3120. }
  3121. #u4151_img {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:0px;
  3125. top:0px;
  3126. width:85px;
  3127. height:35px;
  3128. }
  3129. #u4151 {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:544px;
  3133. top:77px;
  3134. width:85px;
  3135. height:35px;
  3136. display:flex;
  3137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3138. font-weight:400;
  3139. font-style:normal;
  3140. font-size:12px;
  3141. color:#606266;
  3142. }
  3143. #u4151 .text {
  3144. position:absolute;
  3145. align-self:center;
  3146. padding:2px 2px 2px 0px;
  3147. box-sizing:border-box;
  3148. width:100%;
  3149. }
  3150. #u4151_text {
  3151. border-width:0px;
  3152. word-wrap:break-word;
  3153. text-transform:none;
  3154. visibility:hidden;
  3155. }
  3156. #u4152_img {
  3157. border-width:0px;
  3158. position:absolute;
  3159. left:0px;
  3160. top:0px;
  3161. width:85px;
  3162. height:35px;
  3163. }
  3164. #u4152 {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:629px;
  3168. top:77px;
  3169. width:85px;
  3170. height:35px;
  3171. display:flex;
  3172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3173. font-weight:400;
  3174. font-style:normal;
  3175. font-size:12px;
  3176. color:#606266;
  3177. }
  3178. #u4152 .text {
  3179. position:absolute;
  3180. align-self:center;
  3181. padding:2px 2px 2px 0px;
  3182. box-sizing:border-box;
  3183. width:100%;
  3184. }
  3185. #u4152_text {
  3186. border-width:0px;
  3187. word-wrap:break-word;
  3188. text-transform:none;
  3189. visibility:hidden;
  3190. }
  3191. #u4153_img {
  3192. border-width:0px;
  3193. position:absolute;
  3194. left:0px;
  3195. top:0px;
  3196. width:85px;
  3197. height:35px;
  3198. }
  3199. #u4153 {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:714px;
  3203. top:77px;
  3204. width:85px;
  3205. height:35px;
  3206. display:flex;
  3207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3208. font-weight:400;
  3209. font-style:normal;
  3210. font-size:12px;
  3211. color:#606266;
  3212. }
  3213. #u4153 .text {
  3214. position:absolute;
  3215. align-self:center;
  3216. padding:2px 2px 2px 0px;
  3217. box-sizing:border-box;
  3218. width:100%;
  3219. }
  3220. #u4153_text {
  3221. border-width:0px;
  3222. word-wrap:break-word;
  3223. text-transform:none;
  3224. }
  3225. #u4154_img {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:0px;
  3229. top:0px;
  3230. width:68px;
  3231. height:35px;
  3232. }
  3233. #u4154 {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:799px;
  3237. top:77px;
  3238. width:68px;
  3239. height:35px;
  3240. display:flex;
  3241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3242. font-weight:400;
  3243. font-style:normal;
  3244. font-size:12px;
  3245. color:#606266;
  3246. }
  3247. #u4154 .text {
  3248. position:absolute;
  3249. align-self:center;
  3250. padding:2px 2px 2px 0px;
  3251. box-sizing:border-box;
  3252. width:100%;
  3253. }
  3254. #u4154_text {
  3255. border-width:0px;
  3256. word-wrap:break-word;
  3257. text-transform:none;
  3258. }
  3259. #u4155_img {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:0px;
  3263. top:0px;
  3264. width:68px;
  3265. height:35px;
  3266. }
  3267. #u4155 {
  3268. border-width:0px;
  3269. position:absolute;
  3270. left:867px;
  3271. top:77px;
  3272. width:68px;
  3273. height:35px;
  3274. display:flex;
  3275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3276. font-weight:400;
  3277. font-style:normal;
  3278. font-size:12px;
  3279. color:#606266;
  3280. }
  3281. #u4155 .text {
  3282. position:absolute;
  3283. align-self:center;
  3284. padding:2px 2px 2px 0px;
  3285. box-sizing:border-box;
  3286. width:100%;
  3287. }
  3288. #u4155_text {
  3289. border-width:0px;
  3290. word-wrap:break-word;
  3291. text-transform:none;
  3292. visibility:hidden;
  3293. }
  3294. #u4156_img {
  3295. border-width:0px;
  3296. position:absolute;
  3297. left:0px;
  3298. top:0px;
  3299. width:68px;
  3300. height:35px;
  3301. }
  3302. #u4156 {
  3303. border-width:0px;
  3304. position:absolute;
  3305. left:935px;
  3306. top:77px;
  3307. width:68px;
  3308. height:35px;
  3309. display:flex;
  3310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3311. font-weight:400;
  3312. font-style:normal;
  3313. font-size:12px;
  3314. color:#606266;
  3315. }
  3316. #u4156 .text {
  3317. position:absolute;
  3318. align-self:center;
  3319. padding:2px 2px 2px 0px;
  3320. box-sizing:border-box;
  3321. width:100%;
  3322. }
  3323. #u4156_text {
  3324. border-width:0px;
  3325. word-wrap:break-word;
  3326. text-transform:none;
  3327. visibility:hidden;
  3328. }
  3329. #u4157_img {
  3330. border-width:0px;
  3331. position:absolute;
  3332. left:0px;
  3333. top:0px;
  3334. width:76px;
  3335. height:35px;
  3336. }
  3337. #u4157 {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:1003px;
  3341. top:77px;
  3342. width:76px;
  3343. height:35px;
  3344. display:flex;
  3345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3346. font-weight:400;
  3347. font-style:normal;
  3348. font-size:12px;
  3349. color:#606266;
  3350. }
  3351. #u4157 .text {
  3352. position:absolute;
  3353. align-self:center;
  3354. padding:2px 2px 2px 0px;
  3355. box-sizing:border-box;
  3356. width:100%;
  3357. }
  3358. #u4157_text {
  3359. border-width:0px;
  3360. word-wrap:break-word;
  3361. text-transform:none;
  3362. visibility:hidden;
  3363. }
  3364. #u4158_img {
  3365. border-width:0px;
  3366. position:absolute;
  3367. left:0px;
  3368. top:0px;
  3369. width:76px;
  3370. height:35px;
  3371. }
  3372. #u4158 {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:1079px;
  3376. top:77px;
  3377. width:76px;
  3378. height:35px;
  3379. display:flex;
  3380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3381. font-weight:400;
  3382. font-style:normal;
  3383. font-size:12px;
  3384. color:#606266;
  3385. }
  3386. #u4158 .text {
  3387. position:absolute;
  3388. align-self:center;
  3389. padding:2px 2px 2px 0px;
  3390. box-sizing:border-box;
  3391. width:100%;
  3392. }
  3393. #u4158_text {
  3394. border-width:0px;
  3395. word-wrap:break-word;
  3396. text-transform:none;
  3397. visibility:hidden;
  3398. }
  3399. #u4159_img {
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:0px;
  3403. top:0px;
  3404. width:65px;
  3405. height:35px;
  3406. }
  3407. #u4159 {
  3408. border-width:0px;
  3409. position:absolute;
  3410. left:1155px;
  3411. top:77px;
  3412. width:65px;
  3413. height:35px;
  3414. display:flex;
  3415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3416. font-weight:400;
  3417. font-style:normal;
  3418. font-size:12px;
  3419. color:#1890FF;
  3420. }
  3421. #u4159 .text {
  3422. position:absolute;
  3423. align-self:center;
  3424. padding:2px 2px 2px 0px;
  3425. box-sizing:border-box;
  3426. width:100%;
  3427. }
  3428. #u4159_text {
  3429. border-width:0px;
  3430. word-wrap:break-word;
  3431. text-transform:none;
  3432. }
  3433. #u4160_img {
  3434. border-width:0px;
  3435. position:absolute;
  3436. left:0px;
  3437. top:0px;
  3438. width:39px;
  3439. height:35px;
  3440. }
  3441. #u4160 {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:0px;
  3445. top:112px;
  3446. width:39px;
  3447. height:35px;
  3448. display:flex;
  3449. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3450. font-weight:400;
  3451. font-style:normal;
  3452. font-size:12px;
  3453. color:#606266;
  3454. }
  3455. #u4160 .text {
  3456. position:absolute;
  3457. align-self:center;
  3458. padding:2px 2px 2px 0px;
  3459. box-sizing:border-box;
  3460. width:100%;
  3461. }
  3462. #u4160_text {
  3463. border-width:0px;
  3464. word-wrap:break-word;
  3465. text-transform:none;
  3466. }
  3467. #u4161_img {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:0px;
  3471. top:0px;
  3472. width:72px;
  3473. height:35px;
  3474. }
  3475. #u4161 {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:39px;
  3479. top:112px;
  3480. width:72px;
  3481. height:35px;
  3482. display:flex;
  3483. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3484. font-weight:400;
  3485. font-style:normal;
  3486. font-size:12px;
  3487. color:#606266;
  3488. }
  3489. #u4161 .text {
  3490. position:absolute;
  3491. align-self:center;
  3492. padding:2px 2px 2px 0px;
  3493. box-sizing:border-box;
  3494. width:100%;
  3495. }
  3496. #u4161_text {
  3497. border-width:0px;
  3498. word-wrap:break-word;
  3499. text-transform:none;
  3500. visibility:hidden;
  3501. }
  3502. #u4162_img {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:0px;
  3506. top:0px;
  3507. width:68px;
  3508. height:35px;
  3509. }
  3510. #u4162 {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:111px;
  3514. top:112px;
  3515. width:68px;
  3516. height:35px;
  3517. display:flex;
  3518. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3519. font-weight:400;
  3520. font-style:normal;
  3521. font-size:12px;
  3522. color:#606266;
  3523. }
  3524. #u4162 .text {
  3525. position:absolute;
  3526. align-self:center;
  3527. padding:2px 2px 2px 0px;
  3528. box-sizing:border-box;
  3529. width:100%;
  3530. }
  3531. #u4162_text {
  3532. border-width:0px;
  3533. word-wrap:break-word;
  3534. text-transform:none;
  3535. visibility:hidden;
  3536. }
  3537. #u4163_img {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:0px;
  3541. top:0px;
  3542. width:68px;
  3543. height:35px;
  3544. }
  3545. #u4163 {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:179px;
  3549. top:112px;
  3550. width:68px;
  3551. height:35px;
  3552. display:flex;
  3553. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3554. font-weight:400;
  3555. font-style:normal;
  3556. font-size:12px;
  3557. color:#606266;
  3558. }
  3559. #u4163 .text {
  3560. position:absolute;
  3561. align-self:center;
  3562. padding:2px 2px 2px 0px;
  3563. box-sizing:border-box;
  3564. width:100%;
  3565. }
  3566. #u4163_text {
  3567. border-width:0px;
  3568. word-wrap:break-word;
  3569. text-transform:none;
  3570. visibility:hidden;
  3571. }
  3572. #u4164_img {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:0px;
  3576. top:0px;
  3577. width:68px;
  3578. height:35px;
  3579. }
  3580. #u4164 {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:247px;
  3584. top:112px;
  3585. width:68px;
  3586. height:35px;
  3587. display:flex;
  3588. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3589. font-weight:400;
  3590. font-style:normal;
  3591. font-size:12px;
  3592. color:#606266;
  3593. }
  3594. #u4164 .text {
  3595. position:absolute;
  3596. align-self:center;
  3597. padding:2px 2px 2px 0px;
  3598. box-sizing:border-box;
  3599. width:100%;
  3600. }
  3601. #u4164_text {
  3602. border-width:0px;
  3603. word-wrap:break-word;
  3604. text-transform:none;
  3605. visibility:hidden;
  3606. }
  3607. #u4165_img {
  3608. border-width:0px;
  3609. position:absolute;
  3610. left:0px;
  3611. top:0px;
  3612. width:68px;
  3613. height:35px;
  3614. }
  3615. #u4165 {
  3616. border-width:0px;
  3617. position:absolute;
  3618. left:315px;
  3619. top:112px;
  3620. width:68px;
  3621. height:35px;
  3622. display:flex;
  3623. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3624. font-weight:400;
  3625. font-style:normal;
  3626. font-size:12px;
  3627. color:#606266;
  3628. }
  3629. #u4165 .text {
  3630. position:absolute;
  3631. align-self:center;
  3632. padding:2px 2px 2px 0px;
  3633. box-sizing:border-box;
  3634. width:100%;
  3635. }
  3636. #u4165_text {
  3637. border-width:0px;
  3638. word-wrap:break-word;
  3639. text-transform:none;
  3640. visibility:hidden;
  3641. }
  3642. #u4166_img {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:0px;
  3646. top:0px;
  3647. width:76px;
  3648. height:35px;
  3649. }
  3650. #u4166 {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:383px;
  3654. top:112px;
  3655. width:76px;
  3656. height:35px;
  3657. display:flex;
  3658. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3659. font-weight:400;
  3660. font-style:normal;
  3661. font-size:12px;
  3662. color:#606266;
  3663. }
  3664. #u4166 .text {
  3665. position:absolute;
  3666. align-self:center;
  3667. padding:2px 2px 2px 0px;
  3668. box-sizing:border-box;
  3669. width:100%;
  3670. }
  3671. #u4166_text {
  3672. border-width:0px;
  3673. word-wrap:break-word;
  3674. text-transform:none;
  3675. visibility:hidden;
  3676. }
  3677. #u4167_img {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:0px;
  3681. top:0px;
  3682. width:85px;
  3683. height:35px;
  3684. }
  3685. #u4167 {
  3686. border-width:0px;
  3687. position:absolute;
  3688. left:459px;
  3689. top:112px;
  3690. width:85px;
  3691. height:35px;
  3692. display:flex;
  3693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3694. font-weight:400;
  3695. font-style:normal;
  3696. font-size:12px;
  3697. color:#606266;
  3698. }
  3699. #u4167 .text {
  3700. position:absolute;
  3701. align-self:center;
  3702. padding:2px 2px 2px 0px;
  3703. box-sizing:border-box;
  3704. width:100%;
  3705. }
  3706. #u4167_text {
  3707. border-width:0px;
  3708. word-wrap:break-word;
  3709. text-transform:none;
  3710. visibility:hidden;
  3711. }
  3712. #u4168_img {
  3713. border-width:0px;
  3714. position:absolute;
  3715. left:0px;
  3716. top:0px;
  3717. width:85px;
  3718. height:35px;
  3719. }
  3720. #u4168 {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:544px;
  3724. top:112px;
  3725. width:85px;
  3726. height:35px;
  3727. display:flex;
  3728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3729. font-weight:400;
  3730. font-style:normal;
  3731. font-size:12px;
  3732. color:#606266;
  3733. }
  3734. #u4168 .text {
  3735. position:absolute;
  3736. align-self:center;
  3737. padding:2px 2px 2px 0px;
  3738. box-sizing:border-box;
  3739. width:100%;
  3740. }
  3741. #u4168_text {
  3742. border-width:0px;
  3743. word-wrap:break-word;
  3744. text-transform:none;
  3745. visibility:hidden;
  3746. }
  3747. #u4169_img {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:0px;
  3751. top:0px;
  3752. width:85px;
  3753. height:35px;
  3754. }
  3755. #u4169 {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:629px;
  3759. top:112px;
  3760. width:85px;
  3761. height:35px;
  3762. display:flex;
  3763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3764. font-weight:400;
  3765. font-style:normal;
  3766. font-size:12px;
  3767. color:#606266;
  3768. }
  3769. #u4169 .text {
  3770. position:absolute;
  3771. align-self:center;
  3772. padding:2px 2px 2px 0px;
  3773. box-sizing:border-box;
  3774. width:100%;
  3775. }
  3776. #u4169_text {
  3777. border-width:0px;
  3778. word-wrap:break-word;
  3779. text-transform:none;
  3780. visibility:hidden;
  3781. }
  3782. #u4170_img {
  3783. border-width:0px;
  3784. position:absolute;
  3785. left:0px;
  3786. top:0px;
  3787. width:85px;
  3788. height:35px;
  3789. }
  3790. #u4170 {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:714px;
  3794. top:112px;
  3795. width:85px;
  3796. height:35px;
  3797. display:flex;
  3798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3799. font-weight:400;
  3800. font-style:normal;
  3801. font-size:12px;
  3802. color:#606266;
  3803. }
  3804. #u4170 .text {
  3805. position:absolute;
  3806. align-self:center;
  3807. padding:2px 2px 2px 0px;
  3808. box-sizing:border-box;
  3809. width:100%;
  3810. }
  3811. #u4170_text {
  3812. border-width:0px;
  3813. word-wrap:break-word;
  3814. text-transform:none;
  3815. }
  3816. #u4171_img {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:0px;
  3820. top:0px;
  3821. width:68px;
  3822. height:35px;
  3823. }
  3824. #u4171 {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:799px;
  3828. top:112px;
  3829. width:68px;
  3830. height:35px;
  3831. display:flex;
  3832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3833. font-weight:400;
  3834. font-style:normal;
  3835. font-size:12px;
  3836. color:#606266;
  3837. }
  3838. #u4171 .text {
  3839. position:absolute;
  3840. align-self:center;
  3841. padding:2px 2px 2px 0px;
  3842. box-sizing:border-box;
  3843. width:100%;
  3844. }
  3845. #u4171_text {
  3846. border-width:0px;
  3847. word-wrap:break-word;
  3848. text-transform:none;
  3849. }
  3850. #u4172_img {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:0px;
  3854. top:0px;
  3855. width:68px;
  3856. height:35px;
  3857. }
  3858. #u4172 {
  3859. border-width:0px;
  3860. position:absolute;
  3861. left:867px;
  3862. top:112px;
  3863. width:68px;
  3864. height:35px;
  3865. display:flex;
  3866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3867. font-weight:400;
  3868. font-style:normal;
  3869. font-size:12px;
  3870. color:#606266;
  3871. }
  3872. #u4172 .text {
  3873. position:absolute;
  3874. align-self:center;
  3875. padding:2px 2px 2px 0px;
  3876. box-sizing:border-box;
  3877. width:100%;
  3878. }
  3879. #u4172_text {
  3880. border-width:0px;
  3881. word-wrap:break-word;
  3882. text-transform:none;
  3883. visibility:hidden;
  3884. }
  3885. #u4173_img {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:0px;
  3889. top:0px;
  3890. width:68px;
  3891. height:35px;
  3892. }
  3893. #u4173 {
  3894. border-width:0px;
  3895. position:absolute;
  3896. left:935px;
  3897. top:112px;
  3898. width:68px;
  3899. height:35px;
  3900. display:flex;
  3901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3902. font-weight:400;
  3903. font-style:normal;
  3904. font-size:12px;
  3905. color:#606266;
  3906. }
  3907. #u4173 .text {
  3908. position:absolute;
  3909. align-self:center;
  3910. padding:2px 2px 2px 0px;
  3911. box-sizing:border-box;
  3912. width:100%;
  3913. }
  3914. #u4173_text {
  3915. border-width:0px;
  3916. word-wrap:break-word;
  3917. text-transform:none;
  3918. visibility:hidden;
  3919. }
  3920. #u4174_img {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:0px;
  3924. top:0px;
  3925. width:76px;
  3926. height:35px;
  3927. }
  3928. #u4174 {
  3929. border-width:0px;
  3930. position:absolute;
  3931. left:1003px;
  3932. top:112px;
  3933. width:76px;
  3934. height:35px;
  3935. display:flex;
  3936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3937. font-weight:400;
  3938. font-style:normal;
  3939. font-size:12px;
  3940. color:#606266;
  3941. }
  3942. #u4174 .text {
  3943. position:absolute;
  3944. align-self:center;
  3945. padding:2px 2px 2px 0px;
  3946. box-sizing:border-box;
  3947. width:100%;
  3948. }
  3949. #u4174_text {
  3950. border-width:0px;
  3951. word-wrap:break-word;
  3952. text-transform:none;
  3953. visibility:hidden;
  3954. }
  3955. #u4175_img {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:0px;
  3959. top:0px;
  3960. width:76px;
  3961. height:35px;
  3962. }
  3963. #u4175 {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:1079px;
  3967. top:112px;
  3968. width:76px;
  3969. height:35px;
  3970. display:flex;
  3971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3972. font-weight:400;
  3973. font-style:normal;
  3974. font-size:12px;
  3975. color:#606266;
  3976. }
  3977. #u4175 .text {
  3978. position:absolute;
  3979. align-self:center;
  3980. padding:2px 2px 2px 0px;
  3981. box-sizing:border-box;
  3982. width:100%;
  3983. }
  3984. #u4175_text {
  3985. border-width:0px;
  3986. word-wrap:break-word;
  3987. text-transform:none;
  3988. visibility:hidden;
  3989. }
  3990. #u4176_img {
  3991. border-width:0px;
  3992. position:absolute;
  3993. left:0px;
  3994. top:0px;
  3995. width:65px;
  3996. height:35px;
  3997. }
  3998. #u4176 {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:1155px;
  4002. top:112px;
  4003. width:65px;
  4004. height:35px;
  4005. display:flex;
  4006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4007. font-weight:400;
  4008. font-style:normal;
  4009. font-size:12px;
  4010. color:#AAAAAA;
  4011. }
  4012. #u4176 .text {
  4013. position:absolute;
  4014. align-self:center;
  4015. padding:2px 2px 2px 0px;
  4016. box-sizing:border-box;
  4017. width:100%;
  4018. }
  4019. #u4176_text {
  4020. border-width:0px;
  4021. word-wrap:break-word;
  4022. text-transform:none;
  4023. }
  4024. #u4177_img {
  4025. border-width:0px;
  4026. position:absolute;
  4027. left:0px;
  4028. top:0px;
  4029. width:39px;
  4030. height:36px;
  4031. }
  4032. #u4177 {
  4033. border-width:0px;
  4034. position:absolute;
  4035. left:0px;
  4036. top:147px;
  4037. width:39px;
  4038. height:36px;
  4039. display:flex;
  4040. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4041. font-weight:400;
  4042. font-style:normal;
  4043. font-size:12px;
  4044. color:#606266;
  4045. }
  4046. #u4177 .text {
  4047. position:absolute;
  4048. align-self:center;
  4049. padding:2px 2px 2px 0px;
  4050. box-sizing:border-box;
  4051. width:100%;
  4052. }
  4053. #u4177_text {
  4054. border-width:0px;
  4055. word-wrap:break-word;
  4056. text-transform:none;
  4057. }
  4058. #u4178_img {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:0px;
  4062. top:0px;
  4063. width:72px;
  4064. height:36px;
  4065. }
  4066. #u4178 {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:39px;
  4070. top:147px;
  4071. width:72px;
  4072. height:36px;
  4073. display:flex;
  4074. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4075. font-weight:400;
  4076. font-style:normal;
  4077. font-size:12px;
  4078. color:#606266;
  4079. }
  4080. #u4178 .text {
  4081. position:absolute;
  4082. align-self:center;
  4083. padding:2px 2px 2px 0px;
  4084. box-sizing:border-box;
  4085. width:100%;
  4086. }
  4087. #u4178_text {
  4088. border-width:0px;
  4089. word-wrap:break-word;
  4090. text-transform:none;
  4091. visibility:hidden;
  4092. }
  4093. #u4179_img {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:0px;
  4097. top:0px;
  4098. width:68px;
  4099. height:36px;
  4100. }
  4101. #u4179 {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:111px;
  4105. top:147px;
  4106. width:68px;
  4107. height:36px;
  4108. display:flex;
  4109. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4110. font-weight:400;
  4111. font-style:normal;
  4112. font-size:12px;
  4113. color:#606266;
  4114. }
  4115. #u4179 .text {
  4116. position:absolute;
  4117. align-self:center;
  4118. padding:2px 2px 2px 0px;
  4119. box-sizing:border-box;
  4120. width:100%;
  4121. }
  4122. #u4179_text {
  4123. border-width:0px;
  4124. word-wrap:break-word;
  4125. text-transform:none;
  4126. visibility:hidden;
  4127. }
  4128. #u4180_img {
  4129. border-width:0px;
  4130. position:absolute;
  4131. left:0px;
  4132. top:0px;
  4133. width:68px;
  4134. height:36px;
  4135. }
  4136. #u4180 {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:179px;
  4140. top:147px;
  4141. width:68px;
  4142. height:36px;
  4143. display:flex;
  4144. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4145. font-weight:400;
  4146. font-style:normal;
  4147. font-size:12px;
  4148. color:#606266;
  4149. }
  4150. #u4180 .text {
  4151. position:absolute;
  4152. align-self:center;
  4153. padding:2px 2px 2px 0px;
  4154. box-sizing:border-box;
  4155. width:100%;
  4156. }
  4157. #u4180_text {
  4158. border-width:0px;
  4159. word-wrap:break-word;
  4160. text-transform:none;
  4161. visibility:hidden;
  4162. }
  4163. #u4181_img {
  4164. border-width:0px;
  4165. position:absolute;
  4166. left:0px;
  4167. top:0px;
  4168. width:68px;
  4169. height:36px;
  4170. }
  4171. #u4181 {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:247px;
  4175. top:147px;
  4176. width:68px;
  4177. height:36px;
  4178. display:flex;
  4179. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4180. font-weight:400;
  4181. font-style:normal;
  4182. font-size:12px;
  4183. color:#606266;
  4184. }
  4185. #u4181 .text {
  4186. position:absolute;
  4187. align-self:center;
  4188. padding:2px 2px 2px 0px;
  4189. box-sizing:border-box;
  4190. width:100%;
  4191. }
  4192. #u4181_text {
  4193. border-width:0px;
  4194. word-wrap:break-word;
  4195. text-transform:none;
  4196. visibility:hidden;
  4197. }
  4198. #u4182_img {
  4199. border-width:0px;
  4200. position:absolute;
  4201. left:0px;
  4202. top:0px;
  4203. width:68px;
  4204. height:36px;
  4205. }
  4206. #u4182 {
  4207. border-width:0px;
  4208. position:absolute;
  4209. left:315px;
  4210. top:147px;
  4211. width:68px;
  4212. height:36px;
  4213. display:flex;
  4214. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4215. font-weight:400;
  4216. font-style:normal;
  4217. font-size:12px;
  4218. color:#606266;
  4219. }
  4220. #u4182 .text {
  4221. position:absolute;
  4222. align-self:center;
  4223. padding:2px 2px 2px 0px;
  4224. box-sizing:border-box;
  4225. width:100%;
  4226. }
  4227. #u4182_text {
  4228. border-width:0px;
  4229. word-wrap:break-word;
  4230. text-transform:none;
  4231. visibility:hidden;
  4232. }
  4233. #u4183_img {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:0px;
  4237. top:0px;
  4238. width:76px;
  4239. height:36px;
  4240. }
  4241. #u4183 {
  4242. border-width:0px;
  4243. position:absolute;
  4244. left:383px;
  4245. top:147px;
  4246. width:76px;
  4247. height:36px;
  4248. display:flex;
  4249. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4250. font-weight:400;
  4251. font-style:normal;
  4252. font-size:12px;
  4253. color:#606266;
  4254. }
  4255. #u4183 .text {
  4256. position:absolute;
  4257. align-self:center;
  4258. padding:2px 2px 2px 0px;
  4259. box-sizing:border-box;
  4260. width:100%;
  4261. }
  4262. #u4183_text {
  4263. border-width:0px;
  4264. word-wrap:break-word;
  4265. text-transform:none;
  4266. visibility:hidden;
  4267. }
  4268. #u4184_img {
  4269. border-width:0px;
  4270. position:absolute;
  4271. left:0px;
  4272. top:0px;
  4273. width:85px;
  4274. height:36px;
  4275. }
  4276. #u4184 {
  4277. border-width:0px;
  4278. position:absolute;
  4279. left:459px;
  4280. top:147px;
  4281. width:85px;
  4282. height:36px;
  4283. display:flex;
  4284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4285. font-weight:400;
  4286. font-style:normal;
  4287. font-size:12px;
  4288. color:#606266;
  4289. }
  4290. #u4184 .text {
  4291. position:absolute;
  4292. align-self:center;
  4293. padding:2px 2px 2px 0px;
  4294. box-sizing:border-box;
  4295. width:100%;
  4296. }
  4297. #u4184_text {
  4298. border-width:0px;
  4299. word-wrap:break-word;
  4300. text-transform:none;
  4301. visibility:hidden;
  4302. }
  4303. #u4185_img {
  4304. border-width:0px;
  4305. position:absolute;
  4306. left:0px;
  4307. top:0px;
  4308. width:85px;
  4309. height:36px;
  4310. }
  4311. #u4185 {
  4312. border-width:0px;
  4313. position:absolute;
  4314. left:544px;
  4315. top:147px;
  4316. width:85px;
  4317. height:36px;
  4318. display:flex;
  4319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4320. font-weight:400;
  4321. font-style:normal;
  4322. font-size:12px;
  4323. color:#606266;
  4324. }
  4325. #u4185 .text {
  4326. position:absolute;
  4327. align-self:center;
  4328. padding:2px 2px 2px 0px;
  4329. box-sizing:border-box;
  4330. width:100%;
  4331. }
  4332. #u4185_text {
  4333. border-width:0px;
  4334. word-wrap:break-word;
  4335. text-transform:none;
  4336. visibility:hidden;
  4337. }
  4338. #u4186_img {
  4339. border-width:0px;
  4340. position:absolute;
  4341. left:0px;
  4342. top:0px;
  4343. width:85px;
  4344. height:36px;
  4345. }
  4346. #u4186 {
  4347. border-width:0px;
  4348. position:absolute;
  4349. left:629px;
  4350. top:147px;
  4351. width:85px;
  4352. height:36px;
  4353. display:flex;
  4354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4355. font-weight:400;
  4356. font-style:normal;
  4357. font-size:12px;
  4358. color:#606266;
  4359. }
  4360. #u4186 .text {
  4361. position:absolute;
  4362. align-self:center;
  4363. padding:2px 2px 2px 0px;
  4364. box-sizing:border-box;
  4365. width:100%;
  4366. }
  4367. #u4186_text {
  4368. border-width:0px;
  4369. word-wrap:break-word;
  4370. text-transform:none;
  4371. visibility:hidden;
  4372. }
  4373. #u4187_img {
  4374. border-width:0px;
  4375. position:absolute;
  4376. left:0px;
  4377. top:0px;
  4378. width:85px;
  4379. height:36px;
  4380. }
  4381. #u4187 {
  4382. border-width:0px;
  4383. position:absolute;
  4384. left:714px;
  4385. top:147px;
  4386. width:85px;
  4387. height:36px;
  4388. display:flex;
  4389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4390. font-weight:400;
  4391. font-style:normal;
  4392. font-size:12px;
  4393. color:#606266;
  4394. }
  4395. #u4187 .text {
  4396. position:absolute;
  4397. align-self:center;
  4398. padding:2px 2px 2px 0px;
  4399. box-sizing:border-box;
  4400. width:100%;
  4401. }
  4402. #u4187_text {
  4403. border-width:0px;
  4404. word-wrap:break-word;
  4405. text-transform:none;
  4406. }
  4407. #u4188_img {
  4408. border-width:0px;
  4409. position:absolute;
  4410. left:0px;
  4411. top:0px;
  4412. width:68px;
  4413. height:36px;
  4414. }
  4415. #u4188 {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:799px;
  4419. top:147px;
  4420. width:68px;
  4421. height:36px;
  4422. display:flex;
  4423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4424. font-weight:400;
  4425. font-style:normal;
  4426. font-size:12px;
  4427. color:#606266;
  4428. }
  4429. #u4188 .text {
  4430. position:absolute;
  4431. align-self:center;
  4432. padding:2px 2px 2px 0px;
  4433. box-sizing:border-box;
  4434. width:100%;
  4435. }
  4436. #u4188_text {
  4437. border-width:0px;
  4438. word-wrap:break-word;
  4439. text-transform:none;
  4440. visibility:hidden;
  4441. }
  4442. #u4189_img {
  4443. border-width:0px;
  4444. position:absolute;
  4445. left:0px;
  4446. top:0px;
  4447. width:68px;
  4448. height:36px;
  4449. }
  4450. #u4189 {
  4451. border-width:0px;
  4452. position:absolute;
  4453. left:867px;
  4454. top:147px;
  4455. width:68px;
  4456. height:36px;
  4457. display:flex;
  4458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4459. font-weight:400;
  4460. font-style:normal;
  4461. font-size:12px;
  4462. color:#606266;
  4463. }
  4464. #u4189 .text {
  4465. position:absolute;
  4466. align-self:center;
  4467. padding:2px 2px 2px 0px;
  4468. box-sizing:border-box;
  4469. width:100%;
  4470. }
  4471. #u4189_text {
  4472. border-width:0px;
  4473. word-wrap:break-word;
  4474. text-transform:none;
  4475. visibility:hidden;
  4476. }
  4477. #u4190_img {
  4478. border-width:0px;
  4479. position:absolute;
  4480. left:0px;
  4481. top:0px;
  4482. width:68px;
  4483. height:36px;
  4484. }
  4485. #u4190 {
  4486. border-width:0px;
  4487. position:absolute;
  4488. left:935px;
  4489. top:147px;
  4490. width:68px;
  4491. height:36px;
  4492. display:flex;
  4493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4494. font-weight:400;
  4495. font-style:normal;
  4496. font-size:12px;
  4497. color:#606266;
  4498. }
  4499. #u4190 .text {
  4500. position:absolute;
  4501. align-self:center;
  4502. padding:2px 2px 2px 0px;
  4503. box-sizing:border-box;
  4504. width:100%;
  4505. }
  4506. #u4190_text {
  4507. border-width:0px;
  4508. word-wrap:break-word;
  4509. text-transform:none;
  4510. visibility:hidden;
  4511. }
  4512. #u4191_img {
  4513. border-width:0px;
  4514. position:absolute;
  4515. left:0px;
  4516. top:0px;
  4517. width:76px;
  4518. height:36px;
  4519. }
  4520. #u4191 {
  4521. border-width:0px;
  4522. position:absolute;
  4523. left:1003px;
  4524. top:147px;
  4525. width:76px;
  4526. height:36px;
  4527. display:flex;
  4528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4529. font-weight:400;
  4530. font-style:normal;
  4531. font-size:12px;
  4532. color:#606266;
  4533. }
  4534. #u4191 .text {
  4535. position:absolute;
  4536. align-self:center;
  4537. padding:2px 2px 2px 0px;
  4538. box-sizing:border-box;
  4539. width:100%;
  4540. }
  4541. #u4191_text {
  4542. border-width:0px;
  4543. word-wrap:break-word;
  4544. text-transform:none;
  4545. visibility:hidden;
  4546. }
  4547. #u4192_img {
  4548. border-width:0px;
  4549. position:absolute;
  4550. left:0px;
  4551. top:0px;
  4552. width:76px;
  4553. height:36px;
  4554. }
  4555. #u4192 {
  4556. border-width:0px;
  4557. position:absolute;
  4558. left:1079px;
  4559. top:147px;
  4560. width:76px;
  4561. height:36px;
  4562. display:flex;
  4563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4564. font-weight:400;
  4565. font-style:normal;
  4566. font-size:12px;
  4567. color:#606266;
  4568. }
  4569. #u4192 .text {
  4570. position:absolute;
  4571. align-self:center;
  4572. padding:2px 2px 2px 0px;
  4573. box-sizing:border-box;
  4574. width:100%;
  4575. }
  4576. #u4192_text {
  4577. border-width:0px;
  4578. word-wrap:break-word;
  4579. text-transform:none;
  4580. visibility:hidden;
  4581. }
  4582. #u4193_img {
  4583. border-width:0px;
  4584. position:absolute;
  4585. left:0px;
  4586. top:0px;
  4587. width:65px;
  4588. height:36px;
  4589. }
  4590. #u4193 {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:1155px;
  4594. top:147px;
  4595. width:65px;
  4596. height:36px;
  4597. display:flex;
  4598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4599. font-weight:400;
  4600. font-style:normal;
  4601. font-size:12px;
  4602. color:#02A7F0;
  4603. }
  4604. #u4193 .text {
  4605. position:absolute;
  4606. align-self:center;
  4607. padding:2px 2px 2px 0px;
  4608. box-sizing:border-box;
  4609. width:100%;
  4610. }
  4611. #u4193_text {
  4612. border-width:0px;
  4613. word-wrap:break-word;
  4614. text-transform:none;
  4615. visibility:hidden;
  4616. }
  4617. #u4194_img {
  4618. border-width:0px;
  4619. position:absolute;
  4620. left:0px;
  4621. top:0px;
  4622. width:39px;
  4623. height:35px;
  4624. }
  4625. #u4194 {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:0px;
  4629. top:183px;
  4630. width:39px;
  4631. height:35px;
  4632. display:flex;
  4633. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4634. font-weight:400;
  4635. font-style:normal;
  4636. font-size:12px;
  4637. color:#606266;
  4638. }
  4639. #u4194 .text {
  4640. position:absolute;
  4641. align-self:center;
  4642. padding:2px 2px 2px 0px;
  4643. box-sizing:border-box;
  4644. width:100%;
  4645. }
  4646. #u4194_text {
  4647. border-width:0px;
  4648. word-wrap:break-word;
  4649. text-transform:none;
  4650. visibility:hidden;
  4651. }
  4652. #u4195_img {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:0px;
  4656. top:0px;
  4657. width:72px;
  4658. height:35px;
  4659. }
  4660. #u4195 {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:39px;
  4664. top:183px;
  4665. width:72px;
  4666. height:35px;
  4667. display:flex;
  4668. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4669. font-weight:400;
  4670. font-style:normal;
  4671. font-size:12px;
  4672. color:#606266;
  4673. }
  4674. #u4195 .text {
  4675. position:absolute;
  4676. align-self:center;
  4677. padding:2px 2px 2px 0px;
  4678. box-sizing:border-box;
  4679. width:100%;
  4680. }
  4681. #u4195_text {
  4682. border-width:0px;
  4683. word-wrap:break-word;
  4684. text-transform:none;
  4685. visibility:hidden;
  4686. }
  4687. #u4196_img {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:0px;
  4691. top:0px;
  4692. width:68px;
  4693. height:35px;
  4694. }
  4695. #u4196 {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:111px;
  4699. top:183px;
  4700. width:68px;
  4701. height:35px;
  4702. display:flex;
  4703. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4704. font-weight:400;
  4705. font-style:normal;
  4706. font-size:12px;
  4707. color:#606266;
  4708. }
  4709. #u4196 .text {
  4710. position:absolute;
  4711. align-self:center;
  4712. padding:2px 2px 2px 0px;
  4713. box-sizing:border-box;
  4714. width:100%;
  4715. }
  4716. #u4196_text {
  4717. border-width:0px;
  4718. word-wrap:break-word;
  4719. text-transform:none;
  4720. visibility:hidden;
  4721. }
  4722. #u4197_img {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:0px;
  4726. top:0px;
  4727. width:68px;
  4728. height:35px;
  4729. }
  4730. #u4197 {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:179px;
  4734. top:183px;
  4735. width:68px;
  4736. height:35px;
  4737. display:flex;
  4738. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4739. font-weight:400;
  4740. font-style:normal;
  4741. font-size:12px;
  4742. color:#606266;
  4743. }
  4744. #u4197 .text {
  4745. position:absolute;
  4746. align-self:center;
  4747. padding:2px 2px 2px 0px;
  4748. box-sizing:border-box;
  4749. width:100%;
  4750. }
  4751. #u4197_text {
  4752. border-width:0px;
  4753. word-wrap:break-word;
  4754. text-transform:none;
  4755. visibility:hidden;
  4756. }
  4757. #u4198_img {
  4758. border-width:0px;
  4759. position:absolute;
  4760. left:0px;
  4761. top:0px;
  4762. width:68px;
  4763. height:35px;
  4764. }
  4765. #u4198 {
  4766. border-width:0px;
  4767. position:absolute;
  4768. left:247px;
  4769. top:183px;
  4770. width:68px;
  4771. height:35px;
  4772. display:flex;
  4773. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4774. font-weight:400;
  4775. font-style:normal;
  4776. font-size:12px;
  4777. color:#606266;
  4778. }
  4779. #u4198 .text {
  4780. position:absolute;
  4781. align-self:center;
  4782. padding:2px 2px 2px 0px;
  4783. box-sizing:border-box;
  4784. width:100%;
  4785. }
  4786. #u4198_text {
  4787. border-width:0px;
  4788. word-wrap:break-word;
  4789. text-transform:none;
  4790. visibility:hidden;
  4791. }
  4792. #u4199_img {
  4793. border-width:0px;
  4794. position:absolute;
  4795. left:0px;
  4796. top:0px;
  4797. width:68px;
  4798. height:35px;
  4799. }
  4800. #u4199 {
  4801. border-width:0px;
  4802. position:absolute;
  4803. left:315px;
  4804. top:183px;
  4805. width:68px;
  4806. height:35px;
  4807. display:flex;
  4808. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4809. font-weight:400;
  4810. font-style:normal;
  4811. font-size:12px;
  4812. color:#606266;
  4813. }
  4814. #u4199 .text {
  4815. position:absolute;
  4816. align-self:center;
  4817. padding:2px 2px 2px 0px;
  4818. box-sizing:border-box;
  4819. width:100%;
  4820. }
  4821. #u4199_text {
  4822. border-width:0px;
  4823. word-wrap:break-word;
  4824. text-transform:none;
  4825. visibility:hidden;
  4826. }
  4827. #u4200_img {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:0px;
  4831. top:0px;
  4832. width:76px;
  4833. height:35px;
  4834. }
  4835. #u4200 {
  4836. border-width:0px;
  4837. position:absolute;
  4838. left:383px;
  4839. top:183px;
  4840. width:76px;
  4841. height:35px;
  4842. display:flex;
  4843. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4844. font-weight:400;
  4845. font-style:normal;
  4846. font-size:12px;
  4847. color:#606266;
  4848. }
  4849. #u4200 .text {
  4850. position:absolute;
  4851. align-self:center;
  4852. padding:2px 2px 2px 0px;
  4853. box-sizing:border-box;
  4854. width:100%;
  4855. }
  4856. #u4200_text {
  4857. border-width:0px;
  4858. word-wrap:break-word;
  4859. text-transform:none;
  4860. visibility:hidden;
  4861. }
  4862. #u4201_img {
  4863. border-width:0px;
  4864. position:absolute;
  4865. left:0px;
  4866. top:0px;
  4867. width:85px;
  4868. height:35px;
  4869. }
  4870. #u4201 {
  4871. border-width:0px;
  4872. position:absolute;
  4873. left:459px;
  4874. top:183px;
  4875. width:85px;
  4876. height:35px;
  4877. display:flex;
  4878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4879. font-weight:400;
  4880. font-style:normal;
  4881. font-size:12px;
  4882. color:#606266;
  4883. }
  4884. #u4201 .text {
  4885. position:absolute;
  4886. align-self:center;
  4887. padding:2px 2px 2px 0px;
  4888. box-sizing:border-box;
  4889. width:100%;
  4890. }
  4891. #u4201_text {
  4892. border-width:0px;
  4893. word-wrap:break-word;
  4894. text-transform:none;
  4895. visibility:hidden;
  4896. }
  4897. #u4202_img {
  4898. border-width:0px;
  4899. position:absolute;
  4900. left:0px;
  4901. top:0px;
  4902. width:85px;
  4903. height:35px;
  4904. }
  4905. #u4202 {
  4906. border-width:0px;
  4907. position:absolute;
  4908. left:544px;
  4909. top:183px;
  4910. width:85px;
  4911. height:35px;
  4912. display:flex;
  4913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4914. font-weight:400;
  4915. font-style:normal;
  4916. font-size:12px;
  4917. color:#606266;
  4918. }
  4919. #u4202 .text {
  4920. position:absolute;
  4921. align-self:center;
  4922. padding:2px 2px 2px 0px;
  4923. box-sizing:border-box;
  4924. width:100%;
  4925. }
  4926. #u4202_text {
  4927. border-width:0px;
  4928. word-wrap:break-word;
  4929. text-transform:none;
  4930. visibility:hidden;
  4931. }
  4932. #u4203_img {
  4933. border-width:0px;
  4934. position:absolute;
  4935. left:0px;
  4936. top:0px;
  4937. width:85px;
  4938. height:35px;
  4939. }
  4940. #u4203 {
  4941. border-width:0px;
  4942. position:absolute;
  4943. left:629px;
  4944. top:183px;
  4945. width:85px;
  4946. height:35px;
  4947. display:flex;
  4948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4949. font-weight:400;
  4950. font-style:normal;
  4951. font-size:12px;
  4952. color:#606266;
  4953. }
  4954. #u4203 .text {
  4955. position:absolute;
  4956. align-self:center;
  4957. padding:2px 2px 2px 0px;
  4958. box-sizing:border-box;
  4959. width:100%;
  4960. }
  4961. #u4203_text {
  4962. border-width:0px;
  4963. word-wrap:break-word;
  4964. text-transform:none;
  4965. visibility:hidden;
  4966. }
  4967. #u4204_img {
  4968. border-width:0px;
  4969. position:absolute;
  4970. left:0px;
  4971. top:0px;
  4972. width:85px;
  4973. height:35px;
  4974. }
  4975. #u4204 {
  4976. border-width:0px;
  4977. position:absolute;
  4978. left:714px;
  4979. top:183px;
  4980. width:85px;
  4981. height:35px;
  4982. display:flex;
  4983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4984. font-weight:400;
  4985. font-style:normal;
  4986. font-size:12px;
  4987. color:#606266;
  4988. }
  4989. #u4204 .text {
  4990. position:absolute;
  4991. align-self:center;
  4992. padding:2px 2px 2px 0px;
  4993. box-sizing:border-box;
  4994. width:100%;
  4995. }
  4996. #u4204_text {
  4997. border-width:0px;
  4998. word-wrap:break-word;
  4999. text-transform:none;
  5000. visibility:hidden;
  5001. }
  5002. #u4205_img {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:0px;
  5006. top:0px;
  5007. width:68px;
  5008. height:35px;
  5009. }
  5010. #u4205 {
  5011. border-width:0px;
  5012. position:absolute;
  5013. left:799px;
  5014. top:183px;
  5015. width:68px;
  5016. height:35px;
  5017. display:flex;
  5018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5019. font-weight:400;
  5020. font-style:normal;
  5021. font-size:12px;
  5022. color:#606266;
  5023. }
  5024. #u4205 .text {
  5025. position:absolute;
  5026. align-self:center;
  5027. padding:2px 2px 2px 0px;
  5028. box-sizing:border-box;
  5029. width:100%;
  5030. }
  5031. #u4205_text {
  5032. border-width:0px;
  5033. word-wrap:break-word;
  5034. text-transform:none;
  5035. visibility:hidden;
  5036. }
  5037. #u4206_img {
  5038. border-width:0px;
  5039. position:absolute;
  5040. left:0px;
  5041. top:0px;
  5042. width:68px;
  5043. height:35px;
  5044. }
  5045. #u4206 {
  5046. border-width:0px;
  5047. position:absolute;
  5048. left:867px;
  5049. top:183px;
  5050. width:68px;
  5051. height:35px;
  5052. display:flex;
  5053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5054. font-weight:400;
  5055. font-style:normal;
  5056. font-size:12px;
  5057. color:#606266;
  5058. }
  5059. #u4206 .text {
  5060. position:absolute;
  5061. align-self:center;
  5062. padding:2px 2px 2px 0px;
  5063. box-sizing:border-box;
  5064. width:100%;
  5065. }
  5066. #u4206_text {
  5067. border-width:0px;
  5068. word-wrap:break-word;
  5069. text-transform:none;
  5070. visibility:hidden;
  5071. }
  5072. #u4207_img {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:0px;
  5076. top:0px;
  5077. width:68px;
  5078. height:35px;
  5079. }
  5080. #u4207 {
  5081. border-width:0px;
  5082. position:absolute;
  5083. left:935px;
  5084. top:183px;
  5085. width:68px;
  5086. height:35px;
  5087. display:flex;
  5088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5089. font-weight:400;
  5090. font-style:normal;
  5091. font-size:12px;
  5092. color:#606266;
  5093. }
  5094. #u4207 .text {
  5095. position:absolute;
  5096. align-self:center;
  5097. padding:2px 2px 2px 0px;
  5098. box-sizing:border-box;
  5099. width:100%;
  5100. }
  5101. #u4207_text {
  5102. border-width:0px;
  5103. word-wrap:break-word;
  5104. text-transform:none;
  5105. visibility:hidden;
  5106. }
  5107. #u4208_img {
  5108. border-width:0px;
  5109. position:absolute;
  5110. left:0px;
  5111. top:0px;
  5112. width:76px;
  5113. height:35px;
  5114. }
  5115. #u4208 {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:1003px;
  5119. top:183px;
  5120. width:76px;
  5121. height:35px;
  5122. display:flex;
  5123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5124. font-weight:400;
  5125. font-style:normal;
  5126. font-size:12px;
  5127. color:#606266;
  5128. }
  5129. #u4208 .text {
  5130. position:absolute;
  5131. align-self:center;
  5132. padding:2px 2px 2px 0px;
  5133. box-sizing:border-box;
  5134. width:100%;
  5135. }
  5136. #u4208_text {
  5137. border-width:0px;
  5138. word-wrap:break-word;
  5139. text-transform:none;
  5140. visibility:hidden;
  5141. }
  5142. #u4209_img {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:0px;
  5146. top:0px;
  5147. width:76px;
  5148. height:35px;
  5149. }
  5150. #u4209 {
  5151. border-width:0px;
  5152. position:absolute;
  5153. left:1079px;
  5154. top:183px;
  5155. width:76px;
  5156. height:35px;
  5157. display:flex;
  5158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5159. font-weight:400;
  5160. font-style:normal;
  5161. font-size:12px;
  5162. color:#606266;
  5163. }
  5164. #u4209 .text {
  5165. position:absolute;
  5166. align-self:center;
  5167. padding:2px 2px 2px 0px;
  5168. box-sizing:border-box;
  5169. width:100%;
  5170. }
  5171. #u4209_text {
  5172. border-width:0px;
  5173. word-wrap:break-word;
  5174. text-transform:none;
  5175. visibility:hidden;
  5176. }
  5177. #u4210_img {
  5178. border-width:0px;
  5179. position:absolute;
  5180. left:0px;
  5181. top:0px;
  5182. width:65px;
  5183. height:35px;
  5184. }
  5185. #u4210 {
  5186. border-width:0px;
  5187. position:absolute;
  5188. left:1155px;
  5189. top:183px;
  5190. width:65px;
  5191. height:35px;
  5192. display:flex;
  5193. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5194. font-weight:400;
  5195. font-style:normal;
  5196. font-size:12px;
  5197. color:#606266;
  5198. }
  5199. #u4210 .text {
  5200. position:absolute;
  5201. align-self:center;
  5202. padding:2px 2px 2px 0px;
  5203. box-sizing:border-box;
  5204. width:100%;
  5205. }
  5206. #u4210_text {
  5207. border-width:0px;
  5208. word-wrap:break-word;
  5209. text-transform:none;
  5210. visibility:hidden;
  5211. }
  5212. #u4211_img {
  5213. border-width:0px;
  5214. position:absolute;
  5215. left:0px;
  5216. top:0px;
  5217. width:39px;
  5218. height:35px;
  5219. }
  5220. #u4211 {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:0px;
  5224. top:218px;
  5225. width:39px;
  5226. height:35px;
  5227. display:flex;
  5228. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5229. font-weight:400;
  5230. font-style:normal;
  5231. font-size:12px;
  5232. color:#606266;
  5233. }
  5234. #u4211 .text {
  5235. position:absolute;
  5236. align-self:center;
  5237. padding:2px 2px 2px 0px;
  5238. box-sizing:border-box;
  5239. width:100%;
  5240. }
  5241. #u4211_text {
  5242. border-width:0px;
  5243. word-wrap:break-word;
  5244. text-transform:none;
  5245. visibility:hidden;
  5246. }
  5247. #u4212_img {
  5248. border-width:0px;
  5249. position:absolute;
  5250. left:0px;
  5251. top:0px;
  5252. width:72px;
  5253. height:35px;
  5254. }
  5255. #u4212 {
  5256. border-width:0px;
  5257. position:absolute;
  5258. left:39px;
  5259. top:218px;
  5260. width:72px;
  5261. height:35px;
  5262. display:flex;
  5263. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5264. font-weight:400;
  5265. font-style:normal;
  5266. font-size:12px;
  5267. color:#606266;
  5268. }
  5269. #u4212 .text {
  5270. position:absolute;
  5271. align-self:center;
  5272. padding:2px 2px 2px 0px;
  5273. box-sizing:border-box;
  5274. width:100%;
  5275. }
  5276. #u4212_text {
  5277. border-width:0px;
  5278. word-wrap:break-word;
  5279. text-transform:none;
  5280. visibility:hidden;
  5281. }
  5282. #u4213_img {
  5283. border-width:0px;
  5284. position:absolute;
  5285. left:0px;
  5286. top:0px;
  5287. width:68px;
  5288. height:35px;
  5289. }
  5290. #u4213 {
  5291. border-width:0px;
  5292. position:absolute;
  5293. left:111px;
  5294. top:218px;
  5295. width:68px;
  5296. height:35px;
  5297. display:flex;
  5298. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5299. font-weight:400;
  5300. font-style:normal;
  5301. font-size:12px;
  5302. color:#606266;
  5303. }
  5304. #u4213 .text {
  5305. position:absolute;
  5306. align-self:center;
  5307. padding:2px 2px 2px 0px;
  5308. box-sizing:border-box;
  5309. width:100%;
  5310. }
  5311. #u4213_text {
  5312. border-width:0px;
  5313. word-wrap:break-word;
  5314. text-transform:none;
  5315. visibility:hidden;
  5316. }
  5317. #u4214_img {
  5318. border-width:0px;
  5319. position:absolute;
  5320. left:0px;
  5321. top:0px;
  5322. width:68px;
  5323. height:35px;
  5324. }
  5325. #u4214 {
  5326. border-width:0px;
  5327. position:absolute;
  5328. left:179px;
  5329. top:218px;
  5330. width:68px;
  5331. height:35px;
  5332. display:flex;
  5333. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5334. font-weight:400;
  5335. font-style:normal;
  5336. font-size:12px;
  5337. color:#606266;
  5338. }
  5339. #u4214 .text {
  5340. position:absolute;
  5341. align-self:center;
  5342. padding:2px 2px 2px 0px;
  5343. box-sizing:border-box;
  5344. width:100%;
  5345. }
  5346. #u4214_text {
  5347. border-width:0px;
  5348. word-wrap:break-word;
  5349. text-transform:none;
  5350. visibility:hidden;
  5351. }
  5352. #u4215_img {
  5353. border-width:0px;
  5354. position:absolute;
  5355. left:0px;
  5356. top:0px;
  5357. width:68px;
  5358. height:35px;
  5359. }
  5360. #u4215 {
  5361. border-width:0px;
  5362. position:absolute;
  5363. left:247px;
  5364. top:218px;
  5365. width:68px;
  5366. height:35px;
  5367. display:flex;
  5368. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5369. font-weight:400;
  5370. font-style:normal;
  5371. font-size:12px;
  5372. color:#606266;
  5373. }
  5374. #u4215 .text {
  5375. position:absolute;
  5376. align-self:center;
  5377. padding:2px 2px 2px 0px;
  5378. box-sizing:border-box;
  5379. width:100%;
  5380. }
  5381. #u4215_text {
  5382. border-width:0px;
  5383. word-wrap:break-word;
  5384. text-transform:none;
  5385. visibility:hidden;
  5386. }
  5387. #u4216_img {
  5388. border-width:0px;
  5389. position:absolute;
  5390. left:0px;
  5391. top:0px;
  5392. width:68px;
  5393. height:35px;
  5394. }
  5395. #u4216 {
  5396. border-width:0px;
  5397. position:absolute;
  5398. left:315px;
  5399. top:218px;
  5400. width:68px;
  5401. height:35px;
  5402. display:flex;
  5403. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5404. font-weight:400;
  5405. font-style:normal;
  5406. font-size:12px;
  5407. color:#606266;
  5408. }
  5409. #u4216 .text {
  5410. position:absolute;
  5411. align-self:center;
  5412. padding:2px 2px 2px 0px;
  5413. box-sizing:border-box;
  5414. width:100%;
  5415. }
  5416. #u4216_text {
  5417. border-width:0px;
  5418. word-wrap:break-word;
  5419. text-transform:none;
  5420. visibility:hidden;
  5421. }
  5422. #u4217_img {
  5423. border-width:0px;
  5424. position:absolute;
  5425. left:0px;
  5426. top:0px;
  5427. width:76px;
  5428. height:35px;
  5429. }
  5430. #u4217 {
  5431. border-width:0px;
  5432. position:absolute;
  5433. left:383px;
  5434. top:218px;
  5435. width:76px;
  5436. height:35px;
  5437. display:flex;
  5438. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5439. font-weight:400;
  5440. font-style:normal;
  5441. font-size:12px;
  5442. color:#606266;
  5443. }
  5444. #u4217 .text {
  5445. position:absolute;
  5446. align-self:center;
  5447. padding:2px 2px 2px 0px;
  5448. box-sizing:border-box;
  5449. width:100%;
  5450. }
  5451. #u4217_text {
  5452. border-width:0px;
  5453. word-wrap:break-word;
  5454. text-transform:none;
  5455. visibility:hidden;
  5456. }
  5457. #u4218_img {
  5458. border-width:0px;
  5459. position:absolute;
  5460. left:0px;
  5461. top:0px;
  5462. width:85px;
  5463. height:35px;
  5464. }
  5465. #u4218 {
  5466. border-width:0px;
  5467. position:absolute;
  5468. left:459px;
  5469. top:218px;
  5470. width:85px;
  5471. height:35px;
  5472. display:flex;
  5473. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5474. font-weight:400;
  5475. font-style:normal;
  5476. font-size:12px;
  5477. color:#606266;
  5478. }
  5479. #u4218 .text {
  5480. position:absolute;
  5481. align-self:center;
  5482. padding:2px 2px 2px 0px;
  5483. box-sizing:border-box;
  5484. width:100%;
  5485. }
  5486. #u4218_text {
  5487. border-width:0px;
  5488. word-wrap:break-word;
  5489. text-transform:none;
  5490. visibility:hidden;
  5491. }
  5492. #u4219_img {
  5493. border-width:0px;
  5494. position:absolute;
  5495. left:0px;
  5496. top:0px;
  5497. width:85px;
  5498. height:35px;
  5499. }
  5500. #u4219 {
  5501. border-width:0px;
  5502. position:absolute;
  5503. left:544px;
  5504. top:218px;
  5505. width:85px;
  5506. height:35px;
  5507. display:flex;
  5508. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5509. font-weight:400;
  5510. font-style:normal;
  5511. font-size:12px;
  5512. color:#606266;
  5513. }
  5514. #u4219 .text {
  5515. position:absolute;
  5516. align-self:center;
  5517. padding:2px 2px 2px 0px;
  5518. box-sizing:border-box;
  5519. width:100%;
  5520. }
  5521. #u4219_text {
  5522. border-width:0px;
  5523. word-wrap:break-word;
  5524. text-transform:none;
  5525. visibility:hidden;
  5526. }
  5527. #u4220_img {
  5528. border-width:0px;
  5529. position:absolute;
  5530. left:0px;
  5531. top:0px;
  5532. width:85px;
  5533. height:35px;
  5534. }
  5535. #u4220 {
  5536. border-width:0px;
  5537. position:absolute;
  5538. left:629px;
  5539. top:218px;
  5540. width:85px;
  5541. height:35px;
  5542. display:flex;
  5543. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5544. font-weight:400;
  5545. font-style:normal;
  5546. font-size:12px;
  5547. color:#606266;
  5548. }
  5549. #u4220 .text {
  5550. position:absolute;
  5551. align-self:center;
  5552. padding:2px 2px 2px 0px;
  5553. box-sizing:border-box;
  5554. width:100%;
  5555. }
  5556. #u4220_text {
  5557. border-width:0px;
  5558. word-wrap:break-word;
  5559. text-transform:none;
  5560. visibility:hidden;
  5561. }
  5562. #u4221_img {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:0px;
  5566. top:0px;
  5567. width:85px;
  5568. height:35px;
  5569. }
  5570. #u4221 {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:714px;
  5574. top:218px;
  5575. width:85px;
  5576. height:35px;
  5577. display:flex;
  5578. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5579. font-weight:400;
  5580. font-style:normal;
  5581. font-size:12px;
  5582. color:#606266;
  5583. }
  5584. #u4221 .text {
  5585. position:absolute;
  5586. align-self:center;
  5587. padding:2px 2px 2px 0px;
  5588. box-sizing:border-box;
  5589. width:100%;
  5590. }
  5591. #u4221_text {
  5592. border-width:0px;
  5593. word-wrap:break-word;
  5594. text-transform:none;
  5595. visibility:hidden;
  5596. }
  5597. #u4222_img {
  5598. border-width:0px;
  5599. position:absolute;
  5600. left:0px;
  5601. top:0px;
  5602. width:68px;
  5603. height:35px;
  5604. }
  5605. #u4222 {
  5606. border-width:0px;
  5607. position:absolute;
  5608. left:799px;
  5609. top:218px;
  5610. width:68px;
  5611. height:35px;
  5612. display:flex;
  5613. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5614. font-weight:400;
  5615. font-style:normal;
  5616. font-size:12px;
  5617. color:#606266;
  5618. }
  5619. #u4222 .text {
  5620. position:absolute;
  5621. align-self:center;
  5622. padding:2px 2px 2px 0px;
  5623. box-sizing:border-box;
  5624. width:100%;
  5625. }
  5626. #u4222_text {
  5627. border-width:0px;
  5628. word-wrap:break-word;
  5629. text-transform:none;
  5630. visibility:hidden;
  5631. }
  5632. #u4223_img {
  5633. border-width:0px;
  5634. position:absolute;
  5635. left:0px;
  5636. top:0px;
  5637. width:68px;
  5638. height:35px;
  5639. }
  5640. #u4223 {
  5641. border-width:0px;
  5642. position:absolute;
  5643. left:867px;
  5644. top:218px;
  5645. width:68px;
  5646. height:35px;
  5647. display:flex;
  5648. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5649. font-weight:400;
  5650. font-style:normal;
  5651. font-size:12px;
  5652. color:#606266;
  5653. }
  5654. #u4223 .text {
  5655. position:absolute;
  5656. align-self:center;
  5657. padding:2px 2px 2px 0px;
  5658. box-sizing:border-box;
  5659. width:100%;
  5660. }
  5661. #u4223_text {
  5662. border-width:0px;
  5663. word-wrap:break-word;
  5664. text-transform:none;
  5665. visibility:hidden;
  5666. }
  5667. #u4224_img {
  5668. border-width:0px;
  5669. position:absolute;
  5670. left:0px;
  5671. top:0px;
  5672. width:68px;
  5673. height:35px;
  5674. }
  5675. #u4224 {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:935px;
  5679. top:218px;
  5680. width:68px;
  5681. height:35px;
  5682. display:flex;
  5683. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5684. font-weight:400;
  5685. font-style:normal;
  5686. font-size:12px;
  5687. color:#606266;
  5688. }
  5689. #u4224 .text {
  5690. position:absolute;
  5691. align-self:center;
  5692. padding:2px 2px 2px 0px;
  5693. box-sizing:border-box;
  5694. width:100%;
  5695. }
  5696. #u4224_text {
  5697. border-width:0px;
  5698. word-wrap:break-word;
  5699. text-transform:none;
  5700. visibility:hidden;
  5701. }
  5702. #u4225_img {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:0px;
  5706. top:0px;
  5707. width:76px;
  5708. height:35px;
  5709. }
  5710. #u4225 {
  5711. border-width:0px;
  5712. position:absolute;
  5713. left:1003px;
  5714. top:218px;
  5715. width:76px;
  5716. height:35px;
  5717. display:flex;
  5718. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5719. font-weight:400;
  5720. font-style:normal;
  5721. font-size:12px;
  5722. color:#606266;
  5723. }
  5724. #u4225 .text {
  5725. position:absolute;
  5726. align-self:center;
  5727. padding:2px 2px 2px 0px;
  5728. box-sizing:border-box;
  5729. width:100%;
  5730. }
  5731. #u4225_text {
  5732. border-width:0px;
  5733. word-wrap:break-word;
  5734. text-transform:none;
  5735. visibility:hidden;
  5736. }
  5737. #u4226_img {
  5738. border-width:0px;
  5739. position:absolute;
  5740. left:0px;
  5741. top:0px;
  5742. width:76px;
  5743. height:35px;
  5744. }
  5745. #u4226 {
  5746. border-width:0px;
  5747. position:absolute;
  5748. left:1079px;
  5749. top:218px;
  5750. width:76px;
  5751. height:35px;
  5752. display:flex;
  5753. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5754. font-weight:400;
  5755. font-style:normal;
  5756. font-size:12px;
  5757. color:#606266;
  5758. }
  5759. #u4226 .text {
  5760. position:absolute;
  5761. align-self:center;
  5762. padding:2px 2px 2px 0px;
  5763. box-sizing:border-box;
  5764. width:100%;
  5765. }
  5766. #u4226_text {
  5767. border-width:0px;
  5768. word-wrap:break-word;
  5769. text-transform:none;
  5770. visibility:hidden;
  5771. }
  5772. #u4227_img {
  5773. border-width:0px;
  5774. position:absolute;
  5775. left:0px;
  5776. top:0px;
  5777. width:65px;
  5778. height:35px;
  5779. }
  5780. #u4227 {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:1155px;
  5784. top:218px;
  5785. width:65px;
  5786. height:35px;
  5787. display:flex;
  5788. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5789. font-weight:400;
  5790. font-style:normal;
  5791. font-size:12px;
  5792. color:#606266;
  5793. }
  5794. #u4227 .text {
  5795. position:absolute;
  5796. align-self:center;
  5797. padding:2px 2px 2px 0px;
  5798. box-sizing:border-box;
  5799. width:100%;
  5800. }
  5801. #u4227_text {
  5802. border-width:0px;
  5803. word-wrap:break-word;
  5804. text-transform:none;
  5805. visibility:hidden;
  5806. }
  5807. #u4228_img {
  5808. border-width:0px;
  5809. position:absolute;
  5810. left:0px;
  5811. top:0px;
  5812. width:39px;
  5813. height:35px;
  5814. }
  5815. #u4228 {
  5816. border-width:0px;
  5817. position:absolute;
  5818. left:0px;
  5819. top:253px;
  5820. width:39px;
  5821. height:35px;
  5822. display:flex;
  5823. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5824. font-weight:400;
  5825. font-style:normal;
  5826. font-size:12px;
  5827. color:#606266;
  5828. }
  5829. #u4228 .text {
  5830. position:absolute;
  5831. align-self:center;
  5832. padding:2px 2px 2px 0px;
  5833. box-sizing:border-box;
  5834. width:100%;
  5835. }
  5836. #u4228_text {
  5837. border-width:0px;
  5838. word-wrap:break-word;
  5839. text-transform:none;
  5840. visibility:hidden;
  5841. }
  5842. #u4229_img {
  5843. border-width:0px;
  5844. position:absolute;
  5845. left:0px;
  5846. top:0px;
  5847. width:72px;
  5848. height:35px;
  5849. }
  5850. #u4229 {
  5851. border-width:0px;
  5852. position:absolute;
  5853. left:39px;
  5854. top:253px;
  5855. width:72px;
  5856. height:35px;
  5857. display:flex;
  5858. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5859. font-weight:400;
  5860. font-style:normal;
  5861. font-size:12px;
  5862. color:#606266;
  5863. }
  5864. #u4229 .text {
  5865. position:absolute;
  5866. align-self:center;
  5867. padding:2px 2px 2px 0px;
  5868. box-sizing:border-box;
  5869. width:100%;
  5870. }
  5871. #u4229_text {
  5872. border-width:0px;
  5873. word-wrap:break-word;
  5874. text-transform:none;
  5875. visibility:hidden;
  5876. }
  5877. #u4230_img {
  5878. border-width:0px;
  5879. position:absolute;
  5880. left:0px;
  5881. top:0px;
  5882. width:68px;
  5883. height:35px;
  5884. }
  5885. #u4230 {
  5886. border-width:0px;
  5887. position:absolute;
  5888. left:111px;
  5889. top:253px;
  5890. width:68px;
  5891. height:35px;
  5892. display:flex;
  5893. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5894. font-weight:400;
  5895. font-style:normal;
  5896. font-size:12px;
  5897. color:#606266;
  5898. }
  5899. #u4230 .text {
  5900. position:absolute;
  5901. align-self:center;
  5902. padding:2px 2px 2px 0px;
  5903. box-sizing:border-box;
  5904. width:100%;
  5905. }
  5906. #u4230_text {
  5907. border-width:0px;
  5908. word-wrap:break-word;
  5909. text-transform:none;
  5910. visibility:hidden;
  5911. }
  5912. #u4231_img {
  5913. border-width:0px;
  5914. position:absolute;
  5915. left:0px;
  5916. top:0px;
  5917. width:68px;
  5918. height:35px;
  5919. }
  5920. #u4231 {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:179px;
  5924. top:253px;
  5925. width:68px;
  5926. height:35px;
  5927. display:flex;
  5928. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5929. font-weight:400;
  5930. font-style:normal;
  5931. font-size:12px;
  5932. color:#606266;
  5933. }
  5934. #u4231 .text {
  5935. position:absolute;
  5936. align-self:center;
  5937. padding:2px 2px 2px 0px;
  5938. box-sizing:border-box;
  5939. width:100%;
  5940. }
  5941. #u4231_text {
  5942. border-width:0px;
  5943. word-wrap:break-word;
  5944. text-transform:none;
  5945. visibility:hidden;
  5946. }
  5947. #u4232_img {
  5948. border-width:0px;
  5949. position:absolute;
  5950. left:0px;
  5951. top:0px;
  5952. width:68px;
  5953. height:35px;
  5954. }
  5955. #u4232 {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:247px;
  5959. top:253px;
  5960. width:68px;
  5961. height:35px;
  5962. display:flex;
  5963. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5964. font-weight:400;
  5965. font-style:normal;
  5966. font-size:12px;
  5967. color:#606266;
  5968. }
  5969. #u4232 .text {
  5970. position:absolute;
  5971. align-self:center;
  5972. padding:2px 2px 2px 0px;
  5973. box-sizing:border-box;
  5974. width:100%;
  5975. }
  5976. #u4232_text {
  5977. border-width:0px;
  5978. word-wrap:break-word;
  5979. text-transform:none;
  5980. visibility:hidden;
  5981. }
  5982. #u4233_img {
  5983. border-width:0px;
  5984. position:absolute;
  5985. left:0px;
  5986. top:0px;
  5987. width:68px;
  5988. height:35px;
  5989. }
  5990. #u4233 {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:315px;
  5994. top:253px;
  5995. width:68px;
  5996. height:35px;
  5997. display:flex;
  5998. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5999. font-weight:400;
  6000. font-style:normal;
  6001. font-size:12px;
  6002. color:#606266;
  6003. }
  6004. #u4233 .text {
  6005. position:absolute;
  6006. align-self:center;
  6007. padding:2px 2px 2px 0px;
  6008. box-sizing:border-box;
  6009. width:100%;
  6010. }
  6011. #u4233_text {
  6012. border-width:0px;
  6013. word-wrap:break-word;
  6014. text-transform:none;
  6015. visibility:hidden;
  6016. }
  6017. #u4234_img {
  6018. border-width:0px;
  6019. position:absolute;
  6020. left:0px;
  6021. top:0px;
  6022. width:76px;
  6023. height:35px;
  6024. }
  6025. #u4234 {
  6026. border-width:0px;
  6027. position:absolute;
  6028. left:383px;
  6029. top:253px;
  6030. width:76px;
  6031. height:35px;
  6032. display:flex;
  6033. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6034. font-weight:400;
  6035. font-style:normal;
  6036. font-size:12px;
  6037. color:#606266;
  6038. }
  6039. #u4234 .text {
  6040. position:absolute;
  6041. align-self:center;
  6042. padding:2px 2px 2px 0px;
  6043. box-sizing:border-box;
  6044. width:100%;
  6045. }
  6046. #u4234_text {
  6047. border-width:0px;
  6048. word-wrap:break-word;
  6049. text-transform:none;
  6050. visibility:hidden;
  6051. }
  6052. #u4235_img {
  6053. border-width:0px;
  6054. position:absolute;
  6055. left:0px;
  6056. top:0px;
  6057. width:85px;
  6058. height:35px;
  6059. }
  6060. #u4235 {
  6061. border-width:0px;
  6062. position:absolute;
  6063. left:459px;
  6064. top:253px;
  6065. width:85px;
  6066. height:35px;
  6067. display:flex;
  6068. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6069. font-weight:400;
  6070. font-style:normal;
  6071. font-size:12px;
  6072. color:#606266;
  6073. }
  6074. #u4235 .text {
  6075. position:absolute;
  6076. align-self:center;
  6077. padding:2px 2px 2px 0px;
  6078. box-sizing:border-box;
  6079. width:100%;
  6080. }
  6081. #u4235_text {
  6082. border-width:0px;
  6083. word-wrap:break-word;
  6084. text-transform:none;
  6085. visibility:hidden;
  6086. }
  6087. #u4236_img {
  6088. border-width:0px;
  6089. position:absolute;
  6090. left:0px;
  6091. top:0px;
  6092. width:85px;
  6093. height:35px;
  6094. }
  6095. #u4236 {
  6096. border-width:0px;
  6097. position:absolute;
  6098. left:544px;
  6099. top:253px;
  6100. width:85px;
  6101. height:35px;
  6102. display:flex;
  6103. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6104. font-weight:400;
  6105. font-style:normal;
  6106. font-size:12px;
  6107. color:#606266;
  6108. }
  6109. #u4236 .text {
  6110. position:absolute;
  6111. align-self:center;
  6112. padding:2px 2px 2px 0px;
  6113. box-sizing:border-box;
  6114. width:100%;
  6115. }
  6116. #u4236_text {
  6117. border-width:0px;
  6118. word-wrap:break-word;
  6119. text-transform:none;
  6120. visibility:hidden;
  6121. }
  6122. #u4237_img {
  6123. border-width:0px;
  6124. position:absolute;
  6125. left:0px;
  6126. top:0px;
  6127. width:85px;
  6128. height:35px;
  6129. }
  6130. #u4237 {
  6131. border-width:0px;
  6132. position:absolute;
  6133. left:629px;
  6134. top:253px;
  6135. width:85px;
  6136. height:35px;
  6137. display:flex;
  6138. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6139. font-weight:400;
  6140. font-style:normal;
  6141. font-size:12px;
  6142. color:#606266;
  6143. }
  6144. #u4237 .text {
  6145. position:absolute;
  6146. align-self:center;
  6147. padding:2px 2px 2px 0px;
  6148. box-sizing:border-box;
  6149. width:100%;
  6150. }
  6151. #u4237_text {
  6152. border-width:0px;
  6153. word-wrap:break-word;
  6154. text-transform:none;
  6155. visibility:hidden;
  6156. }
  6157. #u4238_img {
  6158. border-width:0px;
  6159. position:absolute;
  6160. left:0px;
  6161. top:0px;
  6162. width:85px;
  6163. height:35px;
  6164. }
  6165. #u4238 {
  6166. border-width:0px;
  6167. position:absolute;
  6168. left:714px;
  6169. top:253px;
  6170. width:85px;
  6171. height:35px;
  6172. display:flex;
  6173. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6174. font-weight:400;
  6175. font-style:normal;
  6176. font-size:12px;
  6177. color:#606266;
  6178. }
  6179. #u4238 .text {
  6180. position:absolute;
  6181. align-self:center;
  6182. padding:2px 2px 2px 0px;
  6183. box-sizing:border-box;
  6184. width:100%;
  6185. }
  6186. #u4238_text {
  6187. border-width:0px;
  6188. word-wrap:break-word;
  6189. text-transform:none;
  6190. visibility:hidden;
  6191. }
  6192. #u4239_img {
  6193. border-width:0px;
  6194. position:absolute;
  6195. left:0px;
  6196. top:0px;
  6197. width:68px;
  6198. height:35px;
  6199. }
  6200. #u4239 {
  6201. border-width:0px;
  6202. position:absolute;
  6203. left:799px;
  6204. top:253px;
  6205. width:68px;
  6206. height:35px;
  6207. display:flex;
  6208. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6209. font-weight:400;
  6210. font-style:normal;
  6211. font-size:12px;
  6212. color:#606266;
  6213. }
  6214. #u4239 .text {
  6215. position:absolute;
  6216. align-self:center;
  6217. padding:2px 2px 2px 0px;
  6218. box-sizing:border-box;
  6219. width:100%;
  6220. }
  6221. #u4239_text {
  6222. border-width:0px;
  6223. word-wrap:break-word;
  6224. text-transform:none;
  6225. visibility:hidden;
  6226. }
  6227. #u4240_img {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:0px;
  6231. top:0px;
  6232. width:68px;
  6233. height:35px;
  6234. }
  6235. #u4240 {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:867px;
  6239. top:253px;
  6240. width:68px;
  6241. height:35px;
  6242. display:flex;
  6243. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6244. font-weight:400;
  6245. font-style:normal;
  6246. font-size:12px;
  6247. color:#606266;
  6248. }
  6249. #u4240 .text {
  6250. position:absolute;
  6251. align-self:center;
  6252. padding:2px 2px 2px 0px;
  6253. box-sizing:border-box;
  6254. width:100%;
  6255. }
  6256. #u4240_text {
  6257. border-width:0px;
  6258. word-wrap:break-word;
  6259. text-transform:none;
  6260. visibility:hidden;
  6261. }
  6262. #u4241_img {
  6263. border-width:0px;
  6264. position:absolute;
  6265. left:0px;
  6266. top:0px;
  6267. width:68px;
  6268. height:35px;
  6269. }
  6270. #u4241 {
  6271. border-width:0px;
  6272. position:absolute;
  6273. left:935px;
  6274. top:253px;
  6275. width:68px;
  6276. height:35px;
  6277. display:flex;
  6278. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6279. font-weight:400;
  6280. font-style:normal;
  6281. font-size:12px;
  6282. color:#606266;
  6283. }
  6284. #u4241 .text {
  6285. position:absolute;
  6286. align-self:center;
  6287. padding:2px 2px 2px 0px;
  6288. box-sizing:border-box;
  6289. width:100%;
  6290. }
  6291. #u4241_text {
  6292. border-width:0px;
  6293. word-wrap:break-word;
  6294. text-transform:none;
  6295. visibility:hidden;
  6296. }
  6297. #u4242_img {
  6298. border-width:0px;
  6299. position:absolute;
  6300. left:0px;
  6301. top:0px;
  6302. width:76px;
  6303. height:35px;
  6304. }
  6305. #u4242 {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:1003px;
  6309. top:253px;
  6310. width:76px;
  6311. height:35px;
  6312. display:flex;
  6313. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6314. font-weight:400;
  6315. font-style:normal;
  6316. font-size:12px;
  6317. color:#606266;
  6318. }
  6319. #u4242 .text {
  6320. position:absolute;
  6321. align-self:center;
  6322. padding:2px 2px 2px 0px;
  6323. box-sizing:border-box;
  6324. width:100%;
  6325. }
  6326. #u4242_text {
  6327. border-width:0px;
  6328. word-wrap:break-word;
  6329. text-transform:none;
  6330. visibility:hidden;
  6331. }
  6332. #u4243_img {
  6333. border-width:0px;
  6334. position:absolute;
  6335. left:0px;
  6336. top:0px;
  6337. width:76px;
  6338. height:35px;
  6339. }
  6340. #u4243 {
  6341. border-width:0px;
  6342. position:absolute;
  6343. left:1079px;
  6344. top:253px;
  6345. width:76px;
  6346. height:35px;
  6347. display:flex;
  6348. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6349. font-weight:400;
  6350. font-style:normal;
  6351. font-size:12px;
  6352. color:#606266;
  6353. }
  6354. #u4243 .text {
  6355. position:absolute;
  6356. align-self:center;
  6357. padding:2px 2px 2px 0px;
  6358. box-sizing:border-box;
  6359. width:100%;
  6360. }
  6361. #u4243_text {
  6362. border-width:0px;
  6363. word-wrap:break-word;
  6364. text-transform:none;
  6365. visibility:hidden;
  6366. }
  6367. #u4244_img {
  6368. border-width:0px;
  6369. position:absolute;
  6370. left:0px;
  6371. top:0px;
  6372. width:65px;
  6373. height:35px;
  6374. }
  6375. #u4244 {
  6376. border-width:0px;
  6377. position:absolute;
  6378. left:1155px;
  6379. top:253px;
  6380. width:65px;
  6381. height:35px;
  6382. display:flex;
  6383. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6384. font-weight:400;
  6385. font-style:normal;
  6386. font-size:12px;
  6387. color:#606266;
  6388. }
  6389. #u4244 .text {
  6390. position:absolute;
  6391. align-self:center;
  6392. padding:2px 2px 2px 0px;
  6393. box-sizing:border-box;
  6394. width:100%;
  6395. }
  6396. #u4244_text {
  6397. border-width:0px;
  6398. word-wrap:break-word;
  6399. text-transform:none;
  6400. visibility:hidden;
  6401. }
  6402. #u4245 {
  6403. border-width:0px;
  6404. position:absolute;
  6405. left:0px;
  6406. top:0px;
  6407. width:0px;
  6408. height:0px;
  6409. }
  6410. #u4246_div {
  6411. border-width:0px;
  6412. position:absolute;
  6413. left:0px;
  6414. top:0px;
  6415. width:140px;
  6416. height:30px;
  6417. background:inherit;
  6418. background-color:rgba(255, 255, 255, 1);
  6419. box-sizing:border-box;
  6420. border-width:1px;
  6421. border-style:solid;
  6422. border-color:rgba(201, 201, 201, 1);
  6423. border-radius:4px;
  6424. -moz-box-shadow:none;
  6425. -webkit-box-shadow:none;
  6426. box-shadow:none;
  6427. font-family:'Microsoft YaHei', sans-serif;
  6428. font-weight:400;
  6429. font-style:normal;
  6430. font-size:14px;
  6431. color:#CCCCCC;
  6432. text-align:left;
  6433. }
  6434. #u4246 {
  6435. border-width:0px;
  6436. position:absolute;
  6437. left:350px;
  6438. top:101px;
  6439. width:140px;
  6440. height:30px;
  6441. display:flex;
  6442. font-family:'Microsoft YaHei', sans-serif;
  6443. font-weight:400;
  6444. font-style:normal;
  6445. font-size:14px;
  6446. color:#CCCCCC;
  6447. text-align:left;
  6448. }
  6449. #u4246 .text {
  6450. position:absolute;
  6451. align-self:center;
  6452. padding:2px 8px 2px 8px;
  6453. box-sizing:border-box;
  6454. width:100%;
  6455. }
  6456. #u4246_text {
  6457. border-width:0px;
  6458. word-wrap:break-word;
  6459. text-transform:none;
  6460. visibility:hidden;
  6461. }
  6462. #u4247_input {
  6463. position:absolute;
  6464. left:0px;
  6465. top:0px;
  6466. width:127px;
  6467. height:25px;
  6468. padding:2px 2px 2px 2px;
  6469. font-family:'Microsoft YaHei', sans-serif;
  6470. font-weight:400;
  6471. font-style:normal;
  6472. font-size:10px;
  6473. letter-spacing:normal;
  6474. color:#000000;
  6475. vertical-align:none;
  6476. text-align:left;
  6477. text-transform:none;
  6478. background-color:transparent;
  6479. border-color:transparent;
  6480. }
  6481. #u4247_input.disabled {
  6482. position:absolute;
  6483. left:0px;
  6484. top:0px;
  6485. width:127px;
  6486. height:25px;
  6487. padding:2px 2px 2px 2px;
  6488. font-family:'Microsoft YaHei', sans-serif;
  6489. font-weight:400;
  6490. font-style:normal;
  6491. font-size:10px;
  6492. letter-spacing:normal;
  6493. color:#000000;
  6494. vertical-align:none;
  6495. text-align:left;
  6496. text-transform:none;
  6497. background-color:transparent;
  6498. border-color:transparent;
  6499. }
  6500. #u4247_div {
  6501. border-width:0px;
  6502. position:absolute;
  6503. left:0px;
  6504. top:0px;
  6505. width:127px;
  6506. height:25px;
  6507. background:inherit;
  6508. background-color:rgba(255, 255, 255, 1);
  6509. border:none;
  6510. border-radius:0px;
  6511. -moz-box-shadow:none;
  6512. -webkit-box-shadow:none;
  6513. box-shadow:none;
  6514. font-family:'Microsoft YaHei', sans-serif;
  6515. font-weight:400;
  6516. font-style:normal;
  6517. font-size:10px;
  6518. }
  6519. #u4247 {
  6520. border-width:0px;
  6521. position:absolute;
  6522. left:358px;
  6523. top:102px;
  6524. width:127px;
  6525. height:25px;
  6526. display:flex;
  6527. font-family:'Microsoft YaHei', sans-serif;
  6528. font-weight:400;
  6529. font-style:normal;
  6530. font-size:10px;
  6531. }
  6532. #u4247 .text {
  6533. position:absolute;
  6534. align-self:center;
  6535. padding:2px 2px 2px 2px;
  6536. box-sizing:border-box;
  6537. width:100%;
  6538. }
  6539. #u4247_div.disabled {
  6540. border-width:0px;
  6541. position:absolute;
  6542. left:0px;
  6543. top:0px;
  6544. width:127px;
  6545. height:25px;
  6546. background:inherit;
  6547. background-color:rgba(240, 240, 240, 1);
  6548. border:none;
  6549. border-radius:0px;
  6550. -moz-box-shadow:none;
  6551. -webkit-box-shadow:none;
  6552. box-shadow:none;
  6553. font-family:'Microsoft YaHei', sans-serif;
  6554. font-weight:400;
  6555. font-style:normal;
  6556. font-size:10px;
  6557. }
  6558. #u4247.disabled {
  6559. }
  6560. #u4248 {
  6561. border-width:0px;
  6562. position:absolute;
  6563. left:0px;
  6564. top:0px;
  6565. width:0px;
  6566. height:0px;
  6567. }
  6568. #u4249_div {
  6569. border-width:0px;
  6570. position:absolute;
  6571. left:0px;
  6572. top:0px;
  6573. width:140px;
  6574. height:30px;
  6575. background:inherit;
  6576. background-color:rgba(255, 255, 255, 1);
  6577. box-sizing:border-box;
  6578. border-width:1px;
  6579. border-style:solid;
  6580. border-color:rgba(215, 215, 215, 1);
  6581. border-radius:4px;
  6582. -moz-box-shadow:none;
  6583. -webkit-box-shadow:none;
  6584. box-shadow:none;
  6585. font-size:11px;
  6586. }
  6587. #u4249 {
  6588. border-width:0px;
  6589. position:absolute;
  6590. left:350px;
  6591. top:141px;
  6592. width:140px;
  6593. height:30px;
  6594. display:flex;
  6595. font-size:11px;
  6596. }
  6597. #u4249 .text {
  6598. position:absolute;
  6599. align-self:center;
  6600. padding:2px 2px 2px 2px;
  6601. box-sizing:border-box;
  6602. width:100%;
  6603. }
  6604. #u4249_text {
  6605. border-width:0px;
  6606. word-wrap:break-word;
  6607. text-transform:none;
  6608. visibility:hidden;
  6609. }
  6610. #u4250_input {
  6611. position:absolute;
  6612. left:0px;
  6613. top:0px;
  6614. width:120px;
  6615. height:23px;
  6616. padding:2px 2px 2px 2px;
  6617. font-family:'ArialMT', 'Arial', sans-serif;
  6618. font-weight:400;
  6619. font-style:normal;
  6620. font-size:11px;
  6621. letter-spacing:normal;
  6622. color:#AAAAAA;
  6623. vertical-align:none;
  6624. text-align:left;
  6625. text-transform:none;
  6626. background-color:transparent;
  6627. border-color:transparent;
  6628. }
  6629. #u4250_input.disabled {
  6630. position:absolute;
  6631. left:0px;
  6632. top:0px;
  6633. width:120px;
  6634. height:23px;
  6635. padding:2px 2px 2px 2px;
  6636. font-family:'ArialMT', 'Arial', sans-serif;
  6637. font-weight:400;
  6638. font-style:normal;
  6639. font-size:11px;
  6640. letter-spacing:normal;
  6641. color:#AAAAAA;
  6642. vertical-align:none;
  6643. text-align:left;
  6644. text-transform:none;
  6645. background-color:transparent;
  6646. border-color:transparent;
  6647. }
  6648. #u4250_div {
  6649. border-width:0px;
  6650. position:absolute;
  6651. left:0px;
  6652. top:0px;
  6653. width:120px;
  6654. height:23px;
  6655. background:inherit;
  6656. background-color:rgba(255, 255, 255, 1);
  6657. border:none;
  6658. border-radius:0px;
  6659. -moz-box-shadow:none;
  6660. -webkit-box-shadow:none;
  6661. box-shadow:none;
  6662. font-size:11px;
  6663. color:#AAAAAA;
  6664. }
  6665. #u4250 {
  6666. border-width:0px;
  6667. position:absolute;
  6668. left:357px;
  6669. top:143px;
  6670. width:120px;
  6671. height:23px;
  6672. display:flex;
  6673. font-size:11px;
  6674. color:#AAAAAA;
  6675. }
  6676. #u4250 .text {
  6677. position:absolute;
  6678. align-self:flex-start;
  6679. padding:2px 2px 2px 2px;
  6680. box-sizing:border-box;
  6681. width:100%;
  6682. }
  6683. #u4250_div.disabled {
  6684. border-width:0px;
  6685. position:absolute;
  6686. left:0px;
  6687. top:0px;
  6688. width:120px;
  6689. height:23px;
  6690. background:inherit;
  6691. background-color:rgba(240, 240, 240, 1);
  6692. border:none;
  6693. border-radius:0px;
  6694. -moz-box-shadow:none;
  6695. -webkit-box-shadow:none;
  6696. box-shadow:none;
  6697. font-size:11px;
  6698. color:#AAAAAA;
  6699. }
  6700. #u4250.disabled {
  6701. }
  6702. .u4250_input_option {
  6703. font-size:11px;
  6704. }
  6705. #u4251_div {
  6706. border-width:0px;
  6707. position:absolute;
  6708. left:0px;
  6709. top:0px;
  6710. width:59px;
  6711. height:30px;
  6712. background:inherit;
  6713. background-color:rgba(0, 153, 255, 1);
  6714. box-sizing:border-box;
  6715. border-width:1px;
  6716. border-style:solid;
  6717. border-color:rgba(0, 153, 255, 1);
  6718. border-radius:4px;
  6719. -moz-box-shadow:none;
  6720. -webkit-box-shadow:none;
  6721. box-shadow:none;
  6722. font-family:'Microsoft YaHei', sans-serif;
  6723. font-weight:400;
  6724. font-style:normal;
  6725. font-size:14px;
  6726. color:#FFFFFF;
  6727. }
  6728. #u4251 {
  6729. border-width:0px;
  6730. position:absolute;
  6731. left:650px;
  6732. top:141px;
  6733. width:59px;
  6734. height:30px;
  6735. display:flex;
  6736. font-family:'Microsoft YaHei', sans-serif;
  6737. font-weight:400;
  6738. font-style:normal;
  6739. font-size:14px;
  6740. color:#FFFFFF;
  6741. }
  6742. #u4251 .text {
  6743. position:absolute;
  6744. align-self:center;
  6745. padding:5px 15px 5px 15px;
  6746. box-sizing:border-box;
  6747. width:100%;
  6748. }
  6749. #u4251_text {
  6750. border-width:0px;
  6751. white-space:nowrap;
  6752. text-transform:none;
  6753. }
  6754. #u4252 {
  6755. border-width:0px;
  6756. position:absolute;
  6757. left:0px;
  6758. top:0px;
  6759. width:0px;
  6760. height:0px;
  6761. }
  6762. #u4253_div {
  6763. border-width:0px;
  6764. position:absolute;
  6765. left:0px;
  6766. top:0px;
  6767. width:140px;
  6768. height:30px;
  6769. background:inherit;
  6770. background-color:rgba(255, 255, 255, 1);
  6771. box-sizing:border-box;
  6772. border-width:1px;
  6773. border-style:solid;
  6774. border-color:rgba(215, 215, 215, 1);
  6775. border-radius:4px;
  6776. -moz-box-shadow:none;
  6777. -webkit-box-shadow:none;
  6778. box-shadow:none;
  6779. font-size:11px;
  6780. }
  6781. #u4253 {
  6782. border-width:0px;
  6783. position:absolute;
  6784. left:500px;
  6785. top:141px;
  6786. width:140px;
  6787. height:30px;
  6788. display:flex;
  6789. font-size:11px;
  6790. }
  6791. #u4253 .text {
  6792. position:absolute;
  6793. align-self:center;
  6794. padding:2px 2px 2px 2px;
  6795. box-sizing:border-box;
  6796. width:100%;
  6797. }
  6798. #u4253_text {
  6799. border-width:0px;
  6800. word-wrap:break-word;
  6801. text-transform:none;
  6802. visibility:hidden;
  6803. }
  6804. #u4254_input {
  6805. position:absolute;
  6806. left:0px;
  6807. top:0px;
  6808. width:123px;
  6809. height:23px;
  6810. padding:2px 2px 2px 2px;
  6811. font-family:'ArialMT', 'Arial', sans-serif;
  6812. font-weight:400;
  6813. font-style:normal;
  6814. font-size:11px;
  6815. letter-spacing:normal;
  6816. color:#AAAAAA;
  6817. vertical-align:none;
  6818. text-align:left;
  6819. text-transform:none;
  6820. background-color:transparent;
  6821. border-color:transparent;
  6822. }
  6823. #u4254_input.disabled {
  6824. position:absolute;
  6825. left:0px;
  6826. top:0px;
  6827. width:123px;
  6828. height:23px;
  6829. padding:2px 2px 2px 2px;
  6830. font-family:'ArialMT', 'Arial', sans-serif;
  6831. font-weight:400;
  6832. font-style:normal;
  6833. font-size:11px;
  6834. letter-spacing:normal;
  6835. color:#AAAAAA;
  6836. vertical-align:none;
  6837. text-align:left;
  6838. text-transform:none;
  6839. background-color:transparent;
  6840. border-color:transparent;
  6841. }
  6842. #u4254_div {
  6843. border-width:0px;
  6844. position:absolute;
  6845. left:0px;
  6846. top:0px;
  6847. width:123px;
  6848. height:23px;
  6849. background:inherit;
  6850. background-color:rgba(255, 255, 255, 1);
  6851. border:none;
  6852. border-radius:0px;
  6853. -moz-box-shadow:none;
  6854. -webkit-box-shadow:none;
  6855. box-shadow:none;
  6856. font-size:11px;
  6857. color:#AAAAAA;
  6858. }
  6859. #u4254 {
  6860. border-width:0px;
  6861. position:absolute;
  6862. left:506px;
  6863. top:143px;
  6864. width:123px;
  6865. height:23px;
  6866. display:flex;
  6867. font-size:11px;
  6868. color:#AAAAAA;
  6869. }
  6870. #u4254 .text {
  6871. position:absolute;
  6872. align-self:flex-start;
  6873. padding:2px 2px 2px 2px;
  6874. box-sizing:border-box;
  6875. width:100%;
  6876. }
  6877. #u4254_div.disabled {
  6878. border-width:0px;
  6879. position:absolute;
  6880. left:0px;
  6881. top:0px;
  6882. width:123px;
  6883. height:23px;
  6884. background:inherit;
  6885. background-color:rgba(240, 240, 240, 1);
  6886. border:none;
  6887. border-radius:0px;
  6888. -moz-box-shadow:none;
  6889. -webkit-box-shadow:none;
  6890. box-shadow:none;
  6891. font-size:11px;
  6892. color:#AAAAAA;
  6893. }
  6894. #u4254.disabled {
  6895. }
  6896. .u4254_input_option {
  6897. font-size:11px;
  6898. }
  6899. #u4255 {
  6900. border-width:0px;
  6901. position:absolute;
  6902. left:0px;
  6903. top:0px;
  6904. width:0px;
  6905. height:0px;
  6906. }
  6907. #u4256_div {
  6908. border-width:0px;
  6909. position:absolute;
  6910. left:0px;
  6911. top:0px;
  6912. width:140px;
  6913. height:30px;
  6914. background:inherit;
  6915. background-color:rgba(255, 255, 255, 1);
  6916. box-sizing:border-box;
  6917. border-width:1px;
  6918. border-style:solid;
  6919. border-color:rgba(215, 215, 215, 1);
  6920. border-radius:4px;
  6921. -moz-box-shadow:none;
  6922. -webkit-box-shadow:none;
  6923. box-shadow:none;
  6924. font-size:11px;
  6925. }
  6926. #u4256 {
  6927. border-width:0px;
  6928. position:absolute;
  6929. left:1100px;
  6930. top:101px;
  6931. width:140px;
  6932. height:30px;
  6933. display:flex;
  6934. font-size:11px;
  6935. }
  6936. #u4256 .text {
  6937. position:absolute;
  6938. align-self:center;
  6939. padding:2px 2px 2px 2px;
  6940. box-sizing:border-box;
  6941. width:100%;
  6942. }
  6943. #u4256_text {
  6944. border-width:0px;
  6945. word-wrap:break-word;
  6946. text-transform:none;
  6947. visibility:hidden;
  6948. }
  6949. #u4257_input {
  6950. position:absolute;
  6951. left:0px;
  6952. top:0px;
  6953. width:120px;
  6954. height:23px;
  6955. padding:2px 2px 2px 2px;
  6956. font-family:'ArialMT', 'Arial', sans-serif;
  6957. font-weight:400;
  6958. font-style:normal;
  6959. font-size:11px;
  6960. letter-spacing:normal;
  6961. color:#AAAAAA;
  6962. vertical-align:none;
  6963. text-align:left;
  6964. text-transform:none;
  6965. background-color:transparent;
  6966. border-color:transparent;
  6967. }
  6968. #u4257_input.disabled {
  6969. position:absolute;
  6970. left:0px;
  6971. top:0px;
  6972. width:120px;
  6973. height:23px;
  6974. padding:2px 2px 2px 2px;
  6975. font-family:'ArialMT', 'Arial', sans-serif;
  6976. font-weight:400;
  6977. font-style:normal;
  6978. font-size:11px;
  6979. letter-spacing:normal;
  6980. color:#AAAAAA;
  6981. vertical-align:none;
  6982. text-align:left;
  6983. text-transform:none;
  6984. background-color:transparent;
  6985. border-color:transparent;
  6986. }
  6987. #u4257_div {
  6988. border-width:0px;
  6989. position:absolute;
  6990. left:0px;
  6991. top:0px;
  6992. width:120px;
  6993. height:23px;
  6994. background:inherit;
  6995. background-color:rgba(255, 255, 255, 1);
  6996. border:none;
  6997. border-radius:0px;
  6998. -moz-box-shadow:none;
  6999. -webkit-box-shadow:none;
  7000. box-shadow:none;
  7001. font-size:11px;
  7002. color:#AAAAAA;
  7003. }
  7004. #u4257 {
  7005. border-width:0px;
  7006. position:absolute;
  7007. left:1107px;
  7008. top:103px;
  7009. width:120px;
  7010. height:23px;
  7011. display:flex;
  7012. font-size:11px;
  7013. color:#AAAAAA;
  7014. }
  7015. #u4257 .text {
  7016. position:absolute;
  7017. align-self:flex-start;
  7018. padding:2px 2px 2px 2px;
  7019. box-sizing:border-box;
  7020. width:100%;
  7021. }
  7022. #u4257_div.disabled {
  7023. border-width:0px;
  7024. position:absolute;
  7025. left:0px;
  7026. top:0px;
  7027. width:120px;
  7028. height:23px;
  7029. background:inherit;
  7030. background-color:rgba(240, 240, 240, 1);
  7031. border:none;
  7032. border-radius:0px;
  7033. -moz-box-shadow:none;
  7034. -webkit-box-shadow:none;
  7035. box-shadow:none;
  7036. font-size:11px;
  7037. color:#AAAAAA;
  7038. }
  7039. #u4257.disabled {
  7040. }
  7041. .u4257_input_option {
  7042. font-size:11px;
  7043. }
  7044. #u4258 {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:0px;
  7048. top:0px;
  7049. width:0px;
  7050. height:0px;
  7051. }
  7052. #u4259_div {
  7053. border-width:0px;
  7054. position:absolute;
  7055. left:0px;
  7056. top:0px;
  7057. width:140px;
  7058. height:30px;
  7059. background:inherit;
  7060. background-color:rgba(255, 255, 255, 1);
  7061. box-sizing:border-box;
  7062. border-width:1px;
  7063. border-style:solid;
  7064. border-color:rgba(215, 215, 215, 1);
  7065. border-radius:4px;
  7066. -moz-box-shadow:none;
  7067. -webkit-box-shadow:none;
  7068. box-shadow:none;
  7069. font-size:11px;
  7070. }
  7071. #u4259 {
  7072. border-width:0px;
  7073. position:absolute;
  7074. left:800px;
  7075. top:101px;
  7076. width:140px;
  7077. height:30px;
  7078. display:flex;
  7079. font-size:11px;
  7080. }
  7081. #u4259 .text {
  7082. position:absolute;
  7083. align-self:center;
  7084. padding:2px 2px 2px 2px;
  7085. box-sizing:border-box;
  7086. width:100%;
  7087. }
  7088. #u4259_text {
  7089. border-width:0px;
  7090. word-wrap:break-word;
  7091. text-transform:none;
  7092. visibility:hidden;
  7093. }
  7094. #u4260_input {
  7095. position:absolute;
  7096. left:0px;
  7097. top:0px;
  7098. width:120px;
  7099. height:23px;
  7100. padding:2px 2px 2px 2px;
  7101. font-family:'ArialMT', 'Arial', sans-serif;
  7102. font-weight:400;
  7103. font-style:normal;
  7104. font-size:11px;
  7105. letter-spacing:normal;
  7106. color:#AAAAAA;
  7107. vertical-align:none;
  7108. text-align:left;
  7109. text-transform:none;
  7110. background-color:transparent;
  7111. border-color:transparent;
  7112. }
  7113. #u4260_input.disabled {
  7114. position:absolute;
  7115. left:0px;
  7116. top:0px;
  7117. width:120px;
  7118. height:23px;
  7119. padding:2px 2px 2px 2px;
  7120. font-family:'ArialMT', 'Arial', sans-serif;
  7121. font-weight:400;
  7122. font-style:normal;
  7123. font-size:11px;
  7124. letter-spacing:normal;
  7125. color:#AAAAAA;
  7126. vertical-align:none;
  7127. text-align:left;
  7128. text-transform:none;
  7129. background-color:transparent;
  7130. border-color:transparent;
  7131. }
  7132. #u4260_div {
  7133. border-width:0px;
  7134. position:absolute;
  7135. left:0px;
  7136. top:0px;
  7137. width:120px;
  7138. height:23px;
  7139. background:inherit;
  7140. background-color:rgba(255, 255, 255, 1);
  7141. border:none;
  7142. border-radius:0px;
  7143. -moz-box-shadow:none;
  7144. -webkit-box-shadow:none;
  7145. box-shadow:none;
  7146. font-size:11px;
  7147. color:#AAAAAA;
  7148. }
  7149. #u4260 {
  7150. border-width:0px;
  7151. position:absolute;
  7152. left:807px;
  7153. top:103px;
  7154. width:120px;
  7155. height:23px;
  7156. display:flex;
  7157. font-size:11px;
  7158. color:#AAAAAA;
  7159. }
  7160. #u4260 .text {
  7161. position:absolute;
  7162. align-self:flex-start;
  7163. padding:2px 2px 2px 2px;
  7164. box-sizing:border-box;
  7165. width:100%;
  7166. }
  7167. #u4260_div.disabled {
  7168. border-width:0px;
  7169. position:absolute;
  7170. left:0px;
  7171. top:0px;
  7172. width:120px;
  7173. height:23px;
  7174. background:inherit;
  7175. background-color:rgba(240, 240, 240, 1);
  7176. border:none;
  7177. border-radius:0px;
  7178. -moz-box-shadow:none;
  7179. -webkit-box-shadow:none;
  7180. box-shadow:none;
  7181. font-size:11px;
  7182. color:#AAAAAA;
  7183. }
  7184. #u4260.disabled {
  7185. }
  7186. .u4260_input_option {
  7187. font-size:11px;
  7188. }
  7189. #u4261 {
  7190. border-width:0px;
  7191. position:absolute;
  7192. left:0px;
  7193. top:0px;
  7194. width:0px;
  7195. height:0px;
  7196. }
  7197. #u4262_div {
  7198. border-width:0px;
  7199. position:absolute;
  7200. left:0px;
  7201. top:0px;
  7202. width:140px;
  7203. height:30px;
  7204. background:inherit;
  7205. background-color:rgba(255, 255, 255, 1);
  7206. box-sizing:border-box;
  7207. border-width:1px;
  7208. border-style:solid;
  7209. border-color:rgba(201, 201, 201, 1);
  7210. border-radius:4px;
  7211. -moz-box-shadow:none;
  7212. -webkit-box-shadow:none;
  7213. box-shadow:none;
  7214. font-family:'Microsoft YaHei', sans-serif;
  7215. font-weight:400;
  7216. font-style:normal;
  7217. font-size:14px;
  7218. color:#CCCCCC;
  7219. text-align:left;
  7220. }
  7221. #u4262 {
  7222. border-width:0px;
  7223. position:absolute;
  7224. left:500px;
  7225. top:101px;
  7226. width:140px;
  7227. height:30px;
  7228. display:flex;
  7229. font-family:'Microsoft YaHei', sans-serif;
  7230. font-weight:400;
  7231. font-style:normal;
  7232. font-size:14px;
  7233. color:#CCCCCC;
  7234. text-align:left;
  7235. }
  7236. #u4262 .text {
  7237. position:absolute;
  7238. align-self:center;
  7239. padding:2px 8px 2px 8px;
  7240. box-sizing:border-box;
  7241. width:100%;
  7242. }
  7243. #u4262_text {
  7244. border-width:0px;
  7245. word-wrap:break-word;
  7246. text-transform:none;
  7247. visibility:hidden;
  7248. }
  7249. #u4263_input {
  7250. position:absolute;
  7251. left:0px;
  7252. top:0px;
  7253. width:127px;
  7254. height:25px;
  7255. padding:2px 2px 2px 2px;
  7256. font-family:'Microsoft YaHei', sans-serif;
  7257. font-weight:400;
  7258. font-style:normal;
  7259. font-size:10px;
  7260. letter-spacing:normal;
  7261. color:#000000;
  7262. vertical-align:none;
  7263. text-align:left;
  7264. text-transform:none;
  7265. background-color:transparent;
  7266. border-color:transparent;
  7267. }
  7268. #u4263_input.disabled {
  7269. position:absolute;
  7270. left:0px;
  7271. top:0px;
  7272. width:127px;
  7273. height:25px;
  7274. padding:2px 2px 2px 2px;
  7275. font-family:'Microsoft YaHei', sans-serif;
  7276. font-weight:400;
  7277. font-style:normal;
  7278. font-size:10px;
  7279. letter-spacing:normal;
  7280. color:#000000;
  7281. vertical-align:none;
  7282. text-align:left;
  7283. text-transform:none;
  7284. background-color:transparent;
  7285. border-color:transparent;
  7286. }
  7287. #u4263_div {
  7288. border-width:0px;
  7289. position:absolute;
  7290. left:0px;
  7291. top:0px;
  7292. width:127px;
  7293. height:25px;
  7294. background:inherit;
  7295. background-color:rgba(255, 255, 255, 1);
  7296. border:none;
  7297. border-radius:0px;
  7298. -moz-box-shadow:none;
  7299. -webkit-box-shadow:none;
  7300. box-shadow:none;
  7301. font-family:'Microsoft YaHei', sans-serif;
  7302. font-weight:400;
  7303. font-style:normal;
  7304. font-size:10px;
  7305. }
  7306. #u4263 {
  7307. border-width:0px;
  7308. position:absolute;
  7309. left:508px;
  7310. top:102px;
  7311. width:127px;
  7312. height:25px;
  7313. display:flex;
  7314. font-family:'Microsoft YaHei', sans-serif;
  7315. font-weight:400;
  7316. font-style:normal;
  7317. font-size:10px;
  7318. }
  7319. #u4263 .text {
  7320. position:absolute;
  7321. align-self:center;
  7322. padding:2px 2px 2px 2px;
  7323. box-sizing:border-box;
  7324. width:100%;
  7325. }
  7326. #u4263_div.disabled {
  7327. border-width:0px;
  7328. position:absolute;
  7329. left:0px;
  7330. top:0px;
  7331. width:127px;
  7332. height:25px;
  7333. background:inherit;
  7334. background-color:rgba(240, 240, 240, 1);
  7335. border:none;
  7336. border-radius:0px;
  7337. -moz-box-shadow:none;
  7338. -webkit-box-shadow:none;
  7339. box-shadow:none;
  7340. font-family:'Microsoft YaHei', sans-serif;
  7341. font-weight:400;
  7342. font-style:normal;
  7343. font-size:10px;
  7344. }
  7345. #u4263.disabled {
  7346. }
  7347. #u4264 {
  7348. border-width:0px;
  7349. position:absolute;
  7350. left:0px;
  7351. top:0px;
  7352. width:0px;
  7353. height:0px;
  7354. }
  7355. #u4265_div {
  7356. border-width:0px;
  7357. position:absolute;
  7358. left:0px;
  7359. top:0px;
  7360. width:140px;
  7361. height:30px;
  7362. background:inherit;
  7363. background-color:rgba(255, 255, 255, 1);
  7364. box-sizing:border-box;
  7365. border-width:1px;
  7366. border-style:solid;
  7367. border-color:rgba(215, 215, 215, 1);
  7368. border-radius:4px;
  7369. -moz-box-shadow:none;
  7370. -webkit-box-shadow:none;
  7371. box-shadow:none;
  7372. font-size:11px;
  7373. }
  7374. #u4265 {
  7375. border-width:0px;
  7376. position:absolute;
  7377. left:650px;
  7378. top:101px;
  7379. width:140px;
  7380. height:30px;
  7381. display:flex;
  7382. font-size:11px;
  7383. }
  7384. #u4265 .text {
  7385. position:absolute;
  7386. align-self:center;
  7387. padding:2px 2px 2px 2px;
  7388. box-sizing:border-box;
  7389. width:100%;
  7390. }
  7391. #u4265_text {
  7392. border-width:0px;
  7393. word-wrap:break-word;
  7394. text-transform:none;
  7395. visibility:hidden;
  7396. }
  7397. #u4266_input {
  7398. position:absolute;
  7399. left:0px;
  7400. top:0px;
  7401. width:120px;
  7402. height:23px;
  7403. padding:2px 2px 2px 2px;
  7404. font-family:'ArialMT', 'Arial', sans-serif;
  7405. font-weight:400;
  7406. font-style:normal;
  7407. font-size:11px;
  7408. letter-spacing:normal;
  7409. color:#AAAAAA;
  7410. vertical-align:none;
  7411. text-align:left;
  7412. text-transform:none;
  7413. background-color:transparent;
  7414. border-color:transparent;
  7415. }
  7416. #u4266_input.disabled {
  7417. position:absolute;
  7418. left:0px;
  7419. top:0px;
  7420. width:120px;
  7421. height:23px;
  7422. padding:2px 2px 2px 2px;
  7423. font-family:'ArialMT', 'Arial', sans-serif;
  7424. font-weight:400;
  7425. font-style:normal;
  7426. font-size:11px;
  7427. letter-spacing:normal;
  7428. color:#AAAAAA;
  7429. vertical-align:none;
  7430. text-align:left;
  7431. text-transform:none;
  7432. background-color:transparent;
  7433. border-color:transparent;
  7434. }
  7435. #u4266_div {
  7436. border-width:0px;
  7437. position:absolute;
  7438. left:0px;
  7439. top:0px;
  7440. width:120px;
  7441. height:23px;
  7442. background:inherit;
  7443. background-color:rgba(255, 255, 255, 1);
  7444. border:none;
  7445. border-radius:0px;
  7446. -moz-box-shadow:none;
  7447. -webkit-box-shadow:none;
  7448. box-shadow:none;
  7449. font-size:11px;
  7450. color:#AAAAAA;
  7451. }
  7452. #u4266 {
  7453. border-width:0px;
  7454. position:absolute;
  7455. left:657px;
  7456. top:103px;
  7457. width:120px;
  7458. height:23px;
  7459. display:flex;
  7460. font-size:11px;
  7461. color:#AAAAAA;
  7462. }
  7463. #u4266 .text {
  7464. position:absolute;
  7465. align-self:flex-start;
  7466. padding:2px 2px 2px 2px;
  7467. box-sizing:border-box;
  7468. width:100%;
  7469. }
  7470. #u4266_div.disabled {
  7471. border-width:0px;
  7472. position:absolute;
  7473. left:0px;
  7474. top:0px;
  7475. width:120px;
  7476. height:23px;
  7477. background:inherit;
  7478. background-color:rgba(240, 240, 240, 1);
  7479. border:none;
  7480. border-radius:0px;
  7481. -moz-box-shadow:none;
  7482. -webkit-box-shadow:none;
  7483. box-shadow:none;
  7484. font-size:11px;
  7485. color:#AAAAAA;
  7486. }
  7487. #u4266.disabled {
  7488. }
  7489. .u4266_input_option {
  7490. font-size:11px;
  7491. }
  7492. #u4267_div {
  7493. border-width:0px;
  7494. position:absolute;
  7495. left:0px;
  7496. top:0px;
  7497. width:55px;
  7498. height:30px;
  7499. background:inherit;
  7500. background-color:rgba(255, 255, 255, 1);
  7501. box-sizing:border-box;
  7502. border-width:1px;
  7503. border-style:solid;
  7504. border-color:rgba(170, 170, 170, 1);
  7505. border-radius:4px;
  7506. -moz-box-shadow:none;
  7507. -webkit-box-shadow:none;
  7508. box-shadow:none;
  7509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7510. font-weight:400;
  7511. font-style:normal;
  7512. font-size:12px;
  7513. color:#555555;
  7514. }
  7515. #u4267 {
  7516. border-width:0px;
  7517. position:absolute;
  7518. left:719px;
  7519. top:141px;
  7520. width:55px;
  7521. height:30px;
  7522. display:flex;
  7523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7524. font-weight:400;
  7525. font-style:normal;
  7526. font-size:12px;
  7527. color:#555555;
  7528. }
  7529. #u4267 .text {
  7530. position:absolute;
  7531. align-self:center;
  7532. padding:5px 15px 5px 15px;
  7533. box-sizing:border-box;
  7534. width:100%;
  7535. }
  7536. #u4267_text {
  7537. border-width:0px;
  7538. white-space:nowrap;
  7539. text-transform:none;
  7540. }
  7541. #u4268_div {
  7542. border-width:0px;
  7543. position:absolute;
  7544. left:0px;
  7545. top:0px;
  7546. width:87px;
  7547. height:30px;
  7548. background:inherit;
  7549. background-color:rgba(0, 153, 255, 1);
  7550. box-sizing:border-box;
  7551. border-width:1px;
  7552. border-style:solid;
  7553. border-color:rgba(0, 153, 255, 1);
  7554. border-radius:4px;
  7555. -moz-box-shadow:none;
  7556. -webkit-box-shadow:none;
  7557. box-shadow:none;
  7558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7559. font-weight:400;
  7560. font-style:normal;
  7561. font-size:14px;
  7562. color:#FFFFFF;
  7563. }
  7564. #u4268 {
  7565. border-width:0px;
  7566. position:absolute;
  7567. left:350px;
  7568. top:191px;
  7569. width:87px;
  7570. height:30px;
  7571. display:flex;
  7572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7573. font-weight:400;
  7574. font-style:normal;
  7575. font-size:14px;
  7576. color:#FFFFFF;
  7577. }
  7578. #u4268 .text {
  7579. position:absolute;
  7580. align-self:center;
  7581. padding:5px 15px 5px 15px;
  7582. box-sizing:border-box;
  7583. width:100%;
  7584. }
  7585. #u4268_text {
  7586. border-width:0px;
  7587. white-space:nowrap;
  7588. text-transform:none;
  7589. }
  7590. #u4269 {
  7591. border-width:0px;
  7592. position:absolute;
  7593. left:0px;
  7594. top:0px;
  7595. width:0px;
  7596. height:0px;
  7597. }
  7598. #u4270_div {
  7599. border-width:0px;
  7600. position:absolute;
  7601. left:0px;
  7602. top:0px;
  7603. width:380px;
  7604. height:164px;
  7605. background:inherit;
  7606. background-color:rgba(255, 255, 255, 1);
  7607. border:none;
  7608. border-radius:4px;
  7609. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7610. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7611. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7612. font-family:'Microsoft YaHei', sans-serif;
  7613. font-weight:400;
  7614. font-style:normal;
  7615. }
  7616. #u4270 {
  7617. border-width:0px;
  7618. position:absolute;
  7619. left:705px;
  7620. top:430px;
  7621. width:380px;
  7622. height:164px;
  7623. display:flex;
  7624. font-family:'Microsoft YaHei', sans-serif;
  7625. font-weight:400;
  7626. font-style:normal;
  7627. }
  7628. #u4270 .text {
  7629. position:absolute;
  7630. align-self:center;
  7631. padding:2px 2px 2px 2px;
  7632. box-sizing:border-box;
  7633. width:100%;
  7634. }
  7635. #u4270_text {
  7636. border-width:0px;
  7637. word-wrap:break-word;
  7638. text-transform:none;
  7639. visibility:hidden;
  7640. }
  7641. #u4271_div {
  7642. border-width:0px;
  7643. position:absolute;
  7644. left:0px;
  7645. top:0px;
  7646. width:288px;
  7647. height:44px;
  7648. background:inherit;
  7649. background-color:rgba(255, 255, 255, 0);
  7650. border:none;
  7651. border-radius:0px;
  7652. -moz-box-shadow:none;
  7653. -webkit-box-shadow:none;
  7654. box-shadow:none;
  7655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7656. font-weight:400;
  7657. font-style:normal;
  7658. font-size:14px;
  7659. color:#666666;
  7660. line-height:22px;
  7661. }
  7662. #u4271 {
  7663. border-width:0px;
  7664. position:absolute;
  7665. left:765px;
  7666. top:485px;
  7667. width:288px;
  7668. height:44px;
  7669. display:flex;
  7670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7671. font-weight:400;
  7672. font-style:normal;
  7673. font-size:14px;
  7674. color:#666666;
  7675. line-height:22px;
  7676. }
  7677. #u4271 .text {
  7678. position:absolute;
  7679. align-self:flex-start;
  7680. padding:0px 0px 0px 0px;
  7681. box-sizing:border-box;
  7682. width:100%;
  7683. }
  7684. #u4271_text {
  7685. border-width:0px;
  7686. word-wrap:break-word;
  7687. text-transform:none;
  7688. }
  7689. #u4272_div {
  7690. border-width:0px;
  7691. position:absolute;
  7692. left:0px;
  7693. top:0px;
  7694. width:145px;
  7695. height:21px;
  7696. background:inherit;
  7697. background-color:rgba(255, 255, 255, 0);
  7698. border:none;
  7699. border-radius:0px;
  7700. -moz-box-shadow:none;
  7701. -webkit-box-shadow:none;
  7702. box-shadow:none;
  7703. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7704. font-weight:650;
  7705. font-style:normal;
  7706. font-size:18px;
  7707. color:#000000;
  7708. line-height:22px;
  7709. }
  7710. #u4272 {
  7711. border-width:0px;
  7712. position:absolute;
  7713. left:765px;
  7714. top:455px;
  7715. width:145px;
  7716. height:21px;
  7717. display:flex;
  7718. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7719. font-weight:650;
  7720. font-style:normal;
  7721. font-size:18px;
  7722. color:#000000;
  7723. line-height:22px;
  7724. }
  7725. #u4272 .text {
  7726. position:absolute;
  7727. align-self:flex-start;
  7728. padding:0px 0px 0px 0px;
  7729. box-sizing:border-box;
  7730. width:100%;
  7731. }
  7732. #u4272_text {
  7733. border-width:0px;
  7734. white-space:nowrap;
  7735. text-transform:none;
  7736. }
  7737. #u4273_div {
  7738. border-width:0px;
  7739. position:absolute;
  7740. left:0px;
  7741. top:0px;
  7742. width:61px;
  7743. height:32px;
  7744. background:inherit;
  7745. background-color:rgba(24, 144, 255, 1);
  7746. border:none;
  7747. border-radius:4px;
  7748. -moz-box-shadow:none;
  7749. -webkit-box-shadow:none;
  7750. box-shadow:none;
  7751. font-family:'Microsoft YaHei', sans-serif;
  7752. font-weight:400;
  7753. font-style:normal;
  7754. font-size:14px;
  7755. color:#FFFFFF;
  7756. }
  7757. #u4273 {
  7758. border-width:0px;
  7759. position:absolute;
  7760. left:1004px;
  7761. top:545px;
  7762. width:61px;
  7763. height:32px;
  7764. display:flex;
  7765. font-family:'Microsoft YaHei', sans-serif;
  7766. font-weight:400;
  7767. font-style:normal;
  7768. font-size:14px;
  7769. color:#FFFFFF;
  7770. }
  7771. #u4273 .text {
  7772. position:absolute;
  7773. align-self:center;
  7774. padding:2px 16px 2px 16px;
  7775. box-sizing:border-box;
  7776. width:100%;
  7777. }
  7778. #u4273_text {
  7779. border-width:0px;
  7780. white-space:nowrap;
  7781. text-transform:none;
  7782. }
  7783. #u4274_div {
  7784. border-width:0px;
  7785. position:absolute;
  7786. left:0px;
  7787. top:0px;
  7788. width:66px;
  7789. height:32px;
  7790. background:inherit;
  7791. background-color:rgba(255, 255, 255, 1);
  7792. box-sizing:border-box;
  7793. border-width:1px;
  7794. border-style:solid;
  7795. border-color:rgba(217, 217, 217, 1);
  7796. border-radius:4px;
  7797. -moz-box-shadow:none;
  7798. -webkit-box-shadow:none;
  7799. box-shadow:none;
  7800. font-family:'Microsoft YaHei', sans-serif;
  7801. font-weight:400;
  7802. font-style:normal;
  7803. font-size:14px;
  7804. color:rgba(0, 0, 0, 0.647058823529412);
  7805. line-height:21px;
  7806. }
  7807. #u4274 {
  7808. border-width:0px;
  7809. position:absolute;
  7810. left:925px;
  7811. top:545px;
  7812. width:66px;
  7813. height:32px;
  7814. display:flex;
  7815. font-family:'Microsoft YaHei', sans-serif;
  7816. font-weight:400;
  7817. font-style:normal;
  7818. font-size:14px;
  7819. color:rgba(0, 0, 0, 0.647058823529412);
  7820. line-height:21px;
  7821. }
  7822. #u4274 .text {
  7823. position:absolute;
  7824. align-self:center;
  7825. padding:2px 16px 2px 16px;
  7826. box-sizing:border-box;
  7827. width:100%;
  7828. }
  7829. #u4274_text {
  7830. border-width:0px;
  7831. white-space:nowrap;
  7832. text-transform:none;
  7833. }
  7834. #u4275_img {
  7835. border-width:0px;
  7836. position:absolute;
  7837. left:0px;
  7838. top:0px;
  7839. width:24px;
  7840. height:24px;
  7841. }
  7842. #u4275 {
  7843. border-width:0px;
  7844. position:absolute;
  7845. left:730px;
  7846. top:453px;
  7847. width:24px;
  7848. height:24px;
  7849. display:flex;
  7850. font-family:'Microsoft YaHei', sans-serif;
  7851. font-weight:400;
  7852. font-style:normal;
  7853. font-size:52px;
  7854. color:#FAAD14;
  7855. }
  7856. #u4275 .text {
  7857. position:absolute;
  7858. align-self:center;
  7859. padding:2px 2px 2px 2px;
  7860. box-sizing:border-box;
  7861. width:100%;
  7862. }
  7863. #u4275_text {
  7864. border-width:0px;
  7865. word-wrap:break-word;
  7866. text-transform:none;
  7867. visibility:hidden;
  7868. }
  7869. #u4276 {
  7870. border-width:0px;
  7871. position:absolute;
  7872. left:0px;
  7873. top:0px;
  7874. width:0px;
  7875. height:0px;
  7876. }
  7877. #u4277_div {
  7878. border-width:0px;
  7879. position:absolute;
  7880. left:0px;
  7881. top:0px;
  7882. width:380px;
  7883. height:164px;
  7884. background:inherit;
  7885. background-color:rgba(255, 255, 255, 1);
  7886. border:none;
  7887. border-radius:4px;
  7888. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7889. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7890. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7891. font-family:'Microsoft YaHei', sans-serif;
  7892. font-weight:400;
  7893. font-style:normal;
  7894. }
  7895. #u4277 {
  7896. border-width:0px;
  7897. position:absolute;
  7898. left:705px;
  7899. top:624px;
  7900. width:380px;
  7901. height:164px;
  7902. display:flex;
  7903. font-family:'Microsoft YaHei', sans-serif;
  7904. font-weight:400;
  7905. font-style:normal;
  7906. }
  7907. #u4277 .text {
  7908. position:absolute;
  7909. align-self:center;
  7910. padding:2px 2px 2px 2px;
  7911. box-sizing:border-box;
  7912. width:100%;
  7913. }
  7914. #u4277_text {
  7915. border-width:0px;
  7916. word-wrap:break-word;
  7917. text-transform:none;
  7918. visibility:hidden;
  7919. }
  7920. #u4278_div {
  7921. border-width:0px;
  7922. position:absolute;
  7923. left:0px;
  7924. top:0px;
  7925. width:288px;
  7926. height:44px;
  7927. background:inherit;
  7928. background-color:rgba(255, 255, 255, 0);
  7929. border:none;
  7930. border-radius:0px;
  7931. -moz-box-shadow:none;
  7932. -webkit-box-shadow:none;
  7933. box-shadow:none;
  7934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7935. font-weight:400;
  7936. font-style:normal;
  7937. font-size:14px;
  7938. color:#666666;
  7939. line-height:22px;
  7940. }
  7941. #u4278 {
  7942. border-width:0px;
  7943. position:absolute;
  7944. left:765px;
  7945. top:679px;
  7946. width:288px;
  7947. height:44px;
  7948. display:flex;
  7949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7950. font-weight:400;
  7951. font-style:normal;
  7952. font-size:14px;
  7953. color:#666666;
  7954. line-height:22px;
  7955. }
  7956. #u4278 .text {
  7957. position:absolute;
  7958. align-self:flex-start;
  7959. padding:0px 0px 0px 0px;
  7960. box-sizing:border-box;
  7961. width:100%;
  7962. }
  7963. #u4278_text {
  7964. border-width:0px;
  7965. word-wrap:break-word;
  7966. text-transform:none;
  7967. }
  7968. #u4279_div {
  7969. border-width:0px;
  7970. position:absolute;
  7971. left:0px;
  7972. top:0px;
  7973. width:145px;
  7974. height:21px;
  7975. background:inherit;
  7976. background-color:rgba(255, 255, 255, 0);
  7977. border:none;
  7978. border-radius:0px;
  7979. -moz-box-shadow:none;
  7980. -webkit-box-shadow:none;
  7981. box-shadow:none;
  7982. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7983. font-weight:650;
  7984. font-style:normal;
  7985. font-size:18px;
  7986. color:#000000;
  7987. line-height:22px;
  7988. }
  7989. #u4279 {
  7990. border-width:0px;
  7991. position:absolute;
  7992. left:765px;
  7993. top:649px;
  7994. width:145px;
  7995. height:21px;
  7996. display:flex;
  7997. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7998. font-weight:650;
  7999. font-style:normal;
  8000. font-size:18px;
  8001. color:#000000;
  8002. line-height:22px;
  8003. }
  8004. #u4279 .text {
  8005. position:absolute;
  8006. align-self:flex-start;
  8007. padding:0px 0px 0px 0px;
  8008. box-sizing:border-box;
  8009. width:100%;
  8010. }
  8011. #u4279_text {
  8012. border-width:0px;
  8013. white-space:nowrap;
  8014. text-transform:none;
  8015. }
  8016. #u4280_div {
  8017. border-width:0px;
  8018. position:absolute;
  8019. left:0px;
  8020. top:0px;
  8021. width:61px;
  8022. height:32px;
  8023. background:inherit;
  8024. background-color:rgba(24, 144, 255, 1);
  8025. border:none;
  8026. border-radius:4px;
  8027. -moz-box-shadow:none;
  8028. -webkit-box-shadow:none;
  8029. box-shadow:none;
  8030. font-family:'Microsoft YaHei', sans-serif;
  8031. font-weight:400;
  8032. font-style:normal;
  8033. font-size:14px;
  8034. color:#FFFFFF;
  8035. }
  8036. #u4280 {
  8037. border-width:0px;
  8038. position:absolute;
  8039. left:1004px;
  8040. top:739px;
  8041. width:61px;
  8042. height:32px;
  8043. display:flex;
  8044. font-family:'Microsoft YaHei', sans-serif;
  8045. font-weight:400;
  8046. font-style:normal;
  8047. font-size:14px;
  8048. color:#FFFFFF;
  8049. }
  8050. #u4280 .text {
  8051. position:absolute;
  8052. align-self:center;
  8053. padding:2px 16px 2px 16px;
  8054. box-sizing:border-box;
  8055. width:100%;
  8056. }
  8057. #u4280_text {
  8058. border-width:0px;
  8059. white-space:nowrap;
  8060. text-transform:none;
  8061. }
  8062. #u4281_div {
  8063. border-width:0px;
  8064. position:absolute;
  8065. left:0px;
  8066. top:0px;
  8067. width:66px;
  8068. height:32px;
  8069. background:inherit;
  8070. background-color:rgba(255, 255, 255, 1);
  8071. box-sizing:border-box;
  8072. border-width:1px;
  8073. border-style:solid;
  8074. border-color:rgba(217, 217, 217, 1);
  8075. border-radius:4px;
  8076. -moz-box-shadow:none;
  8077. -webkit-box-shadow:none;
  8078. box-shadow:none;
  8079. font-family:'Microsoft YaHei', sans-serif;
  8080. font-weight:400;
  8081. font-style:normal;
  8082. font-size:14px;
  8083. color:rgba(0, 0, 0, 0.647058823529412);
  8084. line-height:21px;
  8085. }
  8086. #u4281 {
  8087. border-width:0px;
  8088. position:absolute;
  8089. left:925px;
  8090. top:739px;
  8091. width:66px;
  8092. height:32px;
  8093. display:flex;
  8094. font-family:'Microsoft YaHei', sans-serif;
  8095. font-weight:400;
  8096. font-style:normal;
  8097. font-size:14px;
  8098. color:rgba(0, 0, 0, 0.647058823529412);
  8099. line-height:21px;
  8100. }
  8101. #u4281 .text {
  8102. position:absolute;
  8103. align-self:center;
  8104. padding:2px 16px 2px 16px;
  8105. box-sizing:border-box;
  8106. width:100%;
  8107. }
  8108. #u4281_text {
  8109. border-width:0px;
  8110. white-space:nowrap;
  8111. text-transform:none;
  8112. }
  8113. #u4282_img {
  8114. border-width:0px;
  8115. position:absolute;
  8116. left:0px;
  8117. top:0px;
  8118. width:24px;
  8119. height:24px;
  8120. }
  8121. #u4282 {
  8122. border-width:0px;
  8123. position:absolute;
  8124. left:730px;
  8125. top:647px;
  8126. width:24px;
  8127. height:24px;
  8128. display:flex;
  8129. font-family:'Microsoft YaHei', sans-serif;
  8130. font-weight:400;
  8131. font-style:normal;
  8132. font-size:52px;
  8133. color:#FAAD14;
  8134. }
  8135. #u4282 .text {
  8136. position:absolute;
  8137. align-self:center;
  8138. padding:2px 2px 2px 2px;
  8139. box-sizing:border-box;
  8140. width:100%;
  8141. }
  8142. #u4282_text {
  8143. border-width:0px;
  8144. word-wrap:break-word;
  8145. text-transform:none;
  8146. visibility:hidden;
  8147. }
  8148. #u4283_div {
  8149. border-width:0px;
  8150. position:absolute;
  8151. left:0px;
  8152. top:0px;
  8153. width:57px;
  8154. height:50px;
  8155. background:inherit;
  8156. background-color:rgba(255, 255, 255, 0);
  8157. border:none;
  8158. border-left:0px;
  8159. border-top:0px;
  8160. border-right:0px;
  8161. border-radius:0px;
  8162. border-bottom-right-radius:0px;
  8163. border-bottom-left-radius:0px;
  8164. -moz-box-shadow:none;
  8165. -webkit-box-shadow:none;
  8166. box-shadow:none;
  8167. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8168. font-weight:500;
  8169. font-style:normal;
  8170. }
  8171. #u4283 {
  8172. border-width:0px;
  8173. position:absolute;
  8174. left:350px;
  8175. top:51px;
  8176. width:57px;
  8177. height:50px;
  8178. display:flex;
  8179. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8180. font-weight:500;
  8181. font-style:normal;
  8182. }
  8183. #u4283 .text {
  8184. position:absolute;
  8185. align-self:center;
  8186. padding:0px 0px 0px 0px;
  8187. box-sizing:border-box;
  8188. width:100%;
  8189. }
  8190. #u4283_text {
  8191. border-width:0px;
  8192. white-space:nowrap;
  8193. text-transform:none;
  8194. }
  8195. #u4284 {
  8196. border-width:0px;
  8197. position:absolute;
  8198. left:0px;
  8199. top:0px;
  8200. width:0px;
  8201. height:0px;
  8202. }
  8203. #u4285_div {
  8204. border-width:0px;
  8205. position:absolute;
  8206. left:0px;
  8207. top:0px;
  8208. width:140px;
  8209. height:30px;
  8210. background:inherit;
  8211. background-color:rgba(255, 255, 255, 1);
  8212. box-sizing:border-box;
  8213. border-width:1px;
  8214. border-style:solid;
  8215. border-color:rgba(201, 201, 201, 1);
  8216. border-radius:4px;
  8217. -moz-box-shadow:none;
  8218. -webkit-box-shadow:none;
  8219. box-shadow:none;
  8220. font-family:'Microsoft YaHei', sans-serif;
  8221. font-weight:400;
  8222. font-style:normal;
  8223. font-size:14px;
  8224. color:#CCCCCC;
  8225. text-align:left;
  8226. }
  8227. #u4285 {
  8228. border-width:0px;
  8229. position:absolute;
  8230. left:950px;
  8231. top:101px;
  8232. width:140px;
  8233. height:30px;
  8234. display:flex;
  8235. font-family:'Microsoft YaHei', sans-serif;
  8236. font-weight:400;
  8237. font-style:normal;
  8238. font-size:14px;
  8239. color:#CCCCCC;
  8240. text-align:left;
  8241. }
  8242. #u4285 .text {
  8243. position:absolute;
  8244. align-self:center;
  8245. padding:2px 8px 2px 8px;
  8246. box-sizing:border-box;
  8247. width:100%;
  8248. }
  8249. #u4285_text {
  8250. border-width:0px;
  8251. word-wrap:break-word;
  8252. text-transform:none;
  8253. visibility:hidden;
  8254. }
  8255. #u4286_input {
  8256. position:absolute;
  8257. left:0px;
  8258. top:0px;
  8259. width:127px;
  8260. height:25px;
  8261. padding:2px 2px 2px 2px;
  8262. font-family:'Microsoft YaHei', sans-serif;
  8263. font-weight:400;
  8264. font-style:normal;
  8265. font-size:10px;
  8266. letter-spacing:normal;
  8267. color:#000000;
  8268. vertical-align:none;
  8269. text-align:left;
  8270. text-transform:none;
  8271. background-color:transparent;
  8272. border-color:transparent;
  8273. }
  8274. #u4286_input.disabled {
  8275. position:absolute;
  8276. left:0px;
  8277. top:0px;
  8278. width:127px;
  8279. height:25px;
  8280. padding:2px 2px 2px 2px;
  8281. font-family:'Microsoft YaHei', sans-serif;
  8282. font-weight:400;
  8283. font-style:normal;
  8284. font-size:10px;
  8285. letter-spacing:normal;
  8286. color:#000000;
  8287. vertical-align:none;
  8288. text-align:left;
  8289. text-transform:none;
  8290. background-color:transparent;
  8291. border-color:transparent;
  8292. }
  8293. #u4286_div {
  8294. border-width:0px;
  8295. position:absolute;
  8296. left:0px;
  8297. top:0px;
  8298. width:127px;
  8299. height:25px;
  8300. background:inherit;
  8301. background-color:rgba(255, 255, 255, 1);
  8302. border:none;
  8303. border-radius:0px;
  8304. -moz-box-shadow:none;
  8305. -webkit-box-shadow:none;
  8306. box-shadow:none;
  8307. font-family:'Microsoft YaHei', sans-serif;
  8308. font-weight:400;
  8309. font-style:normal;
  8310. font-size:10px;
  8311. }
  8312. #u4286 {
  8313. border-width:0px;
  8314. position:absolute;
  8315. left:958px;
  8316. top:102px;
  8317. width:127px;
  8318. height:25px;
  8319. display:flex;
  8320. font-family:'Microsoft YaHei', sans-serif;
  8321. font-weight:400;
  8322. font-style:normal;
  8323. font-size:10px;
  8324. }
  8325. #u4286 .text {
  8326. position:absolute;
  8327. align-self:center;
  8328. padding:2px 2px 2px 2px;
  8329. box-sizing:border-box;
  8330. width:100%;
  8331. }
  8332. #u4286_div.disabled {
  8333. border-width:0px;
  8334. position:absolute;
  8335. left:0px;
  8336. top:0px;
  8337. width:127px;
  8338. height:25px;
  8339. background:inherit;
  8340. background-color:rgba(240, 240, 240, 1);
  8341. border:none;
  8342. border-radius:0px;
  8343. -moz-box-shadow:none;
  8344. -webkit-box-shadow:none;
  8345. box-shadow:none;
  8346. font-family:'Microsoft YaHei', sans-serif;
  8347. font-weight:400;
  8348. font-style:normal;
  8349. font-size:10px;
  8350. }
  8351. #u4286.disabled {
  8352. }
  8353. #u4287 {
  8354. border-width:0px;
  8355. position:absolute;
  8356. left:0px;
  8357. top:0px;
  8358. width:0px;
  8359. height:0px;
  8360. }
  8361. #u4288_div {
  8362. border-width:0px;
  8363. position:absolute;
  8364. left:0px;
  8365. top:0px;
  8366. width:380px;
  8367. height:164px;
  8368. background:inherit;
  8369. background-color:rgba(255, 255, 255, 1);
  8370. border:none;
  8371. border-radius:4px;
  8372. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8373. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8374. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8375. font-family:'Microsoft YaHei', sans-serif;
  8376. font-weight:400;
  8377. font-style:normal;
  8378. }
  8379. #u4288 {
  8380. border-width:0px;
  8381. position:absolute;
  8382. left:705px;
  8383. top:823px;
  8384. width:380px;
  8385. height:164px;
  8386. display:flex;
  8387. font-family:'Microsoft YaHei', sans-serif;
  8388. font-weight:400;
  8389. font-style:normal;
  8390. }
  8391. #u4288 .text {
  8392. position:absolute;
  8393. align-self:center;
  8394. padding:2px 2px 2px 2px;
  8395. box-sizing:border-box;
  8396. width:100%;
  8397. }
  8398. #u4288_text {
  8399. border-width:0px;
  8400. word-wrap:break-word;
  8401. text-transform:none;
  8402. visibility:hidden;
  8403. }
  8404. #u4289_div {
  8405. border-width:0px;
  8406. position:absolute;
  8407. left:0px;
  8408. top:0px;
  8409. width:288px;
  8410. height:44px;
  8411. background:inherit;
  8412. background-color:rgba(255, 255, 255, 0);
  8413. border:none;
  8414. border-radius:0px;
  8415. -moz-box-shadow:none;
  8416. -webkit-box-shadow:none;
  8417. box-shadow:none;
  8418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8419. font-weight:400;
  8420. font-style:normal;
  8421. font-size:14px;
  8422. color:#666666;
  8423. line-height:22px;
  8424. }
  8425. #u4289 {
  8426. border-width:0px;
  8427. position:absolute;
  8428. left:765px;
  8429. top:878px;
  8430. width:288px;
  8431. height:44px;
  8432. display:flex;
  8433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8434. font-weight:400;
  8435. font-style:normal;
  8436. font-size:14px;
  8437. color:#666666;
  8438. line-height:22px;
  8439. }
  8440. #u4289 .text {
  8441. position:absolute;
  8442. align-self:flex-start;
  8443. padding:0px 0px 0px 0px;
  8444. box-sizing:border-box;
  8445. width:100%;
  8446. }
  8447. #u4289_text {
  8448. border-width:0px;
  8449. word-wrap:break-word;
  8450. text-transform:none;
  8451. }
  8452. #u4290_div {
  8453. border-width:0px;
  8454. position:absolute;
  8455. left:0px;
  8456. top:0px;
  8457. width:145px;
  8458. height:21px;
  8459. background:inherit;
  8460. background-color:rgba(255, 255, 255, 0);
  8461. border:none;
  8462. border-radius:0px;
  8463. -moz-box-shadow:none;
  8464. -webkit-box-shadow:none;
  8465. box-shadow:none;
  8466. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8467. font-weight:650;
  8468. font-style:normal;
  8469. font-size:18px;
  8470. color:#000000;
  8471. line-height:22px;
  8472. }
  8473. #u4290 {
  8474. border-width:0px;
  8475. position:absolute;
  8476. left:765px;
  8477. top:848px;
  8478. width:145px;
  8479. height:21px;
  8480. display:flex;
  8481. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8482. font-weight:650;
  8483. font-style:normal;
  8484. font-size:18px;
  8485. color:#000000;
  8486. line-height:22px;
  8487. }
  8488. #u4290 .text {
  8489. position:absolute;
  8490. align-self:flex-start;
  8491. padding:0px 0px 0px 0px;
  8492. box-sizing:border-box;
  8493. width:100%;
  8494. }
  8495. #u4290_text {
  8496. border-width:0px;
  8497. white-space:nowrap;
  8498. text-transform:none;
  8499. }
  8500. #u4291_div {
  8501. border-width:0px;
  8502. position:absolute;
  8503. left:0px;
  8504. top:0px;
  8505. width:61px;
  8506. height:32px;
  8507. background:inherit;
  8508. background-color:rgba(24, 144, 255, 1);
  8509. border:none;
  8510. border-radius:4px;
  8511. -moz-box-shadow:none;
  8512. -webkit-box-shadow:none;
  8513. box-shadow:none;
  8514. font-family:'Microsoft YaHei', sans-serif;
  8515. font-weight:400;
  8516. font-style:normal;
  8517. font-size:14px;
  8518. color:#FFFFFF;
  8519. }
  8520. #u4291 {
  8521. border-width:0px;
  8522. position:absolute;
  8523. left:1004px;
  8524. top:938px;
  8525. width:61px;
  8526. height:32px;
  8527. display:flex;
  8528. font-family:'Microsoft YaHei', sans-serif;
  8529. font-weight:400;
  8530. font-style:normal;
  8531. font-size:14px;
  8532. color:#FFFFFF;
  8533. }
  8534. #u4291 .text {
  8535. position:absolute;
  8536. align-self:center;
  8537. padding:2px 16px 2px 16px;
  8538. box-sizing:border-box;
  8539. width:100%;
  8540. }
  8541. #u4291_text {
  8542. border-width:0px;
  8543. white-space:nowrap;
  8544. text-transform:none;
  8545. }
  8546. #u4292_div {
  8547. border-width:0px;
  8548. position:absolute;
  8549. left:0px;
  8550. top:0px;
  8551. width:66px;
  8552. height:32px;
  8553. background:inherit;
  8554. background-color:rgba(255, 255, 255, 1);
  8555. box-sizing:border-box;
  8556. border-width:1px;
  8557. border-style:solid;
  8558. border-color:rgba(217, 217, 217, 1);
  8559. border-radius:4px;
  8560. -moz-box-shadow:none;
  8561. -webkit-box-shadow:none;
  8562. box-shadow:none;
  8563. font-family:'Microsoft YaHei', sans-serif;
  8564. font-weight:400;
  8565. font-style:normal;
  8566. font-size:14px;
  8567. color:rgba(0, 0, 0, 0.647058823529412);
  8568. line-height:21px;
  8569. }
  8570. #u4292 {
  8571. border-width:0px;
  8572. position:absolute;
  8573. left:925px;
  8574. top:938px;
  8575. width:66px;
  8576. height:32px;
  8577. display:flex;
  8578. font-family:'Microsoft YaHei', sans-serif;
  8579. font-weight:400;
  8580. font-style:normal;
  8581. font-size:14px;
  8582. color:rgba(0, 0, 0, 0.647058823529412);
  8583. line-height:21px;
  8584. }
  8585. #u4292 .text {
  8586. position:absolute;
  8587. align-self:center;
  8588. padding:2px 16px 2px 16px;
  8589. box-sizing:border-box;
  8590. width:100%;
  8591. }
  8592. #u4292_text {
  8593. border-width:0px;
  8594. white-space:nowrap;
  8595. text-transform:none;
  8596. }
  8597. #u4293_img {
  8598. border-width:0px;
  8599. position:absolute;
  8600. left:0px;
  8601. top:0px;
  8602. width:24px;
  8603. height:24px;
  8604. }
  8605. #u4293 {
  8606. border-width:0px;
  8607. position:absolute;
  8608. left:730px;
  8609. top:846px;
  8610. width:24px;
  8611. height:24px;
  8612. display:flex;
  8613. font-family:'Microsoft YaHei', sans-serif;
  8614. font-weight:400;
  8615. font-style:normal;
  8616. font-size:52px;
  8617. color:#FAAD14;
  8618. }
  8619. #u4293 .text {
  8620. position:absolute;
  8621. align-self:center;
  8622. padding:2px 2px 2px 2px;
  8623. box-sizing:border-box;
  8624. width:100%;
  8625. }
  8626. #u4293_text {
  8627. border-width:0px;
  8628. word-wrap:break-word;
  8629. text-transform:none;
  8630. visibility:hidden;
  8631. }
  8632. #u4294 {
  8633. border-width:0px;
  8634. position:absolute;
  8635. left:0px;
  8636. top:0px;
  8637. width:0px;
  8638. height:0px;
  8639. }
  8640. #u4295_div {
  8641. border-width:0px;
  8642. position:absolute;
  8643. left:0px;
  8644. top:0px;
  8645. width:140px;
  8646. height:30px;
  8647. background:inherit;
  8648. background-color:rgba(255, 255, 255, 1);
  8649. box-sizing:border-box;
  8650. border-width:1px;
  8651. border-style:solid;
  8652. border-color:rgba(215, 215, 215, 1);
  8653. border-radius:4px;
  8654. -moz-box-shadow:none;
  8655. -webkit-box-shadow:none;
  8656. box-shadow:none;
  8657. font-size:11px;
  8658. }
  8659. #u4295 {
  8660. border-width:0px;
  8661. position:absolute;
  8662. left:1400px;
  8663. top:101px;
  8664. width:140px;
  8665. height:30px;
  8666. display:flex;
  8667. font-size:11px;
  8668. }
  8669. #u4295 .text {
  8670. position:absolute;
  8671. align-self:center;
  8672. padding:2px 2px 2px 2px;
  8673. box-sizing:border-box;
  8674. width:100%;
  8675. }
  8676. #u4295_text {
  8677. border-width:0px;
  8678. word-wrap:break-word;
  8679. text-transform:none;
  8680. visibility:hidden;
  8681. }
  8682. #u4296_input {
  8683. position:absolute;
  8684. left:0px;
  8685. top:0px;
  8686. width:120px;
  8687. height:23px;
  8688. padding:2px 2px 2px 2px;
  8689. font-family:'ArialMT', 'Arial', sans-serif;
  8690. font-weight:400;
  8691. font-style:normal;
  8692. font-size:11px;
  8693. letter-spacing:normal;
  8694. color:#AAAAAA;
  8695. vertical-align:none;
  8696. text-align:left;
  8697. text-transform:none;
  8698. background-color:transparent;
  8699. border-color:transparent;
  8700. }
  8701. #u4296_input.disabled {
  8702. position:absolute;
  8703. left:0px;
  8704. top:0px;
  8705. width:120px;
  8706. height:23px;
  8707. padding:2px 2px 2px 2px;
  8708. font-family:'ArialMT', 'Arial', sans-serif;
  8709. font-weight:400;
  8710. font-style:normal;
  8711. font-size:11px;
  8712. letter-spacing:normal;
  8713. color:#AAAAAA;
  8714. vertical-align:none;
  8715. text-align:left;
  8716. text-transform:none;
  8717. background-color:transparent;
  8718. border-color:transparent;
  8719. }
  8720. #u4296_div {
  8721. border-width:0px;
  8722. position:absolute;
  8723. left:0px;
  8724. top:0px;
  8725. width:120px;
  8726. height:23px;
  8727. background:inherit;
  8728. background-color:rgba(255, 255, 255, 1);
  8729. border:none;
  8730. border-radius:0px;
  8731. -moz-box-shadow:none;
  8732. -webkit-box-shadow:none;
  8733. box-shadow:none;
  8734. font-size:11px;
  8735. color:#AAAAAA;
  8736. }
  8737. #u4296 {
  8738. border-width:0px;
  8739. position:absolute;
  8740. left:1407px;
  8741. top:103px;
  8742. width:120px;
  8743. height:23px;
  8744. display:flex;
  8745. font-size:11px;
  8746. color:#AAAAAA;
  8747. }
  8748. #u4296 .text {
  8749. position:absolute;
  8750. align-self:flex-start;
  8751. padding:2px 2px 2px 2px;
  8752. box-sizing:border-box;
  8753. width:100%;
  8754. }
  8755. #u4296_div.disabled {
  8756. border-width:0px;
  8757. position:absolute;
  8758. left:0px;
  8759. top:0px;
  8760. width:120px;
  8761. height:23px;
  8762. background:inherit;
  8763. background-color:rgba(240, 240, 240, 1);
  8764. border:none;
  8765. border-radius:0px;
  8766. -moz-box-shadow:none;
  8767. -webkit-box-shadow:none;
  8768. box-shadow:none;
  8769. font-size:11px;
  8770. color:#AAAAAA;
  8771. }
  8772. #u4296.disabled {
  8773. }
  8774. .u4296_input_option {
  8775. font-size:11px;
  8776. }
  8777. #u4297 {
  8778. border-width:0px;
  8779. position:absolute;
  8780. left:0px;
  8781. top:0px;
  8782. width:0px;
  8783. height:0px;
  8784. }
  8785. #u4298_div {
  8786. border-width:0px;
  8787. position:absolute;
  8788. left:0px;
  8789. top:0px;
  8790. width:140px;
  8791. height:30px;
  8792. background:inherit;
  8793. background-color:rgba(255, 255, 255, 1);
  8794. box-sizing:border-box;
  8795. border-width:1px;
  8796. border-style:solid;
  8797. border-color:rgba(215, 215, 215, 1);
  8798. border-radius:4px;
  8799. -moz-box-shadow:none;
  8800. -webkit-box-shadow:none;
  8801. box-shadow:none;
  8802. font-size:11px;
  8803. }
  8804. #u4298 {
  8805. border-width:0px;
  8806. position:absolute;
  8807. left:1250px;
  8808. top:101px;
  8809. width:140px;
  8810. height:30px;
  8811. display:flex;
  8812. font-size:11px;
  8813. }
  8814. #u4298 .text {
  8815. position:absolute;
  8816. align-self:center;
  8817. padding:2px 2px 2px 2px;
  8818. box-sizing:border-box;
  8819. width:100%;
  8820. }
  8821. #u4298_text {
  8822. border-width:0px;
  8823. word-wrap:break-word;
  8824. text-transform:none;
  8825. visibility:hidden;
  8826. }
  8827. #u4299_input {
  8828. position:absolute;
  8829. left:0px;
  8830. top:0px;
  8831. width:120px;
  8832. height:23px;
  8833. padding:2px 2px 2px 2px;
  8834. font-family:'ArialMT', 'Arial', sans-serif;
  8835. font-weight:400;
  8836. font-style:normal;
  8837. font-size:11px;
  8838. letter-spacing:normal;
  8839. color:#AAAAAA;
  8840. vertical-align:none;
  8841. text-align:left;
  8842. text-transform:none;
  8843. background-color:transparent;
  8844. border-color:transparent;
  8845. }
  8846. #u4299_input.disabled {
  8847. position:absolute;
  8848. left:0px;
  8849. top:0px;
  8850. width:120px;
  8851. height:23px;
  8852. padding:2px 2px 2px 2px;
  8853. font-family:'ArialMT', 'Arial', sans-serif;
  8854. font-weight:400;
  8855. font-style:normal;
  8856. font-size:11px;
  8857. letter-spacing:normal;
  8858. color:#AAAAAA;
  8859. vertical-align:none;
  8860. text-align:left;
  8861. text-transform:none;
  8862. background-color:transparent;
  8863. border-color:transparent;
  8864. }
  8865. #u4299_div {
  8866. border-width:0px;
  8867. position:absolute;
  8868. left:0px;
  8869. top:0px;
  8870. width:120px;
  8871. height:23px;
  8872. background:inherit;
  8873. background-color:rgba(255, 255, 255, 1);
  8874. border:none;
  8875. border-radius:0px;
  8876. -moz-box-shadow:none;
  8877. -webkit-box-shadow:none;
  8878. box-shadow:none;
  8879. font-size:11px;
  8880. color:#AAAAAA;
  8881. }
  8882. #u4299 {
  8883. border-width:0px;
  8884. position:absolute;
  8885. left:1257px;
  8886. top:103px;
  8887. width:120px;
  8888. height:23px;
  8889. display:flex;
  8890. font-size:11px;
  8891. color:#AAAAAA;
  8892. }
  8893. #u4299 .text {
  8894. position:absolute;
  8895. align-self:flex-start;
  8896. padding:2px 2px 2px 2px;
  8897. box-sizing:border-box;
  8898. width:100%;
  8899. }
  8900. #u4299_div.disabled {
  8901. border-width:0px;
  8902. position:absolute;
  8903. left:0px;
  8904. top:0px;
  8905. width:120px;
  8906. height:23px;
  8907. background:inherit;
  8908. background-color:rgba(240, 240, 240, 1);
  8909. border:none;
  8910. border-radius:0px;
  8911. -moz-box-shadow:none;
  8912. -webkit-box-shadow:none;
  8913. box-shadow:none;
  8914. font-size:11px;
  8915. color:#AAAAAA;
  8916. }
  8917. #u4299.disabled {
  8918. }
  8919. .u4299_input_option {
  8920. font-size:11px;
  8921. }
  8922. #u4300 {
  8923. border-width:0px;
  8924. position:absolute;
  8925. left:0px;
  8926. top:0px;
  8927. width:0px;
  8928. height:0px;
  8929. }
  8930. #u4301_div {
  8931. border-width:0px;
  8932. position:absolute;
  8933. left:0px;
  8934. top:0px;
  8935. width:200px;
  8936. height:1192px;
  8937. background:inherit;
  8938. background-color:rgba(255, 255, 255, 1);
  8939. border:none;
  8940. border-radius:0px;
  8941. -moz-box-shadow:none;
  8942. -webkit-box-shadow:none;
  8943. box-shadow:none;
  8944. }
  8945. #u4301 {
  8946. border-width:0px;
  8947. position:absolute;
  8948. left:120px;
  8949. top:50px;
  8950. width:200px;
  8951. height:1192px;
  8952. display:flex;
  8953. }
  8954. #u4301 .text {
  8955. position:absolute;
  8956. align-self:center;
  8957. padding:2px 2px 2px 2px;
  8958. box-sizing:border-box;
  8959. width:100%;
  8960. }
  8961. #u4301_text {
  8962. border-width:0px;
  8963. word-wrap:break-word;
  8964. text-transform:none;
  8965. visibility:hidden;
  8966. }
  8967. #u4302_div {
  8968. border-width:0px;
  8969. position:absolute;
  8970. left:0px;
  8971. top:0px;
  8972. width:200px;
  8973. height:60px;
  8974. background:inherit;
  8975. background-color:rgba(224, 231, 247, 1);
  8976. border:none;
  8977. border-radius:0px;
  8978. -moz-box-shadow:none;
  8979. -webkit-box-shadow:none;
  8980. box-shadow:none;
  8981. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8982. font-weight:500;
  8983. font-style:normal;
  8984. font-size:18px;
  8985. }
  8986. #u4302 {
  8987. border-width:0px;
  8988. position:absolute;
  8989. left:120px;
  8990. top:50px;
  8991. width:200px;
  8992. height:60px;
  8993. display:flex;
  8994. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8995. font-weight:500;
  8996. font-style:normal;
  8997. font-size:18px;
  8998. }
  8999. #u4302 .text {
  9000. position:absolute;
  9001. align-self:center;
  9002. padding:0px 0px 0px 20px;
  9003. box-sizing:border-box;
  9004. width:100%;
  9005. }
  9006. #u4302_text {
  9007. border-width:0px;
  9008. word-wrap:break-word;
  9009. text-transform:none;
  9010. }
  9011. #u4303_div {
  9012. border-width:0px;
  9013. position:absolute;
  9014. left:0px;
  9015. top:0px;
  9016. width:65px;
  9017. height:22px;
  9018. background:inherit;
  9019. background-color:rgba(255, 255, 255, 0);
  9020. border:none;
  9021. border-radius:0px;
  9022. -moz-box-shadow:none;
  9023. -webkit-box-shadow:none;
  9024. box-shadow:none;
  9025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9026. font-weight:400;
  9027. font-style:normal;
  9028. font-size:16px;
  9029. }
  9030. #u4303 {
  9031. border-width:0px;
  9032. position:absolute;
  9033. left:147px;
  9034. top:166px;
  9035. width:65px;
  9036. height:22px;
  9037. display:flex;
  9038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9039. font-weight:400;
  9040. font-style:normal;
  9041. font-size:16px;
  9042. }
  9043. #u4303 .text {
  9044. position:absolute;
  9045. align-self:flex-start;
  9046. padding:0px 0px 0px 0px;
  9047. box-sizing:border-box;
  9048. width:100%;
  9049. }
  9050. #u4303_text {
  9051. border-width:0px;
  9052. white-space:nowrap;
  9053. text-transform:none;
  9054. }
  9055. #u4304_div {
  9056. border-width:0px;
  9057. position:absolute;
  9058. left:0px;
  9059. top:0px;
  9060. width:65px;
  9061. height:22px;
  9062. background:inherit;
  9063. background-color:rgba(255, 255, 255, 0);
  9064. border:none;
  9065. border-radius:0px;
  9066. -moz-box-shadow:none;
  9067. -webkit-box-shadow:none;
  9068. box-shadow:none;
  9069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9070. font-weight:400;
  9071. font-style:normal;
  9072. font-size:16px;
  9073. }
  9074. #u4304 {
  9075. border-width:0px;
  9076. position:absolute;
  9077. left:147px;
  9078. top:271px;
  9079. width:65px;
  9080. height:22px;
  9081. display:flex;
  9082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9083. font-weight:400;
  9084. font-style:normal;
  9085. font-size:16px;
  9086. }
  9087. #u4304 .text {
  9088. position:absolute;
  9089. align-self:flex-start;
  9090. padding:0px 0px 0px 0px;
  9091. box-sizing:border-box;
  9092. width:100%;
  9093. }
  9094. #u4304_text {
  9095. border-width:0px;
  9096. white-space:nowrap;
  9097. text-transform:none;
  9098. }
  9099. #u4305_div {
  9100. border-width:0px;
  9101. position:absolute;
  9102. left:0px;
  9103. top:0px;
  9104. width:49px;
  9105. height:17px;
  9106. background:inherit;
  9107. background-color:rgba(255, 255, 255, 0);
  9108. border:none;
  9109. border-radius:0px;
  9110. -moz-box-shadow:none;
  9111. -webkit-box-shadow:none;
  9112. box-shadow:none;
  9113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9114. font-weight:400;
  9115. font-style:normal;
  9116. font-size:12px;
  9117. color:#AAAAAA;
  9118. }
  9119. #u4305 {
  9120. border-width:0px;
  9121. position:absolute;
  9122. left:147px;
  9123. top:130px;
  9124. width:49px;
  9125. height:17px;
  9126. display:flex;
  9127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9128. font-weight:400;
  9129. font-style:normal;
  9130. font-size:12px;
  9131. color:#AAAAAA;
  9132. }
  9133. #u4305 .text {
  9134. position:absolute;
  9135. align-self:flex-start;
  9136. padding:0px 0px 0px 0px;
  9137. box-sizing:border-box;
  9138. width:100%;
  9139. }
  9140. #u4305_text {
  9141. border-width:0px;
  9142. white-space:nowrap;
  9143. text-transform:none;
  9144. }
  9145. #u4306_div {
  9146. border-width:0px;
  9147. position:absolute;
  9148. left:0px;
  9149. top:0px;
  9150. width:65px;
  9151. height:22px;
  9152. background:inherit;
  9153. background-color:rgba(255, 255, 255, 0);
  9154. border:none;
  9155. border-radius:0px;
  9156. -moz-box-shadow:none;
  9157. -webkit-box-shadow:none;
  9158. box-shadow:none;
  9159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9160. font-weight:400;
  9161. font-style:normal;
  9162. font-size:16px;
  9163. }
  9164. #u4306 {
  9165. border-width:0px;
  9166. position:absolute;
  9167. left:147px;
  9168. top:313px;
  9169. width:65px;
  9170. height:22px;
  9171. display:flex;
  9172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9173. font-weight:400;
  9174. font-style:normal;
  9175. font-size:16px;
  9176. }
  9177. #u4306 .text {
  9178. position:absolute;
  9179. align-self:flex-start;
  9180. padding:0px 0px 0px 0px;
  9181. box-sizing:border-box;
  9182. width:100%;
  9183. }
  9184. #u4306_text {
  9185. border-width:0px;
  9186. white-space:nowrap;
  9187. text-transform:none;
  9188. }
  9189. #u4307_img {
  9190. border-width:0px;
  9191. position:absolute;
  9192. left:0px;
  9193. top:0px;
  9194. width:201px;
  9195. height:2px;
  9196. }
  9197. #u4307 {
  9198. border-width:0px;
  9199. position:absolute;
  9200. left:120px;
  9201. top:208px;
  9202. width:200px;
  9203. height:1px;
  9204. display:flex;
  9205. }
  9206. #u4307 .text {
  9207. position:absolute;
  9208. align-self:center;
  9209. padding:2px 2px 2px 2px;
  9210. box-sizing:border-box;
  9211. width:100%;
  9212. }
  9213. #u4307_text {
  9214. border-width:0px;
  9215. word-wrap:break-word;
  9216. text-transform:none;
  9217. visibility:hidden;
  9218. }
  9219. #u4308_div {
  9220. border-width:0px;
  9221. position:absolute;
  9222. left:0px;
  9223. top:0px;
  9224. width:49px;
  9225. height:17px;
  9226. background:inherit;
  9227. background-color:rgba(255, 255, 255, 0);
  9228. border:none;
  9229. border-radius:0px;
  9230. -moz-box-shadow:none;
  9231. -webkit-box-shadow:none;
  9232. box-shadow:none;
  9233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9234. font-weight:400;
  9235. font-style:normal;
  9236. font-size:12px;
  9237. color:#AAAAAA;
  9238. }
  9239. #u4308 {
  9240. border-width:0px;
  9241. position:absolute;
  9242. left:147px;
  9243. top:234px;
  9244. width:49px;
  9245. height:17px;
  9246. display:flex;
  9247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9248. font-weight:400;
  9249. font-style:normal;
  9250. font-size:12px;
  9251. color:#AAAAAA;
  9252. }
  9253. #u4308 .text {
  9254. position:absolute;
  9255. align-self:flex-start;
  9256. padding:0px 0px 0px 0px;
  9257. box-sizing:border-box;
  9258. width:100%;
  9259. }
  9260. #u4308_text {
  9261. border-width:0px;
  9262. white-space:nowrap;
  9263. text-transform:none;
  9264. }
  9265. #u4309_div {
  9266. border-width:0px;
  9267. position:absolute;
  9268. left:0px;
  9269. top:0px;
  9270. width:65px;
  9271. height:22px;
  9272. background:inherit;
  9273. background-color:rgba(255, 255, 255, 0);
  9274. border:none;
  9275. border-radius:0px;
  9276. -moz-box-shadow:none;
  9277. -webkit-box-shadow:none;
  9278. box-shadow:none;
  9279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9280. font-weight:400;
  9281. font-style:normal;
  9282. font-size:16px;
  9283. }
  9284. #u4309 {
  9285. border-width:0px;
  9286. position:absolute;
  9287. left:147px;
  9288. top:355px;
  9289. width:65px;
  9290. height:22px;
  9291. display:flex;
  9292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9293. font-weight:400;
  9294. font-style:normal;
  9295. font-size:16px;
  9296. }
  9297. #u4309 .text {
  9298. position:absolute;
  9299. align-self:flex-start;
  9300. padding:0px 0px 0px 0px;
  9301. box-sizing:border-box;
  9302. width:100%;
  9303. }
  9304. #u4309_text {
  9305. border-width:0px;
  9306. white-space:nowrap;
  9307. text-transform:none;
  9308. }
  9309. #u4310 {
  9310. border-width:0px;
  9311. position:absolute;
  9312. left:0px;
  9313. top:0px;
  9314. width:0px;
  9315. height:0px;
  9316. }
  9317. #u4311_div {
  9318. border-width:0px;
  9319. position:absolute;
  9320. left:0px;
  9321. top:0px;
  9322. width:120px;
  9323. height:180px;
  9324. background:inherit;
  9325. background-color:rgba(255, 255, 255, 1);
  9326. box-sizing:border-box;
  9327. border-width:1px;
  9328. border-style:solid;
  9329. border-color:rgba(242, 242, 242, 1);
  9330. border-left:0px;
  9331. border-right:0px;
  9332. border-radius:3px;
  9333. border-top-left-radius:0px;
  9334. border-top-right-radius:0px;
  9335. border-bottom-right-radius:0px;
  9336. border-bottom-left-radius:0px;
  9337. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  9338. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  9339. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  9340. }
  9341. #u4311 {
  9342. border-width:0px;
  9343. position:absolute;
  9344. left:1439px;
  9345. top:339px;
  9346. width:120px;
  9347. height:180px;
  9348. display:flex;
  9349. }
  9350. #u4311 .text {
  9351. position:absolute;
  9352. align-self:center;
  9353. padding:2px 2px 2px 2px;
  9354. box-sizing:border-box;
  9355. width:100%;
  9356. }
  9357. #u4311_text {
  9358. border-width:0px;
  9359. word-wrap:break-word;
  9360. text-transform:none;
  9361. visibility:hidden;
  9362. }
  9363. #u4312_div {
  9364. border-width:0px;
  9365. position:absolute;
  9366. left:0px;
  9367. top:0px;
  9368. width:100px;
  9369. height:40px;
  9370. background:inherit;
  9371. background-color:rgba(255, 255, 255, 1);
  9372. box-sizing:border-box;
  9373. border-width:1px;
  9374. border-style:solid;
  9375. border-color:rgba(242, 242, 242, 1);
  9376. border-left:0px;
  9377. border-top:0px;
  9378. border-right:0px;
  9379. border-radius:4px;
  9380. border-bottom-right-radius:0px;
  9381. border-bottom-left-radius:0px;
  9382. -moz-box-shadow:none;
  9383. -webkit-box-shadow:none;
  9384. box-shadow:none;
  9385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9386. font-weight:400;
  9387. font-style:normal;
  9388. font-size:14px;
  9389. }
  9390. #u4312 {
  9391. border-width:0px;
  9392. position:absolute;
  9393. left:1449px;
  9394. top:350px;
  9395. width:100px;
  9396. height:40px;
  9397. display:flex;
  9398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9399. font-weight:400;
  9400. font-style:normal;
  9401. font-size:14px;
  9402. }
  9403. #u4312 .text {
  9404. position:absolute;
  9405. align-self:center;
  9406. padding:5px 0px 5px 0px;
  9407. box-sizing:border-box;
  9408. width:100%;
  9409. }
  9410. #u4312_text {
  9411. border-width:0px;
  9412. word-wrap:break-word;
  9413. text-transform:none;
  9414. }
  9415. #u4313_div {
  9416. border-width:0px;
  9417. position:absolute;
  9418. left:0px;
  9419. top:0px;
  9420. width:100px;
  9421. height:40px;
  9422. background:inherit;
  9423. background-color:rgba(255, 255, 255, 1);
  9424. border:none;
  9425. border-left:0px;
  9426. border-top:0px;
  9427. border-right:0px;
  9428. border-radius:4px;
  9429. border-bottom-right-radius:0px;
  9430. border-bottom-left-radius:0px;
  9431. -moz-box-shadow:none;
  9432. -webkit-box-shadow:none;
  9433. box-shadow:none;
  9434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9435. font-weight:400;
  9436. font-style:normal;
  9437. font-size:14px;
  9438. color:#AAAAAA;
  9439. }
  9440. #u4313 {
  9441. border-width:0px;
  9442. position:absolute;
  9443. left:1449px;
  9444. top:470px;
  9445. width:100px;
  9446. height:40px;
  9447. display:flex;
  9448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9449. font-weight:400;
  9450. font-style:normal;
  9451. font-size:14px;
  9452. color:#AAAAAA;
  9453. }
  9454. #u4313 .text {
  9455. position:absolute;
  9456. align-self:center;
  9457. padding:5px 0px 5px 0px;
  9458. box-sizing:border-box;
  9459. width:100%;
  9460. }
  9461. #u4313_text {
  9462. border-width:0px;
  9463. word-wrap:break-word;
  9464. text-transform:none;
  9465. }
  9466. #u4314_div {
  9467. border-width:0px;
  9468. position:absolute;
  9469. left:0px;
  9470. top:0px;
  9471. width:100px;
  9472. height:40px;
  9473. background:inherit;
  9474. background-color:rgba(255, 255, 255, 1);
  9475. box-sizing:border-box;
  9476. border-width:1px;
  9477. border-style:solid;
  9478. border-color:rgba(242, 242, 242, 1);
  9479. border-left:0px;
  9480. border-top:0px;
  9481. border-right:0px;
  9482. border-radius:4px;
  9483. border-bottom-right-radius:0px;
  9484. border-bottom-left-radius:0px;
  9485. -moz-box-shadow:none;
  9486. -webkit-box-shadow:none;
  9487. box-shadow:none;
  9488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9489. font-weight:400;
  9490. font-style:normal;
  9491. font-size:14px;
  9492. }
  9493. #u4314 {
  9494. border-width:0px;
  9495. position:absolute;
  9496. left:1449px;
  9497. top:390px;
  9498. width:100px;
  9499. height:40px;
  9500. display:flex;
  9501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9502. font-weight:400;
  9503. font-style:normal;
  9504. font-size:14px;
  9505. }
  9506. #u4314 .text {
  9507. position:absolute;
  9508. align-self:center;
  9509. padding:5px 0px 5px 0px;
  9510. box-sizing:border-box;
  9511. width:100%;
  9512. }
  9513. #u4314_text {
  9514. border-width:0px;
  9515. word-wrap:break-word;
  9516. text-transform:none;
  9517. }
  9518. #u4315_div {
  9519. border-width:0px;
  9520. position:absolute;
  9521. left:0px;
  9522. top:0px;
  9523. width:100px;
  9524. height:40px;
  9525. background:inherit;
  9526. background-color:rgba(255, 255, 255, 1);
  9527. box-sizing:border-box;
  9528. border-width:1px;
  9529. border-style:solid;
  9530. border-color:rgba(242, 242, 242, 1);
  9531. border-left:0px;
  9532. border-top:0px;
  9533. border-right:0px;
  9534. border-radius:4px;
  9535. border-bottom-right-radius:0px;
  9536. border-bottom-left-radius:0px;
  9537. -moz-box-shadow:none;
  9538. -webkit-box-shadow:none;
  9539. box-shadow:none;
  9540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9541. font-weight:400;
  9542. font-style:normal;
  9543. font-size:14px;
  9544. }
  9545. #u4315 {
  9546. border-width:0px;
  9547. position:absolute;
  9548. left:1449px;
  9549. top:430px;
  9550. width:100px;
  9551. height:40px;
  9552. display:flex;
  9553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9554. font-weight:400;
  9555. font-style:normal;
  9556. font-size:14px;
  9557. }
  9558. #u4315 .text {
  9559. position:absolute;
  9560. align-self:center;
  9561. padding:5px 0px 5px 0px;
  9562. box-sizing:border-box;
  9563. width:100%;
  9564. }
  9565. #u4315_text {
  9566. border-width:0px;
  9567. word-wrap:break-word;
  9568. text-transform:none;
  9569. }