styles.css 112 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2281px;
  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. #u28852_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:129px;
  25. height:22px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. color:#FFFFFF;
  35. }
  36. #u28852 {
  37. border-width:0px;
  38. position:absolute;
  39. left:49px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u28852 .text {
  48. position:absolute;
  49. align-self:flex-start;
  50. padding:0px 0px 0px 0px;
  51. box-sizing:border-box;
  52. width:100%;
  53. }
  54. #u28852_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u28853_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:1600px;
  65. height:50px;
  66. background:inherit;
  67. background-color:rgba(30, 42, 68, 1);
  68. border:none;
  69. border-radius:0px;
  70. -moz-box-shadow:none;
  71. -webkit-box-shadow:none;
  72. box-shadow:none;
  73. color:#AFB3B6;
  74. }
  75. #u28853 {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u28853 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u28853_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u28854 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u28855_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u28855 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u28855 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u28855_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u28856_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:161px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:16px;
  153. color:#FFFFFF;
  154. }
  155. #u28856 {
  156. border-width:0px;
  157. position:absolute;
  158. left:62px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u28856 .text {
  170. position:absolute;
  171. align-self:flex-start;
  172. padding:0px 0px 0px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u28856_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u28857_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:120px;
  187. height:1200px;
  188. background:inherit;
  189. background-color:rgba(30, 42, 68, 1);
  190. border:none;
  191. border-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. color:#AFB3B6;
  196. }
  197. #u28857 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u28857 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u28857_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u28858_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:1480px;
  226. height:1200px;
  227. background:inherit;
  228. background-color:rgba(242, 242, 242, 1);
  229. border:none;
  230. border-radius:0px;
  231. -moz-box-shadow:none;
  232. -webkit-box-shadow:none;
  233. box-shadow:none;
  234. }
  235. #u28858 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u28858 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u28858_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u28859 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u28860_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u28860 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:67px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u28860 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u28860_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u28861_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u28861 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u28861 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u28861_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u28862 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u28863_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u28863 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:109px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u28863 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u28863_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u28864_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u28864 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u28864 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u28864_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u28865 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u28866_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:29px;
  439. height:20px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:25px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. color:#FFFFFF;
  451. }
  452. #u28866 {
  453. border-width:0px;
  454. position:absolute;
  455. left:59px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u28866 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u28866_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u28867_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u28867 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u28867 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u28867_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u28868 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u28869_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:29px;
  521. height:20px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-radius:25px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  530. font-weight:400;
  531. font-style:normal;
  532. color:#FFFFFF;
  533. }
  534. #u28869 {
  535. border-width:0px;
  536. position:absolute;
  537. left:59px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u28869 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u28869_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u28870_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u28870 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u28870 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u28870_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u28871 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u28872_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:33px;
  603. height:22px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. font-size:16px;
  615. color:#FFFFFF;
  616. }
  617. #u28872 {
  618. border-width:0px;
  619. position:absolute;
  620. left:39px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u28872 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 0px 0px 0px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u28872_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u28873_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u28873 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u28873 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u28873_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u28874 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u28875_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:33px;
  687. height:22px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FFFFFF;
  700. }
  701. #u28875 {
  702. border-width:0px;
  703. position:absolute;
  704. left:39px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u28875 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u28875_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u28876_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u28876 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u28876 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u28876_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u28877 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u28878_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:33px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u28878 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:445px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u28878 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u28878_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u28879_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u28879 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:449px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u28879 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u28879_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u28880 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u28881_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:33px;
  855. height:22px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 0);
  858. border:none;
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:16px;
  867. color:#FFFFFF;
  868. }
  869. #u28881 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:487px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u28881 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u28881_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u28882_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u28882 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:491px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u28882 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u28882_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u28883 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u28884_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:33px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u28884 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:571px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u28884 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u28884_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u28885_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u28885 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:575px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u28885 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u28885_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u28886 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u28887_input {
  1018. position:absolute;
  1019. left:0px;
  1020. top:0px;
  1021. width:214px;
  1022. height:27px;
  1023. padding:2px 2px 2px 2px;
  1024. font-family:'ArialMT', 'Arial', sans-serif;
  1025. font-weight:400;
  1026. font-style:normal;
  1027. font-size:14px;
  1028. letter-spacing:normal;
  1029. color:#FFFFFF;
  1030. vertical-align:none;
  1031. text-align:left;
  1032. text-transform:none;
  1033. background-color:transparent;
  1034. border-color:transparent;
  1035. }
  1036. #u28887_input.disabled {
  1037. position:absolute;
  1038. left:0px;
  1039. top:0px;
  1040. width:214px;
  1041. height:27px;
  1042. padding:2px 2px 2px 2px;
  1043. font-family:'ArialMT', 'Arial', sans-serif;
  1044. font-weight:400;
  1045. font-style:normal;
  1046. font-size:14px;
  1047. letter-spacing:normal;
  1048. color:#FFFFFF;
  1049. vertical-align:none;
  1050. text-align:left;
  1051. text-transform:none;
  1052. background-color:transparent;
  1053. border-color:transparent;
  1054. }
  1055. #u28887_div {
  1056. border-width:0px;
  1057. position:absolute;
  1058. left:0px;
  1059. top:0px;
  1060. width:214px;
  1061. height:27px;
  1062. background:inherit;
  1063. background-color:rgba(255, 255, 255, 0);
  1064. border:none;
  1065. border-radius:0px;
  1066. -moz-box-shadow:none;
  1067. -webkit-box-shadow:none;
  1068. box-shadow:none;
  1069. font-size:14px;
  1070. color:#FFFFFF;
  1071. }
  1072. #u28887 {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:1221px;
  1076. top:11px;
  1077. width:214px;
  1078. height:27px;
  1079. display:flex;
  1080. font-size:14px;
  1081. color:#FFFFFF;
  1082. }
  1083. #u28887 .text {
  1084. position:absolute;
  1085. align-self:flex-start;
  1086. padding:2px 2px 2px 2px;
  1087. box-sizing:border-box;
  1088. width:100%;
  1089. }
  1090. #u28887_div.disabled {
  1091. border-width:0px;
  1092. position:absolute;
  1093. left:0px;
  1094. top:0px;
  1095. width:214px;
  1096. height:27px;
  1097. background:inherit;
  1098. background-color:rgba(240, 240, 240, 1);
  1099. border:none;
  1100. border-radius:0px;
  1101. -moz-box-shadow:none;
  1102. -webkit-box-shadow:none;
  1103. box-shadow:none;
  1104. font-size:14px;
  1105. color:#FFFFFF;
  1106. }
  1107. #u28887.disabled {
  1108. }
  1109. .u28887_input_option {
  1110. font-size:14px;
  1111. }
  1112. #u28888_img {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:22px;
  1118. height:22px;
  1119. }
  1120. #u28888 {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:1194px;
  1124. top:14px;
  1125. width:22px;
  1126. height:22px;
  1127. display:flex;
  1128. }
  1129. #u28888 .text {
  1130. position:absolute;
  1131. align-self:center;
  1132. padding:2px 2px 2px 2px;
  1133. box-sizing:border-box;
  1134. width:100%;
  1135. }
  1136. #u28888_text {
  1137. border-width:0px;
  1138. word-wrap:break-word;
  1139. text-transform:none;
  1140. visibility:hidden;
  1141. }
  1142. #u28889_div {
  1143. border-width:0px;
  1144. position:absolute;
  1145. left:0px;
  1146. top:0px;
  1147. width:100px;
  1148. height:24px;
  1149. background:inherit;
  1150. background-color:rgba(242, 242, 242, 0.2);
  1151. border:none;
  1152. border-radius:25px;
  1153. -moz-box-shadow:none;
  1154. -webkit-box-shadow:none;
  1155. box-shadow:none;
  1156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1157. font-weight:400;
  1158. font-style:normal;
  1159. color:#FFFFFF;
  1160. text-align:center;
  1161. }
  1162. #u28889 {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:1480px;
  1166. top:13px;
  1167. width:100px;
  1168. height:24px;
  1169. display:flex;
  1170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1171. font-weight:400;
  1172. font-style:normal;
  1173. color:#FFFFFF;
  1174. text-align:center;
  1175. }
  1176. #u28889 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:0px 0px 0px 0px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u28889_text {
  1184. border-width:0px;
  1185. word-wrap:break-word;
  1186. text-transform:none;
  1187. }
  1188. #u28890_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:2px;
  1194. height:12px;
  1195. }
  1196. #u28890 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1452px;
  1200. top:19px;
  1201. width:1px;
  1202. height:11px;
  1203. display:flex;
  1204. }
  1205. #u28890 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u28890_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u28891 {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:0px;
  1224. height:0px;
  1225. }
  1226. #u28892_div {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:0px;
  1230. top:0px;
  1231. width:33px;
  1232. height:22px;
  1233. background:inherit;
  1234. background-color:rgba(255, 255, 255, 0);
  1235. border:none;
  1236. border-radius:0px;
  1237. -moz-box-shadow:none;
  1238. -webkit-box-shadow:none;
  1239. box-shadow:none;
  1240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1241. font-weight:400;
  1242. font-style:normal;
  1243. font-size:16px;
  1244. color:#FFFFFF;
  1245. }
  1246. #u28892 {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:39px;
  1250. top:361px;
  1251. width:33px;
  1252. height:22px;
  1253. display:flex;
  1254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1255. font-weight:400;
  1256. font-style:normal;
  1257. font-size:16px;
  1258. color:#FFFFFF;
  1259. }
  1260. #u28892 .text {
  1261. position:absolute;
  1262. align-self:flex-start;
  1263. padding:0px 0px 0px 0px;
  1264. box-sizing:border-box;
  1265. width:100%;
  1266. }
  1267. #u28892_text {
  1268. border-width:0px;
  1269. white-space:nowrap;
  1270. text-transform:none;
  1271. }
  1272. #u28893_img {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:0px;
  1276. top:0px;
  1277. width:14px;
  1278. height:14px;
  1279. }
  1280. #u28893 {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:20px;
  1284. top:365px;
  1285. width:14px;
  1286. height:14px;
  1287. display:flex;
  1288. }
  1289. #u28893 .text {
  1290. position:absolute;
  1291. align-self:center;
  1292. padding:2px 2px 2px 2px;
  1293. box-sizing:border-box;
  1294. width:100%;
  1295. }
  1296. #u28893_text {
  1297. border-width:0px;
  1298. word-wrap:break-word;
  1299. text-transform:none;
  1300. visibility:hidden;
  1301. }
  1302. #u28894 {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:0px;
  1308. height:0px;
  1309. }
  1310. #u28895_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:33px;
  1316. height:22px;
  1317. background:inherit;
  1318. background-color:rgba(255, 255, 255, 0);
  1319. border:none;
  1320. border-radius:0px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. font-size:16px;
  1328. color:#FFFFFF;
  1329. }
  1330. #u28895 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:39px;
  1334. top:319px;
  1335. width:33px;
  1336. height:22px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. font-size:16px;
  1342. color:#FFFFFF;
  1343. }
  1344. #u28895 .text {
  1345. position:absolute;
  1346. align-self:flex-start;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u28895_text {
  1352. border-width:0px;
  1353. white-space:nowrap;
  1354. text-transform:none;
  1355. }
  1356. #u28896_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:14px;
  1362. height:14px;
  1363. }
  1364. #u28896 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:20px;
  1368. top:323px;
  1369. width:14px;
  1370. height:14px;
  1371. display:flex;
  1372. }
  1373. #u28896 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u28896_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u28897 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u28898_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:33px;
  1400. height:22px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:0px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. font-size:16px;
  1412. color:#FFFFFF;
  1413. }
  1414. #u28898 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:39px;
  1418. top:151px;
  1419. width:33px;
  1420. height:22px;
  1421. display:flex;
  1422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1423. font-weight:400;
  1424. font-style:normal;
  1425. font-size:16px;
  1426. color:#FFFFFF;
  1427. }
  1428. #u28898 .text {
  1429. position:absolute;
  1430. align-self:flex-start;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u28898_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u28899_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:14px;
  1446. height:14px;
  1447. }
  1448. #u28899 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:155px;
  1453. width:14px;
  1454. height:14px;
  1455. display:flex;
  1456. }
  1457. #u28899 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u28899_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u28900 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u28901_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. #u28901 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:529px;
  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. #u28901 .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. #u28901_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u28902_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u28902 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:533px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u28902 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u28902_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u28903 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u28904_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. #u28904 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:193px;
  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. #u28904 .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. #u28904_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u28905_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u28905 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:197px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u28905 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u28905_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u28906 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u28907_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. #u28907 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:39px;
  1670. top:403px;
  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. #u28907 .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. #u28907_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u28908_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u28908 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:407px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u28908 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u28908_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u28909_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:1260px;
  1728. height:1198px;
  1729. background:inherit;
  1730. background-color:rgba(255, 255, 255, 1);
  1731. border:none;
  1732. border-radius:0px;
  1733. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1734. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1735. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1736. }
  1737. #u28909 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:330px;
  1741. top:50px;
  1742. width:1260px;
  1743. height:1198px;
  1744. display:flex;
  1745. }
  1746. #u28909 .text {
  1747. position:absolute;
  1748. align-self:center;
  1749. padding:2px 2px 2px 2px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u28909_text {
  1754. border-width:0px;
  1755. word-wrap:break-word;
  1756. text-transform:none;
  1757. visibility:hidden;
  1758. }
  1759. #u28910 {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:350px;
  1763. top:112px;
  1764. width:1217px;
  1765. height:416px;
  1766. }
  1767. #u28911_img {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:0px;
  1771. top:0px;
  1772. width:69px;
  1773. height:34px;
  1774. }
  1775. #u28911 {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:69px;
  1781. height:34px;
  1782. display:flex;
  1783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1784. font-weight:400;
  1785. font-style:normal;
  1786. font-size:14px;
  1787. color:#FFFFFF;
  1788. text-align:left;
  1789. line-height:30px;
  1790. }
  1791. #u28911 .text {
  1792. position:absolute;
  1793. align-self:center;
  1794. padding:2px 0px 2px 5px;
  1795. box-sizing:border-box;
  1796. width:100%;
  1797. }
  1798. #u28911_text {
  1799. border-width:0px;
  1800. word-wrap:break-word;
  1801. text-transform:none;
  1802. }
  1803. #u28912_img {
  1804. border-width:0px;
  1805. position:absolute;
  1806. left:0px;
  1807. top:0px;
  1808. width:207px;
  1809. height:34px;
  1810. }
  1811. #u28912 {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:69px;
  1815. top:0px;
  1816. width:207px;
  1817. height:34px;
  1818. display:flex;
  1819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1820. font-weight:400;
  1821. font-style:normal;
  1822. font-size:14px;
  1823. color:#FFFFFF;
  1824. text-align:left;
  1825. line-height:30px;
  1826. }
  1827. #u28912 .text {
  1828. position:absolute;
  1829. align-self:center;
  1830. padding:2px 0px 2px 5px;
  1831. box-sizing:border-box;
  1832. width:100%;
  1833. }
  1834. #u28912_text {
  1835. border-width:0px;
  1836. word-wrap:break-word;
  1837. text-transform:none;
  1838. }
  1839. #u28913_img {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:0px;
  1843. top:0px;
  1844. width:207px;
  1845. height:34px;
  1846. }
  1847. #u28913 {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:276px;
  1851. top:0px;
  1852. width:207px;
  1853. height:34px;
  1854. display:flex;
  1855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1856. font-weight:400;
  1857. font-style:normal;
  1858. font-size:14px;
  1859. color:#FFFFFF;
  1860. text-align:left;
  1861. line-height:30px;
  1862. }
  1863. #u28913 .text {
  1864. position:absolute;
  1865. align-self:center;
  1866. padding:2px 0px 2px 5px;
  1867. box-sizing:border-box;
  1868. width:100%;
  1869. }
  1870. #u28913_text {
  1871. border-width:0px;
  1872. word-wrap:break-word;
  1873. text-transform:none;
  1874. }
  1875. #u28914_img {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:0px;
  1879. top:0px;
  1880. width:576px;
  1881. height:34px;
  1882. }
  1883. #u28914 {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:483px;
  1887. top:0px;
  1888. width:576px;
  1889. height:34px;
  1890. display:flex;
  1891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1892. font-weight:400;
  1893. font-style:normal;
  1894. font-size:14px;
  1895. color:#FFFFFF;
  1896. text-align:left;
  1897. line-height:30px;
  1898. }
  1899. #u28914 .text {
  1900. position:absolute;
  1901. align-self:center;
  1902. padding:2px 0px 2px 5px;
  1903. box-sizing:border-box;
  1904. width:100%;
  1905. }
  1906. #u28914_text {
  1907. border-width:0px;
  1908. word-wrap:break-word;
  1909. text-transform:none;
  1910. }
  1911. #u28915_img {
  1912. border-width:0px;
  1913. position:absolute;
  1914. left:0px;
  1915. top:0px;
  1916. width:158px;
  1917. height:34px;
  1918. }
  1919. #u28915 {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:1059px;
  1923. top:0px;
  1924. width:158px;
  1925. height:34px;
  1926. display:flex;
  1927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1928. font-weight:400;
  1929. font-style:normal;
  1930. font-size:14px;
  1931. color:#FFFFFF;
  1932. text-align:left;
  1933. line-height:30px;
  1934. }
  1935. #u28915 .text {
  1936. position:absolute;
  1937. align-self:center;
  1938. padding:2px 0px 2px 5px;
  1939. box-sizing:border-box;
  1940. width:100%;
  1941. }
  1942. #u28915_text {
  1943. border-width:0px;
  1944. word-wrap:break-word;
  1945. text-transform:none;
  1946. }
  1947. #u28916_img {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:69px;
  1953. height:34px;
  1954. }
  1955. #u28916 {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:0px;
  1959. top:34px;
  1960. width:69px;
  1961. height:34px;
  1962. display:flex;
  1963. font-size:14px;
  1964. text-align:left;
  1965. line-height:30px;
  1966. }
  1967. #u28916 .text {
  1968. position:absolute;
  1969. align-self:center;
  1970. padding:2px 0px 2px 5px;
  1971. box-sizing:border-box;
  1972. width:100%;
  1973. }
  1974. #u28916_text {
  1975. border-width:0px;
  1976. word-wrap:break-word;
  1977. text-transform:none;
  1978. }
  1979. #u28917_img {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:207px;
  1985. height:34px;
  1986. }
  1987. #u28917 {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:69px;
  1991. top:34px;
  1992. width:207px;
  1993. height:34px;
  1994. display:flex;
  1995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1996. font-weight:400;
  1997. font-style:normal;
  1998. font-size:14px;
  1999. text-align:left;
  2000. line-height:30px;
  2001. }
  2002. #u28917 .text {
  2003. position:absolute;
  2004. align-self:center;
  2005. padding:2px 0px 2px 5px;
  2006. box-sizing:border-box;
  2007. width:100%;
  2008. }
  2009. #u28917_text {
  2010. border-width:0px;
  2011. word-wrap:break-word;
  2012. text-transform:none;
  2013. }
  2014. #u28918_img {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:0px;
  2018. top:0px;
  2019. width:207px;
  2020. height:34px;
  2021. }
  2022. #u28918 {
  2023. border-width:0px;
  2024. position:absolute;
  2025. left:276px;
  2026. top:34px;
  2027. width:207px;
  2028. height:34px;
  2029. display:flex;
  2030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2031. font-weight:400;
  2032. font-style:normal;
  2033. font-size:14px;
  2034. text-align:left;
  2035. line-height:30px;
  2036. }
  2037. #u28918 .text {
  2038. position:absolute;
  2039. align-self:center;
  2040. padding:2px 0px 2px 5px;
  2041. box-sizing:border-box;
  2042. width:100%;
  2043. }
  2044. #u28918_text {
  2045. border-width:0px;
  2046. word-wrap:break-word;
  2047. text-transform:none;
  2048. }
  2049. #u28919_img {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:576px;
  2055. height:34px;
  2056. }
  2057. #u28919 {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:483px;
  2061. top:34px;
  2062. width:576px;
  2063. height:34px;
  2064. display:flex;
  2065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2066. font-weight:400;
  2067. font-style:normal;
  2068. font-size:14px;
  2069. text-align:left;
  2070. line-height:30px;
  2071. }
  2072. #u28919 .text {
  2073. position:absolute;
  2074. align-self:center;
  2075. padding:2px 0px 2px 5px;
  2076. box-sizing:border-box;
  2077. width:100%;
  2078. }
  2079. #u28919_text {
  2080. border-width:0px;
  2081. word-wrap:break-word;
  2082. text-transform:none;
  2083. }
  2084. #u28920_img {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:0px;
  2088. top:0px;
  2089. width:158px;
  2090. height:34px;
  2091. }
  2092. #u28920 {
  2093. border-width:0px;
  2094. position:absolute;
  2095. left:1059px;
  2096. top:34px;
  2097. width:158px;
  2098. height:34px;
  2099. display:flex;
  2100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2101. font-weight:400;
  2102. font-style:normal;
  2103. font-size:14px;
  2104. color:#1890FF;
  2105. text-align:left;
  2106. line-height:30px;
  2107. }
  2108. #u28920 .text {
  2109. position:absolute;
  2110. align-self:center;
  2111. padding:2px 0px 2px 5px;
  2112. box-sizing:border-box;
  2113. width:100%;
  2114. }
  2115. #u28920_text {
  2116. border-width:0px;
  2117. word-wrap:break-word;
  2118. text-transform:none;
  2119. }
  2120. #u28921_img {
  2121. border-width:0px;
  2122. position:absolute;
  2123. left:0px;
  2124. top:0px;
  2125. width:69px;
  2126. height:34px;
  2127. }
  2128. #u28921 {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:0px;
  2132. top:68px;
  2133. width:69px;
  2134. height:34px;
  2135. display:flex;
  2136. font-size:14px;
  2137. text-align:left;
  2138. line-height:30px;
  2139. }
  2140. #u28921 .text {
  2141. position:absolute;
  2142. align-self:center;
  2143. padding:2px 0px 2px 5px;
  2144. box-sizing:border-box;
  2145. width:100%;
  2146. }
  2147. #u28921_text {
  2148. border-width:0px;
  2149. word-wrap:break-word;
  2150. text-transform:none;
  2151. visibility:hidden;
  2152. }
  2153. #u28922_img {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:0px;
  2157. top:0px;
  2158. width:207px;
  2159. height:34px;
  2160. }
  2161. #u28922 {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:69px;
  2165. top:68px;
  2166. width:207px;
  2167. height:34px;
  2168. display:flex;
  2169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2170. font-weight:400;
  2171. font-style:normal;
  2172. font-size:14px;
  2173. text-align:left;
  2174. line-height:30px;
  2175. }
  2176. #u28922 .text {
  2177. position:absolute;
  2178. align-self:center;
  2179. padding:2px 0px 2px 5px;
  2180. box-sizing:border-box;
  2181. width:100%;
  2182. }
  2183. #u28922_text {
  2184. border-width:0px;
  2185. word-wrap:break-word;
  2186. text-transform:none;
  2187. }
  2188. #u28923_img {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:0px;
  2192. top:0px;
  2193. width:207px;
  2194. height:34px;
  2195. }
  2196. #u28923 {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:276px;
  2200. top:68px;
  2201. width:207px;
  2202. height:34px;
  2203. display:flex;
  2204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2205. font-weight:400;
  2206. font-style:normal;
  2207. font-size:14px;
  2208. text-align:left;
  2209. line-height:30px;
  2210. }
  2211. #u28923 .text {
  2212. position:absolute;
  2213. align-self:center;
  2214. padding:2px 0px 2px 5px;
  2215. box-sizing:border-box;
  2216. width:100%;
  2217. }
  2218. #u28923_text {
  2219. border-width:0px;
  2220. word-wrap:break-word;
  2221. text-transform:none;
  2222. }
  2223. #u28924_img {
  2224. border-width:0px;
  2225. position:absolute;
  2226. left:0px;
  2227. top:0px;
  2228. width:576px;
  2229. height:34px;
  2230. }
  2231. #u28924 {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:483px;
  2235. top:68px;
  2236. width:576px;
  2237. height:34px;
  2238. display:flex;
  2239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2240. font-weight:400;
  2241. font-style:normal;
  2242. font-size:14px;
  2243. text-align:left;
  2244. line-height:30px;
  2245. }
  2246. #u28924 .text {
  2247. position:absolute;
  2248. align-self:center;
  2249. padding:2px 0px 2px 5px;
  2250. box-sizing:border-box;
  2251. width:100%;
  2252. }
  2253. #u28924_text {
  2254. border-width:0px;
  2255. word-wrap:break-word;
  2256. text-transform:none;
  2257. }
  2258. #u28925_img {
  2259. border-width:0px;
  2260. position:absolute;
  2261. left:0px;
  2262. top:0px;
  2263. width:158px;
  2264. height:34px;
  2265. }
  2266. #u28925 {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:1059px;
  2270. top:68px;
  2271. width:158px;
  2272. height:34px;
  2273. display:flex;
  2274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2275. font-weight:400;
  2276. font-style:normal;
  2277. font-size:14px;
  2278. color:#1890FF;
  2279. text-align:left;
  2280. line-height:30px;
  2281. }
  2282. #u28925 .text {
  2283. position:absolute;
  2284. align-self:center;
  2285. padding:2px 0px 2px 5px;
  2286. box-sizing:border-box;
  2287. width:100%;
  2288. }
  2289. #u28925_text {
  2290. border-width:0px;
  2291. word-wrap:break-word;
  2292. text-transform:none;
  2293. visibility:hidden;
  2294. }
  2295. #u28926_img {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:0px;
  2299. top:0px;
  2300. width:69px;
  2301. height:34px;
  2302. }
  2303. #u28926 {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:0px;
  2307. top:102px;
  2308. width:69px;
  2309. height:34px;
  2310. display:flex;
  2311. font-size:14px;
  2312. text-align:left;
  2313. line-height:30px;
  2314. }
  2315. #u28926 .text {
  2316. position:absolute;
  2317. align-self:center;
  2318. padding:2px 0px 2px 5px;
  2319. box-sizing:border-box;
  2320. width:100%;
  2321. }
  2322. #u28926_text {
  2323. border-width:0px;
  2324. word-wrap:break-word;
  2325. text-transform:none;
  2326. visibility:hidden;
  2327. }
  2328. #u28927_img {
  2329. border-width:0px;
  2330. position:absolute;
  2331. left:0px;
  2332. top:0px;
  2333. width:207px;
  2334. height:34px;
  2335. }
  2336. #u28927 {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:69px;
  2340. top:102px;
  2341. width:207px;
  2342. height:34px;
  2343. display:flex;
  2344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2345. font-weight:400;
  2346. font-style:normal;
  2347. font-size:14px;
  2348. text-align:left;
  2349. line-height:30px;
  2350. }
  2351. #u28927 .text {
  2352. position:absolute;
  2353. align-self:center;
  2354. padding:2px 0px 2px 5px;
  2355. box-sizing:border-box;
  2356. width:100%;
  2357. }
  2358. #u28927_text {
  2359. border-width:0px;
  2360. word-wrap:break-word;
  2361. text-transform:none;
  2362. }
  2363. #u28928_img {
  2364. border-width:0px;
  2365. position:absolute;
  2366. left:0px;
  2367. top:0px;
  2368. width:207px;
  2369. height:34px;
  2370. }
  2371. #u28928 {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:276px;
  2375. top:102px;
  2376. width:207px;
  2377. height:34px;
  2378. display:flex;
  2379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2380. font-weight:400;
  2381. font-style:normal;
  2382. font-size:14px;
  2383. text-align:left;
  2384. line-height:30px;
  2385. }
  2386. #u28928 .text {
  2387. position:absolute;
  2388. align-self:center;
  2389. padding:2px 0px 2px 5px;
  2390. box-sizing:border-box;
  2391. width:100%;
  2392. }
  2393. #u28928_text {
  2394. border-width:0px;
  2395. word-wrap:break-word;
  2396. text-transform:none;
  2397. }
  2398. #u28929_img {
  2399. border-width:0px;
  2400. position:absolute;
  2401. left:0px;
  2402. top:0px;
  2403. width:576px;
  2404. height:34px;
  2405. }
  2406. #u28929 {
  2407. border-width:0px;
  2408. position:absolute;
  2409. left:483px;
  2410. top:102px;
  2411. width:576px;
  2412. height:34px;
  2413. display:flex;
  2414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2415. font-weight:400;
  2416. font-style:normal;
  2417. font-size:14px;
  2418. text-align:left;
  2419. line-height:30px;
  2420. }
  2421. #u28929 .text {
  2422. position:absolute;
  2423. align-self:center;
  2424. padding:2px 0px 2px 5px;
  2425. box-sizing:border-box;
  2426. width:100%;
  2427. }
  2428. #u28929_text {
  2429. border-width:0px;
  2430. word-wrap:break-word;
  2431. text-transform:none;
  2432. }
  2433. #u28930_img {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:0px;
  2437. top:0px;
  2438. width:158px;
  2439. height:34px;
  2440. }
  2441. #u28930 {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:1059px;
  2445. top:102px;
  2446. width:158px;
  2447. height:34px;
  2448. display:flex;
  2449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2450. font-weight:400;
  2451. font-style:normal;
  2452. font-size:14px;
  2453. color:#1890FF;
  2454. text-align:left;
  2455. line-height:30px;
  2456. }
  2457. #u28930 .text {
  2458. position:absolute;
  2459. align-self:center;
  2460. padding:2px 0px 2px 5px;
  2461. box-sizing:border-box;
  2462. width:100%;
  2463. }
  2464. #u28930_text {
  2465. border-width:0px;
  2466. word-wrap:break-word;
  2467. text-transform:none;
  2468. visibility:hidden;
  2469. }
  2470. #u28931_img {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:0px;
  2474. top:0px;
  2475. width:69px;
  2476. height:40px;
  2477. }
  2478. #u28931 {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:0px;
  2482. top:136px;
  2483. width:69px;
  2484. height:40px;
  2485. display:flex;
  2486. font-size:14px;
  2487. text-align:left;
  2488. line-height:30px;
  2489. }
  2490. #u28931 .text {
  2491. position:absolute;
  2492. align-self:center;
  2493. padding:2px 0px 2px 5px;
  2494. box-sizing:border-box;
  2495. width:100%;
  2496. }
  2497. #u28931_text {
  2498. border-width:0px;
  2499. word-wrap:break-word;
  2500. text-transform:none;
  2501. visibility:hidden;
  2502. }
  2503. #u28932_img {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:0px;
  2507. top:0px;
  2508. width:207px;
  2509. height:40px;
  2510. }
  2511. #u28932 {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:69px;
  2515. top:136px;
  2516. width:207px;
  2517. height:40px;
  2518. display:flex;
  2519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2520. font-weight:400;
  2521. font-style:normal;
  2522. font-size:14px;
  2523. text-align:left;
  2524. line-height:30px;
  2525. }
  2526. #u28932 .text {
  2527. position:absolute;
  2528. align-self:center;
  2529. padding:2px 0px 2px 5px;
  2530. box-sizing:border-box;
  2531. width:100%;
  2532. }
  2533. #u28932_text {
  2534. border-width:0px;
  2535. word-wrap:break-word;
  2536. text-transform:none;
  2537. }
  2538. #u28933_img {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:0px;
  2542. top:0px;
  2543. width:207px;
  2544. height:40px;
  2545. }
  2546. #u28933 {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:276px;
  2550. top:136px;
  2551. width:207px;
  2552. height:40px;
  2553. display:flex;
  2554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2555. font-weight:400;
  2556. font-style:normal;
  2557. font-size:14px;
  2558. text-align:left;
  2559. line-height:30px;
  2560. }
  2561. #u28933 .text {
  2562. position:absolute;
  2563. align-self:center;
  2564. padding:2px 0px 2px 5px;
  2565. box-sizing:border-box;
  2566. width:100%;
  2567. }
  2568. #u28933_text {
  2569. border-width:0px;
  2570. word-wrap:break-word;
  2571. text-transform:none;
  2572. }
  2573. #u28934_img {
  2574. border-width:0px;
  2575. position:absolute;
  2576. left:0px;
  2577. top:0px;
  2578. width:576px;
  2579. height:40px;
  2580. }
  2581. #u28934 {
  2582. border-width:0px;
  2583. position:absolute;
  2584. left:483px;
  2585. top:136px;
  2586. width:576px;
  2587. height:40px;
  2588. display:flex;
  2589. font-size:14px;
  2590. text-align:left;
  2591. line-height:30px;
  2592. }
  2593. #u28934 .text {
  2594. position:absolute;
  2595. align-self:center;
  2596. padding:2px 0px 2px 5px;
  2597. box-sizing:border-box;
  2598. width:100%;
  2599. }
  2600. #u28934_text {
  2601. border-width:0px;
  2602. word-wrap:break-word;
  2603. text-transform:none;
  2604. }
  2605. #u28935_img {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:0px;
  2609. top:0px;
  2610. width:158px;
  2611. height:40px;
  2612. }
  2613. #u28935 {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:1059px;
  2617. top:136px;
  2618. width:158px;
  2619. height:40px;
  2620. display:flex;
  2621. font-size:14px;
  2622. color:#1890FF;
  2623. text-align:left;
  2624. line-height:30px;
  2625. }
  2626. #u28935 .text {
  2627. position:absolute;
  2628. align-self:center;
  2629. padding:2px 0px 2px 5px;
  2630. box-sizing:border-box;
  2631. width:100%;
  2632. }
  2633. #u28935_text {
  2634. border-width:0px;
  2635. word-wrap:break-word;
  2636. text-transform:none;
  2637. visibility:hidden;
  2638. }
  2639. #u28936_img {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:0px;
  2643. top:0px;
  2644. width:69px;
  2645. height:40px;
  2646. }
  2647. #u28936 {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:0px;
  2651. top:176px;
  2652. width:69px;
  2653. height:40px;
  2654. display:flex;
  2655. font-size:14px;
  2656. text-align:left;
  2657. line-height:30px;
  2658. }
  2659. #u28936 .text {
  2660. position:absolute;
  2661. align-self:center;
  2662. padding:2px 0px 2px 5px;
  2663. box-sizing:border-box;
  2664. width:100%;
  2665. }
  2666. #u28936_text {
  2667. border-width:0px;
  2668. word-wrap:break-word;
  2669. text-transform:none;
  2670. visibility:hidden;
  2671. }
  2672. #u28937_img {
  2673. border-width:0px;
  2674. position:absolute;
  2675. left:0px;
  2676. top:0px;
  2677. width:207px;
  2678. height:40px;
  2679. }
  2680. #u28937 {
  2681. border-width:0px;
  2682. position:absolute;
  2683. left:69px;
  2684. top:176px;
  2685. width:207px;
  2686. height:40px;
  2687. display:flex;
  2688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2689. font-weight:400;
  2690. font-style:normal;
  2691. font-size:14px;
  2692. text-align:left;
  2693. line-height:30px;
  2694. }
  2695. #u28937 .text {
  2696. position:absolute;
  2697. align-self:center;
  2698. padding:2px 0px 2px 5px;
  2699. box-sizing:border-box;
  2700. width:100%;
  2701. }
  2702. #u28937_text {
  2703. border-width:0px;
  2704. word-wrap:break-word;
  2705. text-transform:none;
  2706. }
  2707. #u28938_img {
  2708. border-width:0px;
  2709. position:absolute;
  2710. left:0px;
  2711. top:0px;
  2712. width:207px;
  2713. height:40px;
  2714. }
  2715. #u28938 {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:276px;
  2719. top:176px;
  2720. width:207px;
  2721. height:40px;
  2722. display:flex;
  2723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2724. font-weight:400;
  2725. font-style:normal;
  2726. font-size:14px;
  2727. text-align:left;
  2728. line-height:30px;
  2729. }
  2730. #u28938 .text {
  2731. position:absolute;
  2732. align-self:center;
  2733. padding:2px 0px 2px 5px;
  2734. box-sizing:border-box;
  2735. width:100%;
  2736. }
  2737. #u28938_text {
  2738. border-width:0px;
  2739. word-wrap:break-word;
  2740. text-transform:none;
  2741. }
  2742. #u28939_img {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:0px;
  2746. top:0px;
  2747. width:576px;
  2748. height:40px;
  2749. }
  2750. #u28939 {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:483px;
  2754. top:176px;
  2755. width:576px;
  2756. height:40px;
  2757. display:flex;
  2758. font-size:14px;
  2759. text-align:left;
  2760. line-height:30px;
  2761. }
  2762. #u28939 .text {
  2763. position:absolute;
  2764. align-self:center;
  2765. padding:2px 0px 2px 5px;
  2766. box-sizing:border-box;
  2767. width:100%;
  2768. }
  2769. #u28939_text {
  2770. border-width:0px;
  2771. word-wrap:break-word;
  2772. text-transform:none;
  2773. visibility:hidden;
  2774. }
  2775. #u28940_img {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:0px;
  2779. top:0px;
  2780. width:158px;
  2781. height:40px;
  2782. }
  2783. #u28940 {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:1059px;
  2787. top:176px;
  2788. width:158px;
  2789. height:40px;
  2790. display:flex;
  2791. font-size:14px;
  2792. color:#1890FF;
  2793. text-align:left;
  2794. line-height:30px;
  2795. }
  2796. #u28940 .text {
  2797. position:absolute;
  2798. align-self:center;
  2799. padding:2px 0px 2px 5px;
  2800. box-sizing:border-box;
  2801. width:100%;
  2802. }
  2803. #u28940_text {
  2804. border-width:0px;
  2805. word-wrap:break-word;
  2806. text-transform:none;
  2807. visibility:hidden;
  2808. }
  2809. #u28941_img {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:0px;
  2813. top:0px;
  2814. width:69px;
  2815. height:40px;
  2816. }
  2817. #u28941 {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:0px;
  2821. top:216px;
  2822. width:69px;
  2823. height:40px;
  2824. display:flex;
  2825. font-size:14px;
  2826. text-align:left;
  2827. line-height:30px;
  2828. }
  2829. #u28941 .text {
  2830. position:absolute;
  2831. align-self:center;
  2832. padding:2px 0px 2px 5px;
  2833. box-sizing:border-box;
  2834. width:100%;
  2835. }
  2836. #u28941_text {
  2837. border-width:0px;
  2838. word-wrap:break-word;
  2839. text-transform:none;
  2840. visibility:hidden;
  2841. }
  2842. #u28942_img {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:0px;
  2846. top:0px;
  2847. width:207px;
  2848. height:40px;
  2849. }
  2850. #u28942 {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:69px;
  2854. top:216px;
  2855. width:207px;
  2856. height:40px;
  2857. display:flex;
  2858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2859. font-weight:400;
  2860. font-style:normal;
  2861. font-size:14px;
  2862. text-align:left;
  2863. line-height:30px;
  2864. }
  2865. #u28942 .text {
  2866. position:absolute;
  2867. align-self:center;
  2868. padding:2px 0px 2px 5px;
  2869. box-sizing:border-box;
  2870. width:100%;
  2871. }
  2872. #u28942_text {
  2873. border-width:0px;
  2874. word-wrap:break-word;
  2875. text-transform:none;
  2876. }
  2877. #u28943_img {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:0px;
  2881. top:0px;
  2882. width:207px;
  2883. height:40px;
  2884. }
  2885. #u28943 {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:276px;
  2889. top:216px;
  2890. width:207px;
  2891. height:40px;
  2892. display:flex;
  2893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2894. font-weight:400;
  2895. font-style:normal;
  2896. font-size:14px;
  2897. text-align:left;
  2898. line-height:30px;
  2899. }
  2900. #u28943 .text {
  2901. position:absolute;
  2902. align-self:center;
  2903. padding:2px 0px 2px 5px;
  2904. box-sizing:border-box;
  2905. width:100%;
  2906. }
  2907. #u28943_text {
  2908. border-width:0px;
  2909. word-wrap:break-word;
  2910. text-transform:none;
  2911. }
  2912. #u28944_img {
  2913. border-width:0px;
  2914. position:absolute;
  2915. left:0px;
  2916. top:0px;
  2917. width:576px;
  2918. height:40px;
  2919. }
  2920. #u28944 {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:483px;
  2924. top:216px;
  2925. width:576px;
  2926. height:40px;
  2927. display:flex;
  2928. font-size:14px;
  2929. text-align:left;
  2930. line-height:30px;
  2931. }
  2932. #u28944 .text {
  2933. position:absolute;
  2934. align-self:center;
  2935. padding:2px 0px 2px 5px;
  2936. box-sizing:border-box;
  2937. width:100%;
  2938. }
  2939. #u28944_text {
  2940. border-width:0px;
  2941. word-wrap:break-word;
  2942. text-transform:none;
  2943. visibility:hidden;
  2944. }
  2945. #u28945_img {
  2946. border-width:0px;
  2947. position:absolute;
  2948. left:0px;
  2949. top:0px;
  2950. width:158px;
  2951. height:40px;
  2952. }
  2953. #u28945 {
  2954. border-width:0px;
  2955. position:absolute;
  2956. left:1059px;
  2957. top:216px;
  2958. width:158px;
  2959. height:40px;
  2960. display:flex;
  2961. font-size:14px;
  2962. color:#1890FF;
  2963. text-align:left;
  2964. line-height:30px;
  2965. }
  2966. #u28945 .text {
  2967. position:absolute;
  2968. align-self:center;
  2969. padding:2px 0px 2px 5px;
  2970. box-sizing:border-box;
  2971. width:100%;
  2972. }
  2973. #u28945_text {
  2974. border-width:0px;
  2975. word-wrap:break-word;
  2976. text-transform:none;
  2977. visibility:hidden;
  2978. }
  2979. #u28946_img {
  2980. border-width:0px;
  2981. position:absolute;
  2982. left:0px;
  2983. top:0px;
  2984. width:69px;
  2985. height:40px;
  2986. }
  2987. #u28946 {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:0px;
  2991. top:256px;
  2992. width:69px;
  2993. height:40px;
  2994. display:flex;
  2995. font-size:14px;
  2996. text-align:left;
  2997. line-height:30px;
  2998. }
  2999. #u28946 .text {
  3000. position:absolute;
  3001. align-self:center;
  3002. padding:2px 0px 2px 5px;
  3003. box-sizing:border-box;
  3004. width:100%;
  3005. }
  3006. #u28946_text {
  3007. border-width:0px;
  3008. word-wrap:break-word;
  3009. text-transform:none;
  3010. visibility:hidden;
  3011. }
  3012. #u28947_img {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:0px;
  3016. top:0px;
  3017. width:207px;
  3018. height:40px;
  3019. }
  3020. #u28947 {
  3021. border-width:0px;
  3022. position:absolute;
  3023. left:69px;
  3024. top:256px;
  3025. width:207px;
  3026. height:40px;
  3027. display:flex;
  3028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3029. font-weight:400;
  3030. font-style:normal;
  3031. font-size:14px;
  3032. text-align:left;
  3033. line-height:30px;
  3034. }
  3035. #u28947 .text {
  3036. position:absolute;
  3037. align-self:center;
  3038. padding:2px 0px 2px 5px;
  3039. box-sizing:border-box;
  3040. width:100%;
  3041. }
  3042. #u28947_text {
  3043. border-width:0px;
  3044. word-wrap:break-word;
  3045. text-transform:none;
  3046. }
  3047. #u28948_img {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:0px;
  3051. top:0px;
  3052. width:207px;
  3053. height:40px;
  3054. }
  3055. #u28948 {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:276px;
  3059. top:256px;
  3060. width:207px;
  3061. height:40px;
  3062. display:flex;
  3063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3064. font-weight:400;
  3065. font-style:normal;
  3066. font-size:14px;
  3067. text-align:left;
  3068. line-height:30px;
  3069. }
  3070. #u28948 .text {
  3071. position:absolute;
  3072. align-self:center;
  3073. padding:2px 0px 2px 5px;
  3074. box-sizing:border-box;
  3075. width:100%;
  3076. }
  3077. #u28948_text {
  3078. border-width:0px;
  3079. word-wrap:break-word;
  3080. text-transform:none;
  3081. visibility:hidden;
  3082. }
  3083. #u28949_img {
  3084. border-width:0px;
  3085. position:absolute;
  3086. left:0px;
  3087. top:0px;
  3088. width:576px;
  3089. height:40px;
  3090. }
  3091. #u28949 {
  3092. border-width:0px;
  3093. position:absolute;
  3094. left:483px;
  3095. top:256px;
  3096. width:576px;
  3097. height:40px;
  3098. display:flex;
  3099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3100. font-weight:400;
  3101. font-style:normal;
  3102. font-size:14px;
  3103. text-align:left;
  3104. line-height:30px;
  3105. }
  3106. #u28949 .text {
  3107. position:absolute;
  3108. align-self:center;
  3109. padding:2px 0px 2px 5px;
  3110. box-sizing:border-box;
  3111. width:100%;
  3112. }
  3113. #u28949_text {
  3114. border-width:0px;
  3115. word-wrap:break-word;
  3116. text-transform:none;
  3117. visibility:hidden;
  3118. }
  3119. #u28950_img {
  3120. border-width:0px;
  3121. position:absolute;
  3122. left:0px;
  3123. top:0px;
  3124. width:158px;
  3125. height:40px;
  3126. }
  3127. #u28950 {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:1059px;
  3131. top:256px;
  3132. width:158px;
  3133. height:40px;
  3134. display:flex;
  3135. font-size:14px;
  3136. color:#1890FF;
  3137. text-align:left;
  3138. line-height:30px;
  3139. }
  3140. #u28950 .text {
  3141. position:absolute;
  3142. align-self:center;
  3143. padding:2px 0px 2px 5px;
  3144. box-sizing:border-box;
  3145. width:100%;
  3146. }
  3147. #u28950_text {
  3148. border-width:0px;
  3149. word-wrap:break-word;
  3150. text-transform:none;
  3151. visibility:hidden;
  3152. }
  3153. #u28951_img {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:0px;
  3157. top:0px;
  3158. width:69px;
  3159. height:40px;
  3160. }
  3161. #u28951 {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:0px;
  3165. top:296px;
  3166. width:69px;
  3167. height:40px;
  3168. display:flex;
  3169. font-size:14px;
  3170. text-align:left;
  3171. line-height:30px;
  3172. }
  3173. #u28951 .text {
  3174. position:absolute;
  3175. align-self:center;
  3176. padding:2px 0px 2px 5px;
  3177. box-sizing:border-box;
  3178. width:100%;
  3179. }
  3180. #u28951_text {
  3181. border-width:0px;
  3182. word-wrap:break-word;
  3183. text-transform:none;
  3184. visibility:hidden;
  3185. }
  3186. #u28952_img {
  3187. border-width:0px;
  3188. position:absolute;
  3189. left:0px;
  3190. top:0px;
  3191. width:207px;
  3192. height:40px;
  3193. }
  3194. #u28952 {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:69px;
  3198. top:296px;
  3199. width:207px;
  3200. height:40px;
  3201. display:flex;
  3202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3203. font-weight:400;
  3204. font-style:normal;
  3205. font-size:14px;
  3206. text-align:left;
  3207. line-height:30px;
  3208. }
  3209. #u28952 .text {
  3210. position:absolute;
  3211. align-self:center;
  3212. padding:2px 0px 2px 5px;
  3213. box-sizing:border-box;
  3214. width:100%;
  3215. }
  3216. #u28952_text {
  3217. border-width:0px;
  3218. word-wrap:break-word;
  3219. text-transform:none;
  3220. }
  3221. #u28953_img {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:0px;
  3225. top:0px;
  3226. width:207px;
  3227. height:40px;
  3228. }
  3229. #u28953 {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:276px;
  3233. top:296px;
  3234. width:207px;
  3235. height:40px;
  3236. display:flex;
  3237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3238. font-weight:400;
  3239. font-style:normal;
  3240. font-size:14px;
  3241. text-align:left;
  3242. line-height:30px;
  3243. }
  3244. #u28953 .text {
  3245. position:absolute;
  3246. align-self:center;
  3247. padding:2px 0px 2px 5px;
  3248. box-sizing:border-box;
  3249. width:100%;
  3250. }
  3251. #u28953_text {
  3252. border-width:0px;
  3253. word-wrap:break-word;
  3254. text-transform:none;
  3255. }
  3256. #u28954_img {
  3257. border-width:0px;
  3258. position:absolute;
  3259. left:0px;
  3260. top:0px;
  3261. width:576px;
  3262. height:40px;
  3263. }
  3264. #u28954 {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:483px;
  3268. top:296px;
  3269. width:576px;
  3270. height:40px;
  3271. display:flex;
  3272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3273. font-weight:400;
  3274. font-style:normal;
  3275. font-size:14px;
  3276. text-align:left;
  3277. line-height:30px;
  3278. }
  3279. #u28954 .text {
  3280. position:absolute;
  3281. align-self:center;
  3282. padding:2px 0px 2px 5px;
  3283. box-sizing:border-box;
  3284. width:100%;
  3285. }
  3286. #u28954_text {
  3287. border-width:0px;
  3288. word-wrap:break-word;
  3289. text-transform:none;
  3290. }
  3291. #u28955_img {
  3292. border-width:0px;
  3293. position:absolute;
  3294. left:0px;
  3295. top:0px;
  3296. width:158px;
  3297. height:40px;
  3298. }
  3299. #u28955 {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:1059px;
  3303. top:296px;
  3304. width:158px;
  3305. height:40px;
  3306. display:flex;
  3307. font-size:14px;
  3308. color:#1890FF;
  3309. text-align:left;
  3310. line-height:30px;
  3311. }
  3312. #u28955 .text {
  3313. position:absolute;
  3314. align-self:center;
  3315. padding:2px 0px 2px 5px;
  3316. box-sizing:border-box;
  3317. width:100%;
  3318. }
  3319. #u28955_text {
  3320. border-width:0px;
  3321. word-wrap:break-word;
  3322. text-transform:none;
  3323. visibility:hidden;
  3324. }
  3325. #u28956_img {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:0px;
  3329. top:0px;
  3330. width:69px;
  3331. height:40px;
  3332. }
  3333. #u28956 {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:0px;
  3337. top:336px;
  3338. width:69px;
  3339. height:40px;
  3340. display:flex;
  3341. font-size:14px;
  3342. text-align:left;
  3343. line-height:30px;
  3344. }
  3345. #u28956 .text {
  3346. position:absolute;
  3347. align-self:center;
  3348. padding:2px 0px 2px 5px;
  3349. box-sizing:border-box;
  3350. width:100%;
  3351. }
  3352. #u28956_text {
  3353. border-width:0px;
  3354. word-wrap:break-word;
  3355. text-transform:none;
  3356. visibility:hidden;
  3357. }
  3358. #u28957_img {
  3359. border-width:0px;
  3360. position:absolute;
  3361. left:0px;
  3362. top:0px;
  3363. width:207px;
  3364. height:40px;
  3365. }
  3366. #u28957 {
  3367. border-width:0px;
  3368. position:absolute;
  3369. left:69px;
  3370. top:336px;
  3371. width:207px;
  3372. height:40px;
  3373. display:flex;
  3374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3375. font-weight:400;
  3376. font-style:normal;
  3377. font-size:14px;
  3378. text-align:left;
  3379. line-height:30px;
  3380. }
  3381. #u28957 .text {
  3382. position:absolute;
  3383. align-self:center;
  3384. padding:2px 0px 2px 5px;
  3385. box-sizing:border-box;
  3386. width:100%;
  3387. }
  3388. #u28957_text {
  3389. border-width:0px;
  3390. word-wrap:break-word;
  3391. text-transform:none;
  3392. }
  3393. #u28958_img {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:0px;
  3397. top:0px;
  3398. width:207px;
  3399. height:40px;
  3400. }
  3401. #u28958 {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:276px;
  3405. top:336px;
  3406. width:207px;
  3407. height:40px;
  3408. display:flex;
  3409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3410. font-weight:400;
  3411. font-style:normal;
  3412. font-size:14px;
  3413. text-align:left;
  3414. line-height:30px;
  3415. }
  3416. #u28958 .text {
  3417. position:absolute;
  3418. align-self:center;
  3419. padding:2px 0px 2px 5px;
  3420. box-sizing:border-box;
  3421. width:100%;
  3422. }
  3423. #u28958_text {
  3424. border-width:0px;
  3425. word-wrap:break-word;
  3426. text-transform:none;
  3427. }
  3428. #u28959_img {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:0px;
  3432. top:0px;
  3433. width:576px;
  3434. height:40px;
  3435. }
  3436. #u28959 {
  3437. border-width:0px;
  3438. position:absolute;
  3439. left:483px;
  3440. top:336px;
  3441. width:576px;
  3442. height:40px;
  3443. display:flex;
  3444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3445. font-weight:400;
  3446. font-style:normal;
  3447. font-size:14px;
  3448. text-align:left;
  3449. line-height:30px;
  3450. }
  3451. #u28959 .text {
  3452. position:absolute;
  3453. align-self:center;
  3454. padding:2px 0px 2px 5px;
  3455. box-sizing:border-box;
  3456. width:100%;
  3457. }
  3458. #u28959_text {
  3459. border-width:0px;
  3460. word-wrap:break-word;
  3461. text-transform:none;
  3462. }
  3463. #u28960_img {
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:0px;
  3467. top:0px;
  3468. width:158px;
  3469. height:40px;
  3470. }
  3471. #u28960 {
  3472. border-width:0px;
  3473. position:absolute;
  3474. left:1059px;
  3475. top:336px;
  3476. width:158px;
  3477. height:40px;
  3478. display:flex;
  3479. font-size:14px;
  3480. color:#1890FF;
  3481. text-align:left;
  3482. line-height:30px;
  3483. }
  3484. #u28960 .text {
  3485. position:absolute;
  3486. align-self:center;
  3487. padding:2px 0px 2px 5px;
  3488. box-sizing:border-box;
  3489. width:100%;
  3490. }
  3491. #u28960_text {
  3492. border-width:0px;
  3493. word-wrap:break-word;
  3494. text-transform:none;
  3495. visibility:hidden;
  3496. }
  3497. #u28961_img {
  3498. border-width:0px;
  3499. position:absolute;
  3500. left:0px;
  3501. top:0px;
  3502. width:69px;
  3503. height:40px;
  3504. }
  3505. #u28961 {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:0px;
  3509. top:376px;
  3510. width:69px;
  3511. height:40px;
  3512. display:flex;
  3513. font-size:14px;
  3514. text-align:left;
  3515. line-height:30px;
  3516. }
  3517. #u28961 .text {
  3518. position:absolute;
  3519. align-self:center;
  3520. padding:2px 0px 2px 5px;
  3521. box-sizing:border-box;
  3522. width:100%;
  3523. }
  3524. #u28961_text {
  3525. border-width:0px;
  3526. word-wrap:break-word;
  3527. text-transform:none;
  3528. visibility:hidden;
  3529. }
  3530. #u28962_img {
  3531. border-width:0px;
  3532. position:absolute;
  3533. left:0px;
  3534. top:0px;
  3535. width:207px;
  3536. height:40px;
  3537. }
  3538. #u28962 {
  3539. border-width:0px;
  3540. position:absolute;
  3541. left:69px;
  3542. top:376px;
  3543. width:207px;
  3544. height:40px;
  3545. display:flex;
  3546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3547. font-weight:400;
  3548. font-style:normal;
  3549. font-size:14px;
  3550. text-align:left;
  3551. line-height:30px;
  3552. }
  3553. #u28962 .text {
  3554. position:absolute;
  3555. align-self:center;
  3556. padding:2px 0px 2px 5px;
  3557. box-sizing:border-box;
  3558. width:100%;
  3559. }
  3560. #u28962_text {
  3561. border-width:0px;
  3562. word-wrap:break-word;
  3563. text-transform:none;
  3564. }
  3565. #u28963_img {
  3566. border-width:0px;
  3567. position:absolute;
  3568. left:0px;
  3569. top:0px;
  3570. width:207px;
  3571. height:40px;
  3572. }
  3573. #u28963 {
  3574. border-width:0px;
  3575. position:absolute;
  3576. left:276px;
  3577. top:376px;
  3578. width:207px;
  3579. height:40px;
  3580. display:flex;
  3581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3582. font-weight:400;
  3583. font-style:normal;
  3584. font-size:14px;
  3585. text-align:left;
  3586. line-height:30px;
  3587. }
  3588. #u28963 .text {
  3589. position:absolute;
  3590. align-self:center;
  3591. padding:2px 0px 2px 5px;
  3592. box-sizing:border-box;
  3593. width:100%;
  3594. }
  3595. #u28963_text {
  3596. border-width:0px;
  3597. word-wrap:break-word;
  3598. text-transform:none;
  3599. }
  3600. #u28964_img {
  3601. border-width:0px;
  3602. position:absolute;
  3603. left:0px;
  3604. top:0px;
  3605. width:576px;
  3606. height:40px;
  3607. }
  3608. #u28964 {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:483px;
  3612. top:376px;
  3613. width:576px;
  3614. height:40px;
  3615. display:flex;
  3616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3617. font-weight:400;
  3618. font-style:normal;
  3619. font-size:14px;
  3620. text-align:left;
  3621. line-height:30px;
  3622. }
  3623. #u28964 .text {
  3624. position:absolute;
  3625. align-self:center;
  3626. padding:2px 0px 2px 5px;
  3627. box-sizing:border-box;
  3628. width:100%;
  3629. }
  3630. #u28964_text {
  3631. border-width:0px;
  3632. word-wrap:break-word;
  3633. text-transform:none;
  3634. }
  3635. #u28965_img {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:0px;
  3639. top:0px;
  3640. width:158px;
  3641. height:40px;
  3642. }
  3643. #u28965 {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:1059px;
  3647. top:376px;
  3648. width:158px;
  3649. height:40px;
  3650. display:flex;
  3651. font-size:14px;
  3652. color:#1890FF;
  3653. text-align:left;
  3654. line-height:30px;
  3655. }
  3656. #u28965 .text {
  3657. position:absolute;
  3658. align-self:center;
  3659. padding:2px 0px 2px 5px;
  3660. box-sizing:border-box;
  3661. width:100%;
  3662. }
  3663. #u28965_text {
  3664. border-width:0px;
  3665. word-wrap:break-word;
  3666. text-transform:none;
  3667. visibility:hidden;
  3668. }
  3669. #u28966_div {
  3670. border-width:0px;
  3671. position:absolute;
  3672. left:0px;
  3673. top:0px;
  3674. width:60px;
  3675. height:30px;
  3676. background:inherit;
  3677. background-color:rgba(41, 143, 255, 1);
  3678. border:none;
  3679. border-radius:4px;
  3680. -moz-box-shadow:none;
  3681. -webkit-box-shadow:none;
  3682. box-shadow:none;
  3683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3684. font-weight:400;
  3685. font-style:normal;
  3686. font-size:14px;
  3687. color:#FFFFFF;
  3688. }
  3689. #u28966 {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:1507px;
  3693. top:61px;
  3694. width:60px;
  3695. height:30px;
  3696. display:flex;
  3697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3698. font-weight:400;
  3699. font-style:normal;
  3700. font-size:14px;
  3701. color:#FFFFFF;
  3702. }
  3703. #u28966 .text {
  3704. position:absolute;
  3705. align-self:center;
  3706. padding:5px 0px 5px 0px;
  3707. box-sizing:border-box;
  3708. width:100%;
  3709. }
  3710. #u28966_text {
  3711. border-width:0px;
  3712. word-wrap:break-word;
  3713. text-transform:none;
  3714. }
  3715. #u28967_div {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:0px;
  3719. top:0px;
  3720. width:73px;
  3721. height:25px;
  3722. background:inherit;
  3723. background-color:rgba(255, 255, 255, 0);
  3724. border:none;
  3725. border-radius:0px;
  3726. -moz-box-shadow:none;
  3727. -webkit-box-shadow:none;
  3728. box-shadow:none;
  3729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3730. font-weight:400;
  3731. font-style:normal;
  3732. font-size:18px;
  3733. }
  3734. #u28967 {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:350px;
  3738. top:70px;
  3739. width:73px;
  3740. height:25px;
  3741. display:flex;
  3742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3743. font-weight:400;
  3744. font-style:normal;
  3745. font-size:18px;
  3746. }
  3747. #u28967 .text {
  3748. position:absolute;
  3749. align-self:flex-start;
  3750. padding:0px 0px 0px 0px;
  3751. box-sizing:border-box;
  3752. width:100%;
  3753. }
  3754. #u28967_text {
  3755. border-width:0px;
  3756. white-space:nowrap;
  3757. text-transform:none;
  3758. }
  3759. #u28968 {
  3760. border-width:0px;
  3761. position:absolute;
  3762. left:0px;
  3763. top:0px;
  3764. width:0px;
  3765. height:0px;
  3766. }
  3767. #u28969_div {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:0px;
  3771. top:0px;
  3772. width:630px;
  3773. height:1196px;
  3774. background:inherit;
  3775. background-color:rgba(255, 255, 255, 1);
  3776. box-sizing:border-box;
  3777. border-width:1px;
  3778. border-style:solid;
  3779. border-color:rgba(215, 215, 215, 1);
  3780. border-radius:0px;
  3781. -moz-box-shadow:none;
  3782. -webkit-box-shadow:none;
  3783. box-shadow:none;
  3784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3785. font-weight:400;
  3786. font-style:normal;
  3787. font-size:14px;
  3788. color:#AAAAAA;
  3789. text-align:center;
  3790. line-height:30px;
  3791. }
  3792. #u28969 {
  3793. border-width:0px;
  3794. position:absolute;
  3795. left:1651px;
  3796. top:51px;
  3797. width:630px;
  3798. height:1196px;
  3799. display:flex;
  3800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3801. font-weight:400;
  3802. font-style:normal;
  3803. font-size:14px;
  3804. color:#AAAAAA;
  3805. text-align:center;
  3806. line-height:30px;
  3807. }
  3808. #u28969 .text {
  3809. position:absolute;
  3810. align-self:center;
  3811. padding:5px 10px 5px 10px;
  3812. box-sizing:border-box;
  3813. width:100%;
  3814. }
  3815. #u28969_text {
  3816. border-width:0px;
  3817. word-wrap:break-word;
  3818. text-transform:none;
  3819. visibility:hidden;
  3820. }
  3821. #u28970_div {
  3822. border-width:0px;
  3823. position:absolute;
  3824. left:0px;
  3825. top:0px;
  3826. width:119px;
  3827. height:35px;
  3828. background:inherit;
  3829. background-color:rgba(255, 255, 255, 0);
  3830. border:none;
  3831. border-top:0px;
  3832. border-right:0px;
  3833. border-bottom:0px;
  3834. border-radius:0px;
  3835. border-top-left-radius:0px;
  3836. border-bottom-left-radius:0px;
  3837. -moz-box-shadow:none;
  3838. -webkit-box-shadow:none;
  3839. box-shadow:none;
  3840. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3841. font-weight:500;
  3842. font-style:normal;
  3843. font-size:18px;
  3844. }
  3845. #u28970 {
  3846. border-width:0px;
  3847. position:absolute;
  3848. left:1671px;
  3849. top:69px;
  3850. width:119px;
  3851. height:35px;
  3852. display:flex;
  3853. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3854. font-weight:500;
  3855. font-style:normal;
  3856. font-size:18px;
  3857. }
  3858. #u28970 .text {
  3859. position:absolute;
  3860. align-self:center;
  3861. padding:5px 10px 5px 0px;
  3862. box-sizing:border-box;
  3863. width:100%;
  3864. }
  3865. #u28970_text {
  3866. border-width:0px;
  3867. white-space:nowrap;
  3868. text-transform:none;
  3869. }
  3870. #u28971_div {
  3871. border-width:0px;
  3872. position:absolute;
  3873. left:0px;
  3874. top:0px;
  3875. width:40px;
  3876. height:40px;
  3877. background:inherit;
  3878. background-color:rgba(255, 255, 255, 0);
  3879. border:none;
  3880. border-top:0px;
  3881. border-right:0px;
  3882. border-bottom:0px;
  3883. border-radius:0px;
  3884. border-top-left-radius:0px;
  3885. border-bottom-left-radius:0px;
  3886. -moz-box-shadow:none;
  3887. -webkit-box-shadow:none;
  3888. box-shadow:none;
  3889. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3890. font-weight:500;
  3891. font-style:normal;
  3892. font-size:18px;
  3893. text-align:center;
  3894. }
  3895. #u28971 {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:2241px;
  3899. top:51px;
  3900. width:40px;
  3901. height:40px;
  3902. display:flex;
  3903. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3904. font-weight:500;
  3905. font-style:normal;
  3906. font-size:18px;
  3907. text-align:center;
  3908. }
  3909. #u28971 .text {
  3910. position:absolute;
  3911. align-self:center;
  3912. padding:5px 10px 5px 0px;
  3913. box-sizing:border-box;
  3914. width:100%;
  3915. }
  3916. #u28971_text {
  3917. border-width:0px;
  3918. word-wrap:break-word;
  3919. text-transform:none;
  3920. }
  3921. #u28972_img {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:0px;
  3925. top:0px;
  3926. width:13px;
  3927. height:13px;
  3928. }
  3929. #u28972 {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:2229px;
  3933. top:67px;
  3934. width:13px;
  3935. height:13px;
  3936. display:flex;
  3937. }
  3938. #u28972 .text {
  3939. position:absolute;
  3940. align-self:center;
  3941. padding:2px 2px 2px 2px;
  3942. box-sizing:border-box;
  3943. width:100%;
  3944. }
  3945. #u28972_text {
  3946. border-width:0px;
  3947. word-wrap:break-word;
  3948. text-transform:none;
  3949. visibility:hidden;
  3950. }
  3951. #u28973 {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:0px;
  3955. top:0px;
  3956. width:0px;
  3957. height:0px;
  3958. }
  3959. #u28974_div {
  3960. border-width:0px;
  3961. position:absolute;
  3962. left:0px;
  3963. top:0px;
  3964. width:630px;
  3965. height:50px;
  3966. background:inherit;
  3967. background-color:rgba(255, 255, 255, 1);
  3968. box-sizing:border-box;
  3969. border-width:1px;
  3970. border-style:solid;
  3971. border-color:rgba(215, 215, 215, 1);
  3972. border-radius:0px;
  3973. -moz-box-shadow:none;
  3974. -webkit-box-shadow:none;
  3975. box-shadow:none;
  3976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3977. font-weight:400;
  3978. font-style:normal;
  3979. font-size:14px;
  3980. color:#AAAAAA;
  3981. text-align:center;
  3982. line-height:30px;
  3983. }
  3984. #u28974 {
  3985. border-width:0px;
  3986. position:absolute;
  3987. left:1651px;
  3988. top:1197px;
  3989. width:630px;
  3990. height:50px;
  3991. display:flex;
  3992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3993. font-weight:400;
  3994. font-style:normal;
  3995. font-size:14px;
  3996. color:#AAAAAA;
  3997. text-align:center;
  3998. line-height:30px;
  3999. }
  4000. #u28974 .text {
  4001. position:absolute;
  4002. align-self:center;
  4003. padding:5px 10px 5px 10px;
  4004. box-sizing:border-box;
  4005. width:100%;
  4006. }
  4007. #u28974_text {
  4008. border-width:0px;
  4009. word-wrap:break-word;
  4010. text-transform:none;
  4011. visibility:hidden;
  4012. }
  4013. #u28975_div {
  4014. border-width:0px;
  4015. position:absolute;
  4016. left:0px;
  4017. top:0px;
  4018. width:80px;
  4019. height:30px;
  4020. background:inherit;
  4021. background-color:rgba(24, 144, 255, 1);
  4022. border:none;
  4023. border-radius:4px;
  4024. -moz-box-shadow:none;
  4025. -webkit-box-shadow:none;
  4026. box-shadow:none;
  4027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4028. font-weight:400;
  4029. font-style:normal;
  4030. font-size:14px;
  4031. color:#FFFFFF;
  4032. }
  4033. #u28975 {
  4034. border-width:0px;
  4035. position:absolute;
  4036. left:2179px;
  4037. top:1207px;
  4038. width:80px;
  4039. height:30px;
  4040. display:flex;
  4041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4042. font-weight:400;
  4043. font-style:normal;
  4044. font-size:14px;
  4045. color:#FFFFFF;
  4046. }
  4047. #u28975 .text {
  4048. position:absolute;
  4049. align-self:center;
  4050. padding:2px 2px 2px 2px;
  4051. box-sizing:border-box;
  4052. width:100%;
  4053. }
  4054. #u28975_text {
  4055. border-width:0px;
  4056. word-wrap:break-word;
  4057. text-transform:none;
  4058. }
  4059. #u28976_div {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:0px;
  4063. top:0px;
  4064. width:80px;
  4065. height:30px;
  4066. background:inherit;
  4067. background-color:rgba(255, 255, 255, 1);
  4068. box-sizing:border-box;
  4069. border-width:1px;
  4070. border-style:solid;
  4071. border-color:rgba(121, 121, 121, 1);
  4072. border-radius:4px;
  4073. -moz-box-shadow:none;
  4074. -webkit-box-shadow:none;
  4075. box-shadow:none;
  4076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4077. font-weight:400;
  4078. font-style:normal;
  4079. font-size:14px;
  4080. }
  4081. #u28976 {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:2089px;
  4085. top:1207px;
  4086. width:80px;
  4087. height:30px;
  4088. display:flex;
  4089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4090. font-weight:400;
  4091. font-style:normal;
  4092. font-size:14px;
  4093. }
  4094. #u28976 .text {
  4095. position:absolute;
  4096. align-self:center;
  4097. padding:2px 2px 2px 2px;
  4098. box-sizing:border-box;
  4099. width:100%;
  4100. }
  4101. #u28976_text {
  4102. border-width:0px;
  4103. word-wrap:break-word;
  4104. text-transform:none;
  4105. }
  4106. #u28977 {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:0px;
  4110. top:0px;
  4111. width:0px;
  4112. height:0px;
  4113. }
  4114. #u28978_div {
  4115. border-width:0px;
  4116. position:absolute;
  4117. left:0px;
  4118. top:0px;
  4119. width:520px;
  4120. height:40px;
  4121. background:inherit;
  4122. background-color:rgba(255, 255, 255, 1);
  4123. box-sizing:border-box;
  4124. border-width:1px;
  4125. border-style:solid;
  4126. border-color:rgba(170, 170, 170, 1);
  4127. border-radius:4px;
  4128. -moz-box-shadow:none;
  4129. -webkit-box-shadow:none;
  4130. box-shadow:none;
  4131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4132. font-weight:400;
  4133. font-style:normal;
  4134. text-align:right;
  4135. }
  4136. #u28978 {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:1691px;
  4140. top:164px;
  4141. width:520px;
  4142. height:40px;
  4143. display:flex;
  4144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4145. font-weight:400;
  4146. font-style:normal;
  4147. text-align:right;
  4148. }
  4149. #u28978 .text {
  4150. position:absolute;
  4151. align-self:center;
  4152. padding:2px 10px 2px 10px;
  4153. box-sizing:border-box;
  4154. width:100%;
  4155. }
  4156. #u28978_text {
  4157. border-width:0px;
  4158. word-wrap:break-word;
  4159. text-transform:none;
  4160. visibility:hidden;
  4161. }
  4162. #u28979_input {
  4163. position:absolute;
  4164. left:0px;
  4165. top:0px;
  4166. width:414px;
  4167. height:31px;
  4168. padding:2px 10px 2px 2px;
  4169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4170. font-weight:400;
  4171. font-style:normal;
  4172. font-size:13px;
  4173. letter-spacing:normal;
  4174. color:#333333;
  4175. vertical-align:none;
  4176. text-align:left;
  4177. text-transform:none;
  4178. background-color:transparent;
  4179. border-color:transparent;
  4180. }
  4181. #u28979_input.disabled {
  4182. position:absolute;
  4183. left:0px;
  4184. top:0px;
  4185. width:414px;
  4186. height:31px;
  4187. padding:2px 10px 2px 2px;
  4188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4189. font-weight:400;
  4190. font-style:normal;
  4191. font-size:13px;
  4192. letter-spacing:normal;
  4193. color:#333333;
  4194. vertical-align:none;
  4195. text-align:left;
  4196. text-transform:none;
  4197. background-color:transparent;
  4198. border-color:transparent;
  4199. }
  4200. #u28979_div {
  4201. border-width:0px;
  4202. position:absolute;
  4203. left:0px;
  4204. top:0px;
  4205. width:414px;
  4206. height:31px;
  4207. background:inherit;
  4208. background-color:rgba(255, 255, 255, 0);
  4209. border:none;
  4210. border-radius:0px;
  4211. -moz-box-shadow:none;
  4212. -webkit-box-shadow:none;
  4213. box-shadow:none;
  4214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4215. font-weight:400;
  4216. font-style:normal;
  4217. color:#333333;
  4218. }
  4219. #u28979 {
  4220. border-width:0px;
  4221. position:absolute;
  4222. left:1698px;
  4223. top:169px;
  4224. width:414px;
  4225. height:31px;
  4226. display:flex;
  4227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4228. font-weight:400;
  4229. font-style:normal;
  4230. color:#333333;
  4231. }
  4232. #u28979 .text {
  4233. position:absolute;
  4234. align-self:center;
  4235. padding:2px 10px 2px 2px;
  4236. box-sizing:border-box;
  4237. width:100%;
  4238. }
  4239. #u28979_div.disabled {
  4240. border-width:0px;
  4241. position:absolute;
  4242. left:0px;
  4243. top:0px;
  4244. width:414px;
  4245. height:31px;
  4246. background:inherit;
  4247. background-color:rgba(240, 240, 240, 1);
  4248. border:none;
  4249. border-radius:0px;
  4250. -moz-box-shadow:none;
  4251. -webkit-box-shadow:none;
  4252. box-shadow:none;
  4253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4254. font-weight:400;
  4255. font-style:normal;
  4256. color:#333333;
  4257. }
  4258. #u28979.disabled {
  4259. }
  4260. #u28980_div {
  4261. border-width:0px;
  4262. position:absolute;
  4263. left:0px;
  4264. top:0px;
  4265. width:74px;
  4266. height:40px;
  4267. background:inherit;
  4268. background-color:rgba(255, 255, 255, 0);
  4269. border:none;
  4270. border-top:0px;
  4271. border-right:0px;
  4272. border-bottom:0px;
  4273. border-radius:0px;
  4274. border-top-left-radius:0px;
  4275. border-bottom-left-radius:0px;
  4276. -moz-box-shadow:none;
  4277. -webkit-box-shadow:none;
  4278. box-shadow:none;
  4279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4280. font-weight:400;
  4281. font-style:normal;
  4282. font-size:14px;
  4283. }
  4284. #u28980 {
  4285. border-width:0px;
  4286. position:absolute;
  4287. left:1691px;
  4288. top:124px;
  4289. width:74px;
  4290. height:40px;
  4291. display:flex;
  4292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4293. font-weight:400;
  4294. font-style:normal;
  4295. font-size:14px;
  4296. }
  4297. #u28980 .text {
  4298. position:absolute;
  4299. align-self:center;
  4300. padding:5px 10px 5px 0px;
  4301. box-sizing:border-box;
  4302. width:100%;
  4303. }
  4304. #u28980_text {
  4305. border-width:0px;
  4306. white-space:nowrap;
  4307. text-transform:none;
  4308. }
  4309. #u28981 label {
  4310. left:0px;
  4311. width:100%;
  4312. }
  4313. #u28981_img {
  4314. border-width:0px;
  4315. position:absolute;
  4316. left:0px;
  4317. top:4px;
  4318. width:12px;
  4319. height:12px;
  4320. }
  4321. #u28981 {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:1702px;
  4325. top:263px;
  4326. width:140px;
  4327. height:20px;
  4328. display:flex;
  4329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4330. font-weight:400;
  4331. font-style:normal;
  4332. font-size:14px;
  4333. }
  4334. #u28981 .text {
  4335. position:absolute;
  4336. align-self:center;
  4337. padding:0px 2px 0px 2px;
  4338. box-sizing:border-box;
  4339. }
  4340. #u28981_img.selected {
  4341. }
  4342. #u28981.selected {
  4343. }
  4344. #u28981_img.disabled {
  4345. }
  4346. #u28981.disabled {
  4347. }
  4348. #u28981_img.selectedDisabled {
  4349. }
  4350. #u28981.selectedDisabled {
  4351. }
  4352. #u28981_text {
  4353. border-width:0px;
  4354. position:absolute;
  4355. left:14px;
  4356. top:0px;
  4357. width:124px;
  4358. word-wrap:break-word;
  4359. text-transform:none;
  4360. }
  4361. #u28981_input {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:0px;
  4365. top:0px;
  4366. width:0px;
  4367. height:0px;
  4368. opacity:0;
  4369. }
  4370. #u28982 {
  4371. border-width:0px;
  4372. position:absolute;
  4373. left:0px;
  4374. top:0px;
  4375. width:0px;
  4376. height:0px;
  4377. }
  4378. #u28983_div {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:0px;
  4382. top:0px;
  4383. width:520px;
  4384. height:40px;
  4385. background:inherit;
  4386. background-color:rgba(255, 255, 255, 1);
  4387. box-sizing:border-box;
  4388. border-width:1px;
  4389. border-style:solid;
  4390. border-color:rgba(170, 170, 170, 1);
  4391. border-radius:4px;
  4392. -moz-box-shadow:none;
  4393. -webkit-box-shadow:none;
  4394. box-shadow:none;
  4395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4396. font-weight:400;
  4397. font-style:normal;
  4398. text-align:right;
  4399. }
  4400. #u28983 {
  4401. border-width:0px;
  4402. position:absolute;
  4403. left:1698px;
  4404. top:294px;
  4405. width:520px;
  4406. height:40px;
  4407. display:flex;
  4408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4409. font-weight:400;
  4410. font-style:normal;
  4411. text-align:right;
  4412. }
  4413. #u28983 .text {
  4414. position:absolute;
  4415. align-self:center;
  4416. padding:2px 10px 2px 10px;
  4417. box-sizing:border-box;
  4418. width:100%;
  4419. }
  4420. #u28983_text {
  4421. border-width:0px;
  4422. word-wrap:break-word;
  4423. text-transform:none;
  4424. visibility:hidden;
  4425. }
  4426. #u28984_input {
  4427. position:absolute;
  4428. left:0px;
  4429. top:0px;
  4430. width:501px;
  4431. height:30px;
  4432. padding:2px 2px 2px 2px;
  4433. font-family:'ArialMT', 'Arial', sans-serif;
  4434. font-weight:400;
  4435. font-style:normal;
  4436. font-size:13px;
  4437. letter-spacing:normal;
  4438. color:#000000;
  4439. vertical-align:none;
  4440. text-align:left;
  4441. text-transform:none;
  4442. background-color:transparent;
  4443. border-color:transparent;
  4444. }
  4445. #u28984_input.disabled {
  4446. position:absolute;
  4447. left:0px;
  4448. top:0px;
  4449. width:501px;
  4450. height:30px;
  4451. padding:2px 2px 2px 2px;
  4452. font-family:'ArialMT', 'Arial', sans-serif;
  4453. font-weight:400;
  4454. font-style:normal;
  4455. font-size:13px;
  4456. letter-spacing:normal;
  4457. color:#000000;
  4458. vertical-align:none;
  4459. text-align:left;
  4460. text-transform:none;
  4461. background-color:transparent;
  4462. border-color:transparent;
  4463. }
  4464. #u28984_div {
  4465. border-width:0px;
  4466. position:absolute;
  4467. left:0px;
  4468. top:0px;
  4469. width:501px;
  4470. height:30px;
  4471. background:inherit;
  4472. background-color:rgba(255, 255, 255, 1);
  4473. border:none;
  4474. border-radius:0px;
  4475. -moz-box-shadow:none;
  4476. -webkit-box-shadow:none;
  4477. box-shadow:none;
  4478. }
  4479. #u28984 {
  4480. border-width:0px;
  4481. position:absolute;
  4482. left:1707px;
  4483. top:299px;
  4484. width:501px;
  4485. height:30px;
  4486. display:flex;
  4487. }
  4488. #u28984 .text {
  4489. position:absolute;
  4490. align-self:flex-start;
  4491. padding:2px 2px 2px 2px;
  4492. box-sizing:border-box;
  4493. width:100%;
  4494. }
  4495. #u28984_div.disabled {
  4496. border-width:0px;
  4497. position:absolute;
  4498. left:0px;
  4499. top:0px;
  4500. width:501px;
  4501. height:30px;
  4502. background:inherit;
  4503. background-color:rgba(240, 240, 240, 1);
  4504. border:none;
  4505. border-radius:0px;
  4506. -moz-box-shadow:none;
  4507. -webkit-box-shadow:none;
  4508. box-shadow:none;
  4509. }
  4510. #u28984.disabled {
  4511. }
  4512. .u28984_input_option {
  4513. }
  4514. #u28985_div {
  4515. border-width:0px;
  4516. position:absolute;
  4517. left:0px;
  4518. top:0px;
  4519. width:74px;
  4520. height:40px;
  4521. background:inherit;
  4522. background-color:rgba(255, 255, 255, 0);
  4523. border:none;
  4524. border-top:0px;
  4525. border-right:0px;
  4526. border-bottom:0px;
  4527. border-radius:0px;
  4528. border-top-left-radius:0px;
  4529. border-bottom-left-radius:0px;
  4530. -moz-box-shadow:none;
  4531. -webkit-box-shadow:none;
  4532. box-shadow:none;
  4533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4534. font-weight:400;
  4535. font-style:normal;
  4536. font-size:14px;
  4537. }
  4538. #u28985 {
  4539. border-width:0px;
  4540. position:absolute;
  4541. left:1691px;
  4542. top:214px;
  4543. width:74px;
  4544. height:40px;
  4545. display:flex;
  4546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4547. font-weight:400;
  4548. font-style:normal;
  4549. font-size:14px;
  4550. }
  4551. #u28985 .text {
  4552. position:absolute;
  4553. align-self:center;
  4554. padding:5px 10px 5px 0px;
  4555. box-sizing:border-box;
  4556. width:100%;
  4557. }
  4558. #u28985_text {
  4559. border-width:0px;
  4560. white-space:nowrap;
  4561. text-transform:none;
  4562. }
  4563. #u28986 label {
  4564. left:0px;
  4565. width:100%;
  4566. }
  4567. #u28986_img {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:0px;
  4571. top:4px;
  4572. width:12px;
  4573. height:12px;
  4574. }
  4575. #u28986 {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:1702px;
  4579. top:354px;
  4580. width:140px;
  4581. height:20px;
  4582. display:flex;
  4583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4584. font-weight:400;
  4585. font-style:normal;
  4586. font-size:14px;
  4587. }
  4588. #u28986 .text {
  4589. position:absolute;
  4590. align-self:center;
  4591. padding:0px 2px 0px 2px;
  4592. box-sizing:border-box;
  4593. }
  4594. #u28986_img.selected {
  4595. }
  4596. #u28986.selected {
  4597. }
  4598. #u28986_img.disabled {
  4599. }
  4600. #u28986.disabled {
  4601. }
  4602. #u28986_img.selectedDisabled {
  4603. }
  4604. #u28986.selectedDisabled {
  4605. }
  4606. #u28986_text {
  4607. border-width:0px;
  4608. position:absolute;
  4609. left:14px;
  4610. top:0px;
  4611. width:124px;
  4612. word-wrap:break-word;
  4613. text-transform:none;
  4614. }
  4615. #u28986_input {
  4616. border-width:0px;
  4617. position:absolute;
  4618. left:0px;
  4619. top:0px;
  4620. width:0px;
  4621. height:0px;
  4622. opacity:0;
  4623. }
  4624. #u28987 label {
  4625. left:0px;
  4626. width:100%;
  4627. }
  4628. #u28987_img {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:0px;
  4632. top:4px;
  4633. width:12px;
  4634. height:12px;
  4635. }
  4636. #u28987 {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:1702px;
  4640. top:445px;
  4641. width:140px;
  4642. height:20px;
  4643. display:flex;
  4644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4645. font-weight:400;
  4646. font-style:normal;
  4647. font-size:14px;
  4648. }
  4649. #u28987 .text {
  4650. position:absolute;
  4651. align-self:center;
  4652. padding:0px 2px 0px 2px;
  4653. box-sizing:border-box;
  4654. }
  4655. #u28987_img.selected {
  4656. }
  4657. #u28987.selected {
  4658. }
  4659. #u28987_img.disabled {
  4660. }
  4661. #u28987.disabled {
  4662. }
  4663. #u28987_img.selectedDisabled {
  4664. }
  4665. #u28987.selectedDisabled {
  4666. }
  4667. #u28987_text {
  4668. border-width:0px;
  4669. position:absolute;
  4670. left:14px;
  4671. top:0px;
  4672. width:124px;
  4673. word-wrap:break-word;
  4674. text-transform:none;
  4675. }
  4676. #u28987_input {
  4677. border-width:0px;
  4678. position:absolute;
  4679. left:0px;
  4680. top:0px;
  4681. width:0px;
  4682. height:0px;
  4683. opacity:0;
  4684. }
  4685. #u28988 label {
  4686. left:0px;
  4687. width:100%;
  4688. }
  4689. #u28988_img {
  4690. border-width:0px;
  4691. position:absolute;
  4692. left:0px;
  4693. top:4px;
  4694. width:12px;
  4695. height:12px;
  4696. }
  4697. #u28988 {
  4698. border-width:0px;
  4699. position:absolute;
  4700. left:1702px;
  4701. top:536px;
  4702. width:140px;
  4703. height:20px;
  4704. display:flex;
  4705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4706. font-weight:400;
  4707. font-style:normal;
  4708. font-size:14px;
  4709. }
  4710. #u28988 .text {
  4711. position:absolute;
  4712. align-self:center;
  4713. padding:0px 2px 0px 2px;
  4714. box-sizing:border-box;
  4715. }
  4716. #u28988_img.selected {
  4717. }
  4718. #u28988.selected {
  4719. }
  4720. #u28988_img.disabled {
  4721. }
  4722. #u28988.disabled {
  4723. }
  4724. #u28988_img.selectedDisabled {
  4725. }
  4726. #u28988.selectedDisabled {
  4727. }
  4728. #u28988_text {
  4729. border-width:0px;
  4730. position:absolute;
  4731. left:14px;
  4732. top:0px;
  4733. width:124px;
  4734. word-wrap:break-word;
  4735. text-transform:none;
  4736. }
  4737. #u28988_input {
  4738. border-width:0px;
  4739. position:absolute;
  4740. left:0px;
  4741. top:0px;
  4742. width:0px;
  4743. height:0px;
  4744. opacity:0;
  4745. }
  4746. #u28989 label {
  4747. left:0px;
  4748. width:100%;
  4749. }
  4750. #u28989_img {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:0px;
  4754. top:4px;
  4755. width:12px;
  4756. height:12px;
  4757. }
  4758. #u28989 {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:1702px;
  4762. top:627px;
  4763. width:140px;
  4764. height:20px;
  4765. display:flex;
  4766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4767. font-weight:400;
  4768. font-style:normal;
  4769. font-size:14px;
  4770. }
  4771. #u28989 .text {
  4772. position:absolute;
  4773. align-self:center;
  4774. padding:0px 2px 0px 2px;
  4775. box-sizing:border-box;
  4776. }
  4777. #u28989_img.selected {
  4778. }
  4779. #u28989.selected {
  4780. }
  4781. #u28989_img.disabled {
  4782. }
  4783. #u28989.disabled {
  4784. }
  4785. #u28989_img.selectedDisabled {
  4786. }
  4787. #u28989.selectedDisabled {
  4788. }
  4789. #u28989_text {
  4790. border-width:0px;
  4791. position:absolute;
  4792. left:14px;
  4793. top:0px;
  4794. width:124px;
  4795. word-wrap:break-word;
  4796. text-transform:none;
  4797. }
  4798. #u28989_input {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:0px;
  4802. top:0px;
  4803. width:0px;
  4804. height:0px;
  4805. opacity:0;
  4806. }
  4807. #u28990 label {
  4808. left:0px;
  4809. width:100%;
  4810. }
  4811. #u28990_img {
  4812. border-width:0px;
  4813. position:absolute;
  4814. left:0px;
  4815. top:4px;
  4816. width:12px;
  4817. height:12px;
  4818. }
  4819. #u28990 {
  4820. border-width:0px;
  4821. position:absolute;
  4822. left:1702px;
  4823. top:718px;
  4824. width:140px;
  4825. height:20px;
  4826. display:flex;
  4827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4828. font-weight:400;
  4829. font-style:normal;
  4830. font-size:14px;
  4831. }
  4832. #u28990 .text {
  4833. position:absolute;
  4834. align-self:center;
  4835. padding:0px 2px 0px 2px;
  4836. box-sizing:border-box;
  4837. }
  4838. #u28990_img.selected {
  4839. }
  4840. #u28990.selected {
  4841. }
  4842. #u28990_img.disabled {
  4843. }
  4844. #u28990.disabled {
  4845. }
  4846. #u28990_img.selectedDisabled {
  4847. }
  4848. #u28990.selectedDisabled {
  4849. }
  4850. #u28990_text {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:14px;
  4854. top:0px;
  4855. width:124px;
  4856. word-wrap:break-word;
  4857. text-transform:none;
  4858. }
  4859. #u28990_input {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:0px;
  4863. top:0px;
  4864. width:0px;
  4865. height:0px;
  4866. opacity:0;
  4867. }
  4868. #u28991 label {
  4869. left:0px;
  4870. width:100%;
  4871. }
  4872. #u28991_img {
  4873. border-width:0px;
  4874. position:absolute;
  4875. left:0px;
  4876. top:4px;
  4877. width:12px;
  4878. height:12px;
  4879. }
  4880. #u28991 {
  4881. border-width:0px;
  4882. position:absolute;
  4883. left:1702px;
  4884. top:809px;
  4885. width:140px;
  4886. height:20px;
  4887. display:flex;
  4888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4889. font-weight:400;
  4890. font-style:normal;
  4891. font-size:14px;
  4892. }
  4893. #u28991 .text {
  4894. position:absolute;
  4895. align-self:center;
  4896. padding:0px 2px 0px 2px;
  4897. box-sizing:border-box;
  4898. }
  4899. #u28991_img.selected {
  4900. }
  4901. #u28991.selected {
  4902. }
  4903. #u28991_img.disabled {
  4904. }
  4905. #u28991.disabled {
  4906. }
  4907. #u28991_img.selectedDisabled {
  4908. }
  4909. #u28991.selectedDisabled {
  4910. }
  4911. #u28991_text {
  4912. border-width:0px;
  4913. position:absolute;
  4914. left:14px;
  4915. top:0px;
  4916. width:124px;
  4917. word-wrap:break-word;
  4918. text-transform:none;
  4919. }
  4920. #u28991_input {
  4921. border-width:0px;
  4922. position:absolute;
  4923. left:0px;
  4924. top:0px;
  4925. width:0px;
  4926. height:0px;
  4927. opacity:0;
  4928. }
  4929. #u28992 {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:0px;
  4933. top:0px;
  4934. width:0px;
  4935. height:0px;
  4936. }
  4937. #u28993_div {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:0px;
  4941. top:0px;
  4942. width:520px;
  4943. height:40px;
  4944. background:inherit;
  4945. background-color:rgba(255, 255, 255, 1);
  4946. box-sizing:border-box;
  4947. border-width:1px;
  4948. border-style:solid;
  4949. border-color:rgba(170, 170, 170, 1);
  4950. border-radius:4px;
  4951. -moz-box-shadow:none;
  4952. -webkit-box-shadow:none;
  4953. box-shadow:none;
  4954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4955. font-weight:400;
  4956. font-style:normal;
  4957. text-align:right;
  4958. }
  4959. #u28993 {
  4960. border-width:0px;
  4961. position:absolute;
  4962. left:1698px;
  4963. top:381px;
  4964. width:520px;
  4965. height:40px;
  4966. display:flex;
  4967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4968. font-weight:400;
  4969. font-style:normal;
  4970. text-align:right;
  4971. }
  4972. #u28993 .text {
  4973. position:absolute;
  4974. align-self:center;
  4975. padding:2px 10px 2px 10px;
  4976. box-sizing:border-box;
  4977. width:100%;
  4978. }
  4979. #u28993_text {
  4980. border-width:0px;
  4981. word-wrap:break-word;
  4982. text-transform:none;
  4983. visibility:hidden;
  4984. }
  4985. #u28994_input {
  4986. position:absolute;
  4987. left:0px;
  4988. top:0px;
  4989. width:501px;
  4990. height:30px;
  4991. padding:2px 2px 2px 2px;
  4992. font-family:'ArialMT', 'Arial', sans-serif;
  4993. font-weight:400;
  4994. font-style:normal;
  4995. font-size:13px;
  4996. letter-spacing:normal;
  4997. color:#000000;
  4998. vertical-align:none;
  4999. text-align:left;
  5000. text-transform:none;
  5001. background-color:transparent;
  5002. border-color:transparent;
  5003. }
  5004. #u28994_input.disabled {
  5005. position:absolute;
  5006. left:0px;
  5007. top:0px;
  5008. width:501px;
  5009. height:30px;
  5010. padding:2px 2px 2px 2px;
  5011. font-family:'ArialMT', 'Arial', sans-serif;
  5012. font-weight:400;
  5013. font-style:normal;
  5014. font-size:13px;
  5015. letter-spacing:normal;
  5016. color:#000000;
  5017. vertical-align:none;
  5018. text-align:left;
  5019. text-transform:none;
  5020. background-color:transparent;
  5021. border-color:transparent;
  5022. }
  5023. #u28994_div {
  5024. border-width:0px;
  5025. position:absolute;
  5026. left:0px;
  5027. top:0px;
  5028. width:501px;
  5029. height:30px;
  5030. background:inherit;
  5031. background-color:rgba(255, 255, 255, 1);
  5032. border:none;
  5033. border-radius:0px;
  5034. -moz-box-shadow:none;
  5035. -webkit-box-shadow:none;
  5036. box-shadow:none;
  5037. }
  5038. #u28994 {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:1707px;
  5042. top:386px;
  5043. width:501px;
  5044. height:30px;
  5045. display:flex;
  5046. }
  5047. #u28994 .text {
  5048. position:absolute;
  5049. align-self:flex-start;
  5050. padding:2px 2px 2px 2px;
  5051. box-sizing:border-box;
  5052. width:100%;
  5053. }
  5054. #u28994_div.disabled {
  5055. border-width:0px;
  5056. position:absolute;
  5057. left:0px;
  5058. top:0px;
  5059. width:501px;
  5060. height:30px;
  5061. background:inherit;
  5062. background-color:rgba(240, 240, 240, 1);
  5063. border:none;
  5064. border-radius:0px;
  5065. -moz-box-shadow:none;
  5066. -webkit-box-shadow:none;
  5067. box-shadow:none;
  5068. }
  5069. #u28994.disabled {
  5070. }
  5071. .u28994_input_option {
  5072. }
  5073. #u28995 {
  5074. border-width:0px;
  5075. position:absolute;
  5076. left:0px;
  5077. top:0px;
  5078. width:0px;
  5079. height:0px;
  5080. }
  5081. #u28996_div {
  5082. border-width:0px;
  5083. position:absolute;
  5084. left:0px;
  5085. top:0px;
  5086. width:520px;
  5087. height:40px;
  5088. background:inherit;
  5089. background-color:rgba(255, 255, 255, 1);
  5090. box-sizing:border-box;
  5091. border-width:1px;
  5092. border-style:solid;
  5093. border-color:rgba(170, 170, 170, 1);
  5094. border-radius:4px;
  5095. -moz-box-shadow:none;
  5096. -webkit-box-shadow:none;
  5097. box-shadow:none;
  5098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5099. font-weight:400;
  5100. font-style:normal;
  5101. text-align:right;
  5102. }
  5103. #u28996 {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:1698px;
  5107. top:473px;
  5108. width:520px;
  5109. height:40px;
  5110. display:flex;
  5111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5112. font-weight:400;
  5113. font-style:normal;
  5114. text-align:right;
  5115. }
  5116. #u28996 .text {
  5117. position:absolute;
  5118. align-self:center;
  5119. padding:2px 10px 2px 10px;
  5120. box-sizing:border-box;
  5121. width:100%;
  5122. }
  5123. #u28996_text {
  5124. border-width:0px;
  5125. word-wrap:break-word;
  5126. text-transform:none;
  5127. visibility:hidden;
  5128. }
  5129. #u28997_input {
  5130. position:absolute;
  5131. left:0px;
  5132. top:0px;
  5133. width:501px;
  5134. height:30px;
  5135. padding:2px 2px 2px 2px;
  5136. font-family:'ArialMT', 'Arial', sans-serif;
  5137. font-weight:400;
  5138. font-style:normal;
  5139. font-size:13px;
  5140. letter-spacing:normal;
  5141. color:#000000;
  5142. vertical-align:none;
  5143. text-align:left;
  5144. text-transform:none;
  5145. background-color:transparent;
  5146. border-color:transparent;
  5147. }
  5148. #u28997_input.disabled {
  5149. position:absolute;
  5150. left:0px;
  5151. top:0px;
  5152. width:501px;
  5153. height:30px;
  5154. padding:2px 2px 2px 2px;
  5155. font-family:'ArialMT', 'Arial', sans-serif;
  5156. font-weight:400;
  5157. font-style:normal;
  5158. font-size:13px;
  5159. letter-spacing:normal;
  5160. color:#000000;
  5161. vertical-align:none;
  5162. text-align:left;
  5163. text-transform:none;
  5164. background-color:transparent;
  5165. border-color:transparent;
  5166. }
  5167. #u28997_div {
  5168. border-width:0px;
  5169. position:absolute;
  5170. left:0px;
  5171. top:0px;
  5172. width:501px;
  5173. height:30px;
  5174. background:inherit;
  5175. background-color:rgba(255, 255, 255, 1);
  5176. border:none;
  5177. border-radius:0px;
  5178. -moz-box-shadow:none;
  5179. -webkit-box-shadow:none;
  5180. box-shadow:none;
  5181. }
  5182. #u28997 {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:1707px;
  5186. top:478px;
  5187. width:501px;
  5188. height:30px;
  5189. display:flex;
  5190. }
  5191. #u28997 .text {
  5192. position:absolute;
  5193. align-self:flex-start;
  5194. padding:2px 2px 2px 2px;
  5195. box-sizing:border-box;
  5196. width:100%;
  5197. }
  5198. #u28997_div.disabled {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:0px;
  5202. top:0px;
  5203. width:501px;
  5204. height:30px;
  5205. background:inherit;
  5206. background-color:rgba(240, 240, 240, 1);
  5207. border:none;
  5208. border-radius:0px;
  5209. -moz-box-shadow:none;
  5210. -webkit-box-shadow:none;
  5211. box-shadow:none;
  5212. }
  5213. #u28997.disabled {
  5214. }
  5215. .u28997_input_option {
  5216. }
  5217. #u28998 {
  5218. border-width:0px;
  5219. position:absolute;
  5220. left:0px;
  5221. top:0px;
  5222. width:0px;
  5223. height:0px;
  5224. }
  5225. #u28999_div {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:0px;
  5229. top:0px;
  5230. width:520px;
  5231. height:40px;
  5232. background:inherit;
  5233. background-color:rgba(255, 255, 255, 1);
  5234. box-sizing:border-box;
  5235. border-width:1px;
  5236. border-style:solid;
  5237. border-color:rgba(170, 170, 170, 1);
  5238. border-radius:4px;
  5239. -moz-box-shadow:none;
  5240. -webkit-box-shadow:none;
  5241. box-shadow:none;
  5242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5243. font-weight:400;
  5244. font-style:normal;
  5245. text-align:right;
  5246. }
  5247. #u28999 {
  5248. border-width:0px;
  5249. position:absolute;
  5250. left:1698px;
  5251. top:568px;
  5252. width:520px;
  5253. height:40px;
  5254. display:flex;
  5255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5256. font-weight:400;
  5257. font-style:normal;
  5258. text-align:right;
  5259. }
  5260. #u28999 .text {
  5261. position:absolute;
  5262. align-self:center;
  5263. padding:2px 10px 2px 10px;
  5264. box-sizing:border-box;
  5265. width:100%;
  5266. }
  5267. #u28999_text {
  5268. border-width:0px;
  5269. word-wrap:break-word;
  5270. text-transform:none;
  5271. visibility:hidden;
  5272. }
  5273. #u29000_input {
  5274. position:absolute;
  5275. left:0px;
  5276. top:0px;
  5277. width:501px;
  5278. height:30px;
  5279. padding:2px 2px 2px 2px;
  5280. font-family:'ArialMT', 'Arial', sans-serif;
  5281. font-weight:400;
  5282. font-style:normal;
  5283. font-size:13px;
  5284. letter-spacing:normal;
  5285. color:#000000;
  5286. vertical-align:none;
  5287. text-align:left;
  5288. text-transform:none;
  5289. background-color:transparent;
  5290. border-color:transparent;
  5291. }
  5292. #u29000_input.disabled {
  5293. position:absolute;
  5294. left:0px;
  5295. top:0px;
  5296. width:501px;
  5297. height:30px;
  5298. padding:2px 2px 2px 2px;
  5299. font-family:'ArialMT', 'Arial', sans-serif;
  5300. font-weight:400;
  5301. font-style:normal;
  5302. font-size:13px;
  5303. letter-spacing:normal;
  5304. color:#000000;
  5305. vertical-align:none;
  5306. text-align:left;
  5307. text-transform:none;
  5308. background-color:transparent;
  5309. border-color:transparent;
  5310. }
  5311. #u29000_div {
  5312. border-width:0px;
  5313. position:absolute;
  5314. left:0px;
  5315. top:0px;
  5316. width:501px;
  5317. height:30px;
  5318. background:inherit;
  5319. background-color:rgba(255, 255, 255, 1);
  5320. border:none;
  5321. border-radius:0px;
  5322. -moz-box-shadow:none;
  5323. -webkit-box-shadow:none;
  5324. box-shadow:none;
  5325. }
  5326. #u29000 {
  5327. border-width:0px;
  5328. position:absolute;
  5329. left:1707px;
  5330. top:573px;
  5331. width:501px;
  5332. height:30px;
  5333. display:flex;
  5334. }
  5335. #u29000 .text {
  5336. position:absolute;
  5337. align-self:flex-start;
  5338. padding:2px 2px 2px 2px;
  5339. box-sizing:border-box;
  5340. width:100%;
  5341. }
  5342. #u29000_div.disabled {
  5343. border-width:0px;
  5344. position:absolute;
  5345. left:0px;
  5346. top:0px;
  5347. width:501px;
  5348. height:30px;
  5349. background:inherit;
  5350. background-color:rgba(240, 240, 240, 1);
  5351. border:none;
  5352. border-radius:0px;
  5353. -moz-box-shadow:none;
  5354. -webkit-box-shadow:none;
  5355. box-shadow:none;
  5356. }
  5357. #u29000.disabled {
  5358. }
  5359. .u29000_input_option {
  5360. }
  5361. #u29001 {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:0px;
  5365. top:0px;
  5366. width:0px;
  5367. height:0px;
  5368. }
  5369. #u29002_div {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:0px;
  5373. top:0px;
  5374. width:520px;
  5375. height:40px;
  5376. background:inherit;
  5377. background-color:rgba(255, 255, 255, 1);
  5378. box-sizing:border-box;
  5379. border-width:1px;
  5380. border-style:solid;
  5381. border-color:rgba(170, 170, 170, 1);
  5382. border-radius:4px;
  5383. -moz-box-shadow:none;
  5384. -webkit-box-shadow:none;
  5385. box-shadow:none;
  5386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5387. font-weight:400;
  5388. font-style:normal;
  5389. text-align:right;
  5390. }
  5391. #u29002 {
  5392. border-width:0px;
  5393. position:absolute;
  5394. left:1698px;
  5395. top:659px;
  5396. width:520px;
  5397. height:40px;
  5398. display:flex;
  5399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5400. font-weight:400;
  5401. font-style:normal;
  5402. text-align:right;
  5403. }
  5404. #u29002 .text {
  5405. position:absolute;
  5406. align-self:center;
  5407. padding:2px 10px 2px 10px;
  5408. box-sizing:border-box;
  5409. width:100%;
  5410. }
  5411. #u29002_text {
  5412. border-width:0px;
  5413. word-wrap:break-word;
  5414. text-transform:none;
  5415. visibility:hidden;
  5416. }
  5417. #u29003_input {
  5418. position:absolute;
  5419. left:0px;
  5420. top:0px;
  5421. width:501px;
  5422. height:30px;
  5423. padding:2px 2px 2px 2px;
  5424. font-family:'ArialMT', 'Arial', sans-serif;
  5425. font-weight:400;
  5426. font-style:normal;
  5427. font-size:13px;
  5428. letter-spacing:normal;
  5429. color:#000000;
  5430. vertical-align:none;
  5431. text-align:left;
  5432. text-transform:none;
  5433. background-color:transparent;
  5434. border-color:transparent;
  5435. }
  5436. #u29003_input.disabled {
  5437. position:absolute;
  5438. left:0px;
  5439. top:0px;
  5440. width:501px;
  5441. height:30px;
  5442. padding:2px 2px 2px 2px;
  5443. font-family:'ArialMT', 'Arial', sans-serif;
  5444. font-weight:400;
  5445. font-style:normal;
  5446. font-size:13px;
  5447. letter-spacing:normal;
  5448. color:#000000;
  5449. vertical-align:none;
  5450. text-align:left;
  5451. text-transform:none;
  5452. background-color:transparent;
  5453. border-color:transparent;
  5454. }
  5455. #u29003_div {
  5456. border-width:0px;
  5457. position:absolute;
  5458. left:0px;
  5459. top:0px;
  5460. width:501px;
  5461. height:30px;
  5462. background:inherit;
  5463. background-color:rgba(255, 255, 255, 1);
  5464. border:none;
  5465. border-radius:0px;
  5466. -moz-box-shadow:none;
  5467. -webkit-box-shadow:none;
  5468. box-shadow:none;
  5469. }
  5470. #u29003 {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:1707px;
  5474. top:664px;
  5475. width:501px;
  5476. height:30px;
  5477. display:flex;
  5478. }
  5479. #u29003 .text {
  5480. position:absolute;
  5481. align-self:flex-start;
  5482. padding:2px 2px 2px 2px;
  5483. box-sizing:border-box;
  5484. width:100%;
  5485. }
  5486. #u29003_div.disabled {
  5487. border-width:0px;
  5488. position:absolute;
  5489. left:0px;
  5490. top:0px;
  5491. width:501px;
  5492. height:30px;
  5493. background:inherit;
  5494. background-color:rgba(240, 240, 240, 1);
  5495. border:none;
  5496. border-radius:0px;
  5497. -moz-box-shadow:none;
  5498. -webkit-box-shadow:none;
  5499. box-shadow:none;
  5500. }
  5501. #u29003.disabled {
  5502. }
  5503. .u29003_input_option {
  5504. }
  5505. #u29004 {
  5506. border-width:0px;
  5507. position:absolute;
  5508. left:0px;
  5509. top:0px;
  5510. width:0px;
  5511. height:0px;
  5512. }
  5513. #u29005_div {
  5514. border-width:0px;
  5515. position:absolute;
  5516. left:0px;
  5517. top:0px;
  5518. width:520px;
  5519. height:40px;
  5520. background:inherit;
  5521. background-color:rgba(255, 255, 255, 1);
  5522. box-sizing:border-box;
  5523. border-width:1px;
  5524. border-style:solid;
  5525. border-color:rgba(170, 170, 170, 1);
  5526. border-radius:4px;
  5527. -moz-box-shadow:none;
  5528. -webkit-box-shadow:none;
  5529. box-shadow:none;
  5530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5531. font-weight:400;
  5532. font-style:normal;
  5533. text-align:right;
  5534. }
  5535. #u29005 {
  5536. border-width:0px;
  5537. position:absolute;
  5538. left:1698px;
  5539. top:748px;
  5540. width:520px;
  5541. height:40px;
  5542. display:flex;
  5543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5544. font-weight:400;
  5545. font-style:normal;
  5546. text-align:right;
  5547. }
  5548. #u29005 .text {
  5549. position:absolute;
  5550. align-self:center;
  5551. padding:2px 10px 2px 10px;
  5552. box-sizing:border-box;
  5553. width:100%;
  5554. }
  5555. #u29005_text {
  5556. border-width:0px;
  5557. word-wrap:break-word;
  5558. text-transform:none;
  5559. visibility:hidden;
  5560. }
  5561. #u29006_input {
  5562. position:absolute;
  5563. left:0px;
  5564. top:0px;
  5565. width:501px;
  5566. height:30px;
  5567. padding:2px 2px 2px 2px;
  5568. font-family:'ArialMT', 'Arial', sans-serif;
  5569. font-weight:400;
  5570. font-style:normal;
  5571. font-size:13px;
  5572. letter-spacing:normal;
  5573. color:#000000;
  5574. vertical-align:none;
  5575. text-align:left;
  5576. text-transform:none;
  5577. background-color:transparent;
  5578. border-color:transparent;
  5579. }
  5580. #u29006_input.disabled {
  5581. position:absolute;
  5582. left:0px;
  5583. top:0px;
  5584. width:501px;
  5585. height:30px;
  5586. padding:2px 2px 2px 2px;
  5587. font-family:'ArialMT', 'Arial', sans-serif;
  5588. font-weight:400;
  5589. font-style:normal;
  5590. font-size:13px;
  5591. letter-spacing:normal;
  5592. color:#000000;
  5593. vertical-align:none;
  5594. text-align:left;
  5595. text-transform:none;
  5596. background-color:transparent;
  5597. border-color:transparent;
  5598. }
  5599. #u29006_div {
  5600. border-width:0px;
  5601. position:absolute;
  5602. left:0px;
  5603. top:0px;
  5604. width:501px;
  5605. height:30px;
  5606. background:inherit;
  5607. background-color:rgba(255, 255, 255, 1);
  5608. border:none;
  5609. border-radius:0px;
  5610. -moz-box-shadow:none;
  5611. -webkit-box-shadow:none;
  5612. box-shadow:none;
  5613. }
  5614. #u29006 {
  5615. border-width:0px;
  5616. position:absolute;
  5617. left:1707px;
  5618. top:753px;
  5619. width:501px;
  5620. height:30px;
  5621. display:flex;
  5622. }
  5623. #u29006 .text {
  5624. position:absolute;
  5625. align-self:flex-start;
  5626. padding:2px 2px 2px 2px;
  5627. box-sizing:border-box;
  5628. width:100%;
  5629. }
  5630. #u29006_div.disabled {
  5631. border-width:0px;
  5632. position:absolute;
  5633. left:0px;
  5634. top:0px;
  5635. width:501px;
  5636. height:30px;
  5637. background:inherit;
  5638. background-color:rgba(240, 240, 240, 1);
  5639. border:none;
  5640. border-radius:0px;
  5641. -moz-box-shadow:none;
  5642. -webkit-box-shadow:none;
  5643. box-shadow:none;
  5644. }
  5645. #u29006.disabled {
  5646. }
  5647. .u29006_input_option {
  5648. }
  5649. #u29007 {
  5650. border-width:0px;
  5651. position:absolute;
  5652. left:0px;
  5653. top:0px;
  5654. width:0px;
  5655. height:0px;
  5656. }
  5657. #u29008_div {
  5658. border-width:0px;
  5659. position:absolute;
  5660. left:0px;
  5661. top:0px;
  5662. width:520px;
  5663. height:40px;
  5664. background:inherit;
  5665. background-color:rgba(255, 255, 255, 1);
  5666. box-sizing:border-box;
  5667. border-width:1px;
  5668. border-style:solid;
  5669. border-color:rgba(170, 170, 170, 1);
  5670. border-radius:4px;
  5671. -moz-box-shadow:none;
  5672. -webkit-box-shadow:none;
  5673. box-shadow:none;
  5674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5675. font-weight:400;
  5676. font-style:normal;
  5677. text-align:right;
  5678. }
  5679. #u29008 {
  5680. border-width:0px;
  5681. position:absolute;
  5682. left:1698px;
  5683. top:839px;
  5684. width:520px;
  5685. height:40px;
  5686. display:flex;
  5687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5688. font-weight:400;
  5689. font-style:normal;
  5690. text-align:right;
  5691. }
  5692. #u29008 .text {
  5693. position:absolute;
  5694. align-self:center;
  5695. padding:2px 10px 2px 10px;
  5696. box-sizing:border-box;
  5697. width:100%;
  5698. }
  5699. #u29008_text {
  5700. border-width:0px;
  5701. word-wrap:break-word;
  5702. text-transform:none;
  5703. visibility:hidden;
  5704. }
  5705. #u29009_input {
  5706. position:absolute;
  5707. left:0px;
  5708. top:0px;
  5709. width:501px;
  5710. height:30px;
  5711. padding:2px 2px 2px 2px;
  5712. font-family:'ArialMT', 'Arial', sans-serif;
  5713. font-weight:400;
  5714. font-style:normal;
  5715. font-size:13px;
  5716. letter-spacing:normal;
  5717. color:#000000;
  5718. vertical-align:none;
  5719. text-align:left;
  5720. text-transform:none;
  5721. background-color:transparent;
  5722. border-color:transparent;
  5723. }
  5724. #u29009_input.disabled {
  5725. position:absolute;
  5726. left:0px;
  5727. top:0px;
  5728. width:501px;
  5729. height:30px;
  5730. padding:2px 2px 2px 2px;
  5731. font-family:'ArialMT', 'Arial', sans-serif;
  5732. font-weight:400;
  5733. font-style:normal;
  5734. font-size:13px;
  5735. letter-spacing:normal;
  5736. color:#000000;
  5737. vertical-align:none;
  5738. text-align:left;
  5739. text-transform:none;
  5740. background-color:transparent;
  5741. border-color:transparent;
  5742. }
  5743. #u29009_div {
  5744. border-width:0px;
  5745. position:absolute;
  5746. left:0px;
  5747. top:0px;
  5748. width:501px;
  5749. height:30px;
  5750. background:inherit;
  5751. background-color:rgba(255, 255, 255, 1);
  5752. border:none;
  5753. border-radius:0px;
  5754. -moz-box-shadow:none;
  5755. -webkit-box-shadow:none;
  5756. box-shadow:none;
  5757. }
  5758. #u29009 {
  5759. border-width:0px;
  5760. position:absolute;
  5761. left:1707px;
  5762. top:844px;
  5763. width:501px;
  5764. height:30px;
  5765. display:flex;
  5766. }
  5767. #u29009 .text {
  5768. position:absolute;
  5769. align-self:flex-start;
  5770. padding:2px 2px 2px 2px;
  5771. box-sizing:border-box;
  5772. width:100%;
  5773. }
  5774. #u29009_div.disabled {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:0px;
  5778. top:0px;
  5779. width:501px;
  5780. height:30px;
  5781. background:inherit;
  5782. background-color:rgba(240, 240, 240, 1);
  5783. border:none;
  5784. border-radius:0px;
  5785. -moz-box-shadow:none;
  5786. -webkit-box-shadow:none;
  5787. box-shadow:none;
  5788. }
  5789. #u29009.disabled {
  5790. }
  5791. .u29009_input_option {
  5792. }
  5793. #u29010 {
  5794. border-width:0px;
  5795. position:absolute;
  5796. left:0px;
  5797. top:0px;
  5798. width:0px;
  5799. height:0px;
  5800. }
  5801. #u29011_div {
  5802. border-width:0px;
  5803. position:absolute;
  5804. left:0px;
  5805. top:0px;
  5806. width:200px;
  5807. height:1192px;
  5808. background:inherit;
  5809. background-color:rgba(255, 255, 255, 1);
  5810. border:none;
  5811. border-radius:0px;
  5812. -moz-box-shadow:none;
  5813. -webkit-box-shadow:none;
  5814. box-shadow:none;
  5815. }
  5816. #u29011 {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:120px;
  5820. top:51px;
  5821. width:200px;
  5822. height:1192px;
  5823. display:flex;
  5824. }
  5825. #u29011 .text {
  5826. position:absolute;
  5827. align-self:center;
  5828. padding:2px 2px 2px 2px;
  5829. box-sizing:border-box;
  5830. width:100%;
  5831. }
  5832. #u29011_text {
  5833. border-width:0px;
  5834. word-wrap:break-word;
  5835. text-transform:none;
  5836. visibility:hidden;
  5837. }
  5838. #u29012_div {
  5839. border-width:0px;
  5840. position:absolute;
  5841. left:0px;
  5842. top:0px;
  5843. width:200px;
  5844. height:60px;
  5845. background:inherit;
  5846. background-color:rgba(224, 231, 247, 1);
  5847. border:none;
  5848. border-radius:0px;
  5849. -moz-box-shadow:none;
  5850. -webkit-box-shadow:none;
  5851. box-shadow:none;
  5852. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5853. font-weight:500;
  5854. font-style:normal;
  5855. font-size:18px;
  5856. }
  5857. #u29012 {
  5858. border-width:0px;
  5859. position:absolute;
  5860. left:120px;
  5861. top:51px;
  5862. width:200px;
  5863. height:60px;
  5864. display:flex;
  5865. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5866. font-weight:500;
  5867. font-style:normal;
  5868. font-size:18px;
  5869. }
  5870. #u29012 .text {
  5871. position:absolute;
  5872. align-self:center;
  5873. padding:0px 0px 0px 20px;
  5874. box-sizing:border-box;
  5875. width:100%;
  5876. }
  5877. #u29012_text {
  5878. border-width:0px;
  5879. word-wrap:break-word;
  5880. text-transform:none;
  5881. }
  5882. #u29013_div {
  5883. border-width:0px;
  5884. position:absolute;
  5885. left:0px;
  5886. top:0px;
  5887. width:97px;
  5888. height:22px;
  5889. background:inherit;
  5890. background-color:rgba(255, 255, 255, 0);
  5891. border:none;
  5892. border-radius:0px;
  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:16px;
  5900. }
  5901. #u29013 {
  5902. border-width:0px;
  5903. position:absolute;
  5904. left:147px;
  5905. top:291px;
  5906. width:97px;
  5907. height:22px;
  5908. display:flex;
  5909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5910. font-weight:400;
  5911. font-style:normal;
  5912. font-size:16px;
  5913. }
  5914. #u29013 .text {
  5915. position:absolute;
  5916. align-self:flex-start;
  5917. padding:0px 0px 0px 0px;
  5918. box-sizing:border-box;
  5919. width:100%;
  5920. }
  5921. #u29013_text {
  5922. border-width:0px;
  5923. white-space:nowrap;
  5924. text-transform:none;
  5925. }
  5926. #u29014_div {
  5927. border-width:0px;
  5928. position:absolute;
  5929. left:0px;
  5930. top:0px;
  5931. width:65px;
  5932. height:22px;
  5933. background:inherit;
  5934. background-color:rgba(255, 255, 255, 0);
  5935. border:none;
  5936. border-radius:0px;
  5937. -moz-box-shadow:none;
  5938. -webkit-box-shadow:none;
  5939. box-shadow:none;
  5940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5941. font-weight:400;
  5942. font-style:normal;
  5943. font-size:16px;
  5944. }
  5945. #u29014 {
  5946. border-width:0px;
  5947. position:absolute;
  5948. left:147px;
  5949. top:167px;
  5950. width:65px;
  5951. height:22px;
  5952. display:flex;
  5953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5954. font-weight:400;
  5955. font-style:normal;
  5956. font-size:16px;
  5957. }
  5958. #u29014 .text {
  5959. position:absolute;
  5960. align-self:flex-start;
  5961. padding:0px 0px 0px 0px;
  5962. box-sizing:border-box;
  5963. width:100%;
  5964. }
  5965. #u29014_text {
  5966. border-width:0px;
  5967. white-space:nowrap;
  5968. text-transform:none;
  5969. }
  5970. #u29015_div {
  5971. border-width:0px;
  5972. position:absolute;
  5973. left:0px;
  5974. top:0px;
  5975. width:49px;
  5976. height:17px;
  5977. background:inherit;
  5978. background-color:rgba(255, 255, 255, 0);
  5979. border:none;
  5980. border-radius:0px;
  5981. -moz-box-shadow:none;
  5982. -webkit-box-shadow:none;
  5983. box-shadow:none;
  5984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5985. font-weight:400;
  5986. font-style:normal;
  5987. font-size:12px;
  5988. color:#AAAAAA;
  5989. }
  5990. #u29015 {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:147px;
  5994. top:131px;
  5995. width:49px;
  5996. height:17px;
  5997. display:flex;
  5998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5999. font-weight:400;
  6000. font-style:normal;
  6001. font-size:12px;
  6002. color:#AAAAAA;
  6003. }
  6004. #u29015 .text {
  6005. position:absolute;
  6006. align-self:flex-start;
  6007. padding:0px 0px 0px 0px;
  6008. box-sizing:border-box;
  6009. width:100%;
  6010. }
  6011. #u29015_text {
  6012. border-width:0px;
  6013. white-space:nowrap;
  6014. text-transform:none;
  6015. }
  6016. #u29016_div {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:0px;
  6020. top:0px;
  6021. width:65px;
  6022. height:22px;
  6023. background:inherit;
  6024. background-color:rgba(255, 255, 255, 0);
  6025. border:none;
  6026. border-radius:0px;
  6027. -moz-box-shadow:none;
  6028. -webkit-box-shadow:none;
  6029. box-shadow:none;
  6030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6031. font-weight:400;
  6032. font-style:normal;
  6033. font-size:16px;
  6034. }
  6035. #u29016 {
  6036. border-width:0px;
  6037. position:absolute;
  6038. left:147px;
  6039. top:209px;
  6040. width:65px;
  6041. height:22px;
  6042. display:flex;
  6043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6044. font-weight:400;
  6045. font-style:normal;
  6046. font-size:16px;
  6047. }
  6048. #u29016 .text {
  6049. position:absolute;
  6050. align-self:flex-start;
  6051. padding:0px 0px 0px 0px;
  6052. box-sizing:border-box;
  6053. width:100%;
  6054. }
  6055. #u29016_text {
  6056. border-width:0px;
  6057. white-space:nowrap;
  6058. text-transform:none;
  6059. }
  6060. #u29017_div {
  6061. border-width:0px;
  6062. position:absolute;
  6063. left:0px;
  6064. top:0px;
  6065. width:97px;
  6066. height:22px;
  6067. background:inherit;
  6068. background-color:rgba(255, 255, 255, 0);
  6069. border:none;
  6070. border-radius:0px;
  6071. -moz-box-shadow:none;
  6072. -webkit-box-shadow:none;
  6073. box-shadow:none;
  6074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6075. font-weight:400;
  6076. font-style:normal;
  6077. font-size:16px;
  6078. }
  6079. #u29017 {
  6080. border-width:0px;
  6081. position:absolute;
  6082. left:147px;
  6083. top:333px;
  6084. width:97px;
  6085. height:22px;
  6086. display:flex;
  6087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6088. font-weight:400;
  6089. font-style:normal;
  6090. font-size:16px;
  6091. }
  6092. #u29017 .text {
  6093. position:absolute;
  6094. align-self:flex-start;
  6095. padding:0px 0px 0px 0px;
  6096. box-sizing:border-box;
  6097. width:100%;
  6098. }
  6099. #u29017_text {
  6100. border-width:0px;
  6101. white-space:nowrap;
  6102. text-transform:none;
  6103. }
  6104. #u29018_div {
  6105. border-width:0px;
  6106. position:absolute;
  6107. left:0px;
  6108. top:0px;
  6109. width:65px;
  6110. height:22px;
  6111. background:inherit;
  6112. background-color:rgba(255, 255, 255, 0);
  6113. border:none;
  6114. border-radius:0px;
  6115. -moz-box-shadow:none;
  6116. -webkit-box-shadow:none;
  6117. box-shadow:none;
  6118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6119. font-weight:400;
  6120. font-style:normal;
  6121. font-size:16px;
  6122. }
  6123. #u29018 {
  6124. border-width:0px;
  6125. position:absolute;
  6126. left:147px;
  6127. top:440px;
  6128. width:65px;
  6129. height:22px;
  6130. display:flex;
  6131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6132. font-weight:400;
  6133. font-style:normal;
  6134. font-size:16px;
  6135. }
  6136. #u29018 .text {
  6137. position:absolute;
  6138. align-self:flex-start;
  6139. padding:0px 0px 0px 0px;
  6140. box-sizing:border-box;
  6141. width:100%;
  6142. }
  6143. #u29018_text {
  6144. border-width:0px;
  6145. white-space:nowrap;
  6146. text-transform:none;
  6147. }
  6148. #u29019_img {
  6149. border-width:0px;
  6150. position:absolute;
  6151. left:0px;
  6152. top:0px;
  6153. width:201px;
  6154. height:2px;
  6155. }
  6156. #u29019 {
  6157. border-width:0px;
  6158. position:absolute;
  6159. left:120px;
  6160. top:378px;
  6161. width:200px;
  6162. height:1px;
  6163. display:flex;
  6164. }
  6165. #u29019 .text {
  6166. position:absolute;
  6167. align-self:center;
  6168. padding:2px 2px 2px 2px;
  6169. box-sizing:border-box;
  6170. width:100%;
  6171. }
  6172. #u29019_text {
  6173. border-width:0px;
  6174. word-wrap:break-word;
  6175. text-transform:none;
  6176. visibility:hidden;
  6177. }
  6178. #u29020_div {
  6179. border-width:0px;
  6180. position:absolute;
  6181. left:0px;
  6182. top:0px;
  6183. width:49px;
  6184. height:17px;
  6185. background:inherit;
  6186. background-color:rgba(255, 255, 255, 0);
  6187. border:none;
  6188. border-radius:0px;
  6189. -moz-box-shadow:none;
  6190. -webkit-box-shadow:none;
  6191. box-shadow:none;
  6192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6193. font-weight:400;
  6194. font-style:normal;
  6195. font-size:12px;
  6196. color:#AAAAAA;
  6197. }
  6198. #u29020 {
  6199. border-width:0px;
  6200. position:absolute;
  6201. left:147px;
  6202. top:404px;
  6203. width:49px;
  6204. height:17px;
  6205. display:flex;
  6206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6207. font-weight:400;
  6208. font-style:normal;
  6209. font-size:12px;
  6210. color:#AAAAAA;
  6211. }
  6212. #u29020 .text {
  6213. position:absolute;
  6214. align-self:flex-start;
  6215. padding:0px 0px 0px 0px;
  6216. box-sizing:border-box;
  6217. width:100%;
  6218. }
  6219. #u29020_text {
  6220. border-width:0px;
  6221. white-space:nowrap;
  6222. text-transform:none;
  6223. }
  6224. #u29021_div {
  6225. border-width:0px;
  6226. position:absolute;
  6227. left:0px;
  6228. top:0px;
  6229. width:65px;
  6230. height:22px;
  6231. background:inherit;
  6232. background-color:rgba(255, 255, 255, 0);
  6233. border:none;
  6234. border-radius:0px;
  6235. -moz-box-shadow:none;
  6236. -webkit-box-shadow:none;
  6237. box-shadow:none;
  6238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6239. font-weight:400;
  6240. font-style:normal;
  6241. font-size:16px;
  6242. }
  6243. #u29021 {
  6244. border-width:0px;
  6245. position:absolute;
  6246. left:147px;
  6247. top:482px;
  6248. width:65px;
  6249. height:22px;
  6250. display:flex;
  6251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6252. font-weight:400;
  6253. font-style:normal;
  6254. font-size:16px;
  6255. }
  6256. #u29021 .text {
  6257. position:absolute;
  6258. align-self:flex-start;
  6259. padding:0px 0px 0px 0px;
  6260. box-sizing:border-box;
  6261. width:100%;
  6262. }
  6263. #u29021_text {
  6264. border-width:0px;
  6265. white-space:nowrap;
  6266. text-transform:none;
  6267. }
  6268. #u29022_div {
  6269. border-width:0px;
  6270. position:absolute;
  6271. left:0px;
  6272. top:0px;
  6273. width:65px;
  6274. height:22px;
  6275. background:inherit;
  6276. background-color:rgba(255, 255, 255, 0);
  6277. border:none;
  6278. border-radius:0px;
  6279. -moz-box-shadow:none;
  6280. -webkit-box-shadow:none;
  6281. box-shadow:none;
  6282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6283. font-weight:400;
  6284. font-style:normal;
  6285. font-size:16px;
  6286. }
  6287. #u29022 {
  6288. border-width:0px;
  6289. position:absolute;
  6290. left:147px;
  6291. top:586px;
  6292. width:65px;
  6293. height:22px;
  6294. display:flex;
  6295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6296. font-weight:400;
  6297. font-style:normal;
  6298. font-size:16px;
  6299. }
  6300. #u29022 .text {
  6301. position:absolute;
  6302. align-self:flex-start;
  6303. padding:0px 0px 0px 0px;
  6304. box-sizing:border-box;
  6305. width:100%;
  6306. }
  6307. #u29022_text {
  6308. border-width:0px;
  6309. white-space:nowrap;
  6310. text-transform:none;
  6311. }
  6312. #u29023_img {
  6313. border-width:0px;
  6314. position:absolute;
  6315. left:0px;
  6316. top:0px;
  6317. width:201px;
  6318. height:2px;
  6319. }
  6320. #u29023 {
  6321. border-width:0px;
  6322. position:absolute;
  6323. left:120px;
  6324. top:524px;
  6325. width:200px;
  6326. height:1px;
  6327. display:flex;
  6328. }
  6329. #u29023 .text {
  6330. position:absolute;
  6331. align-self:center;
  6332. padding:2px 2px 2px 2px;
  6333. box-sizing:border-box;
  6334. width:100%;
  6335. }
  6336. #u29023_text {
  6337. border-width:0px;
  6338. word-wrap:break-word;
  6339. text-transform:none;
  6340. visibility:hidden;
  6341. }
  6342. #u29024_div {
  6343. border-width:0px;
  6344. position:absolute;
  6345. left:0px;
  6346. top:0px;
  6347. width:49px;
  6348. height:17px;
  6349. background:inherit;
  6350. background-color:rgba(255, 255, 255, 0);
  6351. border:none;
  6352. border-radius:0px;
  6353. -moz-box-shadow:none;
  6354. -webkit-box-shadow:none;
  6355. box-shadow:none;
  6356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6357. font-weight:400;
  6358. font-style:normal;
  6359. font-size:12px;
  6360. color:#AAAAAA;
  6361. }
  6362. #u29024 {
  6363. border-width:0px;
  6364. position:absolute;
  6365. left:147px;
  6366. top:550px;
  6367. width:49px;
  6368. height:17px;
  6369. display:flex;
  6370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6371. font-weight:400;
  6372. font-style:normal;
  6373. font-size:12px;
  6374. color:#AAAAAA;
  6375. }
  6376. #u29024 .text {
  6377. position:absolute;
  6378. align-self:flex-start;
  6379. padding:0px 0px 0px 0px;
  6380. box-sizing:border-box;
  6381. width:100%;
  6382. }
  6383. #u29024_text {
  6384. border-width:0px;
  6385. white-space:nowrap;
  6386. text-transform:none;
  6387. }
  6388. #u29025_div {
  6389. border-width:0px;
  6390. position:absolute;
  6391. left:0px;
  6392. top:0px;
  6393. width:65px;
  6394. height:22px;
  6395. background:inherit;
  6396. background-color:rgba(255, 255, 255, 0);
  6397. border:none;
  6398. border-radius:0px;
  6399. -moz-box-shadow:none;
  6400. -webkit-box-shadow:none;
  6401. box-shadow:none;
  6402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6403. font-weight:400;
  6404. font-style:normal;
  6405. font-size:16px;
  6406. }
  6407. #u29025 {
  6408. border-width:0px;
  6409. position:absolute;
  6410. left:147px;
  6411. top:251px;
  6412. width:65px;
  6413. height:22px;
  6414. display:flex;
  6415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6416. font-weight:400;
  6417. font-style:normal;
  6418. font-size:16px;
  6419. }
  6420. #u29025 .text {
  6421. position:absolute;
  6422. align-self:flex-start;
  6423. padding:0px 0px 0px 0px;
  6424. box-sizing:border-box;
  6425. width:100%;
  6426. }
  6427. #u29025_text {
  6428. border-width:0px;
  6429. white-space:nowrap;
  6430. text-transform:none;
  6431. }