styles.css 121 KB

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