styles.css 175 KB

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