styles.css 121 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u29870_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. #u29870 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u29870 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u29870_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u29871_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. #u29871 {
  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. #u29871 .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. #u29871_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u29872_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. #u29872 {
  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. #u29872 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u29872_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u29873 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u29874_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u29874 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u29874 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u29874_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u29875_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. #u29875 {
  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. #u29875 .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. #u29875_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u29876_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. #u29876 {
  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. #u29876 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u29876_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u29877 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u29878_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. #u29878_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. #u29878_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. #u29878 {
  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. #u29878 .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. #u29878_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. #u29878.disabled {
  356. }
  357. .u29878_input_option {
  358. font-size:14px;
  359. }
  360. #u29879_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u29879 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u29879 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u29879_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u29880_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. #u29880 {
  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. #u29880 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u29880_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u29881_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. #u29881 {
  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. #u29881 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u29881_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u29882 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u29883_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. #u29883 {
  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. #u29883 .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. #u29883_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u29884_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u29884 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u29884 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u29884_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u29885 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u29886_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. #u29886 {
  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. #u29886 .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. #u29886_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u29887_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u29887 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u29887 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u29887_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u29888 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u29889_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. #u29889 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:439px;
  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. #u29889 .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. #u29889_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u29890_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u29890 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:443px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u29890 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u29890_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u29891 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u29892_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. #u29892 {
  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. #u29892 .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. #u29892_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u29893_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u29893 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u29893 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u29893_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u29894 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u29895_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. #u29895 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:481px;
  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. #u29895 .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. #u29895_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u29896_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u29896 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:485px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u29896 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u29896_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u29897 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u29898_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. #u29898 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:355px;
  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. #u29898 .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. #u29898_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u29899_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u29899 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:359px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u29899 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u29899_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u29900 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u29901_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. #u29901 {
  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. #u29901 .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. #u29901_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u29902_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u29902 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u29902 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u29902_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u29903 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u29904_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. #u29904 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:397px;
  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. #u29904 .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. #u29904_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u29905_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u29905 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:401px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u29905 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u29905_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u29906 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u29907_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. #u29907 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:523px;
  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. #u29907 .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. #u29907_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u29908_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u29908 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:527px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u29908 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u29908_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u29909 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u29910_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. #u29910 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:231px;
  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. #u29910 .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. #u29910_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u29911_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u29911 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:235px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u29911 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u29911_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u29912_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. #u29912 {
  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. #u29912 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u29912_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u29913_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u29913 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u29913 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u29913_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u29914_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. #u29914 {
  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. #u29914 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u29914_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u29915_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u29915 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u29915 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u29915_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u29916 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u29917_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. #u29917 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:273px;
  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. #u29917 .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. #u29917_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u29918_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u29918 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:277px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u29918 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u29918_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u29919 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u29920_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. #u29920 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:565px;
  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. #u29920 .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. #u29920_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u29921_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u29921 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:569px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u29921 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u29921_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u29922 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u29923_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:33px;
  1652. height:22px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 0);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:16px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u29923 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:39px;
  1670. top:315px;
  1671. width:33px;
  1672. height:22px;
  1673. display:flex;
  1674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1675. font-weight:400;
  1676. font-style:normal;
  1677. font-size:16px;
  1678. color:#FFFFFF;
  1679. }
  1680. #u29923 .text {
  1681. position:absolute;
  1682. align-self:flex-start;
  1683. padding:0px 0px 0px 0px;
  1684. box-sizing:border-box;
  1685. width:100%;
  1686. }
  1687. #u29923_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u29924_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u29924 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:319px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u29924 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u29924_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u29925_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:200px;
  1728. height:1187px;
  1729. background:inherit;
  1730. background-color:rgba(255, 255, 255, 1);
  1731. border:none;
  1732. border-radius:0px;
  1733. -moz-box-shadow:none;
  1734. -webkit-box-shadow:none;
  1735. box-shadow:none;
  1736. }
  1737. #u29925 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:120px;
  1741. top:50px;
  1742. width:200px;
  1743. height:1187px;
  1744. display:flex;
  1745. }
  1746. #u29925 .text {
  1747. position:absolute;
  1748. align-self:center;
  1749. padding:2px 2px 2px 2px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u29925_text {
  1754. border-width:0px;
  1755. word-wrap:break-word;
  1756. text-transform:none;
  1757. visibility:hidden;
  1758. }
  1759. #u29926_div {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:200px;
  1765. height:60px;
  1766. background:inherit;
  1767. background-color:rgba(224, 231, 247, 1);
  1768. border:none;
  1769. border-radius:0px;
  1770. -moz-box-shadow:none;
  1771. -webkit-box-shadow:none;
  1772. box-shadow:none;
  1773. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1774. font-weight:500;
  1775. font-style:normal;
  1776. font-size:18px;
  1777. }
  1778. #u29926 {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:120px;
  1782. top:50px;
  1783. width:200px;
  1784. height:60px;
  1785. display:flex;
  1786. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1787. font-weight:500;
  1788. font-style:normal;
  1789. font-size:18px;
  1790. }
  1791. #u29926 .text {
  1792. position:absolute;
  1793. align-self:center;
  1794. padding:0px 0px 0px 20px;
  1795. box-sizing:border-box;
  1796. width:100%;
  1797. }
  1798. #u29926_text {
  1799. border-width:0px;
  1800. word-wrap:break-word;
  1801. text-transform:none;
  1802. }
  1803. #u29927_div {
  1804. border-width:0px;
  1805. position:absolute;
  1806. left:0px;
  1807. top:0px;
  1808. width:97px;
  1809. height:22px;
  1810. background:inherit;
  1811. background-color:rgba(255, 255, 255, 0);
  1812. border:none;
  1813. border-radius:0px;
  1814. -moz-box-shadow:none;
  1815. -webkit-box-shadow:none;
  1816. box-shadow:none;
  1817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1818. font-weight:400;
  1819. font-style:normal;
  1820. font-size:16px;
  1821. }
  1822. #u29927 {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:147px;
  1826. top:167px;
  1827. width:97px;
  1828. height:22px;
  1829. display:flex;
  1830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1831. font-weight:400;
  1832. font-style:normal;
  1833. font-size:16px;
  1834. }
  1835. #u29927 .text {
  1836. position:absolute;
  1837. align-self:flex-start;
  1838. padding:0px 0px 0px 0px;
  1839. box-sizing:border-box;
  1840. width:100%;
  1841. }
  1842. #u29927_text {
  1843. border-width:0px;
  1844. word-wrap:break-word;
  1845. text-transform:none;
  1846. }
  1847. #u29928_div {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:0px;
  1851. top:0px;
  1852. width:65px;
  1853. height:22px;
  1854. background:inherit;
  1855. background-color:rgba(255, 255, 255, 0);
  1856. border:none;
  1857. border-radius:0px;
  1858. -moz-box-shadow:none;
  1859. -webkit-box-shadow:none;
  1860. box-shadow:none;
  1861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1862. font-weight:400;
  1863. font-style:normal;
  1864. font-size:16px;
  1865. }
  1866. #u29928 {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:147px;
  1870. top:208px;
  1871. width:65px;
  1872. height:22px;
  1873. display:flex;
  1874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1875. font-weight:400;
  1876. font-style:normal;
  1877. font-size:16px;
  1878. }
  1879. #u29928 .text {
  1880. position:absolute;
  1881. align-self:flex-start;
  1882. padding:0px 0px 0px 0px;
  1883. box-sizing:border-box;
  1884. width:100%;
  1885. }
  1886. #u29928_text {
  1887. border-width:0px;
  1888. white-space:nowrap;
  1889. text-transform:none;
  1890. }
  1891. #u29929_div {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:0px;
  1895. top:0px;
  1896. width:49px;
  1897. height:17px;
  1898. background:inherit;
  1899. background-color:rgba(255, 255, 255, 0);
  1900. border:none;
  1901. border-radius:0px;
  1902. -moz-box-shadow:none;
  1903. -webkit-box-shadow:none;
  1904. box-shadow:none;
  1905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1906. font-weight:400;
  1907. font-style:normal;
  1908. font-size:12px;
  1909. color:#AAAAAA;
  1910. }
  1911. #u29929 {
  1912. border-width:0px;
  1913. position:absolute;
  1914. left:147px;
  1915. top:130px;
  1916. width:49px;
  1917. height:17px;
  1918. display:flex;
  1919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1920. font-weight:400;
  1921. font-style:normal;
  1922. font-size:12px;
  1923. color:#AAAAAA;
  1924. }
  1925. #u29929 .text {
  1926. position:absolute;
  1927. align-self:flex-start;
  1928. padding:0px 0px 0px 0px;
  1929. box-sizing:border-box;
  1930. width:100%;
  1931. }
  1932. #u29929_text {
  1933. border-width:0px;
  1934. white-space:nowrap;
  1935. text-transform:none;
  1936. }
  1937. #u29930_div {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:0px;
  1941. top:0px;
  1942. width:1260px;
  1943. height:1187px;
  1944. background:inherit;
  1945. background-color:rgba(255, 255, 255, 1);
  1946. border:none;
  1947. border-radius:0px;
  1948. -moz-box-shadow:none;
  1949. -webkit-box-shadow:none;
  1950. box-shadow:none;
  1951. }
  1952. #u29930 {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:329px;
  1956. top:50px;
  1957. width:1260px;
  1958. height:1187px;
  1959. display:flex;
  1960. }
  1961. #u29930 .text {
  1962. position:absolute;
  1963. align-self:center;
  1964. padding:2px 2px 2px 2px;
  1965. box-sizing:border-box;
  1966. width:100%;
  1967. }
  1968. #u29930_text {
  1969. border-width:0px;
  1970. word-wrap:break-word;
  1971. text-transform:none;
  1972. visibility:hidden;
  1973. }
  1974. #u29931_div {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:0px;
  1978. top:0px;
  1979. width:73px;
  1980. height:50px;
  1981. background:inherit;
  1982. background-color:rgba(255, 255, 255, 0);
  1983. border:none;
  1984. border-left:0px;
  1985. border-top:0px;
  1986. border-right:0px;
  1987. border-radius:0px;
  1988. border-bottom-right-radius:0px;
  1989. border-bottom-left-radius:0px;
  1990. -moz-box-shadow:none;
  1991. -webkit-box-shadow:none;
  1992. box-shadow:none;
  1993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1994. font-weight:400;
  1995. font-style:normal;
  1996. font-size:18px;
  1997. color:#000000;
  1998. line-height:40px;
  1999. }
  2000. #u29931 {
  2001. border-width:0px;
  2002. position:absolute;
  2003. left:352px;
  2004. top:50px;
  2005. width:73px;
  2006. height:50px;
  2007. display:flex;
  2008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2009. font-weight:400;
  2010. font-style:normal;
  2011. font-size:18px;
  2012. color:#000000;
  2013. line-height:40px;
  2014. }
  2015. #u29931 .text {
  2016. position:absolute;
  2017. align-self:center;
  2018. padding:0px 0px 0px 0px;
  2019. box-sizing:border-box;
  2020. width:100%;
  2021. }
  2022. #u29931_text {
  2023. border-width:0px;
  2024. white-space:nowrap;
  2025. text-transform:none;
  2026. }
  2027. #u29932 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:353px;
  2031. top:199px;
  2032. width:1218px;
  2033. height:322px;
  2034. }
  2035. #u29933_img {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:0px;
  2039. top:0px;
  2040. width:58px;
  2041. height:38px;
  2042. }
  2043. #u29933 {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:0px;
  2047. top:0px;
  2048. width:58px;
  2049. height:38px;
  2050. display:flex;
  2051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2052. font-weight:400;
  2053. font-style:normal;
  2054. font-size:12px;
  2055. color:#FFFFFF;
  2056. }
  2057. #u29933 .text {
  2058. position:absolute;
  2059. align-self:center;
  2060. padding:2px 2px 2px 0px;
  2061. box-sizing:border-box;
  2062. width:100%;
  2063. }
  2064. #u29933_text {
  2065. border-width:0px;
  2066. word-wrap:break-word;
  2067. text-transform:none;
  2068. }
  2069. #u29934_img {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:116px;
  2075. height:38px;
  2076. }
  2077. #u29934 {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:58px;
  2081. top:0px;
  2082. width:116px;
  2083. height:38px;
  2084. display:flex;
  2085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2086. font-weight:400;
  2087. font-style:normal;
  2088. font-size:12px;
  2089. color:#FFFFFF;
  2090. }
  2091. #u29934 .text {
  2092. position:absolute;
  2093. align-self:center;
  2094. padding:2px 2px 2px 0px;
  2095. box-sizing:border-box;
  2096. width:100%;
  2097. }
  2098. #u29934_text {
  2099. border-width:0px;
  2100. word-wrap:break-word;
  2101. text-transform:none;
  2102. }
  2103. #u29935_img {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:0px;
  2107. top:0px;
  2108. width:465px;
  2109. height:38px;
  2110. }
  2111. #u29935 {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:174px;
  2115. top:0px;
  2116. width:465px;
  2117. height:38px;
  2118. display:flex;
  2119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2120. font-weight:400;
  2121. font-style:normal;
  2122. font-size:12px;
  2123. color:#FFFFFF;
  2124. }
  2125. #u29935 .text {
  2126. position:absolute;
  2127. align-self:center;
  2128. padding:2px 2px 2px 0px;
  2129. box-sizing:border-box;
  2130. width:100%;
  2131. }
  2132. #u29935_text {
  2133. border-width:0px;
  2134. word-wrap:break-word;
  2135. text-transform:none;
  2136. }
  2137. #u29936_img {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:0px;
  2141. top:0px;
  2142. width:116px;
  2143. height:38px;
  2144. }
  2145. #u29936 {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:639px;
  2149. top:0px;
  2150. width:116px;
  2151. height:38px;
  2152. display:flex;
  2153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2154. font-weight:400;
  2155. font-style:normal;
  2156. font-size:12px;
  2157. color:#FFFFFF;
  2158. }
  2159. #u29936 .text {
  2160. position:absolute;
  2161. align-self:center;
  2162. padding:2px 2px 2px 0px;
  2163. box-sizing:border-box;
  2164. width:100%;
  2165. }
  2166. #u29936_text {
  2167. border-width:0px;
  2168. word-wrap:break-word;
  2169. text-transform:none;
  2170. }
  2171. #u29937_img {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:0px;
  2175. top:0px;
  2176. width:116px;
  2177. height:38px;
  2178. }
  2179. #u29937 {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:755px;
  2183. top:0px;
  2184. width:116px;
  2185. height:38px;
  2186. display:flex;
  2187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2188. font-weight:400;
  2189. font-style:normal;
  2190. font-size:12px;
  2191. color:#FFFFFF;
  2192. }
  2193. #u29937 .text {
  2194. position:absolute;
  2195. align-self:center;
  2196. padding:2px 2px 2px 0px;
  2197. box-sizing:border-box;
  2198. width:100%;
  2199. }
  2200. #u29937_text {
  2201. border-width:0px;
  2202. word-wrap:break-word;
  2203. text-transform:none;
  2204. }
  2205. #u29938_img {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:0px;
  2209. top:0px;
  2210. width:116px;
  2211. height:38px;
  2212. }
  2213. #u29938 {
  2214. border-width:0px;
  2215. position:absolute;
  2216. left:871px;
  2217. top:0px;
  2218. width:116px;
  2219. height:38px;
  2220. display:flex;
  2221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2222. font-weight:400;
  2223. font-style:normal;
  2224. font-size:12px;
  2225. color:#FFFFFF;
  2226. }
  2227. #u29938 .text {
  2228. position:absolute;
  2229. align-self:center;
  2230. padding:2px 2px 2px 0px;
  2231. box-sizing:border-box;
  2232. width:100%;
  2233. }
  2234. #u29938_text {
  2235. border-width:0px;
  2236. word-wrap:break-word;
  2237. text-transform:none;
  2238. }
  2239. #u29939_img {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:0px;
  2243. top:0px;
  2244. width:116px;
  2245. height:38px;
  2246. }
  2247. #u29939 {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:987px;
  2251. top:0px;
  2252. width:116px;
  2253. height:38px;
  2254. display:flex;
  2255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2256. font-weight:400;
  2257. font-style:normal;
  2258. font-size:12px;
  2259. color:#FFFFFF;
  2260. }
  2261. #u29939 .text {
  2262. position:absolute;
  2263. align-self:center;
  2264. padding:2px 2px 2px 0px;
  2265. box-sizing:border-box;
  2266. width:100%;
  2267. }
  2268. #u29939_text {
  2269. border-width:0px;
  2270. word-wrap:break-word;
  2271. text-transform:none;
  2272. }
  2273. #u29940_img {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:0px;
  2277. top:0px;
  2278. width:115px;
  2279. height:38px;
  2280. }
  2281. #u29940 {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:1103px;
  2285. top:0px;
  2286. width:115px;
  2287. height:38px;
  2288. display:flex;
  2289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2290. font-weight:400;
  2291. font-style:normal;
  2292. font-size:12px;
  2293. color:#FFFFFF;
  2294. }
  2295. #u29940 .text {
  2296. position:absolute;
  2297. align-self:center;
  2298. padding:2px 2px 2px 0px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u29940_text {
  2303. border-width:0px;
  2304. word-wrap:break-word;
  2305. text-transform:none;
  2306. }
  2307. #u29941_img {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:0px;
  2311. top:0px;
  2312. width:58px;
  2313. height:38px;
  2314. }
  2315. #u29941 {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:0px;
  2319. top:38px;
  2320. width:58px;
  2321. height:38px;
  2322. display:flex;
  2323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2324. font-weight:400;
  2325. font-style:normal;
  2326. font-size:12px;
  2327. color:#333333;
  2328. }
  2329. #u29941 .text {
  2330. position:absolute;
  2331. align-self:center;
  2332. padding:2px 2px 2px 0px;
  2333. box-sizing:border-box;
  2334. width:100%;
  2335. }
  2336. #u29941_text {
  2337. border-width:0px;
  2338. word-wrap:break-word;
  2339. text-transform:none;
  2340. }
  2341. #u29942_img {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:0px;
  2345. top:0px;
  2346. width:116px;
  2347. height:38px;
  2348. }
  2349. #u29942 {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:58px;
  2353. top:38px;
  2354. width:116px;
  2355. height:38px;
  2356. display:flex;
  2357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2358. font-weight:400;
  2359. font-style:normal;
  2360. font-size:12px;
  2361. color:#333333;
  2362. }
  2363. #u29942 .text {
  2364. position:absolute;
  2365. align-self:center;
  2366. padding:2px 2px 2px 0px;
  2367. box-sizing:border-box;
  2368. width:100%;
  2369. }
  2370. #u29942_text {
  2371. border-width:0px;
  2372. word-wrap:break-word;
  2373. text-transform:none;
  2374. }
  2375. #u29943_img {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:0px;
  2379. top:0px;
  2380. width:465px;
  2381. height:38px;
  2382. }
  2383. #u29943 {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:174px;
  2387. top:38px;
  2388. width:465px;
  2389. height:38px;
  2390. display:flex;
  2391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2392. font-weight:400;
  2393. font-style:normal;
  2394. font-size:12px;
  2395. color:#333333;
  2396. }
  2397. #u29943 .text {
  2398. position:absolute;
  2399. align-self:center;
  2400. padding:2px 2px 2px 0px;
  2401. box-sizing:border-box;
  2402. width:100%;
  2403. }
  2404. #u29943_text {
  2405. border-width:0px;
  2406. word-wrap:break-word;
  2407. text-transform:none;
  2408. visibility:hidden;
  2409. }
  2410. #u29944_img {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:0px;
  2414. top:0px;
  2415. width:116px;
  2416. height:38px;
  2417. }
  2418. #u29944 {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:639px;
  2422. top:38px;
  2423. width:116px;
  2424. height:38px;
  2425. display:flex;
  2426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2427. font-weight:400;
  2428. font-style:normal;
  2429. font-size:12px;
  2430. color:#333333;
  2431. }
  2432. #u29944 .text {
  2433. position:absolute;
  2434. align-self:center;
  2435. padding:2px 2px 2px 0px;
  2436. box-sizing:border-box;
  2437. width:100%;
  2438. }
  2439. #u29944_text {
  2440. border-width:0px;
  2441. word-wrap:break-word;
  2442. text-transform:none;
  2443. }
  2444. #u29945_img {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:0px;
  2448. top:0px;
  2449. width:116px;
  2450. height:38px;
  2451. }
  2452. #u29945 {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:755px;
  2456. top:38px;
  2457. width:116px;
  2458. height:38px;
  2459. display:flex;
  2460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2461. font-weight:400;
  2462. font-style:normal;
  2463. font-size:12px;
  2464. color:#333333;
  2465. }
  2466. #u29945 .text {
  2467. position:absolute;
  2468. align-self:center;
  2469. padding:2px 2px 2px 0px;
  2470. box-sizing:border-box;
  2471. width:100%;
  2472. }
  2473. #u29945_text {
  2474. border-width:0px;
  2475. word-wrap:break-word;
  2476. text-transform:none;
  2477. visibility:hidden;
  2478. }
  2479. #u29946_img {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:0px;
  2483. top:0px;
  2484. width:116px;
  2485. height:38px;
  2486. }
  2487. #u29946 {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:871px;
  2491. top:38px;
  2492. width:116px;
  2493. height:38px;
  2494. display:flex;
  2495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2496. font-weight:400;
  2497. font-style:normal;
  2498. font-size:12px;
  2499. color:#333333;
  2500. }
  2501. #u29946 .text {
  2502. position:absolute;
  2503. align-self:center;
  2504. padding:2px 2px 2px 0px;
  2505. box-sizing:border-box;
  2506. width:100%;
  2507. }
  2508. #u29946_text {
  2509. border-width:0px;
  2510. word-wrap:break-word;
  2511. text-transform:none;
  2512. visibility:hidden;
  2513. }
  2514. #u29947_img {
  2515. border-width:0px;
  2516. position:absolute;
  2517. left:0px;
  2518. top:0px;
  2519. width:116px;
  2520. height:38px;
  2521. }
  2522. #u29947 {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:987px;
  2526. top:38px;
  2527. width:116px;
  2528. height:38px;
  2529. display:flex;
  2530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2531. font-weight:400;
  2532. font-style:normal;
  2533. font-size:12px;
  2534. color:#333333;
  2535. }
  2536. #u29947 .text {
  2537. position:absolute;
  2538. align-self:center;
  2539. padding:2px 2px 2px 0px;
  2540. box-sizing:border-box;
  2541. width:100%;
  2542. }
  2543. #u29947_text {
  2544. border-width:0px;
  2545. word-wrap:break-word;
  2546. text-transform:none;
  2547. visibility:hidden;
  2548. }
  2549. #u29948_img {
  2550. border-width:0px;
  2551. position:absolute;
  2552. left:0px;
  2553. top:0px;
  2554. width:115px;
  2555. height:38px;
  2556. }
  2557. #u29948 {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:1103px;
  2561. top:38px;
  2562. width:115px;
  2563. height:38px;
  2564. display:flex;
  2565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2566. font-weight:400;
  2567. font-style:normal;
  2568. font-size:12px;
  2569. color:#0089FE;
  2570. }
  2571. #u29948 .text {
  2572. position:absolute;
  2573. align-self:center;
  2574. padding:2px 2px 2px 0px;
  2575. box-sizing:border-box;
  2576. width:100%;
  2577. }
  2578. #u29948_text {
  2579. border-width:0px;
  2580. word-wrap:break-word;
  2581. text-transform:none;
  2582. }
  2583. #u29949_img {
  2584. border-width:0px;
  2585. position:absolute;
  2586. left:0px;
  2587. top:0px;
  2588. width:58px;
  2589. height:38px;
  2590. }
  2591. #u29949 {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:0px;
  2595. top:76px;
  2596. width:58px;
  2597. height:38px;
  2598. display:flex;
  2599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2600. font-weight:400;
  2601. font-style:normal;
  2602. font-size:12px;
  2603. color:#333333;
  2604. }
  2605. #u29949 .text {
  2606. position:absolute;
  2607. align-self:center;
  2608. padding:2px 2px 2px 0px;
  2609. box-sizing:border-box;
  2610. width:100%;
  2611. }
  2612. #u29949_text {
  2613. border-width:0px;
  2614. word-wrap:break-word;
  2615. text-transform:none;
  2616. }
  2617. #u29950_img {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:0px;
  2621. top:0px;
  2622. width:116px;
  2623. height:38px;
  2624. }
  2625. #u29950 {
  2626. border-width:0px;
  2627. position:absolute;
  2628. left:58px;
  2629. top:76px;
  2630. width:116px;
  2631. height:38px;
  2632. display:flex;
  2633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2634. font-weight:400;
  2635. font-style:normal;
  2636. font-size:12px;
  2637. color:#333333;
  2638. }
  2639. #u29950 .text {
  2640. position:absolute;
  2641. align-self:center;
  2642. padding:2px 2px 2px 0px;
  2643. box-sizing:border-box;
  2644. width:100%;
  2645. }
  2646. #u29950_text {
  2647. border-width:0px;
  2648. word-wrap:break-word;
  2649. text-transform:none;
  2650. }
  2651. #u29951_img {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:0px;
  2656. width:465px;
  2657. height:38px;
  2658. }
  2659. #u29951 {
  2660. border-width:0px;
  2661. position:absolute;
  2662. left:174px;
  2663. top:76px;
  2664. width:465px;
  2665. height:38px;
  2666. display:flex;
  2667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2668. font-weight:400;
  2669. font-style:normal;
  2670. font-size:12px;
  2671. color:#333333;
  2672. }
  2673. #u29951 .text {
  2674. position:absolute;
  2675. align-self:center;
  2676. padding:2px 2px 2px 0px;
  2677. box-sizing:border-box;
  2678. width:100%;
  2679. }
  2680. #u29951_text {
  2681. border-width:0px;
  2682. word-wrap:break-word;
  2683. text-transform:none;
  2684. visibility:hidden;
  2685. }
  2686. #u29952_img {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:116px;
  2692. height:38px;
  2693. }
  2694. #u29952 {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:639px;
  2698. top:76px;
  2699. width:116px;
  2700. height:38px;
  2701. display:flex;
  2702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2703. font-weight:400;
  2704. font-style:normal;
  2705. font-size:12px;
  2706. color:#333333;
  2707. }
  2708. #u29952 .text {
  2709. position:absolute;
  2710. align-self:center;
  2711. padding:2px 2px 2px 0px;
  2712. box-sizing:border-box;
  2713. width:100%;
  2714. }
  2715. #u29952_text {
  2716. border-width:0px;
  2717. word-wrap:break-word;
  2718. text-transform:none;
  2719. }
  2720. #u29953_img {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:0px;
  2724. top:0px;
  2725. width:116px;
  2726. height:38px;
  2727. }
  2728. #u29953 {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:755px;
  2732. top:76px;
  2733. width:116px;
  2734. height:38px;
  2735. display:flex;
  2736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2737. font-weight:400;
  2738. font-style:normal;
  2739. font-size:12px;
  2740. color:#333333;
  2741. }
  2742. #u29953 .text {
  2743. position:absolute;
  2744. align-self:center;
  2745. padding:2px 2px 2px 0px;
  2746. box-sizing:border-box;
  2747. width:100%;
  2748. }
  2749. #u29953_text {
  2750. border-width:0px;
  2751. word-wrap:break-word;
  2752. text-transform:none;
  2753. visibility:hidden;
  2754. }
  2755. #u29954_img {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:0px;
  2759. top:0px;
  2760. width:116px;
  2761. height:38px;
  2762. }
  2763. #u29954 {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:871px;
  2767. top:76px;
  2768. width:116px;
  2769. height:38px;
  2770. display:flex;
  2771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2772. font-weight:400;
  2773. font-style:normal;
  2774. font-size:12px;
  2775. color:#333333;
  2776. }
  2777. #u29954 .text {
  2778. position:absolute;
  2779. align-self:center;
  2780. padding:2px 2px 2px 0px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u29954_text {
  2785. border-width:0px;
  2786. word-wrap:break-word;
  2787. text-transform:none;
  2788. visibility:hidden;
  2789. }
  2790. #u29955_img {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:0px;
  2794. top:0px;
  2795. width:116px;
  2796. height:38px;
  2797. }
  2798. #u29955 {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:987px;
  2802. top:76px;
  2803. width:116px;
  2804. height:38px;
  2805. display:flex;
  2806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2807. font-weight:400;
  2808. font-style:normal;
  2809. font-size:12px;
  2810. color:#333333;
  2811. }
  2812. #u29955 .text {
  2813. position:absolute;
  2814. align-self:center;
  2815. padding:2px 2px 2px 0px;
  2816. box-sizing:border-box;
  2817. width:100%;
  2818. }
  2819. #u29955_text {
  2820. border-width:0px;
  2821. word-wrap:break-word;
  2822. text-transform:none;
  2823. visibility:hidden;
  2824. }
  2825. #u29956_img {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:0px;
  2829. top:0px;
  2830. width:115px;
  2831. height:38px;
  2832. }
  2833. #u29956 {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:1103px;
  2837. top:76px;
  2838. width:115px;
  2839. height:38px;
  2840. display:flex;
  2841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2842. font-weight:400;
  2843. font-style:normal;
  2844. font-size:12px;
  2845. }
  2846. #u29956 .text {
  2847. position:absolute;
  2848. align-self:center;
  2849. padding:2px 2px 2px 0px;
  2850. box-sizing:border-box;
  2851. width:100%;
  2852. }
  2853. #u29956_text {
  2854. border-width:0px;
  2855. word-wrap:break-word;
  2856. text-transform:none;
  2857. }
  2858. #u29957_img {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:0px;
  2862. top:0px;
  2863. width:58px;
  2864. height:38px;
  2865. }
  2866. #u29957 {
  2867. border-width:0px;
  2868. position:absolute;
  2869. left:0px;
  2870. top:114px;
  2871. width:58px;
  2872. height:38px;
  2873. display:flex;
  2874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2875. font-weight:400;
  2876. font-style:normal;
  2877. font-size:12px;
  2878. color:#333333;
  2879. }
  2880. #u29957 .text {
  2881. position:absolute;
  2882. align-self:center;
  2883. padding:2px 2px 2px 0px;
  2884. box-sizing:border-box;
  2885. width:100%;
  2886. }
  2887. #u29957_text {
  2888. border-width:0px;
  2889. word-wrap:break-word;
  2890. text-transform:none;
  2891. visibility:hidden;
  2892. }
  2893. #u29958_img {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:0px;
  2897. top:0px;
  2898. width:116px;
  2899. height:38px;
  2900. }
  2901. #u29958 {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:58px;
  2905. top:114px;
  2906. width:116px;
  2907. height:38px;
  2908. display:flex;
  2909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2910. font-weight:400;
  2911. font-style:normal;
  2912. font-size:12px;
  2913. color:#333333;
  2914. }
  2915. #u29958 .text {
  2916. position:absolute;
  2917. align-self:center;
  2918. padding:2px 2px 2px 0px;
  2919. box-sizing:border-box;
  2920. width:100%;
  2921. }
  2922. #u29958_text {
  2923. border-width:0px;
  2924. word-wrap:break-word;
  2925. text-transform:none;
  2926. visibility:hidden;
  2927. }
  2928. #u29959_img {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:0px;
  2932. top:0px;
  2933. width:465px;
  2934. height:38px;
  2935. }
  2936. #u29959 {
  2937. border-width:0px;
  2938. position:absolute;
  2939. left:174px;
  2940. top:114px;
  2941. width:465px;
  2942. height:38px;
  2943. display:flex;
  2944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2945. font-weight:400;
  2946. font-style:normal;
  2947. font-size:12px;
  2948. color:#333333;
  2949. }
  2950. #u29959 .text {
  2951. position:absolute;
  2952. align-self:center;
  2953. padding:2px 2px 2px 0px;
  2954. box-sizing:border-box;
  2955. width:100%;
  2956. }
  2957. #u29959_text {
  2958. border-width:0px;
  2959. word-wrap:break-word;
  2960. text-transform:none;
  2961. visibility:hidden;
  2962. }
  2963. #u29960_img {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:0px;
  2967. top:0px;
  2968. width:116px;
  2969. height:38px;
  2970. }
  2971. #u29960 {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:639px;
  2975. top:114px;
  2976. width:116px;
  2977. height:38px;
  2978. display:flex;
  2979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2980. font-weight:400;
  2981. font-style:normal;
  2982. font-size:12px;
  2983. color:#333333;
  2984. }
  2985. #u29960 .text {
  2986. position:absolute;
  2987. align-self:center;
  2988. padding:2px 2px 2px 0px;
  2989. box-sizing:border-box;
  2990. width:100%;
  2991. }
  2992. #u29960_text {
  2993. border-width:0px;
  2994. word-wrap:break-word;
  2995. text-transform:none;
  2996. visibility:hidden;
  2997. }
  2998. #u29961_img {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:0px;
  3002. top:0px;
  3003. width:116px;
  3004. height:38px;
  3005. }
  3006. #u29961 {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:755px;
  3010. top:114px;
  3011. width:116px;
  3012. height:38px;
  3013. display:flex;
  3014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3015. font-weight:400;
  3016. font-style:normal;
  3017. font-size:12px;
  3018. color:#333333;
  3019. }
  3020. #u29961 .text {
  3021. position:absolute;
  3022. align-self:center;
  3023. padding:2px 2px 2px 0px;
  3024. box-sizing:border-box;
  3025. width:100%;
  3026. }
  3027. #u29961_text {
  3028. border-width:0px;
  3029. word-wrap:break-word;
  3030. text-transform:none;
  3031. visibility:hidden;
  3032. }
  3033. #u29962_img {
  3034. border-width:0px;
  3035. position:absolute;
  3036. left:0px;
  3037. top:0px;
  3038. width:116px;
  3039. height:38px;
  3040. }
  3041. #u29962 {
  3042. border-width:0px;
  3043. position:absolute;
  3044. left:871px;
  3045. top:114px;
  3046. width:116px;
  3047. height:38px;
  3048. display:flex;
  3049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3050. font-weight:400;
  3051. font-style:normal;
  3052. font-size:12px;
  3053. color:#333333;
  3054. }
  3055. #u29962 .text {
  3056. position:absolute;
  3057. align-self:center;
  3058. padding:2px 2px 2px 0px;
  3059. box-sizing:border-box;
  3060. width:100%;
  3061. }
  3062. #u29962_text {
  3063. border-width:0px;
  3064. word-wrap:break-word;
  3065. text-transform:none;
  3066. visibility:hidden;
  3067. }
  3068. #u29963_img {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:116px;
  3074. height:38px;
  3075. }
  3076. #u29963 {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:987px;
  3080. top:114px;
  3081. width:116px;
  3082. height:38px;
  3083. display:flex;
  3084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3085. font-weight:400;
  3086. font-style:normal;
  3087. font-size:12px;
  3088. color:#333333;
  3089. }
  3090. #u29963 .text {
  3091. position:absolute;
  3092. align-self:center;
  3093. padding:2px 2px 2px 0px;
  3094. box-sizing:border-box;
  3095. width:100%;
  3096. }
  3097. #u29963_text {
  3098. border-width:0px;
  3099. word-wrap:break-word;
  3100. text-transform:none;
  3101. visibility:hidden;
  3102. }
  3103. #u29964_img {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:0px;
  3107. top:0px;
  3108. width:115px;
  3109. height:38px;
  3110. }
  3111. #u29964 {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:1103px;
  3115. top:114px;
  3116. width:115px;
  3117. height:38px;
  3118. display:flex;
  3119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3120. font-weight:400;
  3121. font-style:normal;
  3122. font-size:12px;
  3123. color:#0089FE;
  3124. }
  3125. #u29964 .text {
  3126. position:absolute;
  3127. align-self:center;
  3128. padding:2px 2px 2px 0px;
  3129. box-sizing:border-box;
  3130. width:100%;
  3131. }
  3132. #u29964_text {
  3133. border-width:0px;
  3134. word-wrap:break-word;
  3135. text-transform:none;
  3136. visibility:hidden;
  3137. }
  3138. #u29965_img {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:0px;
  3142. top:0px;
  3143. width:58px;
  3144. height:38px;
  3145. }
  3146. #u29965 {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:0px;
  3150. top:152px;
  3151. width:58px;
  3152. height:38px;
  3153. display:flex;
  3154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3155. font-weight:400;
  3156. font-style:normal;
  3157. font-size:12px;
  3158. color:#333333;
  3159. }
  3160. #u29965 .text {
  3161. position:absolute;
  3162. align-self:center;
  3163. padding:2px 2px 2px 0px;
  3164. box-sizing:border-box;
  3165. width:100%;
  3166. }
  3167. #u29965_text {
  3168. border-width:0px;
  3169. word-wrap:break-word;
  3170. text-transform:none;
  3171. visibility:hidden;
  3172. }
  3173. #u29966_img {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:0px;
  3177. top:0px;
  3178. width:116px;
  3179. height:38px;
  3180. }
  3181. #u29966 {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:58px;
  3185. top:152px;
  3186. width:116px;
  3187. height:38px;
  3188. display:flex;
  3189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3190. font-weight:400;
  3191. font-style:normal;
  3192. font-size:12px;
  3193. color:#333333;
  3194. }
  3195. #u29966 .text {
  3196. position:absolute;
  3197. align-self:center;
  3198. padding:2px 2px 2px 0px;
  3199. box-sizing:border-box;
  3200. width:100%;
  3201. }
  3202. #u29966_text {
  3203. border-width:0px;
  3204. word-wrap:break-word;
  3205. text-transform:none;
  3206. visibility:hidden;
  3207. }
  3208. #u29967_img {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:0px;
  3212. top:0px;
  3213. width:465px;
  3214. height:38px;
  3215. }
  3216. #u29967 {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:174px;
  3220. top:152px;
  3221. width:465px;
  3222. height:38px;
  3223. display:flex;
  3224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3225. font-weight:400;
  3226. font-style:normal;
  3227. font-size:12px;
  3228. color:#333333;
  3229. }
  3230. #u29967 .text {
  3231. position:absolute;
  3232. align-self:center;
  3233. padding:2px 2px 2px 0px;
  3234. box-sizing:border-box;
  3235. width:100%;
  3236. }
  3237. #u29967_text {
  3238. border-width:0px;
  3239. word-wrap:break-word;
  3240. text-transform:none;
  3241. visibility:hidden;
  3242. }
  3243. #u29968_img {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:0px;
  3247. top:0px;
  3248. width:116px;
  3249. height:38px;
  3250. }
  3251. #u29968 {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:639px;
  3255. top:152px;
  3256. width:116px;
  3257. height:38px;
  3258. display:flex;
  3259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3260. font-weight:400;
  3261. font-style:normal;
  3262. font-size:12px;
  3263. color:#333333;
  3264. }
  3265. #u29968 .text {
  3266. position:absolute;
  3267. align-self:center;
  3268. padding:2px 2px 2px 0px;
  3269. box-sizing:border-box;
  3270. width:100%;
  3271. }
  3272. #u29968_text {
  3273. border-width:0px;
  3274. word-wrap:break-word;
  3275. text-transform:none;
  3276. visibility:hidden;
  3277. }
  3278. #u29969_img {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:0px;
  3282. top:0px;
  3283. width:116px;
  3284. height:38px;
  3285. }
  3286. #u29969 {
  3287. border-width:0px;
  3288. position:absolute;
  3289. left:755px;
  3290. top:152px;
  3291. width:116px;
  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. color:#333333;
  3299. }
  3300. #u29969 .text {
  3301. position:absolute;
  3302. align-self:center;
  3303. padding:2px 2px 2px 0px;
  3304. box-sizing:border-box;
  3305. width:100%;
  3306. }
  3307. #u29969_text {
  3308. border-width:0px;
  3309. word-wrap:break-word;
  3310. text-transform:none;
  3311. visibility:hidden;
  3312. }
  3313. #u29970_img {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:0px;
  3317. top:0px;
  3318. width:116px;
  3319. height:38px;
  3320. }
  3321. #u29970 {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:871px;
  3325. top:152px;
  3326. width:116px;
  3327. height:38px;
  3328. display:flex;
  3329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3330. font-weight:400;
  3331. font-style:normal;
  3332. font-size:12px;
  3333. color:#333333;
  3334. }
  3335. #u29970 .text {
  3336. position:absolute;
  3337. align-self:center;
  3338. padding:2px 2px 2px 0px;
  3339. box-sizing:border-box;
  3340. width:100%;
  3341. }
  3342. #u29970_text {
  3343. border-width:0px;
  3344. word-wrap:break-word;
  3345. text-transform:none;
  3346. visibility:hidden;
  3347. }
  3348. #u29971_img {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:0px;
  3352. top:0px;
  3353. width:116px;
  3354. height:38px;
  3355. }
  3356. #u29971 {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:987px;
  3360. top:152px;
  3361. width:116px;
  3362. height:38px;
  3363. display:flex;
  3364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3365. font-weight:400;
  3366. font-style:normal;
  3367. font-size:12px;
  3368. color:#333333;
  3369. }
  3370. #u29971 .text {
  3371. position:absolute;
  3372. align-self:center;
  3373. padding:2px 2px 2px 0px;
  3374. box-sizing:border-box;
  3375. width:100%;
  3376. }
  3377. #u29971_text {
  3378. border-width:0px;
  3379. word-wrap:break-word;
  3380. text-transform:none;
  3381. visibility:hidden;
  3382. }
  3383. #u29972_img {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:0px;
  3387. top:0px;
  3388. width:115px;
  3389. height:38px;
  3390. }
  3391. #u29972 {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:1103px;
  3395. top:152px;
  3396. width:115px;
  3397. height:38px;
  3398. display:flex;
  3399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3400. font-weight:400;
  3401. font-style:normal;
  3402. font-size:12px;
  3403. color:#AAAAAA;
  3404. }
  3405. #u29972 .text {
  3406. position:absolute;
  3407. align-self:center;
  3408. padding:2px 2px 2px 0px;
  3409. box-sizing:border-box;
  3410. width:100%;
  3411. }
  3412. #u29972_text {
  3413. border-width:0px;
  3414. word-wrap:break-word;
  3415. text-transform:none;
  3416. visibility:hidden;
  3417. }
  3418. #u29973_img {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:0px;
  3422. top:0px;
  3423. width:58px;
  3424. height:35px;
  3425. }
  3426. #u29973 {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:0px;
  3430. top:190px;
  3431. width:58px;
  3432. height:35px;
  3433. display:flex;
  3434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3435. font-weight:400;
  3436. font-style:normal;
  3437. font-size:12px;
  3438. color:#333333;
  3439. }
  3440. #u29973 .text {
  3441. position:absolute;
  3442. align-self:center;
  3443. padding:2px 2px 2px 0px;
  3444. box-sizing:border-box;
  3445. width:100%;
  3446. }
  3447. #u29973_text {
  3448. border-width:0px;
  3449. word-wrap:break-word;
  3450. text-transform:none;
  3451. visibility:hidden;
  3452. }
  3453. #u29974_img {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:0px;
  3457. top:0px;
  3458. width:116px;
  3459. height:35px;
  3460. }
  3461. #u29974 {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:58px;
  3465. top:190px;
  3466. width:116px;
  3467. height:35px;
  3468. display:flex;
  3469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3470. font-weight:400;
  3471. font-style:normal;
  3472. font-size:12px;
  3473. color:#333333;
  3474. }
  3475. #u29974 .text {
  3476. position:absolute;
  3477. align-self:center;
  3478. padding:2px 2px 2px 0px;
  3479. box-sizing:border-box;
  3480. width:100%;
  3481. }
  3482. #u29974_text {
  3483. border-width:0px;
  3484. word-wrap:break-word;
  3485. text-transform:none;
  3486. visibility:hidden;
  3487. }
  3488. #u29975_img {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:0px;
  3492. top:0px;
  3493. width:465px;
  3494. height:35px;
  3495. }
  3496. #u29975 {
  3497. border-width:0px;
  3498. position:absolute;
  3499. left:174px;
  3500. top:190px;
  3501. width:465px;
  3502. height:35px;
  3503. display:flex;
  3504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3505. font-weight:400;
  3506. font-style:normal;
  3507. font-size:12px;
  3508. color:#333333;
  3509. }
  3510. #u29975 .text {
  3511. position:absolute;
  3512. align-self:center;
  3513. padding:2px 2px 2px 0px;
  3514. box-sizing:border-box;
  3515. width:100%;
  3516. }
  3517. #u29975_text {
  3518. border-width:0px;
  3519. word-wrap:break-word;
  3520. text-transform:none;
  3521. visibility:hidden;
  3522. }
  3523. #u29976_img {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:0px;
  3527. top:0px;
  3528. width:116px;
  3529. height:35px;
  3530. }
  3531. #u29976 {
  3532. border-width:0px;
  3533. position:absolute;
  3534. left:639px;
  3535. top:190px;
  3536. width:116px;
  3537. height:35px;
  3538. display:flex;
  3539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3540. font-weight:400;
  3541. font-style:normal;
  3542. font-size:12px;
  3543. color:#333333;
  3544. }
  3545. #u29976 .text {
  3546. position:absolute;
  3547. align-self:center;
  3548. padding:2px 2px 2px 0px;
  3549. box-sizing:border-box;
  3550. width:100%;
  3551. }
  3552. #u29976_text {
  3553. border-width:0px;
  3554. word-wrap:break-word;
  3555. text-transform:none;
  3556. visibility:hidden;
  3557. }
  3558. #u29977_img {
  3559. border-width:0px;
  3560. position:absolute;
  3561. left:0px;
  3562. top:0px;
  3563. width:116px;
  3564. height:35px;
  3565. }
  3566. #u29977 {
  3567. border-width:0px;
  3568. position:absolute;
  3569. left:755px;
  3570. top:190px;
  3571. width:116px;
  3572. height:35px;
  3573. display:flex;
  3574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3575. font-weight:400;
  3576. font-style:normal;
  3577. font-size:12px;
  3578. color:#333333;
  3579. }
  3580. #u29977 .text {
  3581. position:absolute;
  3582. align-self:center;
  3583. padding:2px 2px 2px 0px;
  3584. box-sizing:border-box;
  3585. width:100%;
  3586. }
  3587. #u29977_text {
  3588. border-width:0px;
  3589. word-wrap:break-word;
  3590. text-transform:none;
  3591. visibility:hidden;
  3592. }
  3593. #u29978_img {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:0px;
  3597. top:0px;
  3598. width:116px;
  3599. height:35px;
  3600. }
  3601. #u29978 {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:871px;
  3605. top:190px;
  3606. width:116px;
  3607. height:35px;
  3608. display:flex;
  3609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3610. font-weight:400;
  3611. font-style:normal;
  3612. font-size:12px;
  3613. color:#333333;
  3614. }
  3615. #u29978 .text {
  3616. position:absolute;
  3617. align-self:center;
  3618. padding:2px 2px 2px 0px;
  3619. box-sizing:border-box;
  3620. width:100%;
  3621. }
  3622. #u29978_text {
  3623. border-width:0px;
  3624. word-wrap:break-word;
  3625. text-transform:none;
  3626. visibility:hidden;
  3627. }
  3628. #u29979_img {
  3629. border-width:0px;
  3630. position:absolute;
  3631. left:0px;
  3632. top:0px;
  3633. width:116px;
  3634. height:35px;
  3635. }
  3636. #u29979 {
  3637. border-width:0px;
  3638. position:absolute;
  3639. left:987px;
  3640. top:190px;
  3641. width:116px;
  3642. height:35px;
  3643. display:flex;
  3644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3645. font-weight:400;
  3646. font-style:normal;
  3647. font-size:12px;
  3648. color:#333333;
  3649. }
  3650. #u29979 .text {
  3651. position:absolute;
  3652. align-self:center;
  3653. padding:2px 2px 2px 0px;
  3654. box-sizing:border-box;
  3655. width:100%;
  3656. }
  3657. #u29979_text {
  3658. border-width:0px;
  3659. word-wrap:break-word;
  3660. text-transform:none;
  3661. visibility:hidden;
  3662. }
  3663. #u29980_img {
  3664. border-width:0px;
  3665. position:absolute;
  3666. left:0px;
  3667. top:0px;
  3668. width:115px;
  3669. height:35px;
  3670. }
  3671. #u29980 {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:1103px;
  3675. top:190px;
  3676. width:115px;
  3677. height:35px;
  3678. display:flex;
  3679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3680. font-weight:400;
  3681. font-style:normal;
  3682. font-size:12px;
  3683. color:#AAAAAA;
  3684. }
  3685. #u29980 .text {
  3686. position:absolute;
  3687. align-self:center;
  3688. padding:2px 2px 2px 0px;
  3689. box-sizing:border-box;
  3690. width:100%;
  3691. }
  3692. #u29980_text {
  3693. border-width:0px;
  3694. word-wrap:break-word;
  3695. text-transform:none;
  3696. visibility:hidden;
  3697. }
  3698. #u29981_img {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:0px;
  3702. top:0px;
  3703. width:58px;
  3704. height:35px;
  3705. }
  3706. #u29981 {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:0px;
  3710. top:225px;
  3711. width:58px;
  3712. height:35px;
  3713. display:flex;
  3714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3715. font-weight:400;
  3716. font-style:normal;
  3717. font-size:12px;
  3718. color:#333333;
  3719. }
  3720. #u29981 .text {
  3721. position:absolute;
  3722. align-self:center;
  3723. padding:2px 2px 2px 0px;
  3724. box-sizing:border-box;
  3725. width:100%;
  3726. }
  3727. #u29981_text {
  3728. border-width:0px;
  3729. word-wrap:break-word;
  3730. text-transform:none;
  3731. visibility:hidden;
  3732. }
  3733. #u29982_img {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:0px;
  3737. top:0px;
  3738. width:116px;
  3739. height:35px;
  3740. }
  3741. #u29982 {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:58px;
  3745. top:225px;
  3746. width:116px;
  3747. height:35px;
  3748. display:flex;
  3749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3750. font-weight:400;
  3751. font-style:normal;
  3752. font-size:12px;
  3753. color:#333333;
  3754. }
  3755. #u29982 .text {
  3756. position:absolute;
  3757. align-self:center;
  3758. padding:2px 2px 2px 0px;
  3759. box-sizing:border-box;
  3760. width:100%;
  3761. }
  3762. #u29982_text {
  3763. border-width:0px;
  3764. word-wrap:break-word;
  3765. text-transform:none;
  3766. visibility:hidden;
  3767. }
  3768. #u29983_img {
  3769. border-width:0px;
  3770. position:absolute;
  3771. left:0px;
  3772. top:0px;
  3773. width:465px;
  3774. height:35px;
  3775. }
  3776. #u29983 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:174px;
  3780. top:225px;
  3781. width:465px;
  3782. height:35px;
  3783. display:flex;
  3784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3785. font-weight:400;
  3786. font-style:normal;
  3787. font-size:12px;
  3788. color:#333333;
  3789. }
  3790. #u29983 .text {
  3791. position:absolute;
  3792. align-self:center;
  3793. padding:2px 2px 2px 0px;
  3794. box-sizing:border-box;
  3795. width:100%;
  3796. }
  3797. #u29983_text {
  3798. border-width:0px;
  3799. word-wrap:break-word;
  3800. text-transform:none;
  3801. visibility:hidden;
  3802. }
  3803. #u29984_img {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:0px;
  3807. top:0px;
  3808. width:116px;
  3809. height:35px;
  3810. }
  3811. #u29984 {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:639px;
  3815. top:225px;
  3816. width:116px;
  3817. height:35px;
  3818. display:flex;
  3819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3820. font-weight:400;
  3821. font-style:normal;
  3822. font-size:12px;
  3823. color:#333333;
  3824. }
  3825. #u29984 .text {
  3826. position:absolute;
  3827. align-self:center;
  3828. padding:2px 2px 2px 0px;
  3829. box-sizing:border-box;
  3830. width:100%;
  3831. }
  3832. #u29984_text {
  3833. border-width:0px;
  3834. word-wrap:break-word;
  3835. text-transform:none;
  3836. visibility:hidden;
  3837. }
  3838. #u29985_img {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:0px;
  3842. top:0px;
  3843. width:116px;
  3844. height:35px;
  3845. }
  3846. #u29985 {
  3847. border-width:0px;
  3848. position:absolute;
  3849. left:755px;
  3850. top:225px;
  3851. width:116px;
  3852. height:35px;
  3853. display:flex;
  3854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3855. font-weight:400;
  3856. font-style:normal;
  3857. font-size:12px;
  3858. color:#333333;
  3859. }
  3860. #u29985 .text {
  3861. position:absolute;
  3862. align-self:center;
  3863. padding:2px 2px 2px 0px;
  3864. box-sizing:border-box;
  3865. width:100%;
  3866. }
  3867. #u29985_text {
  3868. border-width:0px;
  3869. word-wrap:break-word;
  3870. text-transform:none;
  3871. visibility:hidden;
  3872. }
  3873. #u29986_img {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:0px;
  3877. top:0px;
  3878. width:116px;
  3879. height:35px;
  3880. }
  3881. #u29986 {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:871px;
  3885. top:225px;
  3886. width:116px;
  3887. height:35px;
  3888. display:flex;
  3889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3890. font-weight:400;
  3891. font-style:normal;
  3892. font-size:12px;
  3893. color:#333333;
  3894. }
  3895. #u29986 .text {
  3896. position:absolute;
  3897. align-self:center;
  3898. padding:2px 2px 2px 0px;
  3899. box-sizing:border-box;
  3900. width:100%;
  3901. }
  3902. #u29986_text {
  3903. border-width:0px;
  3904. word-wrap:break-word;
  3905. text-transform:none;
  3906. visibility:hidden;
  3907. }
  3908. #u29987_img {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:0px;
  3912. top:0px;
  3913. width:116px;
  3914. height:35px;
  3915. }
  3916. #u29987 {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:987px;
  3920. top:225px;
  3921. width:116px;
  3922. height:35px;
  3923. display:flex;
  3924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3925. font-weight:400;
  3926. font-style:normal;
  3927. font-size:12px;
  3928. color:#333333;
  3929. }
  3930. #u29987 .text {
  3931. position:absolute;
  3932. align-self:center;
  3933. padding:2px 2px 2px 0px;
  3934. box-sizing:border-box;
  3935. width:100%;
  3936. }
  3937. #u29987_text {
  3938. border-width:0px;
  3939. word-wrap:break-word;
  3940. text-transform:none;
  3941. visibility:hidden;
  3942. }
  3943. #u29988_img {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:0px;
  3947. top:0px;
  3948. width:115px;
  3949. height:35px;
  3950. }
  3951. #u29988 {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:1103px;
  3955. top:225px;
  3956. width:115px;
  3957. height:35px;
  3958. display:flex;
  3959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3960. font-weight:400;
  3961. font-style:normal;
  3962. font-size:12px;
  3963. color:#333333;
  3964. }
  3965. #u29988 .text {
  3966. position:absolute;
  3967. align-self:center;
  3968. padding:2px 2px 2px 0px;
  3969. box-sizing:border-box;
  3970. width:100%;
  3971. }
  3972. #u29988_text {
  3973. border-width:0px;
  3974. word-wrap:break-word;
  3975. text-transform:none;
  3976. visibility:hidden;
  3977. }
  3978. #u29989_img {
  3979. border-width:0px;
  3980. position:absolute;
  3981. left:0px;
  3982. top:0px;
  3983. width:58px;
  3984. height:32px;
  3985. }
  3986. #u29989 {
  3987. border-width:0px;
  3988. position:absolute;
  3989. left:0px;
  3990. top:260px;
  3991. width:58px;
  3992. height:32px;
  3993. display:flex;
  3994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3995. font-weight:400;
  3996. font-style:normal;
  3997. font-size:12px;
  3998. color:#333333;
  3999. }
  4000. #u29989 .text {
  4001. position:absolute;
  4002. align-self:center;
  4003. padding:2px 2px 2px 0px;
  4004. box-sizing:border-box;
  4005. width:100%;
  4006. }
  4007. #u29989_text {
  4008. border-width:0px;
  4009. word-wrap:break-word;
  4010. text-transform:none;
  4011. visibility:hidden;
  4012. }
  4013. #u29990_img {
  4014. border-width:0px;
  4015. position:absolute;
  4016. left:0px;
  4017. top:0px;
  4018. width:116px;
  4019. height:32px;
  4020. }
  4021. #u29990 {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:58px;
  4025. top:260px;
  4026. width:116px;
  4027. height:32px;
  4028. display:flex;
  4029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4030. font-weight:400;
  4031. font-style:normal;
  4032. font-size:12px;
  4033. color:#333333;
  4034. }
  4035. #u29990 .text {
  4036. position:absolute;
  4037. align-self:center;
  4038. padding:2px 2px 2px 0px;
  4039. box-sizing:border-box;
  4040. width:100%;
  4041. }
  4042. #u29990_text {
  4043. border-width:0px;
  4044. word-wrap:break-word;
  4045. text-transform:none;
  4046. visibility:hidden;
  4047. }
  4048. #u29991_img {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:0px;
  4052. top:0px;
  4053. width:465px;
  4054. height:32px;
  4055. }
  4056. #u29991 {
  4057. border-width:0px;
  4058. position:absolute;
  4059. left:174px;
  4060. top:260px;
  4061. width:465px;
  4062. height:32px;
  4063. display:flex;
  4064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4065. font-weight:400;
  4066. font-style:normal;
  4067. font-size:12px;
  4068. color:#333333;
  4069. }
  4070. #u29991 .text {
  4071. position:absolute;
  4072. align-self:center;
  4073. padding:2px 2px 2px 0px;
  4074. box-sizing:border-box;
  4075. width:100%;
  4076. }
  4077. #u29991_text {
  4078. border-width:0px;
  4079. word-wrap:break-word;
  4080. text-transform:none;
  4081. visibility:hidden;
  4082. }
  4083. #u29992_img {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:0px;
  4087. top:0px;
  4088. width:116px;
  4089. height:32px;
  4090. }
  4091. #u29992 {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:639px;
  4095. top:260px;
  4096. width:116px;
  4097. height:32px;
  4098. display:flex;
  4099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4100. font-weight:400;
  4101. font-style:normal;
  4102. font-size:12px;
  4103. color:#333333;
  4104. }
  4105. #u29992 .text {
  4106. position:absolute;
  4107. align-self:center;
  4108. padding:2px 2px 2px 0px;
  4109. box-sizing:border-box;
  4110. width:100%;
  4111. }
  4112. #u29992_text {
  4113. border-width:0px;
  4114. word-wrap:break-word;
  4115. text-transform:none;
  4116. visibility:hidden;
  4117. }
  4118. #u29993_img {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:0px;
  4122. top:0px;
  4123. width:116px;
  4124. height:32px;
  4125. }
  4126. #u29993 {
  4127. border-width:0px;
  4128. position:absolute;
  4129. left:755px;
  4130. top:260px;
  4131. width:116px;
  4132. height:32px;
  4133. display:flex;
  4134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4135. font-weight:400;
  4136. font-style:normal;
  4137. font-size:12px;
  4138. color:#333333;
  4139. }
  4140. #u29993 .text {
  4141. position:absolute;
  4142. align-self:center;
  4143. padding:2px 2px 2px 0px;
  4144. box-sizing:border-box;
  4145. width:100%;
  4146. }
  4147. #u29993_text {
  4148. border-width:0px;
  4149. word-wrap:break-word;
  4150. text-transform:none;
  4151. visibility:hidden;
  4152. }
  4153. #u29994_img {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:0px;
  4157. top:0px;
  4158. width:116px;
  4159. height:32px;
  4160. }
  4161. #u29994 {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:871px;
  4165. top:260px;
  4166. width:116px;
  4167. height:32px;
  4168. display:flex;
  4169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4170. font-weight:400;
  4171. font-style:normal;
  4172. font-size:12px;
  4173. color:#333333;
  4174. }
  4175. #u29994 .text {
  4176. position:absolute;
  4177. align-self:center;
  4178. padding:2px 2px 2px 0px;
  4179. box-sizing:border-box;
  4180. width:100%;
  4181. }
  4182. #u29994_text {
  4183. border-width:0px;
  4184. word-wrap:break-word;
  4185. text-transform:none;
  4186. visibility:hidden;
  4187. }
  4188. #u29995_img {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:0px;
  4192. top:0px;
  4193. width:116px;
  4194. height:32px;
  4195. }
  4196. #u29995 {
  4197. border-width:0px;
  4198. position:absolute;
  4199. left:987px;
  4200. top:260px;
  4201. width:116px;
  4202. height:32px;
  4203. display:flex;
  4204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4205. font-weight:400;
  4206. font-style:normal;
  4207. font-size:12px;
  4208. color:#333333;
  4209. }
  4210. #u29995 .text {
  4211. position:absolute;
  4212. align-self:center;
  4213. padding:2px 2px 2px 0px;
  4214. box-sizing:border-box;
  4215. width:100%;
  4216. }
  4217. #u29995_text {
  4218. border-width:0px;
  4219. word-wrap:break-word;
  4220. text-transform:none;
  4221. visibility:hidden;
  4222. }
  4223. #u29996_img {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:0px;
  4227. top:0px;
  4228. width:115px;
  4229. height:32px;
  4230. }
  4231. #u29996 {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:1103px;
  4235. top:260px;
  4236. width:115px;
  4237. height:32px;
  4238. display:flex;
  4239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4240. font-weight:400;
  4241. font-style:normal;
  4242. font-size:12px;
  4243. color:#333333;
  4244. }
  4245. #u29996 .text {
  4246. position:absolute;
  4247. align-self:center;
  4248. padding:2px 2px 2px 0px;
  4249. box-sizing:border-box;
  4250. width:100%;
  4251. }
  4252. #u29996_text {
  4253. border-width:0px;
  4254. word-wrap:break-word;
  4255. text-transform:none;
  4256. visibility:hidden;
  4257. }
  4258. #u29997_img {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:0px;
  4262. top:0px;
  4263. width:58px;
  4264. height:30px;
  4265. }
  4266. #u29997 {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:0px;
  4270. top:292px;
  4271. width:58px;
  4272. height:30px;
  4273. display:flex;
  4274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4275. font-weight:400;
  4276. font-style:normal;
  4277. font-size:12px;
  4278. color:#333333;
  4279. }
  4280. #u29997 .text {
  4281. position:absolute;
  4282. align-self:center;
  4283. padding:2px 2px 2px 0px;
  4284. box-sizing:border-box;
  4285. width:100%;
  4286. }
  4287. #u29997_text {
  4288. border-width:0px;
  4289. word-wrap:break-word;
  4290. text-transform:none;
  4291. visibility:hidden;
  4292. }
  4293. #u29998_img {
  4294. border-width:0px;
  4295. position:absolute;
  4296. left:0px;
  4297. top:0px;
  4298. width:116px;
  4299. height:30px;
  4300. }
  4301. #u29998 {
  4302. border-width:0px;
  4303. position:absolute;
  4304. left:58px;
  4305. top:292px;
  4306. width:116px;
  4307. height:30px;
  4308. display:flex;
  4309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4310. font-weight:400;
  4311. font-style:normal;
  4312. font-size:12px;
  4313. color:#333333;
  4314. }
  4315. #u29998 .text {
  4316. position:absolute;
  4317. align-self:center;
  4318. padding:2px 2px 2px 0px;
  4319. box-sizing:border-box;
  4320. width:100%;
  4321. }
  4322. #u29998_text {
  4323. border-width:0px;
  4324. word-wrap:break-word;
  4325. text-transform:none;
  4326. visibility:hidden;
  4327. }
  4328. #u29999_img {
  4329. border-width:0px;
  4330. position:absolute;
  4331. left:0px;
  4332. top:0px;
  4333. width:465px;
  4334. height:30px;
  4335. }
  4336. #u29999 {
  4337. border-width:0px;
  4338. position:absolute;
  4339. left:174px;
  4340. top:292px;
  4341. width:465px;
  4342. height:30px;
  4343. display:flex;
  4344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4345. font-weight:400;
  4346. font-style:normal;
  4347. font-size:12px;
  4348. color:#333333;
  4349. }
  4350. #u29999 .text {
  4351. position:absolute;
  4352. align-self:center;
  4353. padding:2px 2px 2px 0px;
  4354. box-sizing:border-box;
  4355. width:100%;
  4356. }
  4357. #u29999_text {
  4358. border-width:0px;
  4359. word-wrap:break-word;
  4360. text-transform:none;
  4361. visibility:hidden;
  4362. }
  4363. #u30000_img {
  4364. border-width:0px;
  4365. position:absolute;
  4366. left:0px;
  4367. top:0px;
  4368. width:116px;
  4369. height:30px;
  4370. }
  4371. #u30000 {
  4372. border-width:0px;
  4373. position:absolute;
  4374. left:639px;
  4375. top:292px;
  4376. width:116px;
  4377. height:30px;
  4378. display:flex;
  4379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4380. font-weight:400;
  4381. font-style:normal;
  4382. font-size:12px;
  4383. color:#333333;
  4384. }
  4385. #u30000 .text {
  4386. position:absolute;
  4387. align-self:center;
  4388. padding:2px 2px 2px 0px;
  4389. box-sizing:border-box;
  4390. width:100%;
  4391. }
  4392. #u30000_text {
  4393. border-width:0px;
  4394. word-wrap:break-word;
  4395. text-transform:none;
  4396. visibility:hidden;
  4397. }
  4398. #u30001_img {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:0px;
  4402. top:0px;
  4403. width:116px;
  4404. height:30px;
  4405. }
  4406. #u30001 {
  4407. border-width:0px;
  4408. position:absolute;
  4409. left:755px;
  4410. top:292px;
  4411. width:116px;
  4412. height:30px;
  4413. display:flex;
  4414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4415. font-weight:400;
  4416. font-style:normal;
  4417. font-size:12px;
  4418. color:#333333;
  4419. }
  4420. #u30001 .text {
  4421. position:absolute;
  4422. align-self:center;
  4423. padding:2px 2px 2px 0px;
  4424. box-sizing:border-box;
  4425. width:100%;
  4426. }
  4427. #u30001_text {
  4428. border-width:0px;
  4429. word-wrap:break-word;
  4430. text-transform:none;
  4431. visibility:hidden;
  4432. }
  4433. #u30002_img {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:0px;
  4437. top:0px;
  4438. width:116px;
  4439. height:30px;
  4440. }
  4441. #u30002 {
  4442. border-width:0px;
  4443. position:absolute;
  4444. left:871px;
  4445. top:292px;
  4446. width:116px;
  4447. height:30px;
  4448. display:flex;
  4449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4450. font-weight:400;
  4451. font-style:normal;
  4452. font-size:12px;
  4453. color:#333333;
  4454. }
  4455. #u30002 .text {
  4456. position:absolute;
  4457. align-self:center;
  4458. padding:2px 2px 2px 0px;
  4459. box-sizing:border-box;
  4460. width:100%;
  4461. }
  4462. #u30002_text {
  4463. border-width:0px;
  4464. word-wrap:break-word;
  4465. text-transform:none;
  4466. visibility:hidden;
  4467. }
  4468. #u30003_img {
  4469. border-width:0px;
  4470. position:absolute;
  4471. left:0px;
  4472. top:0px;
  4473. width:116px;
  4474. height:30px;
  4475. }
  4476. #u30003 {
  4477. border-width:0px;
  4478. position:absolute;
  4479. left:987px;
  4480. top:292px;
  4481. width:116px;
  4482. height:30px;
  4483. display:flex;
  4484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4485. font-weight:400;
  4486. font-style:normal;
  4487. font-size:12px;
  4488. color:#333333;
  4489. }
  4490. #u30003 .text {
  4491. position:absolute;
  4492. align-self:center;
  4493. padding:2px 2px 2px 0px;
  4494. box-sizing:border-box;
  4495. width:100%;
  4496. }
  4497. #u30003_text {
  4498. border-width:0px;
  4499. word-wrap:break-word;
  4500. text-transform:none;
  4501. visibility:hidden;
  4502. }
  4503. #u30004_img {
  4504. border-width:0px;
  4505. position:absolute;
  4506. left:0px;
  4507. top:0px;
  4508. width:115px;
  4509. height:30px;
  4510. }
  4511. #u30004 {
  4512. border-width:0px;
  4513. position:absolute;
  4514. left:1103px;
  4515. top:292px;
  4516. width:115px;
  4517. height:30px;
  4518. display:flex;
  4519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4520. font-weight:400;
  4521. font-style:normal;
  4522. font-size:12px;
  4523. color:#333333;
  4524. }
  4525. #u30004 .text {
  4526. position:absolute;
  4527. align-self:center;
  4528. padding:2px 2px 2px 0px;
  4529. box-sizing:border-box;
  4530. width:100%;
  4531. }
  4532. #u30004_text {
  4533. border-width:0px;
  4534. word-wrap:break-word;
  4535. text-transform:none;
  4536. visibility:hidden;
  4537. }
  4538. #u30005_div {
  4539. border-width:0px;
  4540. position:absolute;
  4541. left:0px;
  4542. top:0px;
  4543. width:59px;
  4544. height:30px;
  4545. background:inherit;
  4546. background-color:rgba(24, 144, 255, 1);
  4547. box-sizing:border-box;
  4548. border-width:1px;
  4549. border-style:solid;
  4550. border-color:rgba(0, 153, 255, 1);
  4551. border-radius:4px;
  4552. -moz-box-shadow:none;
  4553. -webkit-box-shadow:none;
  4554. box-shadow:none;
  4555. font-family:'Microsoft YaHei', sans-serif;
  4556. font-weight:400;
  4557. font-style:normal;
  4558. font-size:14px;
  4559. color:#FFFFFF;
  4560. }
  4561. #u30005 {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:1102px;
  4565. top:111px;
  4566. width:59px;
  4567. height:30px;
  4568. display:flex;
  4569. font-family:'Microsoft YaHei', sans-serif;
  4570. font-weight:400;
  4571. font-style:normal;
  4572. font-size:14px;
  4573. color:#FFFFFF;
  4574. }
  4575. #u30005 .text {
  4576. position:absolute;
  4577. align-self:center;
  4578. padding:5px 15px 5px 15px;
  4579. box-sizing:border-box;
  4580. width:100%;
  4581. }
  4582. #u30005_text {
  4583. border-width:0px;
  4584. white-space:nowrap;
  4585. text-transform:none;
  4586. }
  4587. #u30006_div {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:0px;
  4591. top:0px;
  4592. width:55px;
  4593. height:30px;
  4594. background:inherit;
  4595. background-color:rgba(255, 255, 255, 1);
  4596. box-sizing:border-box;
  4597. border-width:1px;
  4598. border-style:solid;
  4599. border-color:rgba(170, 170, 170, 1);
  4600. border-radius:4px;
  4601. -moz-box-shadow:none;
  4602. -webkit-box-shadow:none;
  4603. box-shadow:none;
  4604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4605. font-weight:400;
  4606. font-style:normal;
  4607. font-size:12px;
  4608. color:#555555;
  4609. }
  4610. #u30006 {
  4611. border-width:0px;
  4612. position:absolute;
  4613. left:1171px;
  4614. top:111px;
  4615. width:55px;
  4616. height:30px;
  4617. display:flex;
  4618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4619. font-weight:400;
  4620. font-style:normal;
  4621. font-size:12px;
  4622. color:#555555;
  4623. }
  4624. #u30006 .text {
  4625. position:absolute;
  4626. align-self:center;
  4627. padding:5px 15px 5px 15px;
  4628. box-sizing:border-box;
  4629. width:100%;
  4630. }
  4631. #u30006_text {
  4632. border-width:0px;
  4633. white-space:nowrap;
  4634. text-transform:none;
  4635. }
  4636. #u30008 {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:0px;
  4640. top:0px;
  4641. width:0px;
  4642. height:0px;
  4643. }
  4644. #u30009_div {
  4645. border-width:0px;
  4646. position:absolute;
  4647. left:0px;
  4648. top:0px;
  4649. width:30px;
  4650. height:30px;
  4651. background:inherit;
  4652. background-color:rgba(255, 255, 255, 1);
  4653. box-sizing:border-box;
  4654. border-width:1px;
  4655. border-style:solid;
  4656. border-color:rgba(228, 228, 228, 1);
  4657. border-radius:4px;
  4658. -moz-box-shadow:none;
  4659. -webkit-box-shadow:none;
  4660. box-shadow:none;
  4661. font-family:'Microsoft YaHei', sans-serif;
  4662. font-weight:400;
  4663. font-style:normal;
  4664. font-size:14px;
  4665. }
  4666. #u30009 {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:1006px;
  4670. top:531px;
  4671. width:30px;
  4672. height:30px;
  4673. display:flex;
  4674. font-family:'Microsoft YaHei', sans-serif;
  4675. font-weight:400;
  4676. font-style:normal;
  4677. font-size:14px;
  4678. }
  4679. #u30009 .text {
  4680. position:absolute;
  4681. align-self:center;
  4682. padding:2px 2px 2px 2px;
  4683. box-sizing:border-box;
  4684. width:100%;
  4685. }
  4686. #u30009_text {
  4687. border-width:0px;
  4688. word-wrap:break-word;
  4689. text-transform:none;
  4690. }
  4691. #u30010_div {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:0px;
  4695. top:0px;
  4696. width:49px;
  4697. height:30px;
  4698. background:inherit;
  4699. background-color:rgba(255, 255, 255, 0);
  4700. box-sizing:border-box;
  4701. border-width:1px;
  4702. border-style:solid;
  4703. border-color:rgba(188, 188, 188, 1);
  4704. border-radius:4px;
  4705. -moz-box-shadow:none;
  4706. -webkit-box-shadow:none;
  4707. box-shadow:none;
  4708. font-family:'Microsoft YaHei', sans-serif;
  4709. font-weight:400;
  4710. font-style:normal;
  4711. font-size:14px;
  4712. color:#1E1E1E;
  4713. }
  4714. #u30010 {
  4715. border-width:0px;
  4716. position:absolute;
  4717. left:1522px;
  4718. top:531px;
  4719. width:49px;
  4720. height:30px;
  4721. display:flex;
  4722. font-family:'Microsoft YaHei', sans-serif;
  4723. font-weight:400;
  4724. font-style:normal;
  4725. font-size:14px;
  4726. color:#1E1E1E;
  4727. }
  4728. #u30010 .text {
  4729. position:absolute;
  4730. align-self:center;
  4731. padding:5px 10px 5px 10px;
  4732. box-sizing:border-box;
  4733. width:100%;
  4734. }
  4735. #u30010_text {
  4736. border-width:0px;
  4737. white-space:nowrap;
  4738. text-transform:none;
  4739. }
  4740. #u30011 {
  4741. border-width:0px;
  4742. position:absolute;
  4743. left:0px;
  4744. top:0px;
  4745. width:0px;
  4746. height:0px;
  4747. }
  4748. #u30012_div {
  4749. border-width:0px;
  4750. position:absolute;
  4751. left:0px;
  4752. top:0px;
  4753. width:33px;
  4754. height:24px;
  4755. background:inherit;
  4756. background-color:rgba(255, 255, 255, 1);
  4757. border:none;
  4758. border-radius:0px;
  4759. -moz-box-shadow:none;
  4760. -webkit-box-shadow:none;
  4761. box-shadow:none;
  4762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4763. font-weight:400;
  4764. font-style:normal;
  4765. font-size:14px;
  4766. color:#BCBCBC;
  4767. text-align:left;
  4768. }
  4769. #u30012 {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:1290px;
  4773. top:534px;
  4774. width:33px;
  4775. height:24px;
  4776. display:flex;
  4777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4778. font-weight:400;
  4779. font-style:normal;
  4780. font-size:14px;
  4781. color:#BCBCBC;
  4782. text-align:left;
  4783. }
  4784. #u30012 .text {
  4785. position:absolute;
  4786. align-self:center;
  4787. padding:2px 2px 2px 2px;
  4788. box-sizing:border-box;
  4789. width:100%;
  4790. }
  4791. #u30012_text {
  4792. border-width:0px;
  4793. white-space:nowrap;
  4794. text-transform:none;
  4795. }
  4796. #u30013_div {
  4797. border-width:0px;
  4798. position:absolute;
  4799. left:0px;
  4800. top:0px;
  4801. width:40px;
  4802. height:30px;
  4803. background:inherit;
  4804. background-color:rgba(255, 255, 255, 1);
  4805. box-sizing:border-box;
  4806. border-width:1px;
  4807. border-style:solid;
  4808. border-color:rgba(228, 228, 228, 1);
  4809. border-radius:4px;
  4810. -moz-box-shadow:none;
  4811. -webkit-box-shadow:none;
  4812. box-shadow:none;
  4813. font-family:'Microsoft YaHei', sans-serif;
  4814. font-weight:400;
  4815. font-style:normal;
  4816. font-size:14px;
  4817. }
  4818. #u30013 {
  4819. border-width:0px;
  4820. position:absolute;
  4821. left:1325px;
  4822. top:531px;
  4823. width:40px;
  4824. height:30px;
  4825. display:flex;
  4826. font-family:'Microsoft YaHei', sans-serif;
  4827. font-weight:400;
  4828. font-style:normal;
  4829. font-size:14px;
  4830. }
  4831. #u30013 .text {
  4832. position:absolute;
  4833. align-self:center;
  4834. padding:2px 2px 2px 2px;
  4835. box-sizing:border-box;
  4836. width:100%;
  4837. }
  4838. #u30013_text {
  4839. border-width:0px;
  4840. word-wrap:break-word;
  4841. text-transform:none;
  4842. visibility:hidden;
  4843. }
  4844. #u30014_div {
  4845. border-width:0px;
  4846. position:absolute;
  4847. left:0px;
  4848. top:0px;
  4849. width:19px;
  4850. height:24px;
  4851. background:inherit;
  4852. background-color:rgba(255, 255, 255, 1);
  4853. border:none;
  4854. border-radius:0px;
  4855. -moz-box-shadow:none;
  4856. -webkit-box-shadow:none;
  4857. box-shadow:none;
  4858. font-family:'Microsoft YaHei', sans-serif;
  4859. font-weight:400;
  4860. font-style:normal;
  4861. font-size:14px;
  4862. color:#BCBCBC;
  4863. text-align:left;
  4864. }
  4865. #u30014 {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:1367px;
  4869. top:535px;
  4870. width:19px;
  4871. height:24px;
  4872. display:flex;
  4873. font-family:'Microsoft YaHei', sans-serif;
  4874. font-weight:400;
  4875. font-style:normal;
  4876. font-size:14px;
  4877. color:#BCBCBC;
  4878. text-align:left;
  4879. }
  4880. #u30014 .text {
  4881. position:absolute;
  4882. align-self:center;
  4883. padding:2px 2px 2px 2px;
  4884. box-sizing:border-box;
  4885. width:100%;
  4886. }
  4887. #u30014_text {
  4888. border-width:0px;
  4889. white-space:nowrap;
  4890. text-transform:none;
  4891. }
  4892. #u30015_input {
  4893. position:absolute;
  4894. left:0px;
  4895. top:0px;
  4896. width:34px;
  4897. height:25px;
  4898. padding:2px 2px 2px 2px;
  4899. font-family:'Microsoft YaHei', sans-serif;
  4900. font-weight:400;
  4901. font-style:normal;
  4902. font-size:13px;
  4903. letter-spacing:normal;
  4904. color:#000000;
  4905. vertical-align:none;
  4906. text-align:left;
  4907. text-transform:none;
  4908. background-color:transparent;
  4909. border-color:transparent;
  4910. }
  4911. #u30015_input.disabled {
  4912. position:absolute;
  4913. left:0px;
  4914. top:0px;
  4915. width:34px;
  4916. height:25px;
  4917. padding:2px 2px 2px 2px;
  4918. font-family:'Microsoft YaHei', sans-serif;
  4919. font-weight:400;
  4920. font-style:normal;
  4921. font-size:13px;
  4922. letter-spacing:normal;
  4923. color:#000000;
  4924. vertical-align:none;
  4925. text-align:left;
  4926. text-transform:none;
  4927. background-color:transparent;
  4928. border-color:transparent;
  4929. }
  4930. #u30015_div {
  4931. border-width:0px;
  4932. position:absolute;
  4933. left:0px;
  4934. top:0px;
  4935. width:34px;
  4936. height:25px;
  4937. background:inherit;
  4938. background-color:rgba(255, 255, 255, 1);
  4939. border:none;
  4940. border-radius:0px;
  4941. -moz-box-shadow:none;
  4942. -webkit-box-shadow:none;
  4943. box-shadow:none;
  4944. font-family:'Microsoft YaHei', sans-serif;
  4945. font-weight:400;
  4946. font-style:normal;
  4947. }
  4948. #u30015 {
  4949. border-width:0px;
  4950. position:absolute;
  4951. left:1328px;
  4952. top:533px;
  4953. width:34px;
  4954. height:25px;
  4955. display:flex;
  4956. font-family:'Microsoft YaHei', sans-serif;
  4957. font-weight:400;
  4958. font-style:normal;
  4959. }
  4960. #u30015 .text {
  4961. position:absolute;
  4962. align-self:center;
  4963. padding:2px 2px 2px 2px;
  4964. box-sizing:border-box;
  4965. width:100%;
  4966. }
  4967. #u30015_div.disabled {
  4968. border-width:0px;
  4969. position:absolute;
  4970. left:0px;
  4971. top:0px;
  4972. width:34px;
  4973. height:25px;
  4974. background:inherit;
  4975. background-color:rgba(240, 240, 240, 1);
  4976. border:none;
  4977. border-radius:0px;
  4978. -moz-box-shadow:none;
  4979. -webkit-box-shadow:none;
  4980. box-shadow:none;
  4981. font-family:'Microsoft YaHei', sans-serif;
  4982. font-weight:400;
  4983. font-style:normal;
  4984. }
  4985. #u30015.disabled {
  4986. }
  4987. #u30016_div {
  4988. border-width:0px;
  4989. position:absolute;
  4990. left:0px;
  4991. top:0px;
  4992. width:30px;
  4993. height:30px;
  4994. background:inherit;
  4995. background-color:rgba(41, 143, 255, 1);
  4996. border:none;
  4997. border-radius:4px;
  4998. -moz-box-shadow:none;
  4999. -webkit-box-shadow:none;
  5000. box-shadow:none;
  5001. font-family:'Microsoft YaHei', sans-serif;
  5002. font-weight:400;
  5003. font-style:normal;
  5004. font-size:14px;
  5005. color:#FFFFFF;
  5006. }
  5007. #u30016 {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:1040px;
  5011. top:531px;
  5012. width:30px;
  5013. height:30px;
  5014. display:flex;
  5015. font-family:'Microsoft YaHei', sans-serif;
  5016. font-weight:400;
  5017. font-style:normal;
  5018. font-size:14px;
  5019. color:#FFFFFF;
  5020. }
  5021. #u30016 .text {
  5022. position:absolute;
  5023. align-self:center;
  5024. padding:2px 2px 2px 2px;
  5025. box-sizing:border-box;
  5026. width:100%;
  5027. }
  5028. #u30016_text {
  5029. border-width:0px;
  5030. word-wrap:break-word;
  5031. text-transform:none;
  5032. }
  5033. #u30017_div {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:0px;
  5037. top:0px;
  5038. width:30px;
  5039. height:30px;
  5040. background:inherit;
  5041. background-color:rgba(255, 255, 255, 1);
  5042. box-sizing:border-box;
  5043. border-width:1px;
  5044. border-style:solid;
  5045. border-color:rgba(228, 228, 228, 1);
  5046. border-radius:4px;
  5047. -moz-box-shadow:none;
  5048. -webkit-box-shadow:none;
  5049. box-shadow:none;
  5050. font-family:'Microsoft YaHei', sans-serif;
  5051. font-weight:400;
  5052. font-style:normal;
  5053. font-size:14px;
  5054. }
  5055. #u30017 {
  5056. border-width:0px;
  5057. position:absolute;
  5058. left:1074px;
  5059. top:531px;
  5060. width:30px;
  5061. height:30px;
  5062. display:flex;
  5063. font-family:'Microsoft YaHei', sans-serif;
  5064. font-weight:400;
  5065. font-style:normal;
  5066. font-size:14px;
  5067. }
  5068. #u30017 .text {
  5069. position:absolute;
  5070. align-self:center;
  5071. padding:2px 2px 2px 2px;
  5072. box-sizing:border-box;
  5073. width:100%;
  5074. }
  5075. #u30017_text {
  5076. border-width:0px;
  5077. word-wrap:break-word;
  5078. text-transform:none;
  5079. }
  5080. #u30018_div {
  5081. border-width:0px;
  5082. position:absolute;
  5083. left:0px;
  5084. top:0px;
  5085. width:30px;
  5086. height:30px;
  5087. background:inherit;
  5088. background-color:rgba(255, 255, 255, 1);
  5089. box-sizing:border-box;
  5090. border-width:1px;
  5091. border-style:solid;
  5092. border-color:rgba(228, 228, 228, 1);
  5093. border-radius:4px;
  5094. -moz-box-shadow:none;
  5095. -webkit-box-shadow:none;
  5096. box-shadow:none;
  5097. font-family:'Microsoft YaHei', sans-serif;
  5098. font-weight:400;
  5099. font-style:normal;
  5100. font-size:14px;
  5101. }
  5102. #u30018 {
  5103. border-width:0px;
  5104. position:absolute;
  5105. left:1108px;
  5106. top:531px;
  5107. width:30px;
  5108. height:30px;
  5109. display:flex;
  5110. font-family:'Microsoft YaHei', sans-serif;
  5111. font-weight:400;
  5112. font-style:normal;
  5113. font-size:14px;
  5114. }
  5115. #u30018 .text {
  5116. position:absolute;
  5117. align-self:center;
  5118. padding:2px 2px 2px 2px;
  5119. box-sizing:border-box;
  5120. width:100%;
  5121. }
  5122. #u30018_text {
  5123. border-width:0px;
  5124. word-wrap:break-word;
  5125. text-transform:none;
  5126. }
  5127. #u30019_div {
  5128. border-width:0px;
  5129. position:absolute;
  5130. left:0px;
  5131. top:0px;
  5132. width:30px;
  5133. height:30px;
  5134. background:inherit;
  5135. background-color:rgba(255, 255, 255, 1);
  5136. border:none;
  5137. border-radius:4px;
  5138. -moz-box-shadow:none;
  5139. -webkit-box-shadow:none;
  5140. box-shadow:none;
  5141. font-family:'Microsoft YaHei', sans-serif;
  5142. font-weight:400;
  5143. font-style:normal;
  5144. font-size:14px;
  5145. }
  5146. #u30019 {
  5147. border-width:0px;
  5148. position:absolute;
  5149. left:1138px;
  5150. top:531px;
  5151. width:30px;
  5152. height:30px;
  5153. display:flex;
  5154. font-family:'Microsoft YaHei', sans-serif;
  5155. font-weight:400;
  5156. font-style:normal;
  5157. font-size:14px;
  5158. }
  5159. #u30019 .text {
  5160. position:absolute;
  5161. align-self:center;
  5162. padding:2px 2px 2px 2px;
  5163. box-sizing:border-box;
  5164. width:100%;
  5165. }
  5166. #u30019_text {
  5167. border-width:0px;
  5168. word-wrap:break-word;
  5169. text-transform:none;
  5170. }
  5171. #u30020_div {
  5172. border-width:0px;
  5173. position:absolute;
  5174. left:0px;
  5175. top:0px;
  5176. width:30px;
  5177. height:30px;
  5178. background:inherit;
  5179. background-color:rgba(255, 255, 255, 1);
  5180. box-sizing:border-box;
  5181. border-width:1px;
  5182. border-style:solid;
  5183. border-color:rgba(228, 228, 228, 1);
  5184. border-radius:4px;
  5185. -moz-box-shadow:none;
  5186. -webkit-box-shadow:none;
  5187. box-shadow:none;
  5188. font-family:'Microsoft YaHei', sans-serif;
  5189. font-weight:400;
  5190. font-style:normal;
  5191. font-size:14px;
  5192. }
  5193. #u30020 {
  5194. border-width:0px;
  5195. position:absolute;
  5196. left:1172px;
  5197. top:531px;
  5198. width:30px;
  5199. height:30px;
  5200. display:flex;
  5201. font-family:'Microsoft YaHei', sans-serif;
  5202. font-weight:400;
  5203. font-style:normal;
  5204. font-size:14px;
  5205. }
  5206. #u30020 .text {
  5207. position:absolute;
  5208. align-self:center;
  5209. padding:2px 2px 2px 2px;
  5210. box-sizing:border-box;
  5211. width:100%;
  5212. }
  5213. #u30020_text {
  5214. border-width:0px;
  5215. word-wrap:break-word;
  5216. text-transform:none;
  5217. }
  5218. #u30021_div {
  5219. border-width:0px;
  5220. position:absolute;
  5221. left:0px;
  5222. top:0px;
  5223. width:32px;
  5224. height:21px;
  5225. background:inherit;
  5226. background-color:rgba(255, 255, 255, 1);
  5227. border:none;
  5228. border-radius:15px;
  5229. -moz-box-shadow:none;
  5230. -webkit-box-shadow:none;
  5231. box-shadow:none;
  5232. font-family:'Microsoft YaHei', sans-serif;
  5233. font-weight:400;
  5234. font-style:normal;
  5235. font-size:14px;
  5236. color:#1E1E1E;
  5237. }
  5238. #u30021 {
  5239. border-width:0px;
  5240. position:absolute;
  5241. left:1246px;
  5242. top:536px;
  5243. width:32px;
  5244. height:21px;
  5245. display:flex;
  5246. font-family:'Microsoft YaHei', sans-serif;
  5247. font-weight:400;
  5248. font-style:normal;
  5249. font-size:14px;
  5250. color:#1E1E1E;
  5251. }
  5252. #u30021 .text {
  5253. position:absolute;
  5254. align-self:center;
  5255. padding:2px 2px 2px 2px;
  5256. box-sizing:border-box;
  5257. width:100%;
  5258. }
  5259. #u30021_text {
  5260. border-width:0px;
  5261. white-space:nowrap;
  5262. text-transform:none;
  5263. }
  5264. #u30022 {
  5265. border-width:0px;
  5266. position:absolute;
  5267. left:0px;
  5268. top:0px;
  5269. width:0px;
  5270. height:0px;
  5271. }
  5272. #u30023_div {
  5273. border-width:0px;
  5274. position:absolute;
  5275. left:0px;
  5276. top:0px;
  5277. width:31px;
  5278. height:30px;
  5279. background:inherit;
  5280. background-color:rgba(255, 255, 255, 1);
  5281. box-sizing:border-box;
  5282. border-width:1px;
  5283. border-style:solid;
  5284. border-color:rgba(228, 228, 228, 1);
  5285. border-radius:4px;
  5286. -moz-box-shadow:none;
  5287. -webkit-box-shadow:none;
  5288. box-shadow:none;
  5289. font-family:'Microsoft YaHei', sans-serif;
  5290. font-weight:400;
  5291. font-style:normal;
  5292. font-size:12px;
  5293. }
  5294. #u30023 {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:971px;
  5298. top:531px;
  5299. width:31px;
  5300. height:30px;
  5301. display:flex;
  5302. font-family:'Microsoft YaHei', sans-serif;
  5303. font-weight:400;
  5304. font-style:normal;
  5305. font-size:12px;
  5306. }
  5307. #u30023 .text {
  5308. position:absolute;
  5309. align-self:center;
  5310. padding:2px 2px 2px 2px;
  5311. box-sizing:border-box;
  5312. width:100%;
  5313. }
  5314. #u30023_text {
  5315. border-width:0px;
  5316. word-wrap:break-word;
  5317. text-transform:none;
  5318. visibility:hidden;
  5319. }
  5320. #u30024_img {
  5321. border-width:0px;
  5322. position:absolute;
  5323. left:0px;
  5324. top:0px;
  5325. width:8px;
  5326. height:14px;
  5327. }
  5328. #u30024 {
  5329. border-width:0px;
  5330. position:absolute;
  5331. left:983px;
  5332. top:539px;
  5333. width:8px;
  5334. height:14px;
  5335. display:flex;
  5336. font-family:'Microsoft YaHei', sans-serif;
  5337. font-weight:400;
  5338. font-style:normal;
  5339. font-size:12px;
  5340. }
  5341. #u30024 .text {
  5342. position:absolute;
  5343. align-self:center;
  5344. padding:2px 2px 2px 2px;
  5345. box-sizing:border-box;
  5346. width:100%;
  5347. }
  5348. #u30024_text {
  5349. border-width:0px;
  5350. word-wrap:break-word;
  5351. text-transform:none;
  5352. visibility:hidden;
  5353. }
  5354. #u30025 {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:0px;
  5358. top:0px;
  5359. width:0px;
  5360. height:0px;
  5361. }
  5362. #u30026_div {
  5363. border-width:0px;
  5364. position:absolute;
  5365. left:0px;
  5366. top:0px;
  5367. width:31px;
  5368. height:30px;
  5369. background:inherit;
  5370. background-color:rgba(255, 255, 255, 1);
  5371. box-sizing:border-box;
  5372. border-width:1px;
  5373. border-style:solid;
  5374. border-color:rgba(228, 228, 228, 1);
  5375. border-radius:4px;
  5376. -moz-box-shadow:none;
  5377. -webkit-box-shadow:none;
  5378. box-shadow:none;
  5379. font-family:'Microsoft YaHei', sans-serif;
  5380. font-weight:400;
  5381. font-style:normal;
  5382. font-size:12px;
  5383. }
  5384. #u30026 {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:1205px;
  5388. top:531px;
  5389. width:31px;
  5390. height:30px;
  5391. display:flex;
  5392. font-family:'Microsoft YaHei', sans-serif;
  5393. font-weight:400;
  5394. font-style:normal;
  5395. font-size:12px;
  5396. }
  5397. #u30026 .text {
  5398. position:absolute;
  5399. align-self:center;
  5400. padding:2px 2px 2px 2px;
  5401. box-sizing:border-box;
  5402. width:100%;
  5403. }
  5404. #u30026_text {
  5405. border-width:0px;
  5406. word-wrap:break-word;
  5407. text-transform:none;
  5408. visibility:hidden;
  5409. }
  5410. #u30027_img {
  5411. border-width:0px;
  5412. position:absolute;
  5413. left:0px;
  5414. top:0px;
  5415. width:8px;
  5416. height:14px;
  5417. }
  5418. #u30027 {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:1218px;
  5422. top:539px;
  5423. width:8px;
  5424. height:14px;
  5425. display:flex;
  5426. font-family:'Microsoft YaHei', sans-serif;
  5427. font-weight:400;
  5428. font-style:normal;
  5429. font-size:12px;
  5430. }
  5431. #u30027 .text {
  5432. position:absolute;
  5433. align-self:center;
  5434. padding:2px 2px 2px 2px;
  5435. box-sizing:border-box;
  5436. width:100%;
  5437. }
  5438. #u30027_text {
  5439. border-width:0px;
  5440. word-wrap:break-word;
  5441. text-transform:none;
  5442. visibility:hidden;
  5443. }
  5444. #u30028 {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:0px;
  5448. top:0px;
  5449. width:0px;
  5450. height:0px;
  5451. }
  5452. #u30029_div {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:0px;
  5456. top:0px;
  5457. width:33px;
  5458. height:24px;
  5459. background:inherit;
  5460. background-color:rgba(255, 255, 255, 1);
  5461. border:none;
  5462. border-radius:0px;
  5463. -moz-box-shadow:none;
  5464. -webkit-box-shadow:none;
  5465. box-shadow:none;
  5466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5467. font-weight:400;
  5468. font-style:normal;
  5469. font-size:14px;
  5470. color:#BCBCBC;
  5471. text-align:left;
  5472. }
  5473. #u30029 {
  5474. border-width:0px;
  5475. position:absolute;
  5476. left:1406px;
  5477. top:534px;
  5478. width:33px;
  5479. height:24px;
  5480. display:flex;
  5481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5482. font-weight:400;
  5483. font-style:normal;
  5484. font-size:14px;
  5485. color:#BCBCBC;
  5486. text-align:left;
  5487. }
  5488. #u30029 .text {
  5489. position:absolute;
  5490. align-self:center;
  5491. padding:2px 2px 2px 2px;
  5492. box-sizing:border-box;
  5493. width:100%;
  5494. }
  5495. #u30029_text {
  5496. border-width:0px;
  5497. white-space:nowrap;
  5498. text-transform:none;
  5499. }
  5500. #u30030_div {
  5501. border-width:0px;
  5502. position:absolute;
  5503. left:0px;
  5504. top:0px;
  5505. width:40px;
  5506. height:30px;
  5507. background:inherit;
  5508. background-color:rgba(255, 255, 255, 1);
  5509. box-sizing:border-box;
  5510. border-width:1px;
  5511. border-style:solid;
  5512. border-color:rgba(228, 228, 228, 1);
  5513. border-radius:4px;
  5514. -moz-box-shadow:none;
  5515. -webkit-box-shadow:none;
  5516. box-shadow:none;
  5517. font-family:'Microsoft YaHei', sans-serif;
  5518. font-weight:400;
  5519. font-style:normal;
  5520. font-size:14px;
  5521. }
  5522. #u30030 {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:1441px;
  5526. top:531px;
  5527. width:40px;
  5528. height:30px;
  5529. display:flex;
  5530. font-family:'Microsoft YaHei', sans-serif;
  5531. font-weight:400;
  5532. font-style:normal;
  5533. font-size:14px;
  5534. }
  5535. #u30030 .text {
  5536. position:absolute;
  5537. align-self:center;
  5538. padding:2px 2px 2px 2px;
  5539. box-sizing:border-box;
  5540. width:100%;
  5541. }
  5542. #u30030_text {
  5543. border-width:0px;
  5544. word-wrap:break-word;
  5545. text-transform:none;
  5546. visibility:hidden;
  5547. }
  5548. #u30031_div {
  5549. border-width:0px;
  5550. position:absolute;
  5551. left:0px;
  5552. top:0px;
  5553. width:19px;
  5554. height:24px;
  5555. background:inherit;
  5556. background-color:rgba(255, 255, 255, 1);
  5557. border:none;
  5558. border-radius:0px;
  5559. -moz-box-shadow:none;
  5560. -webkit-box-shadow:none;
  5561. box-shadow:none;
  5562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5563. font-weight:400;
  5564. font-style:normal;
  5565. font-size:14px;
  5566. color:#BCBCBC;
  5567. text-align:left;
  5568. }
  5569. #u30031 {
  5570. border-width:0px;
  5571. position:absolute;
  5572. left:1483px;
  5573. top:535px;
  5574. width:19px;
  5575. height:24px;
  5576. display:flex;
  5577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5578. font-weight:400;
  5579. font-style:normal;
  5580. font-size:14px;
  5581. color:#BCBCBC;
  5582. text-align:left;
  5583. }
  5584. #u30031 .text {
  5585. position:absolute;
  5586. align-self:center;
  5587. padding:2px 2px 2px 2px;
  5588. box-sizing:border-box;
  5589. width:100%;
  5590. }
  5591. #u30031_text {
  5592. border-width:0px;
  5593. white-space:nowrap;
  5594. text-transform:none;
  5595. }
  5596. #u30032_input {
  5597. position:absolute;
  5598. left:0px;
  5599. top:0px;
  5600. width:34px;
  5601. height:25px;
  5602. padding:2px 2px 2px 2px;
  5603. font-family:'Microsoft YaHei', sans-serif;
  5604. font-weight:400;
  5605. font-style:normal;
  5606. font-size:13px;
  5607. letter-spacing:normal;
  5608. color:#000000;
  5609. vertical-align:none;
  5610. text-align:left;
  5611. text-transform:none;
  5612. background-color:transparent;
  5613. border-color:transparent;
  5614. }
  5615. #u30032_input.disabled {
  5616. position:absolute;
  5617. left:0px;
  5618. top:0px;
  5619. width:34px;
  5620. height:25px;
  5621. padding:2px 2px 2px 2px;
  5622. font-family:'Microsoft YaHei', sans-serif;
  5623. font-weight:400;
  5624. font-style:normal;
  5625. font-size:13px;
  5626. letter-spacing:normal;
  5627. color:#000000;
  5628. vertical-align:none;
  5629. text-align:left;
  5630. text-transform:none;
  5631. background-color:transparent;
  5632. border-color:transparent;
  5633. }
  5634. #u30032_div {
  5635. border-width:0px;
  5636. position:absolute;
  5637. left:0px;
  5638. top:0px;
  5639. width:34px;
  5640. height:25px;
  5641. background:inherit;
  5642. background-color:rgba(255, 255, 255, 1);
  5643. border:none;
  5644. border-radius:0px;
  5645. -moz-box-shadow:none;
  5646. -webkit-box-shadow:none;
  5647. box-shadow:none;
  5648. font-family:'Microsoft YaHei', sans-serif;
  5649. font-weight:400;
  5650. font-style:normal;
  5651. }
  5652. #u30032 {
  5653. border-width:0px;
  5654. position:absolute;
  5655. left:1444px;
  5656. top:533px;
  5657. width:34px;
  5658. height:25px;
  5659. display:flex;
  5660. font-family:'Microsoft YaHei', sans-serif;
  5661. font-weight:400;
  5662. font-style:normal;
  5663. }
  5664. #u30032 .text {
  5665. position:absolute;
  5666. align-self:center;
  5667. padding:2px 2px 2px 2px;
  5668. box-sizing:border-box;
  5669. width:100%;
  5670. }
  5671. #u30032_div.disabled {
  5672. border-width:0px;
  5673. position:absolute;
  5674. left:0px;
  5675. top:0px;
  5676. width:34px;
  5677. height:25px;
  5678. background:inherit;
  5679. background-color:rgba(240, 240, 240, 1);
  5680. border:none;
  5681. border-radius:0px;
  5682. -moz-box-shadow:none;
  5683. -webkit-box-shadow:none;
  5684. box-shadow:none;
  5685. font-family:'Microsoft YaHei', sans-serif;
  5686. font-weight:400;
  5687. font-style:normal;
  5688. }
  5689. #u30032.disabled {
  5690. }
  5691. #u30033 {
  5692. border-width:0px;
  5693. position:absolute;
  5694. left:0px;
  5695. top:0px;
  5696. width:0px;
  5697. height:0px;
  5698. }
  5699. #u30034_div {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:0px;
  5703. top:0px;
  5704. width:140px;
  5705. height:28px;
  5706. background:inherit;
  5707. background-color:rgba(255, 255, 255, 1);
  5708. box-sizing:border-box;
  5709. border-width:1px;
  5710. border-style:solid;
  5711. border-color:rgba(201, 201, 201, 1);
  5712. border-radius:4px;
  5713. -moz-box-shadow:none;
  5714. -webkit-box-shadow:none;
  5715. box-shadow:none;
  5716. font-family:'Microsoft YaHei', sans-serif;
  5717. font-weight:400;
  5718. font-style:normal;
  5719. font-size:14px;
  5720. color:#CCCCCC;
  5721. text-align:left;
  5722. }
  5723. #u30034 {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:952px;
  5727. top:112px;
  5728. width:140px;
  5729. height:28px;
  5730. display:flex;
  5731. font-family:'Microsoft YaHei', sans-serif;
  5732. font-weight:400;
  5733. font-style:normal;
  5734. font-size:14px;
  5735. color:#CCCCCC;
  5736. text-align:left;
  5737. }
  5738. #u30034 .text {
  5739. position:absolute;
  5740. align-self:center;
  5741. padding:2px 8px 2px 8px;
  5742. box-sizing:border-box;
  5743. width:100%;
  5744. }
  5745. #u30034_text {
  5746. border-width:0px;
  5747. word-wrap:break-word;
  5748. text-transform:none;
  5749. visibility:hidden;
  5750. }
  5751. #u30035_input {
  5752. position:absolute;
  5753. left:0px;
  5754. top:0px;
  5755. width:114px;
  5756. height:26px;
  5757. padding:2px 2px 2px 2px;
  5758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5759. font-weight:400;
  5760. font-style:normal;
  5761. font-size:14px;
  5762. letter-spacing:normal;
  5763. color:#000000;
  5764. vertical-align:none;
  5765. text-align:left;
  5766. text-transform:none;
  5767. background-color:transparent;
  5768. border-color:transparent;
  5769. }
  5770. #u30035_input.disabled {
  5771. position:absolute;
  5772. left:0px;
  5773. top:0px;
  5774. width:114px;
  5775. height:26px;
  5776. padding:2px 2px 2px 2px;
  5777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5778. font-weight:400;
  5779. font-style:normal;
  5780. font-size:14px;
  5781. letter-spacing:normal;
  5782. color:#000000;
  5783. vertical-align:none;
  5784. text-align:left;
  5785. text-transform:none;
  5786. background-color:transparent;
  5787. border-color:transparent;
  5788. }
  5789. #u30035_div {
  5790. border-width:0px;
  5791. position:absolute;
  5792. left:0px;
  5793. top:0px;
  5794. width:114px;
  5795. height:26px;
  5796. background:inherit;
  5797. background-color:rgba(255, 255, 255, 1);
  5798. border:none;
  5799. border-radius:0px;
  5800. -moz-box-shadow:none;
  5801. -webkit-box-shadow:none;
  5802. box-shadow:none;
  5803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5804. font-weight:400;
  5805. font-style:normal;
  5806. font-size:14px;
  5807. }
  5808. #u30035 {
  5809. border-width:0px;
  5810. position:absolute;
  5811. left:958px;
  5812. top:113px;
  5813. width:114px;
  5814. height:26px;
  5815. display:flex;
  5816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5817. font-weight:400;
  5818. font-style:normal;
  5819. font-size:14px;
  5820. }
  5821. #u30035 .text {
  5822. position:absolute;
  5823. align-self:center;
  5824. padding:2px 2px 2px 2px;
  5825. box-sizing:border-box;
  5826. width:100%;
  5827. }
  5828. #u30035_div.disabled {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:0px;
  5832. top:0px;
  5833. width:114px;
  5834. height:26px;
  5835. background:inherit;
  5836. background-color:rgba(240, 240, 240, 1);
  5837. border:none;
  5838. border-radius:0px;
  5839. -moz-box-shadow:none;
  5840. -webkit-box-shadow:none;
  5841. box-shadow:none;
  5842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5843. font-weight:400;
  5844. font-style:normal;
  5845. font-size:14px;
  5846. }
  5847. #u30035.disabled {
  5848. }
  5849. #u30036_img {
  5850. border-width:0px;
  5851. position:absolute;
  5852. left:0px;
  5853. top:0px;
  5854. width:13px;
  5855. height:15px;
  5856. }
  5857. #u30036 {
  5858. border-width:0px;
  5859. position:absolute;
  5860. left:1072px;
  5861. top:119px;
  5862. width:13px;
  5863. height:15px;
  5864. display:flex;
  5865. }
  5866. #u30036 .text {
  5867. position:absolute;
  5868. align-self:center;
  5869. padding:2px 2px 2px 2px;
  5870. box-sizing:border-box;
  5871. width:100%;
  5872. }
  5873. #u30036_text {
  5874. border-width:0px;
  5875. word-wrap:break-word;
  5876. text-transform:none;
  5877. visibility:hidden;
  5878. }
  5879. #u30037_div {
  5880. border-width:0px;
  5881. position:absolute;
  5882. left:0px;
  5883. top:0px;
  5884. width:80px;
  5885. height:30px;
  5886. background:inherit;
  5887. background-color:rgba(24, 144, 255, 1);
  5888. box-sizing:border-box;
  5889. border-width:1px;
  5890. border-style:solid;
  5891. border-color:rgba(0, 153, 255, 1);
  5892. border-radius:4px;
  5893. -moz-box-shadow:none;
  5894. -webkit-box-shadow:none;
  5895. box-shadow:none;
  5896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5897. font-weight:400;
  5898. font-style:normal;
  5899. font-size:14px;
  5900. color:#FFFFFF;
  5901. }
  5902. #u30037 {
  5903. border-width:0px;
  5904. position:absolute;
  5905. left:352px;
  5906. top:161px;
  5907. width:80px;
  5908. height:30px;
  5909. display:flex;
  5910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5911. font-weight:400;
  5912. font-style:normal;
  5913. font-size:14px;
  5914. color:#FFFFFF;
  5915. }
  5916. #u30037 .text {
  5917. position:absolute;
  5918. align-self:center;
  5919. padding:5px 0px 5px 0px;
  5920. box-sizing:border-box;
  5921. width:100%;
  5922. }
  5923. #u30037_text {
  5924. border-width:0px;
  5925. word-wrap:break-word;
  5926. text-transform:none;
  5927. }
  5928. #u30038 {
  5929. border-width:0px;
  5930. position:absolute;
  5931. left:0px;
  5932. top:0px;
  5933. width:0px;
  5934. height:0px;
  5935. }
  5936. #u30039_div {
  5937. border-width:0px;
  5938. position:absolute;
  5939. left:0px;
  5940. top:0px;
  5941. width:140px;
  5942. height:30px;
  5943. background:inherit;
  5944. background-color:rgba(255, 255, 255, 1);
  5945. box-sizing:border-box;
  5946. border-width:1px;
  5947. border-style:solid;
  5948. border-color:rgba(201, 201, 201, 1);
  5949. border-radius:4px;
  5950. -moz-box-shadow:none;
  5951. -webkit-box-shadow:none;
  5952. box-shadow:none;
  5953. font-family:'Microsoft YaHei', sans-serif;
  5954. font-weight:400;
  5955. font-style:normal;
  5956. font-size:14px;
  5957. color:#CCCCCC;
  5958. text-align:left;
  5959. }
  5960. #u30039 {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:502px;
  5964. top:110px;
  5965. width:140px;
  5966. height:30px;
  5967. display:flex;
  5968. font-family:'Microsoft YaHei', sans-serif;
  5969. font-weight:400;
  5970. font-style:normal;
  5971. font-size:14px;
  5972. color:#CCCCCC;
  5973. text-align:left;
  5974. }
  5975. #u30039 .text {
  5976. position:absolute;
  5977. align-self:center;
  5978. padding:2px 8px 2px 8px;
  5979. box-sizing:border-box;
  5980. width:100%;
  5981. }
  5982. #u30039_text {
  5983. border-width:0px;
  5984. word-wrap:break-word;
  5985. text-transform:none;
  5986. visibility:hidden;
  5987. }
  5988. #u30040_input {
  5989. position:absolute;
  5990. left:0px;
  5991. top:0px;
  5992. width:127px;
  5993. height:25px;
  5994. padding:2px 2px 2px 2px;
  5995. font-family:'Microsoft YaHei', sans-serif;
  5996. font-weight:400;
  5997. font-style:normal;
  5998. font-size:10px;
  5999. letter-spacing:normal;
  6000. color:#000000;
  6001. vertical-align:none;
  6002. text-align:left;
  6003. text-transform:none;
  6004. background-color:transparent;
  6005. border-color:transparent;
  6006. }
  6007. #u30040_input.disabled {
  6008. position:absolute;
  6009. left:0px;
  6010. top:0px;
  6011. width:127px;
  6012. height:25px;
  6013. padding:2px 2px 2px 2px;
  6014. font-family:'Microsoft YaHei', sans-serif;
  6015. font-weight:400;
  6016. font-style:normal;
  6017. font-size:10px;
  6018. letter-spacing:normal;
  6019. color:#000000;
  6020. vertical-align:none;
  6021. text-align:left;
  6022. text-transform:none;
  6023. background-color:transparent;
  6024. border-color:transparent;
  6025. }
  6026. #u30040_div {
  6027. border-width:0px;
  6028. position:absolute;
  6029. left:0px;
  6030. top:0px;
  6031. width:127px;
  6032. height:25px;
  6033. background:inherit;
  6034. background-color:rgba(255, 255, 255, 1);
  6035. border:none;
  6036. border-radius:0px;
  6037. -moz-box-shadow:none;
  6038. -webkit-box-shadow:none;
  6039. box-shadow:none;
  6040. font-family:'Microsoft YaHei', sans-serif;
  6041. font-weight:400;
  6042. font-style:normal;
  6043. font-size:10px;
  6044. }
  6045. #u30040 {
  6046. border-width:0px;
  6047. position:absolute;
  6048. left:510px;
  6049. top:111px;
  6050. width:127px;
  6051. height:25px;
  6052. display:flex;
  6053. font-family:'Microsoft YaHei', sans-serif;
  6054. font-weight:400;
  6055. font-style:normal;
  6056. font-size:10px;
  6057. }
  6058. #u30040 .text {
  6059. position:absolute;
  6060. align-self:center;
  6061. padding:2px 2px 2px 2px;
  6062. box-sizing:border-box;
  6063. width:100%;
  6064. }
  6065. #u30040_div.disabled {
  6066. border-width:0px;
  6067. position:absolute;
  6068. left:0px;
  6069. top:0px;
  6070. width:127px;
  6071. height:25px;
  6072. background:inherit;
  6073. background-color:rgba(240, 240, 240, 1);
  6074. border:none;
  6075. border-radius:0px;
  6076. -moz-box-shadow:none;
  6077. -webkit-box-shadow:none;
  6078. box-shadow:none;
  6079. font-family:'Microsoft YaHei', sans-serif;
  6080. font-weight:400;
  6081. font-style:normal;
  6082. font-size:10px;
  6083. }
  6084. #u30040.disabled {
  6085. }
  6086. #u30041 {
  6087. border-width:0px;
  6088. position:absolute;
  6089. left:0px;
  6090. top:0px;
  6091. width:0px;
  6092. height:0px;
  6093. }
  6094. #u30042_div {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:0px;
  6098. top:0px;
  6099. width:140px;
  6100. height:30px;
  6101. background:inherit;
  6102. background-color:rgba(255, 255, 255, 1);
  6103. box-sizing:border-box;
  6104. border-width:1px;
  6105. border-style:solid;
  6106. border-color:rgba(215, 215, 215, 1);
  6107. border-radius:4px;
  6108. -moz-box-shadow:none;
  6109. -webkit-box-shadow:none;
  6110. box-shadow:none;
  6111. font-size:11px;
  6112. }
  6113. #u30042 {
  6114. border-width:0px;
  6115. position:absolute;
  6116. left:352px;
  6117. top:111px;
  6118. width:140px;
  6119. height:30px;
  6120. display:flex;
  6121. font-size:11px;
  6122. }
  6123. #u30042 .text {
  6124. position:absolute;
  6125. align-self:center;
  6126. padding:2px 2px 2px 2px;
  6127. box-sizing:border-box;
  6128. width:100%;
  6129. }
  6130. #u30042_text {
  6131. border-width:0px;
  6132. word-wrap:break-word;
  6133. text-transform:none;
  6134. visibility:hidden;
  6135. }
  6136. #u30043_input {
  6137. position:absolute;
  6138. left:0px;
  6139. top:0px;
  6140. width:126px;
  6141. height:23px;
  6142. padding:2px 2px 2px 2px;
  6143. font-family:'ArialMT', 'Arial', sans-serif;
  6144. font-weight:400;
  6145. font-style:normal;
  6146. font-size:11px;
  6147. letter-spacing:normal;
  6148. color:#AAAAAA;
  6149. vertical-align:none;
  6150. text-align:left;
  6151. text-transform:none;
  6152. background-color:transparent;
  6153. border-color:transparent;
  6154. }
  6155. #u30043_input.disabled {
  6156. position:absolute;
  6157. left:0px;
  6158. top:0px;
  6159. width:126px;
  6160. height:23px;
  6161. padding:2px 2px 2px 2px;
  6162. font-family:'ArialMT', 'Arial', sans-serif;
  6163. font-weight:400;
  6164. font-style:normal;
  6165. font-size:11px;
  6166. letter-spacing:normal;
  6167. color:#AAAAAA;
  6168. vertical-align:none;
  6169. text-align:left;
  6170. text-transform:none;
  6171. background-color:transparent;
  6172. border-color:transparent;
  6173. }
  6174. #u30043_div {
  6175. border-width:0px;
  6176. position:absolute;
  6177. left:0px;
  6178. top:0px;
  6179. width:126px;
  6180. height:23px;
  6181. background:inherit;
  6182. background-color:rgba(255, 255, 255, 1);
  6183. border:none;
  6184. border-radius:0px;
  6185. -moz-box-shadow:none;
  6186. -webkit-box-shadow:none;
  6187. box-shadow:none;
  6188. font-size:11px;
  6189. color:#AAAAAA;
  6190. }
  6191. #u30043 {
  6192. border-width:0px;
  6193. position:absolute;
  6194. left:359px;
  6195. top:113px;
  6196. width:126px;
  6197. height:23px;
  6198. display:flex;
  6199. font-size:11px;
  6200. color:#AAAAAA;
  6201. }
  6202. #u30043 .text {
  6203. position:absolute;
  6204. align-self:flex-start;
  6205. padding:2px 2px 2px 2px;
  6206. box-sizing:border-box;
  6207. width:100%;
  6208. }
  6209. #u30043_div.disabled {
  6210. border-width:0px;
  6211. position:absolute;
  6212. left:0px;
  6213. top:0px;
  6214. width:126px;
  6215. height:23px;
  6216. background:inherit;
  6217. background-color:rgba(240, 240, 240, 1);
  6218. border:none;
  6219. border-radius:0px;
  6220. -moz-box-shadow:none;
  6221. -webkit-box-shadow:none;
  6222. box-shadow:none;
  6223. font-size:11px;
  6224. color:#AAAAAA;
  6225. }
  6226. #u30043.disabled {
  6227. }
  6228. .u30043_input_option {
  6229. font-size:11px;
  6230. }
  6231. #u30044 {
  6232. border-width:0px;
  6233. position:absolute;
  6234. left:0px;
  6235. top:0px;
  6236. width:0px;
  6237. height:0px;
  6238. }
  6239. #u30045_div {
  6240. border-width:0px;
  6241. position:absolute;
  6242. left:0px;
  6243. top:0px;
  6244. width:100px;
  6245. height:140px;
  6246. background:inherit;
  6247. background-color:rgba(255, 255, 255, 1);
  6248. box-sizing:border-box;
  6249. border-width:1px;
  6250. border-style:solid;
  6251. border-color:rgba(242, 242, 242, 1);
  6252. border-radius:4px;
  6253. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6254. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6255. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6257. font-weight:400;
  6258. font-style:normal;
  6259. font-size:14px;
  6260. text-align:left;
  6261. }
  6262. #u30045 {
  6263. border-width:0px;
  6264. position:absolute;
  6265. left:1432px;
  6266. top:300px;
  6267. width:100px;
  6268. height:140px;
  6269. display:flex;
  6270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6271. font-weight:400;
  6272. font-style:normal;
  6273. font-size:14px;
  6274. text-align:left;
  6275. }
  6276. #u30045 .text {
  6277. position:absolute;
  6278. align-self:center;
  6279. padding:2px 2px 2px 2px;
  6280. box-sizing:border-box;
  6281. width:100%;
  6282. }
  6283. #u30045_text {
  6284. border-width:0px;
  6285. word-wrap:break-word;
  6286. text-transform:none;
  6287. visibility:hidden;
  6288. }
  6289. #u30046_div {
  6290. border-width:0px;
  6291. position:absolute;
  6292. left:0px;
  6293. top:0px;
  6294. width:85px;
  6295. height:40px;
  6296. background:inherit;
  6297. background-color:rgba(255, 255, 255, 1);
  6298. box-sizing:border-box;
  6299. border-width:1px;
  6300. border-style:solid;
  6301. border-color:rgba(215, 215, 215, 1);
  6302. border-left:0px;
  6303. border-top:0px;
  6304. border-right:0px;
  6305. border-radius:0px;
  6306. border-bottom-right-radius:0px;
  6307. border-bottom-left-radius:0px;
  6308. -moz-box-shadow:none;
  6309. -webkit-box-shadow:none;
  6310. box-shadow:none;
  6311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6312. font-weight:400;
  6313. font-style:normal;
  6314. font-size:14px;
  6315. }
  6316. #u30046 {
  6317. border-width:0px;
  6318. position:absolute;
  6319. left:1440px;
  6320. top:310px;
  6321. width:85px;
  6322. height:40px;
  6323. display:flex;
  6324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6325. font-weight:400;
  6326. font-style:normal;
  6327. font-size:14px;
  6328. }
  6329. #u30046 .text {
  6330. position:absolute;
  6331. align-self:center;
  6332. padding:2px 2px 2px 2px;
  6333. box-sizing:border-box;
  6334. width:100%;
  6335. }
  6336. #u30046_text {
  6337. border-width:0px;
  6338. word-wrap:break-word;
  6339. text-transform:none;
  6340. }
  6341. #u30047_div {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:0px;
  6345. top:0px;
  6346. width:85px;
  6347. height:40px;
  6348. background:inherit;
  6349. background-color:rgba(255, 255, 255, 1);
  6350. border:none;
  6351. border-left:0px;
  6352. border-top:0px;
  6353. border-right:0px;
  6354. border-radius:0px;
  6355. border-bottom-right-radius:0px;
  6356. border-bottom-left-radius:0px;
  6357. -moz-box-shadow:none;
  6358. -webkit-box-shadow:none;
  6359. box-shadow:none;
  6360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6361. font-weight:400;
  6362. font-style:normal;
  6363. font-size:14px;
  6364. color:#D9001B;
  6365. }
  6366. #u30047 {
  6367. border-width:0px;
  6368. position:absolute;
  6369. left:1440px;
  6370. top:390px;
  6371. width:85px;
  6372. height:40px;
  6373. display:flex;
  6374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6375. font-weight:400;
  6376. font-style:normal;
  6377. font-size:14px;
  6378. color:#D9001B;
  6379. }
  6380. #u30047 .text {
  6381. position:absolute;
  6382. align-self:center;
  6383. padding:2px 2px 2px 2px;
  6384. box-sizing:border-box;
  6385. width:100%;
  6386. }
  6387. #u30047_text {
  6388. border-width:0px;
  6389. word-wrap:break-word;
  6390. text-transform:none;
  6391. }
  6392. #u30048_div {
  6393. border-width:0px;
  6394. position:absolute;
  6395. left:0px;
  6396. top:0px;
  6397. width:85px;
  6398. height:40px;
  6399. background:inherit;
  6400. background-color:rgba(255, 255, 255, 1);
  6401. box-sizing:border-box;
  6402. border-width:1px;
  6403. border-style:solid;
  6404. border-color:rgba(215, 215, 215, 1);
  6405. border-left:0px;
  6406. border-top:0px;
  6407. border-right:0px;
  6408. border-radius:0px;
  6409. border-bottom-right-radius:0px;
  6410. border-bottom-left-radius:0px;
  6411. -moz-box-shadow:none;
  6412. -webkit-box-shadow:none;
  6413. box-shadow:none;
  6414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6415. font-weight:400;
  6416. font-style:normal;
  6417. font-size:14px;
  6418. }
  6419. #u30048 {
  6420. border-width:0px;
  6421. position:absolute;
  6422. left:1440px;
  6423. top:350px;
  6424. width:85px;
  6425. height:40px;
  6426. display:flex;
  6427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6428. font-weight:400;
  6429. font-style:normal;
  6430. font-size:14px;
  6431. }
  6432. #u30048 .text {
  6433. position:absolute;
  6434. align-self:center;
  6435. padding:2px 2px 2px 2px;
  6436. box-sizing:border-box;
  6437. width:100%;
  6438. }
  6439. #u30048_text {
  6440. border-width:0px;
  6441. word-wrap:break-word;
  6442. text-transform:none;
  6443. }
  6444. #u30049 {
  6445. border-width:0px;
  6446. position:absolute;
  6447. left:0px;
  6448. top:0px;
  6449. width:0px;
  6450. height:0px;
  6451. }
  6452. #u30050_div {
  6453. border-width:0px;
  6454. position:absolute;
  6455. left:0px;
  6456. top:0px;
  6457. width:140px;
  6458. height:30px;
  6459. background:inherit;
  6460. background-color:rgba(255, 255, 255, 1);
  6461. box-sizing:border-box;
  6462. border-width:1px;
  6463. border-style:solid;
  6464. border-color:rgba(215, 215, 215, 1);
  6465. border-radius:4px;
  6466. -moz-box-shadow:none;
  6467. -webkit-box-shadow:none;
  6468. box-shadow:none;
  6469. font-size:11px;
  6470. }
  6471. #u30050 {
  6472. border-width:0px;
  6473. position:absolute;
  6474. left:652px;
  6475. top:111px;
  6476. width:140px;
  6477. height:30px;
  6478. display:flex;
  6479. font-size:11px;
  6480. }
  6481. #u30050 .text {
  6482. position:absolute;
  6483. align-self:center;
  6484. padding:2px 2px 2px 2px;
  6485. box-sizing:border-box;
  6486. width:100%;
  6487. }
  6488. #u30050_text {
  6489. border-width:0px;
  6490. word-wrap:break-word;
  6491. text-transform:none;
  6492. visibility:hidden;
  6493. }
  6494. #u30051_input {
  6495. position:absolute;
  6496. left:0px;
  6497. top:0px;
  6498. width:126px;
  6499. height:23px;
  6500. padding:2px 2px 2px 2px;
  6501. font-family:'ArialMT', 'Arial', sans-serif;
  6502. font-weight:400;
  6503. font-style:normal;
  6504. font-size:11px;
  6505. letter-spacing:normal;
  6506. color:#AAAAAA;
  6507. vertical-align:none;
  6508. text-align:left;
  6509. text-transform:none;
  6510. background-color:transparent;
  6511. border-color:transparent;
  6512. }
  6513. #u30051_input.disabled {
  6514. position:absolute;
  6515. left:0px;
  6516. top:0px;
  6517. width:126px;
  6518. height:23px;
  6519. padding:2px 2px 2px 2px;
  6520. font-family:'ArialMT', 'Arial', sans-serif;
  6521. font-weight:400;
  6522. font-style:normal;
  6523. font-size:11px;
  6524. letter-spacing:normal;
  6525. color:#AAAAAA;
  6526. vertical-align:none;
  6527. text-align:left;
  6528. text-transform:none;
  6529. background-color:transparent;
  6530. border-color:transparent;
  6531. }
  6532. #u30051_div {
  6533. border-width:0px;
  6534. position:absolute;
  6535. left:0px;
  6536. top:0px;
  6537. width:126px;
  6538. height:23px;
  6539. background:inherit;
  6540. background-color:rgba(255, 255, 255, 1);
  6541. border:none;
  6542. border-radius:0px;
  6543. -moz-box-shadow:none;
  6544. -webkit-box-shadow:none;
  6545. box-shadow:none;
  6546. font-size:11px;
  6547. color:#AAAAAA;
  6548. }
  6549. #u30051 {
  6550. border-width:0px;
  6551. position:absolute;
  6552. left:659px;
  6553. top:113px;
  6554. width:126px;
  6555. height:23px;
  6556. display:flex;
  6557. font-size:11px;
  6558. color:#AAAAAA;
  6559. }
  6560. #u30051 .text {
  6561. position:absolute;
  6562. align-self:flex-start;
  6563. padding:2px 2px 2px 2px;
  6564. box-sizing:border-box;
  6565. width:100%;
  6566. }
  6567. #u30051_div.disabled {
  6568. border-width:0px;
  6569. position:absolute;
  6570. left:0px;
  6571. top:0px;
  6572. width:126px;
  6573. height:23px;
  6574. background:inherit;
  6575. background-color:rgba(240, 240, 240, 1);
  6576. border:none;
  6577. border-radius:0px;
  6578. -moz-box-shadow:none;
  6579. -webkit-box-shadow:none;
  6580. box-shadow:none;
  6581. font-size:11px;
  6582. color:#AAAAAA;
  6583. }
  6584. #u30051.disabled {
  6585. }
  6586. .u30051_input_option {
  6587. font-size:11px;
  6588. }
  6589. #u30052 {
  6590. border-width:0px;
  6591. position:absolute;
  6592. left:0px;
  6593. top:0px;
  6594. width:0px;
  6595. height:0px;
  6596. }
  6597. #u30053_div {
  6598. border-width:0px;
  6599. position:absolute;
  6600. left:0px;
  6601. top:0px;
  6602. width:140px;
  6603. height:30px;
  6604. background:inherit;
  6605. background-color:rgba(255, 255, 255, 1);
  6606. box-sizing:border-box;
  6607. border-width:1px;
  6608. border-style:solid;
  6609. border-color:rgba(201, 201, 201, 1);
  6610. border-radius:4px;
  6611. -moz-box-shadow:none;
  6612. -webkit-box-shadow:none;
  6613. box-shadow:none;
  6614. font-family:'Microsoft YaHei', sans-serif;
  6615. font-weight:400;
  6616. font-style:normal;
  6617. font-size:14px;
  6618. color:#CCCCCC;
  6619. text-align:left;
  6620. }
  6621. #u30053 {
  6622. border-width:0px;
  6623. position:absolute;
  6624. left:802px;
  6625. top:111px;
  6626. width:140px;
  6627. height:30px;
  6628. display:flex;
  6629. font-family:'Microsoft YaHei', sans-serif;
  6630. font-weight:400;
  6631. font-style:normal;
  6632. font-size:14px;
  6633. color:#CCCCCC;
  6634. text-align:left;
  6635. }
  6636. #u30053 .text {
  6637. position:absolute;
  6638. align-self:center;
  6639. padding:2px 8px 2px 8px;
  6640. box-sizing:border-box;
  6641. width:100%;
  6642. }
  6643. #u30053_text {
  6644. border-width:0px;
  6645. word-wrap:break-word;
  6646. text-transform:none;
  6647. visibility:hidden;
  6648. }
  6649. #u30054_input {
  6650. position:absolute;
  6651. left:0px;
  6652. top:0px;
  6653. width:127px;
  6654. height:25px;
  6655. padding:2px 2px 2px 2px;
  6656. font-family:'Microsoft YaHei', sans-serif;
  6657. font-weight:400;
  6658. font-style:normal;
  6659. font-size:10px;
  6660. letter-spacing:normal;
  6661. color:#000000;
  6662. vertical-align:none;
  6663. text-align:left;
  6664. text-transform:none;
  6665. background-color:transparent;
  6666. border-color:transparent;
  6667. }
  6668. #u30054_input.disabled {
  6669. position:absolute;
  6670. left:0px;
  6671. top:0px;
  6672. width:127px;
  6673. height:25px;
  6674. padding:2px 2px 2px 2px;
  6675. font-family:'Microsoft YaHei', sans-serif;
  6676. font-weight:400;
  6677. font-style:normal;
  6678. font-size:10px;
  6679. letter-spacing:normal;
  6680. color:#000000;
  6681. vertical-align:none;
  6682. text-align:left;
  6683. text-transform:none;
  6684. background-color:transparent;
  6685. border-color:transparent;
  6686. }
  6687. #u30054_div {
  6688. border-width:0px;
  6689. position:absolute;
  6690. left:0px;
  6691. top:0px;
  6692. width:127px;
  6693. height:25px;
  6694. background:inherit;
  6695. background-color:rgba(255, 255, 255, 1);
  6696. border:none;
  6697. border-radius:0px;
  6698. -moz-box-shadow:none;
  6699. -webkit-box-shadow:none;
  6700. box-shadow:none;
  6701. font-family:'Microsoft YaHei', sans-serif;
  6702. font-weight:400;
  6703. font-style:normal;
  6704. font-size:10px;
  6705. }
  6706. #u30054 {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:810px;
  6710. top:112px;
  6711. width:127px;
  6712. height:25px;
  6713. display:flex;
  6714. font-family:'Microsoft YaHei', sans-serif;
  6715. font-weight:400;
  6716. font-style:normal;
  6717. font-size:10px;
  6718. }
  6719. #u30054 .text {
  6720. position:absolute;
  6721. align-self:center;
  6722. padding:2px 2px 2px 2px;
  6723. box-sizing:border-box;
  6724. width:100%;
  6725. }
  6726. #u30054_div.disabled {
  6727. border-width:0px;
  6728. position:absolute;
  6729. left:0px;
  6730. top:0px;
  6731. width:127px;
  6732. height:25px;
  6733. background:inherit;
  6734. background-color:rgba(240, 240, 240, 1);
  6735. border:none;
  6736. border-radius:0px;
  6737. -moz-box-shadow:none;
  6738. -webkit-box-shadow:none;
  6739. box-shadow:none;
  6740. font-family:'Microsoft YaHei', sans-serif;
  6741. font-weight:400;
  6742. font-style:normal;
  6743. font-size:10px;
  6744. }
  6745. #u30054.disabled {
  6746. }
  6747. #u30055_img {
  6748. border-width:0px;
  6749. position:absolute;
  6750. left:0px;
  6751. top:0px;
  6752. width:201px;
  6753. height:2px;
  6754. }
  6755. #u30055 {
  6756. border-width:0px;
  6757. position:absolute;
  6758. left:120px;
  6759. top:255px;
  6760. width:200px;
  6761. height:1px;
  6762. display:flex;
  6763. }
  6764. #u30055 .text {
  6765. position:absolute;
  6766. align-self:center;
  6767. padding:2px 2px 2px 2px;
  6768. box-sizing:border-box;
  6769. width:100%;
  6770. }
  6771. #u30055_text {
  6772. border-width:0px;
  6773. word-wrap:break-word;
  6774. text-transform:none;
  6775. visibility:hidden;
  6776. }
  6777. #u30056_div {
  6778. border-width:0px;
  6779. position:absolute;
  6780. left:0px;
  6781. top:0px;
  6782. width:65px;
  6783. height:22px;
  6784. background:inherit;
  6785. background-color:rgba(255, 255, 255, 0);
  6786. border:none;
  6787. border-radius:0px;
  6788. -moz-box-shadow:none;
  6789. -webkit-box-shadow:none;
  6790. box-shadow:none;
  6791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6792. font-weight:400;
  6793. font-style:normal;
  6794. font-size:16px;
  6795. }
  6796. #u30056 {
  6797. border-width:0px;
  6798. position:absolute;
  6799. left:147px;
  6800. top:312px;
  6801. width:65px;
  6802. height:22px;
  6803. display:flex;
  6804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6805. font-weight:400;
  6806. font-style:normal;
  6807. font-size:16px;
  6808. }
  6809. #u30056 .text {
  6810. position:absolute;
  6811. align-self:flex-start;
  6812. padding:0px 0px 0px 0px;
  6813. box-sizing:border-box;
  6814. width:100%;
  6815. }
  6816. #u30056_text {
  6817. border-width:0px;
  6818. white-space:nowrap;
  6819. text-transform:none;
  6820. }
  6821. #u30057_div {
  6822. border-width:0px;
  6823. position:absolute;
  6824. left:0px;
  6825. top:0px;
  6826. width:49px;
  6827. height:17px;
  6828. background:inherit;
  6829. background-color:rgba(255, 255, 255, 0);
  6830. border:none;
  6831. border-radius:0px;
  6832. -moz-box-shadow:none;
  6833. -webkit-box-shadow:none;
  6834. box-shadow:none;
  6835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6836. font-weight:400;
  6837. font-style:normal;
  6838. font-size:12px;
  6839. color:#AAAAAA;
  6840. }
  6841. #u30057 {
  6842. border-width:0px;
  6843. position:absolute;
  6844. left:147px;
  6845. top:275px;
  6846. width:49px;
  6847. height:17px;
  6848. display:flex;
  6849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6850. font-weight:400;
  6851. font-style:normal;
  6852. font-size:12px;
  6853. color:#AAAAAA;
  6854. }
  6855. #u30057 .text {
  6856. position:absolute;
  6857. align-self:flex-start;
  6858. padding:0px 0px 0px 0px;
  6859. box-sizing:border-box;
  6860. width:100%;
  6861. }
  6862. #u30057_text {
  6863. border-width:0px;
  6864. white-space:nowrap;
  6865. text-transform:none;
  6866. }