styles.css 169 KB

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