styles.css 117 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u22726_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. #u22726 {
  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. #u22726 .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. #u22726_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u22727_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. #u22727 {
  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. #u22727 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u22727_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u22728 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u22729_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u22729 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u22729 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u22729_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u22730_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. #u22730 {
  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. #u22730 .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. #u22730_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u22731_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. #u22731 {
  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. #u22731 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u22731_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u22732_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. #u22732 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u22732 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u22732_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u22733 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u22734_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. #u22734 {
  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. #u22734 .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. #u22734_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u22735_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u22735 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u22735 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u22735_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u22736 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u22737_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. #u22737 {
  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. #u22737 .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. #u22737_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u22738_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u22738 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u22738 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u22738_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u22739 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u22740_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. #u22740 {
  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. #u22740 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u22740_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u22741_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u22741 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u22741 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u22741_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u22742 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u22743_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. #u22743 {
  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. #u22743 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u22743_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u22744_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u22744 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u22744 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u22744_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u22745 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u22746_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. #u22746 {
  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. #u22746 .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. #u22746_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u22747_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u22747 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u22747 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u22747_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u22748 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u22749_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. #u22749 {
  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. #u22749 .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. #u22749_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u22750_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u22750 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u22750 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u22750_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u22751 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u22752_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. #u22752 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:403px;
  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. #u22752 .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. #u22752_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u22753_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u22753 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u22753 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u22753_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u22754 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u22755_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. #u22755 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:445px;
  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. #u22755 .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. #u22755_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u22756_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u22756 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u22756 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u22756_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u22757 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u22758_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. #u22758 {
  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. #u22758 .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. #u22758_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u22759_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u22759 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:575px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u22759 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u22759_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u22760 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u22761_div {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:33px;
  1023. height:22px;
  1024. background:inherit;
  1025. background-color:rgba(255, 255, 255, 0);
  1026. border:none;
  1027. border-radius:0px;
  1028. -moz-box-shadow:none;
  1029. -webkit-box-shadow:none;
  1030. box-shadow:none;
  1031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1032. font-weight:400;
  1033. font-style:normal;
  1034. font-size:16px;
  1035. color:#FFFFFF;
  1036. }
  1037. #u22761 {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:39px;
  1041. top:529px;
  1042. width:33px;
  1043. height:22px;
  1044. display:flex;
  1045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1046. font-weight:400;
  1047. font-style:normal;
  1048. font-size:16px;
  1049. color:#FFFFFF;
  1050. }
  1051. #u22761 .text {
  1052. position:absolute;
  1053. align-self:flex-start;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u22761_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u22762_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:14px;
  1069. height:14px;
  1070. }
  1071. #u22762 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:533px;
  1076. width:14px;
  1077. height:14px;
  1078. display:flex;
  1079. }
  1080. #u22762 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u22762_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u22763_input {
  1094. position:absolute;
  1095. left:0px;
  1096. top:0px;
  1097. width:214px;
  1098. height:27px;
  1099. padding:2px 2px 2px 2px;
  1100. font-family:'ArialMT', 'Arial', sans-serif;
  1101. font-weight:400;
  1102. font-style:normal;
  1103. font-size:14px;
  1104. letter-spacing:normal;
  1105. color:#FFFFFF;
  1106. vertical-align:none;
  1107. text-align:left;
  1108. text-transform:none;
  1109. background-color:transparent;
  1110. border-color:transparent;
  1111. }
  1112. #u22763_input.disabled {
  1113. position:absolute;
  1114. left:0px;
  1115. top:0px;
  1116. width:214px;
  1117. height:27px;
  1118. padding:2px 2px 2px 2px;
  1119. font-family:'ArialMT', 'Arial', sans-serif;
  1120. font-weight:400;
  1121. font-style:normal;
  1122. font-size:14px;
  1123. letter-spacing:normal;
  1124. color:#FFFFFF;
  1125. vertical-align:none;
  1126. text-align:left;
  1127. text-transform:none;
  1128. background-color:transparent;
  1129. border-color:transparent;
  1130. }
  1131. #u22763_div {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:214px;
  1137. height:27px;
  1138. background:inherit;
  1139. background-color:rgba(255, 255, 255, 0);
  1140. border:none;
  1141. border-radius:0px;
  1142. -moz-box-shadow:none;
  1143. -webkit-box-shadow:none;
  1144. box-shadow:none;
  1145. font-size:14px;
  1146. color:#FFFFFF;
  1147. }
  1148. #u22763 {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:1221px;
  1152. top:10px;
  1153. width:214px;
  1154. height:27px;
  1155. display:flex;
  1156. font-size:14px;
  1157. color:#FFFFFF;
  1158. }
  1159. #u22763 .text {
  1160. position:absolute;
  1161. align-self:flex-start;
  1162. padding:2px 2px 2px 2px;
  1163. box-sizing:border-box;
  1164. width:100%;
  1165. }
  1166. #u22763_div.disabled {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:214px;
  1172. height:27px;
  1173. background:inherit;
  1174. background-color:rgba(240, 240, 240, 1);
  1175. border:none;
  1176. border-radius:0px;
  1177. -moz-box-shadow:none;
  1178. -webkit-box-shadow:none;
  1179. box-shadow:none;
  1180. font-size:14px;
  1181. color:#FFFFFF;
  1182. }
  1183. #u22763.disabled {
  1184. }
  1185. .u22763_input_option {
  1186. font-size:14px;
  1187. }
  1188. #u22764_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:22px;
  1194. height:22px;
  1195. }
  1196. #u22764 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1194px;
  1200. top:15px;
  1201. width:22px;
  1202. height:22px;
  1203. display:flex;
  1204. }
  1205. #u22764 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u22764_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u22765_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:100px;
  1224. height:24px;
  1225. background:inherit;
  1226. background-color:rgba(242, 242, 242, 0.2);
  1227. border:none;
  1228. border-radius:25px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. color:#FFFFFF;
  1236. text-align:center;
  1237. }
  1238. #u22765 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:1480px;
  1242. top:12px;
  1243. width:100px;
  1244. height:24px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. color:#FFFFFF;
  1250. text-align:center;
  1251. }
  1252. #u22765 .text {
  1253. position:absolute;
  1254. align-self:center;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u22765_text {
  1260. border-width:0px;
  1261. word-wrap:break-word;
  1262. text-transform:none;
  1263. }
  1264. #u22766_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:2px;
  1270. height:12px;
  1271. }
  1272. #u22766 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:1452px;
  1276. top:19px;
  1277. width:1px;
  1278. height:11px;
  1279. display:flex;
  1280. }
  1281. #u22766 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u22766_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u22767 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u22768_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:33px;
  1308. height:22px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border:none;
  1312. border-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:16px;
  1320. color:#FFFFFF;
  1321. }
  1322. #u22768 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:319px;
  1327. width:33px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:16px;
  1334. color:#FFFFFF;
  1335. }
  1336. #u22768 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u22768_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u22769_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u22769 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:323px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u22769 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u22769_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u22770 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u22771_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:33px;
  1392. height:22px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:16px;
  1404. color:#FFFFFF;
  1405. }
  1406. #u22771 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:361px;
  1411. width:33px;
  1412. height:22px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:16px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u22771 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:0px 0px 0px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u22771_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u22772_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u22772 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:365px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u22772 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u22772_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u22773 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u22774_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:33px;
  1476. height:22px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:16px;
  1488. color:#FFFFFF;
  1489. }
  1490. #u22774 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:151px;
  1495. width:33px;
  1496. height:22px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:16px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u22774 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u22774_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u22775_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u22775 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:155px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u22775 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u22775_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u22776 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u22777_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:33px;
  1560. height:22px;
  1561. background:inherit;
  1562. background-color:rgba(255, 255, 255, 0);
  1563. border:none;
  1564. border-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:16px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u22777 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:487px;
  1579. width:33px;
  1580. height:22px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:16px;
  1586. color:#FFFFFF;
  1587. }
  1588. #u22777 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u22777_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u22778_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u22778 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:491px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u22778 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u22778_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u22779 {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:0px;
  1636. height:0px;
  1637. }
  1638. #u22780_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:33px;
  1644. height:22px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 0);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:16px;
  1656. color:#FFFFFF;
  1657. }
  1658. #u22780 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:39px;
  1662. top:193px;
  1663. width:33px;
  1664. height:22px;
  1665. display:flex;
  1666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1667. font-weight:400;
  1668. font-style:normal;
  1669. font-size:16px;
  1670. color:#FFFFFF;
  1671. }
  1672. #u22780 .text {
  1673. position:absolute;
  1674. align-self:flex-start;
  1675. padding:0px 0px 0px 0px;
  1676. box-sizing:border-box;
  1677. width:100%;
  1678. }
  1679. #u22780_text {
  1680. border-width:0px;
  1681. white-space:nowrap;
  1682. text-transform:none;
  1683. }
  1684. #u22781_img {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:0px;
  1688. top:0px;
  1689. width:14px;
  1690. height:14px;
  1691. }
  1692. #u22781 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:20px;
  1696. top:197px;
  1697. width:14px;
  1698. height:14px;
  1699. display:flex;
  1700. }
  1701. #u22781 .text {
  1702. position:absolute;
  1703. align-self:center;
  1704. padding:2px 2px 2px 2px;
  1705. box-sizing:border-box;
  1706. width:100%;
  1707. }
  1708. #u22781_text {
  1709. border-width:0px;
  1710. word-wrap:break-word;
  1711. text-transform:none;
  1712. visibility:hidden;
  1713. }
  1714. #u22782_div {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:1260px;
  1720. height:1192px;
  1721. background:inherit;
  1722. background-color:rgba(255, 255, 255, 1);
  1723. border:none;
  1724. border-radius:0px;
  1725. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1726. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1727. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1728. color:#1890FF;
  1729. }
  1730. #u22782 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:330px;
  1734. top:50px;
  1735. width:1260px;
  1736. height:1192px;
  1737. display:flex;
  1738. color:#1890FF;
  1739. }
  1740. #u22782 .text {
  1741. position:absolute;
  1742. align-self:center;
  1743. padding:2px 2px 2px 2px;
  1744. box-sizing:border-box;
  1745. width:100%;
  1746. }
  1747. #u22782_text {
  1748. border-width:0px;
  1749. word-wrap:break-word;
  1750. text-transform:none;
  1751. visibility:hidden;
  1752. }
  1753. #u22783_div {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:0px;
  1757. top:0px;
  1758. width:55px;
  1759. height:50px;
  1760. background:inherit;
  1761. background-color:rgba(255, 255, 255, 0);
  1762. border:none;
  1763. border-left:0px;
  1764. border-top:0px;
  1765. border-right:0px;
  1766. border-radius:0px;
  1767. border-bottom-right-radius:0px;
  1768. border-bottom-left-radius:0px;
  1769. -moz-box-shadow:none;
  1770. -webkit-box-shadow:none;
  1771. box-shadow:none;
  1772. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1773. font-weight:500;
  1774. font-style:normal;
  1775. font-size:18px;
  1776. }
  1777. #u22783 {
  1778. border-width:0px;
  1779. position:absolute;
  1780. left:349px;
  1781. top:50px;
  1782. width:55px;
  1783. height:50px;
  1784. display:flex;
  1785. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1786. font-weight:500;
  1787. font-style:normal;
  1788. font-size:18px;
  1789. }
  1790. #u22783 .text {
  1791. position:absolute;
  1792. align-self:center;
  1793. padding:0px 0px 0px 0px;
  1794. box-sizing:border-box;
  1795. width:100%;
  1796. }
  1797. #u22783_text {
  1798. border-width:0px;
  1799. white-space:nowrap;
  1800. text-transform:none;
  1801. }
  1802. #u22784_div {
  1803. border-width:0px;
  1804. position:absolute;
  1805. left:0px;
  1806. top:0px;
  1807. width:59px;
  1808. height:30px;
  1809. background:inherit;
  1810. background-color:rgba(24, 144, 255, 1);
  1811. border:none;
  1812. border-radius:4px;
  1813. -moz-box-shadow:none;
  1814. -webkit-box-shadow:none;
  1815. box-shadow:none;
  1816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1817. font-weight:400;
  1818. font-style:normal;
  1819. font-size:14px;
  1820. color:#FFFFFF;
  1821. }
  1822. #u22784 {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:355px;
  1826. top:154px;
  1827. width:59px;
  1828. height:30px;
  1829. display:flex;
  1830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1831. font-weight:400;
  1832. font-style:normal;
  1833. font-size:14px;
  1834. color:#FFFFFF;
  1835. }
  1836. #u22784 .text {
  1837. position:absolute;
  1838. align-self:center;
  1839. padding:5px 15px 5px 15px;
  1840. box-sizing:border-box;
  1841. width:100%;
  1842. }
  1843. #u22784_text {
  1844. border-width:0px;
  1845. white-space:nowrap;
  1846. text-transform:none;
  1847. }
  1848. #u22785 {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:349px;
  1852. top:192px;
  1853. width:1222px;
  1854. height:364px;
  1855. }
  1856. #u22786_img {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:0px;
  1860. top:0px;
  1861. width:59px;
  1862. height:39px;
  1863. }
  1864. #u22786 {
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:0px;
  1868. top:0px;
  1869. width:59px;
  1870. height:39px;
  1871. display:flex;
  1872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1873. font-weight:400;
  1874. font-style:normal;
  1875. font-size:12px;
  1876. color:#FFFFFF;
  1877. }
  1878. #u22786 .text {
  1879. position:absolute;
  1880. align-self:center;
  1881. padding:2px 2px 2px 0px;
  1882. box-sizing:border-box;
  1883. width:100%;
  1884. }
  1885. #u22786_text {
  1886. border-width:0px;
  1887. word-wrap:break-word;
  1888. text-transform:none;
  1889. }
  1890. #u22787_img {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:0px;
  1894. top:0px;
  1895. width:196px;
  1896. height:39px;
  1897. }
  1898. #u22787 {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:59px;
  1902. top:0px;
  1903. width:196px;
  1904. height:39px;
  1905. display:flex;
  1906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1907. font-weight:400;
  1908. font-style:normal;
  1909. font-size:12px;
  1910. color:#FFFFFF;
  1911. }
  1912. #u22787 .text {
  1913. position:absolute;
  1914. align-self:center;
  1915. padding:2px 2px 2px 0px;
  1916. box-sizing:border-box;
  1917. width:100%;
  1918. }
  1919. #u22787_text {
  1920. border-width:0px;
  1921. word-wrap:break-word;
  1922. text-transform:none;
  1923. }
  1924. #u22788_img {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:0px;
  1928. top:0px;
  1929. width:196px;
  1930. height:39px;
  1931. }
  1932. #u22788 {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:255px;
  1936. top:0px;
  1937. width:196px;
  1938. height:39px;
  1939. display:flex;
  1940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1941. font-weight:400;
  1942. font-style:normal;
  1943. font-size:12px;
  1944. color:#FFFFFF;
  1945. }
  1946. #u22788 .text {
  1947. position:absolute;
  1948. align-self:center;
  1949. padding:2px 2px 2px 0px;
  1950. box-sizing:border-box;
  1951. width:100%;
  1952. }
  1953. #u22788_text {
  1954. border-width:0px;
  1955. word-wrap:break-word;
  1956. text-transform:none;
  1957. }
  1958. #u22789_img {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:0px;
  1962. top:0px;
  1963. width:196px;
  1964. height:39px;
  1965. }
  1966. #u22789 {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:451px;
  1970. top:0px;
  1971. width:196px;
  1972. height:39px;
  1973. display:flex;
  1974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1975. font-weight:400;
  1976. font-style:normal;
  1977. font-size:12px;
  1978. color:#FFFFFF;
  1979. }
  1980. #u22789 .text {
  1981. position:absolute;
  1982. align-self:center;
  1983. padding:2px 2px 2px 0px;
  1984. box-sizing:border-box;
  1985. width:100%;
  1986. }
  1987. #u22789_text {
  1988. border-width:0px;
  1989. word-wrap:break-word;
  1990. text-transform:none;
  1991. }
  1992. #u22790_img {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:0px;
  1996. top:0px;
  1997. width:175px;
  1998. height:39px;
  1999. }
  2000. #u22790 {
  2001. border-width:0px;
  2002. position:absolute;
  2003. left:647px;
  2004. top:0px;
  2005. width:175px;
  2006. height:39px;
  2007. display:flex;
  2008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2009. font-weight:400;
  2010. font-style:normal;
  2011. font-size:12px;
  2012. color:#FFFFFF;
  2013. }
  2014. #u22790 .text {
  2015. position:absolute;
  2016. align-self:center;
  2017. padding:2px 2px 2px 0px;
  2018. box-sizing:border-box;
  2019. width:100%;
  2020. }
  2021. #u22790_text {
  2022. border-width:0px;
  2023. word-wrap:break-word;
  2024. text-transform:none;
  2025. }
  2026. #u22791_img {
  2027. border-width:0px;
  2028. position:absolute;
  2029. left:0px;
  2030. top:0px;
  2031. width:196px;
  2032. height:39px;
  2033. }
  2034. #u22791 {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:822px;
  2038. top:0px;
  2039. width:196px;
  2040. height:39px;
  2041. display:flex;
  2042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2043. font-weight:400;
  2044. font-style:normal;
  2045. font-size:12px;
  2046. color:#FFFFFF;
  2047. }
  2048. #u22791 .text {
  2049. position:absolute;
  2050. align-self:center;
  2051. padding:2px 2px 2px 0px;
  2052. box-sizing:border-box;
  2053. width:100%;
  2054. }
  2055. #u22791_text {
  2056. border-width:0px;
  2057. word-wrap:break-word;
  2058. text-transform:none;
  2059. }
  2060. #u22792_img {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:0px;
  2064. top:0px;
  2065. width:204px;
  2066. height:39px;
  2067. }
  2068. #u22792 {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:1018px;
  2072. top:0px;
  2073. width:204px;
  2074. height:39px;
  2075. display:flex;
  2076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2077. font-weight:400;
  2078. font-style:normal;
  2079. font-size:12px;
  2080. color:#FFFFFF;
  2081. }
  2082. #u22792 .text {
  2083. position:absolute;
  2084. align-self:center;
  2085. padding:2px 2px 2px 0px;
  2086. box-sizing:border-box;
  2087. width:100%;
  2088. }
  2089. #u22792_text {
  2090. border-width:0px;
  2091. word-wrap:break-word;
  2092. text-transform:none;
  2093. }
  2094. #u22793_img {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:0px;
  2098. top:0px;
  2099. width:59px;
  2100. height:36px;
  2101. }
  2102. #u22793 {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:0px;
  2106. top:39px;
  2107. width:59px;
  2108. height:36px;
  2109. display:flex;
  2110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2111. font-weight:400;
  2112. font-style:normal;
  2113. font-size:12px;
  2114. }
  2115. #u22793 .text {
  2116. position:absolute;
  2117. align-self:center;
  2118. padding:2px 2px 2px 0px;
  2119. box-sizing:border-box;
  2120. width:100%;
  2121. }
  2122. #u22793_text {
  2123. border-width:0px;
  2124. word-wrap:break-word;
  2125. text-transform:none;
  2126. visibility:hidden;
  2127. }
  2128. #u22794_img {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:0px;
  2132. top:0px;
  2133. width:196px;
  2134. height:36px;
  2135. }
  2136. #u22794 {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:59px;
  2140. top:39px;
  2141. width:196px;
  2142. height:36px;
  2143. display:flex;
  2144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2145. font-weight:400;
  2146. font-style:normal;
  2147. font-size:12px;
  2148. }
  2149. #u22794 .text {
  2150. position:absolute;
  2151. align-self:center;
  2152. padding:2px 2px 2px 0px;
  2153. box-sizing:border-box;
  2154. width:100%;
  2155. }
  2156. #u22794_text {
  2157. border-width:0px;
  2158. word-wrap:break-word;
  2159. text-transform:none;
  2160. visibility:hidden;
  2161. }
  2162. #u22795_img {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:0px;
  2166. top:0px;
  2167. width:196px;
  2168. height:36px;
  2169. }
  2170. #u22795 {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:255px;
  2174. top:39px;
  2175. width:196px;
  2176. height:36px;
  2177. display:flex;
  2178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2179. font-weight:400;
  2180. font-style:normal;
  2181. font-size:12px;
  2182. }
  2183. #u22795 .text {
  2184. position:absolute;
  2185. align-self:center;
  2186. padding:2px 2px 2px 0px;
  2187. box-sizing:border-box;
  2188. width:100%;
  2189. }
  2190. #u22795_text {
  2191. border-width:0px;
  2192. word-wrap:break-word;
  2193. text-transform:none;
  2194. visibility:hidden;
  2195. }
  2196. #u22796_img {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:0px;
  2200. top:0px;
  2201. width:196px;
  2202. height:36px;
  2203. }
  2204. #u22796 {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:451px;
  2208. top:39px;
  2209. width:196px;
  2210. height:36px;
  2211. display:flex;
  2212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2213. font-weight:400;
  2214. font-style:normal;
  2215. font-size:12px;
  2216. }
  2217. #u22796 .text {
  2218. position:absolute;
  2219. align-self:center;
  2220. padding:2px 2px 2px 0px;
  2221. box-sizing:border-box;
  2222. width:100%;
  2223. }
  2224. #u22796_text {
  2225. border-width:0px;
  2226. word-wrap:break-word;
  2227. text-transform:none;
  2228. visibility:hidden;
  2229. }
  2230. #u22797_img {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:0px;
  2234. top:0px;
  2235. width:175px;
  2236. height:36px;
  2237. }
  2238. #u22797 {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:647px;
  2242. top:39px;
  2243. width:175px;
  2244. height:36px;
  2245. display:flex;
  2246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2247. font-weight:400;
  2248. font-style:normal;
  2249. font-size:12px;
  2250. }
  2251. #u22797 .text {
  2252. position:absolute;
  2253. align-self:center;
  2254. padding:2px 2px 2px 0px;
  2255. box-sizing:border-box;
  2256. width:100%;
  2257. }
  2258. #u22797_text {
  2259. border-width:0px;
  2260. word-wrap:break-word;
  2261. text-transform:none;
  2262. visibility:hidden;
  2263. }
  2264. #u22798_img {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:0px;
  2268. top:0px;
  2269. width:196px;
  2270. height:36px;
  2271. }
  2272. #u22798 {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:822px;
  2276. top:39px;
  2277. width:196px;
  2278. height:36px;
  2279. display:flex;
  2280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2281. font-weight:400;
  2282. font-style:normal;
  2283. font-size:12px;
  2284. }
  2285. #u22798 .text {
  2286. position:absolute;
  2287. align-self:center;
  2288. padding:2px 2px 2px 0px;
  2289. box-sizing:border-box;
  2290. width:100%;
  2291. }
  2292. #u22798_text {
  2293. border-width:0px;
  2294. word-wrap:break-word;
  2295. text-transform:none;
  2296. visibility:hidden;
  2297. }
  2298. #u22799_img {
  2299. border-width:0px;
  2300. position:absolute;
  2301. left:0px;
  2302. top:0px;
  2303. width:204px;
  2304. height:36px;
  2305. }
  2306. #u22799 {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:1018px;
  2310. top:39px;
  2311. width:204px;
  2312. height:36px;
  2313. display:flex;
  2314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2315. font-weight:400;
  2316. font-style:normal;
  2317. font-size:12px;
  2318. color:#1890FF;
  2319. }
  2320. #u22799 .text {
  2321. position:absolute;
  2322. align-self:center;
  2323. padding:2px 2px 2px 0px;
  2324. box-sizing:border-box;
  2325. width:100%;
  2326. }
  2327. #u22799_text {
  2328. border-width:0px;
  2329. word-wrap:break-word;
  2330. text-transform:none;
  2331. }
  2332. #u22800_img {
  2333. border-width:0px;
  2334. position:absolute;
  2335. left:0px;
  2336. top:0px;
  2337. width:59px;
  2338. height:38px;
  2339. }
  2340. #u22800 {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:0px;
  2344. top:75px;
  2345. width:59px;
  2346. height:38px;
  2347. display:flex;
  2348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2349. font-weight:400;
  2350. font-style:normal;
  2351. font-size:12px;
  2352. }
  2353. #u22800 .text {
  2354. position:absolute;
  2355. align-self:center;
  2356. padding:2px 2px 2px 0px;
  2357. box-sizing:border-box;
  2358. width:100%;
  2359. }
  2360. #u22800_text {
  2361. border-width:0px;
  2362. word-wrap:break-word;
  2363. text-transform:none;
  2364. visibility:hidden;
  2365. }
  2366. #u22801_img {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:0px;
  2370. top:0px;
  2371. width:196px;
  2372. height:38px;
  2373. }
  2374. #u22801 {
  2375. border-width:0px;
  2376. position:absolute;
  2377. left:59px;
  2378. top:75px;
  2379. width:196px;
  2380. height:38px;
  2381. display:flex;
  2382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2383. font-weight:400;
  2384. font-style:normal;
  2385. font-size:12px;
  2386. }
  2387. #u22801 .text {
  2388. position:absolute;
  2389. align-self:center;
  2390. padding:2px 2px 2px 0px;
  2391. box-sizing:border-box;
  2392. width:100%;
  2393. }
  2394. #u22801_text {
  2395. border-width:0px;
  2396. word-wrap:break-word;
  2397. text-transform:none;
  2398. visibility:hidden;
  2399. }
  2400. #u22802_img {
  2401. border-width:0px;
  2402. position:absolute;
  2403. left:0px;
  2404. top:0px;
  2405. width:196px;
  2406. height:38px;
  2407. }
  2408. #u22802 {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:255px;
  2412. top:75px;
  2413. width:196px;
  2414. height:38px;
  2415. display:flex;
  2416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2417. font-weight:400;
  2418. font-style:normal;
  2419. font-size:12px;
  2420. }
  2421. #u22802 .text {
  2422. position:absolute;
  2423. align-self:center;
  2424. padding:2px 2px 2px 0px;
  2425. box-sizing:border-box;
  2426. width:100%;
  2427. }
  2428. #u22802_text {
  2429. border-width:0px;
  2430. word-wrap:break-word;
  2431. text-transform:none;
  2432. visibility:hidden;
  2433. }
  2434. #u22803_img {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:0px;
  2438. top:0px;
  2439. width:196px;
  2440. height:38px;
  2441. }
  2442. #u22803 {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:451px;
  2446. top:75px;
  2447. width:196px;
  2448. height:38px;
  2449. display:flex;
  2450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2451. font-weight:400;
  2452. font-style:normal;
  2453. font-size:12px;
  2454. }
  2455. #u22803 .text {
  2456. position:absolute;
  2457. align-self:center;
  2458. padding:2px 2px 2px 0px;
  2459. box-sizing:border-box;
  2460. width:100%;
  2461. }
  2462. #u22803_text {
  2463. border-width:0px;
  2464. word-wrap:break-word;
  2465. text-transform:none;
  2466. visibility:hidden;
  2467. }
  2468. #u22804_img {
  2469. border-width:0px;
  2470. position:absolute;
  2471. left:0px;
  2472. top:0px;
  2473. width:175px;
  2474. height:38px;
  2475. }
  2476. #u22804 {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:647px;
  2480. top:75px;
  2481. width:175px;
  2482. height:38px;
  2483. display:flex;
  2484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2485. font-weight:400;
  2486. font-style:normal;
  2487. font-size:12px;
  2488. }
  2489. #u22804 .text {
  2490. position:absolute;
  2491. align-self:center;
  2492. padding:2px 2px 2px 0px;
  2493. box-sizing:border-box;
  2494. width:100%;
  2495. }
  2496. #u22804_text {
  2497. border-width:0px;
  2498. word-wrap:break-word;
  2499. text-transform:none;
  2500. visibility:hidden;
  2501. }
  2502. #u22805_img {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:0px;
  2506. top:0px;
  2507. width:196px;
  2508. height:38px;
  2509. }
  2510. #u22805 {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:822px;
  2514. top:75px;
  2515. width:196px;
  2516. height:38px;
  2517. display:flex;
  2518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2519. font-weight:400;
  2520. font-style:normal;
  2521. font-size:12px;
  2522. }
  2523. #u22805 .text {
  2524. position:absolute;
  2525. align-self:center;
  2526. padding:2px 2px 2px 0px;
  2527. box-sizing:border-box;
  2528. width:100%;
  2529. }
  2530. #u22805_text {
  2531. border-width:0px;
  2532. word-wrap:break-word;
  2533. text-transform:none;
  2534. visibility:hidden;
  2535. }
  2536. #u22806_img {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:0px;
  2540. top:0px;
  2541. width:204px;
  2542. height:38px;
  2543. }
  2544. #u22806 {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:1018px;
  2548. top:75px;
  2549. width:204px;
  2550. height:38px;
  2551. display:flex;
  2552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2553. font-weight:400;
  2554. font-style:normal;
  2555. font-size:12px;
  2556. color:#1890FF;
  2557. }
  2558. #u22806 .text {
  2559. position:absolute;
  2560. align-self:center;
  2561. padding:2px 2px 2px 0px;
  2562. box-sizing:border-box;
  2563. width:100%;
  2564. }
  2565. #u22806_text {
  2566. border-width:0px;
  2567. word-wrap:break-word;
  2568. text-transform:none;
  2569. visibility:hidden;
  2570. }
  2571. #u22807_img {
  2572. border-width:0px;
  2573. position:absolute;
  2574. left:0px;
  2575. top:0px;
  2576. width:59px;
  2577. height:38px;
  2578. }
  2579. #u22807 {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:0px;
  2583. top:113px;
  2584. width:59px;
  2585. height:38px;
  2586. display:flex;
  2587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2588. font-weight:400;
  2589. font-style:normal;
  2590. font-size:12px;
  2591. }
  2592. #u22807 .text {
  2593. position:absolute;
  2594. align-self:center;
  2595. padding:2px 2px 2px 0px;
  2596. box-sizing:border-box;
  2597. width:100%;
  2598. }
  2599. #u22807_text {
  2600. border-width:0px;
  2601. word-wrap:break-word;
  2602. text-transform:none;
  2603. visibility:hidden;
  2604. }
  2605. #u22808_img {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:0px;
  2609. top:0px;
  2610. width:196px;
  2611. height:38px;
  2612. }
  2613. #u22808 {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:59px;
  2617. top:113px;
  2618. width:196px;
  2619. height:38px;
  2620. display:flex;
  2621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2622. font-weight:400;
  2623. font-style:normal;
  2624. font-size:12px;
  2625. }
  2626. #u22808 .text {
  2627. position:absolute;
  2628. align-self:center;
  2629. padding:2px 2px 2px 0px;
  2630. box-sizing:border-box;
  2631. width:100%;
  2632. }
  2633. #u22808_text {
  2634. border-width:0px;
  2635. word-wrap:break-word;
  2636. text-transform:none;
  2637. visibility:hidden;
  2638. }
  2639. #u22809_img {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:0px;
  2643. top:0px;
  2644. width:196px;
  2645. height:38px;
  2646. }
  2647. #u22809 {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:255px;
  2651. top:113px;
  2652. width:196px;
  2653. height:38px;
  2654. display:flex;
  2655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2656. font-weight:400;
  2657. font-style:normal;
  2658. font-size:12px;
  2659. }
  2660. #u22809 .text {
  2661. position:absolute;
  2662. align-self:center;
  2663. padding:2px 2px 2px 0px;
  2664. box-sizing:border-box;
  2665. width:100%;
  2666. }
  2667. #u22809_text {
  2668. border-width:0px;
  2669. word-wrap:break-word;
  2670. text-transform:none;
  2671. visibility:hidden;
  2672. }
  2673. #u22810_img {
  2674. border-width:0px;
  2675. position:absolute;
  2676. left:0px;
  2677. top:0px;
  2678. width:196px;
  2679. height:38px;
  2680. }
  2681. #u22810 {
  2682. border-width:0px;
  2683. position:absolute;
  2684. left:451px;
  2685. top:113px;
  2686. width:196px;
  2687. height:38px;
  2688. display:flex;
  2689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2690. font-weight:400;
  2691. font-style:normal;
  2692. font-size:12px;
  2693. }
  2694. #u22810 .text {
  2695. position:absolute;
  2696. align-self:center;
  2697. padding:2px 2px 2px 0px;
  2698. box-sizing:border-box;
  2699. width:100%;
  2700. }
  2701. #u22810_text {
  2702. border-width:0px;
  2703. word-wrap:break-word;
  2704. text-transform:none;
  2705. visibility:hidden;
  2706. }
  2707. #u22811_img {
  2708. border-width:0px;
  2709. position:absolute;
  2710. left:0px;
  2711. top:0px;
  2712. width:175px;
  2713. height:38px;
  2714. }
  2715. #u22811 {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:647px;
  2719. top:113px;
  2720. width:175px;
  2721. height:38px;
  2722. display:flex;
  2723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2724. font-weight:400;
  2725. font-style:normal;
  2726. font-size:12px;
  2727. }
  2728. #u22811 .text {
  2729. position:absolute;
  2730. align-self:center;
  2731. padding:2px 2px 2px 0px;
  2732. box-sizing:border-box;
  2733. width:100%;
  2734. }
  2735. #u22811_text {
  2736. border-width:0px;
  2737. word-wrap:break-word;
  2738. text-transform:none;
  2739. visibility:hidden;
  2740. }
  2741. #u22812_img {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:0px;
  2745. top:0px;
  2746. width:196px;
  2747. height:38px;
  2748. }
  2749. #u22812 {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:822px;
  2753. top:113px;
  2754. width:196px;
  2755. height:38px;
  2756. display:flex;
  2757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2758. font-weight:400;
  2759. font-style:normal;
  2760. font-size:12px;
  2761. }
  2762. #u22812 .text {
  2763. position:absolute;
  2764. align-self:center;
  2765. padding:2px 2px 2px 0px;
  2766. box-sizing:border-box;
  2767. width:100%;
  2768. }
  2769. #u22812_text {
  2770. border-width:0px;
  2771. word-wrap:break-word;
  2772. text-transform:none;
  2773. visibility:hidden;
  2774. }
  2775. #u22813_img {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:0px;
  2779. top:0px;
  2780. width:204px;
  2781. height:38px;
  2782. }
  2783. #u22813 {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:1018px;
  2787. top:113px;
  2788. width:204px;
  2789. height:38px;
  2790. display:flex;
  2791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2792. font-weight:400;
  2793. font-style:normal;
  2794. font-size:12px;
  2795. color:#1890FF;
  2796. }
  2797. #u22813 .text {
  2798. position:absolute;
  2799. align-self:center;
  2800. padding:2px 2px 2px 0px;
  2801. box-sizing:border-box;
  2802. width:100%;
  2803. }
  2804. #u22813_text {
  2805. border-width:0px;
  2806. word-wrap:break-word;
  2807. text-transform:none;
  2808. visibility:hidden;
  2809. }
  2810. #u22814_img {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:0px;
  2814. top:0px;
  2815. width:59px;
  2816. height:38px;
  2817. }
  2818. #u22814 {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:0px;
  2822. top:151px;
  2823. width:59px;
  2824. height:38px;
  2825. display:flex;
  2826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2827. font-weight:400;
  2828. font-style:normal;
  2829. font-size:12px;
  2830. }
  2831. #u22814 .text {
  2832. position:absolute;
  2833. align-self:center;
  2834. padding:2px 2px 2px 0px;
  2835. box-sizing:border-box;
  2836. width:100%;
  2837. }
  2838. #u22814_text {
  2839. border-width:0px;
  2840. word-wrap:break-word;
  2841. text-transform:none;
  2842. visibility:hidden;
  2843. }
  2844. #u22815_img {
  2845. border-width:0px;
  2846. position:absolute;
  2847. left:0px;
  2848. top:0px;
  2849. width:196px;
  2850. height:38px;
  2851. }
  2852. #u22815 {
  2853. border-width:0px;
  2854. position:absolute;
  2855. left:59px;
  2856. top:151px;
  2857. width:196px;
  2858. height:38px;
  2859. display:flex;
  2860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2861. font-weight:400;
  2862. font-style:normal;
  2863. font-size:12px;
  2864. }
  2865. #u22815 .text {
  2866. position:absolute;
  2867. align-self:center;
  2868. padding:2px 2px 2px 0px;
  2869. box-sizing:border-box;
  2870. width:100%;
  2871. }
  2872. #u22815_text {
  2873. border-width:0px;
  2874. word-wrap:break-word;
  2875. text-transform:none;
  2876. visibility:hidden;
  2877. }
  2878. #u22816_img {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:0px;
  2882. top:0px;
  2883. width:196px;
  2884. height:38px;
  2885. }
  2886. #u22816 {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:255px;
  2890. top:151px;
  2891. width:196px;
  2892. height:38px;
  2893. display:flex;
  2894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2895. font-weight:400;
  2896. font-style:normal;
  2897. font-size:12px;
  2898. }
  2899. #u22816 .text {
  2900. position:absolute;
  2901. align-self:center;
  2902. padding:2px 2px 2px 0px;
  2903. box-sizing:border-box;
  2904. width:100%;
  2905. }
  2906. #u22816_text {
  2907. border-width:0px;
  2908. word-wrap:break-word;
  2909. text-transform:none;
  2910. visibility:hidden;
  2911. }
  2912. #u22817_img {
  2913. border-width:0px;
  2914. position:absolute;
  2915. left:0px;
  2916. top:0px;
  2917. width:196px;
  2918. height:38px;
  2919. }
  2920. #u22817 {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:451px;
  2924. top:151px;
  2925. width:196px;
  2926. height:38px;
  2927. display:flex;
  2928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2929. font-weight:400;
  2930. font-style:normal;
  2931. font-size:12px;
  2932. }
  2933. #u22817 .text {
  2934. position:absolute;
  2935. align-self:center;
  2936. padding:2px 2px 2px 0px;
  2937. box-sizing:border-box;
  2938. width:100%;
  2939. }
  2940. #u22817_text {
  2941. border-width:0px;
  2942. word-wrap:break-word;
  2943. text-transform:none;
  2944. visibility:hidden;
  2945. }
  2946. #u22818_img {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:0px;
  2950. top:0px;
  2951. width:175px;
  2952. height:38px;
  2953. }
  2954. #u22818 {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:647px;
  2958. top:151px;
  2959. width:175px;
  2960. height:38px;
  2961. display:flex;
  2962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2963. font-weight:400;
  2964. font-style:normal;
  2965. font-size:12px;
  2966. }
  2967. #u22818 .text {
  2968. position:absolute;
  2969. align-self:center;
  2970. padding:2px 2px 2px 0px;
  2971. box-sizing:border-box;
  2972. width:100%;
  2973. }
  2974. #u22818_text {
  2975. border-width:0px;
  2976. word-wrap:break-word;
  2977. text-transform:none;
  2978. visibility:hidden;
  2979. }
  2980. #u22819_img {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:0px;
  2984. top:0px;
  2985. width:196px;
  2986. height:38px;
  2987. }
  2988. #u22819 {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:822px;
  2992. top:151px;
  2993. width:196px;
  2994. height:38px;
  2995. display:flex;
  2996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2997. font-weight:400;
  2998. font-style:normal;
  2999. font-size:12px;
  3000. }
  3001. #u22819 .text {
  3002. position:absolute;
  3003. align-self:center;
  3004. padding:2px 2px 2px 0px;
  3005. box-sizing:border-box;
  3006. width:100%;
  3007. }
  3008. #u22819_text {
  3009. border-width:0px;
  3010. word-wrap:break-word;
  3011. text-transform:none;
  3012. visibility:hidden;
  3013. }
  3014. #u22820_img {
  3015. border-width:0px;
  3016. position:absolute;
  3017. left:0px;
  3018. top:0px;
  3019. width:204px;
  3020. height:38px;
  3021. }
  3022. #u22820 {
  3023. border-width:0px;
  3024. position:absolute;
  3025. left:1018px;
  3026. top:151px;
  3027. width:204px;
  3028. height:38px;
  3029. display:flex;
  3030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3031. font-weight:400;
  3032. font-style:normal;
  3033. font-size:12px;
  3034. color:#1890FF;
  3035. }
  3036. #u22820 .text {
  3037. position:absolute;
  3038. align-self:center;
  3039. padding:2px 2px 2px 0px;
  3040. box-sizing:border-box;
  3041. width:100%;
  3042. }
  3043. #u22820_text {
  3044. border-width:0px;
  3045. word-wrap:break-word;
  3046. text-transform:none;
  3047. visibility:hidden;
  3048. }
  3049. #u22821_img {
  3050. border-width:0px;
  3051. position:absolute;
  3052. left:0px;
  3053. top:0px;
  3054. width:59px;
  3055. height:35px;
  3056. }
  3057. #u22821 {
  3058. border-width:0px;
  3059. position:absolute;
  3060. left:0px;
  3061. top:189px;
  3062. width:59px;
  3063. height:35px;
  3064. display:flex;
  3065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3066. font-weight:400;
  3067. font-style:normal;
  3068. font-size:12px;
  3069. color:#606266;
  3070. }
  3071. #u22821 .text {
  3072. position:absolute;
  3073. align-self:center;
  3074. padding:2px 2px 2px 0px;
  3075. box-sizing:border-box;
  3076. width:100%;
  3077. }
  3078. #u22821_text {
  3079. border-width:0px;
  3080. word-wrap:break-word;
  3081. text-transform:none;
  3082. visibility:hidden;
  3083. }
  3084. #u22822_img {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:0px;
  3088. top:0px;
  3089. width:196px;
  3090. height:35px;
  3091. }
  3092. #u22822 {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:59px;
  3096. top:189px;
  3097. width:196px;
  3098. height:35px;
  3099. display:flex;
  3100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3101. font-weight:400;
  3102. font-style:normal;
  3103. font-size:12px;
  3104. color:#606266;
  3105. }
  3106. #u22822 .text {
  3107. position:absolute;
  3108. align-self:center;
  3109. padding:2px 2px 2px 0px;
  3110. box-sizing:border-box;
  3111. width:100%;
  3112. }
  3113. #u22822_text {
  3114. border-width:0px;
  3115. word-wrap:break-word;
  3116. text-transform:none;
  3117. visibility:hidden;
  3118. }
  3119. #u22823_img {
  3120. border-width:0px;
  3121. position:absolute;
  3122. left:0px;
  3123. top:0px;
  3124. width:196px;
  3125. height:35px;
  3126. }
  3127. #u22823 {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:255px;
  3131. top:189px;
  3132. width:196px;
  3133. height:35px;
  3134. display:flex;
  3135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3136. font-weight:400;
  3137. font-style:normal;
  3138. font-size:12px;
  3139. color:#606266;
  3140. }
  3141. #u22823 .text {
  3142. position:absolute;
  3143. align-self:center;
  3144. padding:2px 2px 2px 0px;
  3145. box-sizing:border-box;
  3146. width:100%;
  3147. }
  3148. #u22823_text {
  3149. border-width:0px;
  3150. word-wrap:break-word;
  3151. text-transform:none;
  3152. visibility:hidden;
  3153. }
  3154. #u22824_img {
  3155. border-width:0px;
  3156. position:absolute;
  3157. left:0px;
  3158. top:0px;
  3159. width:196px;
  3160. height:35px;
  3161. }
  3162. #u22824 {
  3163. border-width:0px;
  3164. position:absolute;
  3165. left:451px;
  3166. top:189px;
  3167. width:196px;
  3168. height:35px;
  3169. display:flex;
  3170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3171. font-weight:400;
  3172. font-style:normal;
  3173. font-size:12px;
  3174. }
  3175. #u22824 .text {
  3176. position:absolute;
  3177. align-self:center;
  3178. padding:2px 2px 2px 0px;
  3179. box-sizing:border-box;
  3180. width:100%;
  3181. }
  3182. #u22824_text {
  3183. border-width:0px;
  3184. word-wrap:break-word;
  3185. text-transform:none;
  3186. visibility:hidden;
  3187. }
  3188. #u22825_img {
  3189. border-width:0px;
  3190. position:absolute;
  3191. left:0px;
  3192. top:0px;
  3193. width:175px;
  3194. height:35px;
  3195. }
  3196. #u22825 {
  3197. border-width:0px;
  3198. position:absolute;
  3199. left:647px;
  3200. top:189px;
  3201. width:175px;
  3202. height:35px;
  3203. display:flex;
  3204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3205. font-weight:400;
  3206. font-style:normal;
  3207. font-size:12px;
  3208. }
  3209. #u22825 .text {
  3210. position:absolute;
  3211. align-self:center;
  3212. padding:2px 2px 2px 0px;
  3213. box-sizing:border-box;
  3214. width:100%;
  3215. }
  3216. #u22825_text {
  3217. border-width:0px;
  3218. word-wrap:break-word;
  3219. text-transform:none;
  3220. visibility:hidden;
  3221. }
  3222. #u22826_img {
  3223. border-width:0px;
  3224. position:absolute;
  3225. left:0px;
  3226. top:0px;
  3227. width:196px;
  3228. height:35px;
  3229. }
  3230. #u22826 {
  3231. border-width:0px;
  3232. position:absolute;
  3233. left:822px;
  3234. top:189px;
  3235. width:196px;
  3236. height:35px;
  3237. display:flex;
  3238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3239. font-weight:400;
  3240. font-style:normal;
  3241. font-size:12px;
  3242. color:#606266;
  3243. }
  3244. #u22826 .text {
  3245. position:absolute;
  3246. align-self:center;
  3247. padding:2px 2px 2px 0px;
  3248. box-sizing:border-box;
  3249. width:100%;
  3250. }
  3251. #u22826_text {
  3252. border-width:0px;
  3253. word-wrap:break-word;
  3254. text-transform:none;
  3255. visibility:hidden;
  3256. }
  3257. #u22827_img {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:0px;
  3261. top:0px;
  3262. width:204px;
  3263. height:35px;
  3264. }
  3265. #u22827 {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:1018px;
  3269. top:189px;
  3270. width:204px;
  3271. height:35px;
  3272. display:flex;
  3273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3274. font-weight:400;
  3275. font-style:normal;
  3276. font-size:12px;
  3277. color:#02A7F0;
  3278. }
  3279. #u22827 .text {
  3280. position:absolute;
  3281. align-self:center;
  3282. padding:2px 2px 2px 0px;
  3283. box-sizing:border-box;
  3284. width:100%;
  3285. }
  3286. #u22827_text {
  3287. border-width:0px;
  3288. word-wrap:break-word;
  3289. text-transform:none;
  3290. visibility:hidden;
  3291. }
  3292. #u22828_img {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:0px;
  3296. top:0px;
  3297. width:59px;
  3298. height:35px;
  3299. }
  3300. #u22828 {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:0px;
  3304. top:224px;
  3305. width:59px;
  3306. height:35px;
  3307. display:flex;
  3308. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3309. font-weight:400;
  3310. font-style:normal;
  3311. font-size:12px;
  3312. color:#606266;
  3313. }
  3314. #u22828 .text {
  3315. position:absolute;
  3316. align-self:center;
  3317. padding:2px 2px 2px 0px;
  3318. box-sizing:border-box;
  3319. width:100%;
  3320. }
  3321. #u22828_text {
  3322. border-width:0px;
  3323. word-wrap:break-word;
  3324. text-transform:none;
  3325. visibility:hidden;
  3326. }
  3327. #u22829_img {
  3328. border-width:0px;
  3329. position:absolute;
  3330. left:0px;
  3331. top:0px;
  3332. width:196px;
  3333. height:35px;
  3334. }
  3335. #u22829 {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:59px;
  3339. top:224px;
  3340. width:196px;
  3341. height:35px;
  3342. display:flex;
  3343. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3344. font-weight:400;
  3345. font-style:normal;
  3346. font-size:12px;
  3347. color:#606266;
  3348. }
  3349. #u22829 .text {
  3350. position:absolute;
  3351. align-self:center;
  3352. padding:2px 2px 2px 0px;
  3353. box-sizing:border-box;
  3354. width:100%;
  3355. }
  3356. #u22829_text {
  3357. border-width:0px;
  3358. word-wrap:break-word;
  3359. text-transform:none;
  3360. visibility:hidden;
  3361. }
  3362. #u22830_img {
  3363. border-width:0px;
  3364. position:absolute;
  3365. left:0px;
  3366. top:0px;
  3367. width:196px;
  3368. height:35px;
  3369. }
  3370. #u22830 {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:255px;
  3374. top:224px;
  3375. width:196px;
  3376. height:35px;
  3377. display:flex;
  3378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3379. font-weight:400;
  3380. font-style:normal;
  3381. font-size:12px;
  3382. color:#606266;
  3383. }
  3384. #u22830 .text {
  3385. position:absolute;
  3386. align-self:center;
  3387. padding:2px 2px 2px 0px;
  3388. box-sizing:border-box;
  3389. width:100%;
  3390. }
  3391. #u22830_text {
  3392. border-width:0px;
  3393. word-wrap:break-word;
  3394. text-transform:none;
  3395. visibility:hidden;
  3396. }
  3397. #u22831_img {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:0px;
  3401. top:0px;
  3402. width:196px;
  3403. height:35px;
  3404. }
  3405. #u22831 {
  3406. border-width:0px;
  3407. position:absolute;
  3408. left:451px;
  3409. top:224px;
  3410. width:196px;
  3411. height:35px;
  3412. display:flex;
  3413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3414. font-weight:400;
  3415. font-style:normal;
  3416. font-size:12px;
  3417. }
  3418. #u22831 .text {
  3419. position:absolute;
  3420. align-self:center;
  3421. padding:2px 2px 2px 0px;
  3422. box-sizing:border-box;
  3423. width:100%;
  3424. }
  3425. #u22831_text {
  3426. border-width:0px;
  3427. word-wrap:break-word;
  3428. text-transform:none;
  3429. visibility:hidden;
  3430. }
  3431. #u22832_img {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:0px;
  3435. top:0px;
  3436. width:175px;
  3437. height:35px;
  3438. }
  3439. #u22832 {
  3440. border-width:0px;
  3441. position:absolute;
  3442. left:647px;
  3443. top:224px;
  3444. width:175px;
  3445. height:35px;
  3446. display:flex;
  3447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3448. font-weight:400;
  3449. font-style:normal;
  3450. font-size:12px;
  3451. }
  3452. #u22832 .text {
  3453. position:absolute;
  3454. align-self:center;
  3455. padding:2px 2px 2px 0px;
  3456. box-sizing:border-box;
  3457. width:100%;
  3458. }
  3459. #u22832_text {
  3460. border-width:0px;
  3461. word-wrap:break-word;
  3462. text-transform:none;
  3463. visibility:hidden;
  3464. }
  3465. #u22833_img {
  3466. border-width:0px;
  3467. position:absolute;
  3468. left:0px;
  3469. top:0px;
  3470. width:196px;
  3471. height:35px;
  3472. }
  3473. #u22833 {
  3474. border-width:0px;
  3475. position:absolute;
  3476. left:822px;
  3477. top:224px;
  3478. width:196px;
  3479. height:35px;
  3480. display:flex;
  3481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3482. font-weight:400;
  3483. font-style:normal;
  3484. font-size:12px;
  3485. color:#606266;
  3486. }
  3487. #u22833 .text {
  3488. position:absolute;
  3489. align-self:center;
  3490. padding:2px 2px 2px 0px;
  3491. box-sizing:border-box;
  3492. width:100%;
  3493. }
  3494. #u22833_text {
  3495. border-width:0px;
  3496. word-wrap:break-word;
  3497. text-transform:none;
  3498. visibility:hidden;
  3499. }
  3500. #u22834_img {
  3501. border-width:0px;
  3502. position:absolute;
  3503. left:0px;
  3504. top:0px;
  3505. width:204px;
  3506. height:35px;
  3507. }
  3508. #u22834 {
  3509. border-width:0px;
  3510. position:absolute;
  3511. left:1018px;
  3512. top:224px;
  3513. width:204px;
  3514. height:35px;
  3515. display:flex;
  3516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3517. font-weight:400;
  3518. font-style:normal;
  3519. font-size:12px;
  3520. color:#02A7F0;
  3521. }
  3522. #u22834 .text {
  3523. position:absolute;
  3524. align-self:center;
  3525. padding:2px 2px 2px 0px;
  3526. box-sizing:border-box;
  3527. width:100%;
  3528. }
  3529. #u22834_text {
  3530. border-width:0px;
  3531. word-wrap:break-word;
  3532. text-transform:none;
  3533. visibility:hidden;
  3534. }
  3535. #u22835_img {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:0px;
  3539. top:0px;
  3540. width:59px;
  3541. height:35px;
  3542. }
  3543. #u22835 {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:0px;
  3547. top:259px;
  3548. width:59px;
  3549. height:35px;
  3550. display:flex;
  3551. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3552. font-weight:400;
  3553. font-style:normal;
  3554. font-size:12px;
  3555. color:#606266;
  3556. }
  3557. #u22835 .text {
  3558. position:absolute;
  3559. align-self:center;
  3560. padding:2px 2px 2px 0px;
  3561. box-sizing:border-box;
  3562. width:100%;
  3563. }
  3564. #u22835_text {
  3565. border-width:0px;
  3566. word-wrap:break-word;
  3567. text-transform:none;
  3568. visibility:hidden;
  3569. }
  3570. #u22836_img {
  3571. border-width:0px;
  3572. position:absolute;
  3573. left:0px;
  3574. top:0px;
  3575. width:196px;
  3576. height:35px;
  3577. }
  3578. #u22836 {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:59px;
  3582. top:259px;
  3583. width:196px;
  3584. height:35px;
  3585. display:flex;
  3586. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3587. font-weight:400;
  3588. font-style:normal;
  3589. font-size:12px;
  3590. color:#606266;
  3591. }
  3592. #u22836 .text {
  3593. position:absolute;
  3594. align-self:center;
  3595. padding:2px 2px 2px 0px;
  3596. box-sizing:border-box;
  3597. width:100%;
  3598. }
  3599. #u22836_text {
  3600. border-width:0px;
  3601. word-wrap:break-word;
  3602. text-transform:none;
  3603. visibility:hidden;
  3604. }
  3605. #u22837_img {
  3606. border-width:0px;
  3607. position:absolute;
  3608. left:0px;
  3609. top:0px;
  3610. width:196px;
  3611. height:35px;
  3612. }
  3613. #u22837 {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:255px;
  3617. top:259px;
  3618. width:196px;
  3619. height:35px;
  3620. display:flex;
  3621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3622. font-weight:400;
  3623. font-style:normal;
  3624. font-size:12px;
  3625. color:#606266;
  3626. }
  3627. #u22837 .text {
  3628. position:absolute;
  3629. align-self:center;
  3630. padding:2px 2px 2px 0px;
  3631. box-sizing:border-box;
  3632. width:100%;
  3633. }
  3634. #u22837_text {
  3635. border-width:0px;
  3636. word-wrap:break-word;
  3637. text-transform:none;
  3638. visibility:hidden;
  3639. }
  3640. #u22838_img {
  3641. border-width:0px;
  3642. position:absolute;
  3643. left:0px;
  3644. top:0px;
  3645. width:196px;
  3646. height:35px;
  3647. }
  3648. #u22838 {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:451px;
  3652. top:259px;
  3653. width:196px;
  3654. height:35px;
  3655. display:flex;
  3656. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3657. font-weight:400;
  3658. font-style:normal;
  3659. font-size:12px;
  3660. color:#606266;
  3661. }
  3662. #u22838 .text {
  3663. position:absolute;
  3664. align-self:center;
  3665. padding:2px 2px 2px 0px;
  3666. box-sizing:border-box;
  3667. width:100%;
  3668. }
  3669. #u22838_text {
  3670. border-width:0px;
  3671. word-wrap:break-word;
  3672. text-transform:none;
  3673. visibility:hidden;
  3674. }
  3675. #u22839_img {
  3676. border-width:0px;
  3677. position:absolute;
  3678. left:0px;
  3679. top:0px;
  3680. width:175px;
  3681. height:35px;
  3682. }
  3683. #u22839 {
  3684. border-width:0px;
  3685. position:absolute;
  3686. left:647px;
  3687. top:259px;
  3688. width:175px;
  3689. height:35px;
  3690. display:flex;
  3691. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3692. font-weight:400;
  3693. font-style:normal;
  3694. font-size:12px;
  3695. color:#606266;
  3696. }
  3697. #u22839 .text {
  3698. position:absolute;
  3699. align-self:center;
  3700. padding:2px 2px 2px 0px;
  3701. box-sizing:border-box;
  3702. width:100%;
  3703. }
  3704. #u22839_text {
  3705. border-width:0px;
  3706. word-wrap:break-word;
  3707. text-transform:none;
  3708. visibility:hidden;
  3709. }
  3710. #u22840_img {
  3711. border-width:0px;
  3712. position:absolute;
  3713. left:0px;
  3714. top:0px;
  3715. width:196px;
  3716. height:35px;
  3717. }
  3718. #u22840 {
  3719. border-width:0px;
  3720. position:absolute;
  3721. left:822px;
  3722. top:259px;
  3723. width:196px;
  3724. height:35px;
  3725. display:flex;
  3726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3727. font-weight:400;
  3728. font-style:normal;
  3729. font-size:12px;
  3730. color:#606266;
  3731. }
  3732. #u22840 .text {
  3733. position:absolute;
  3734. align-self:center;
  3735. padding:2px 2px 2px 0px;
  3736. box-sizing:border-box;
  3737. width:100%;
  3738. }
  3739. #u22840_text {
  3740. border-width:0px;
  3741. word-wrap:break-word;
  3742. text-transform:none;
  3743. visibility:hidden;
  3744. }
  3745. #u22841_img {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:0px;
  3749. top:0px;
  3750. width:204px;
  3751. height:35px;
  3752. }
  3753. #u22841 {
  3754. border-width:0px;
  3755. position:absolute;
  3756. left:1018px;
  3757. top:259px;
  3758. width:204px;
  3759. height:35px;
  3760. display:flex;
  3761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3762. font-weight:400;
  3763. font-style:normal;
  3764. font-size:12px;
  3765. color:#02A7F0;
  3766. }
  3767. #u22841 .text {
  3768. position:absolute;
  3769. align-self:center;
  3770. padding:2px 2px 2px 0px;
  3771. box-sizing:border-box;
  3772. width:100%;
  3773. }
  3774. #u22841_text {
  3775. border-width:0px;
  3776. word-wrap:break-word;
  3777. text-transform:none;
  3778. visibility:hidden;
  3779. }
  3780. #u22842_img {
  3781. border-width:0px;
  3782. position:absolute;
  3783. left:0px;
  3784. top:0px;
  3785. width:59px;
  3786. height:35px;
  3787. }
  3788. #u22842 {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:0px;
  3792. top:294px;
  3793. width:59px;
  3794. height:35px;
  3795. display:flex;
  3796. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3797. font-weight:400;
  3798. font-style:normal;
  3799. font-size:12px;
  3800. color:#606266;
  3801. }
  3802. #u22842 .text {
  3803. position:absolute;
  3804. align-self:center;
  3805. padding:2px 2px 2px 0px;
  3806. box-sizing:border-box;
  3807. width:100%;
  3808. }
  3809. #u22842_text {
  3810. border-width:0px;
  3811. word-wrap:break-word;
  3812. text-transform:none;
  3813. visibility:hidden;
  3814. }
  3815. #u22843_img {
  3816. border-width:0px;
  3817. position:absolute;
  3818. left:0px;
  3819. top:0px;
  3820. width:196px;
  3821. height:35px;
  3822. }
  3823. #u22843 {
  3824. border-width:0px;
  3825. position:absolute;
  3826. left:59px;
  3827. top:294px;
  3828. width:196px;
  3829. height:35px;
  3830. display:flex;
  3831. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3832. font-weight:400;
  3833. font-style:normal;
  3834. font-size:12px;
  3835. color:#606266;
  3836. }
  3837. #u22843 .text {
  3838. position:absolute;
  3839. align-self:center;
  3840. padding:2px 2px 2px 0px;
  3841. box-sizing:border-box;
  3842. width:100%;
  3843. }
  3844. #u22843_text {
  3845. border-width:0px;
  3846. word-wrap:break-word;
  3847. text-transform:none;
  3848. visibility:hidden;
  3849. }
  3850. #u22844_img {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:0px;
  3854. top:0px;
  3855. width:196px;
  3856. height:35px;
  3857. }
  3858. #u22844 {
  3859. border-width:0px;
  3860. position:absolute;
  3861. left:255px;
  3862. top:294px;
  3863. width:196px;
  3864. height:35px;
  3865. display:flex;
  3866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3867. font-weight:400;
  3868. font-style:normal;
  3869. font-size:12px;
  3870. color:#606266;
  3871. }
  3872. #u22844 .text {
  3873. position:absolute;
  3874. align-self:center;
  3875. padding:2px 2px 2px 0px;
  3876. box-sizing:border-box;
  3877. width:100%;
  3878. }
  3879. #u22844_text {
  3880. border-width:0px;
  3881. word-wrap:break-word;
  3882. text-transform:none;
  3883. visibility:hidden;
  3884. }
  3885. #u22845_img {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:0px;
  3889. top:0px;
  3890. width:196px;
  3891. height:35px;
  3892. }
  3893. #u22845 {
  3894. border-width:0px;
  3895. position:absolute;
  3896. left:451px;
  3897. top:294px;
  3898. width:196px;
  3899. height:35px;
  3900. display:flex;
  3901. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3902. font-weight:400;
  3903. font-style:normal;
  3904. font-size:12px;
  3905. color:#606266;
  3906. }
  3907. #u22845 .text {
  3908. position:absolute;
  3909. align-self:center;
  3910. padding:2px 2px 2px 0px;
  3911. box-sizing:border-box;
  3912. width:100%;
  3913. }
  3914. #u22845_text {
  3915. border-width:0px;
  3916. word-wrap:break-word;
  3917. text-transform:none;
  3918. visibility:hidden;
  3919. }
  3920. #u22846_img {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:0px;
  3924. top:0px;
  3925. width:175px;
  3926. height:35px;
  3927. }
  3928. #u22846 {
  3929. border-width:0px;
  3930. position:absolute;
  3931. left:647px;
  3932. top:294px;
  3933. width:175px;
  3934. height:35px;
  3935. display:flex;
  3936. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3937. font-weight:400;
  3938. font-style:normal;
  3939. font-size:12px;
  3940. color:#606266;
  3941. }
  3942. #u22846 .text {
  3943. position:absolute;
  3944. align-self:center;
  3945. padding:2px 2px 2px 0px;
  3946. box-sizing:border-box;
  3947. width:100%;
  3948. }
  3949. #u22846_text {
  3950. border-width:0px;
  3951. word-wrap:break-word;
  3952. text-transform:none;
  3953. visibility:hidden;
  3954. }
  3955. #u22847_img {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:0px;
  3959. top:0px;
  3960. width:196px;
  3961. height:35px;
  3962. }
  3963. #u22847 {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:822px;
  3967. top:294px;
  3968. width:196px;
  3969. height:35px;
  3970. display:flex;
  3971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3972. font-weight:400;
  3973. font-style:normal;
  3974. font-size:12px;
  3975. color:#606266;
  3976. }
  3977. #u22847 .text {
  3978. position:absolute;
  3979. align-self:center;
  3980. padding:2px 2px 2px 0px;
  3981. box-sizing:border-box;
  3982. width:100%;
  3983. }
  3984. #u22847_text {
  3985. border-width:0px;
  3986. word-wrap:break-word;
  3987. text-transform:none;
  3988. visibility:hidden;
  3989. }
  3990. #u22848_img {
  3991. border-width:0px;
  3992. position:absolute;
  3993. left:0px;
  3994. top:0px;
  3995. width:204px;
  3996. height:35px;
  3997. }
  3998. #u22848 {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:1018px;
  4002. top:294px;
  4003. width:204px;
  4004. height:35px;
  4005. display:flex;
  4006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4007. font-weight:400;
  4008. font-style:normal;
  4009. font-size:12px;
  4010. color:#02A7F0;
  4011. }
  4012. #u22848 .text {
  4013. position:absolute;
  4014. align-self:center;
  4015. padding:2px 2px 2px 0px;
  4016. box-sizing:border-box;
  4017. width:100%;
  4018. }
  4019. #u22848_text {
  4020. border-width:0px;
  4021. word-wrap:break-word;
  4022. text-transform:none;
  4023. visibility:hidden;
  4024. }
  4025. #u22849_img {
  4026. border-width:0px;
  4027. position:absolute;
  4028. left:0px;
  4029. top:0px;
  4030. width:59px;
  4031. height:35px;
  4032. }
  4033. #u22849 {
  4034. border-width:0px;
  4035. position:absolute;
  4036. left:0px;
  4037. top:329px;
  4038. width:59px;
  4039. height:35px;
  4040. display:flex;
  4041. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4042. font-weight:400;
  4043. font-style:normal;
  4044. font-size:12px;
  4045. color:#606266;
  4046. }
  4047. #u22849 .text {
  4048. position:absolute;
  4049. align-self:center;
  4050. padding:2px 2px 2px 0px;
  4051. box-sizing:border-box;
  4052. width:100%;
  4053. }
  4054. #u22849_text {
  4055. border-width:0px;
  4056. word-wrap:break-word;
  4057. text-transform:none;
  4058. visibility:hidden;
  4059. }
  4060. #u22850_img {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:0px;
  4064. top:0px;
  4065. width:196px;
  4066. height:35px;
  4067. }
  4068. #u22850 {
  4069. border-width:0px;
  4070. position:absolute;
  4071. left:59px;
  4072. top:329px;
  4073. width:196px;
  4074. height:35px;
  4075. display:flex;
  4076. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4077. font-weight:400;
  4078. font-style:normal;
  4079. font-size:12px;
  4080. color:#606266;
  4081. }
  4082. #u22850 .text {
  4083. position:absolute;
  4084. align-self:center;
  4085. padding:2px 2px 2px 0px;
  4086. box-sizing:border-box;
  4087. width:100%;
  4088. }
  4089. #u22850_text {
  4090. border-width:0px;
  4091. word-wrap:break-word;
  4092. text-transform:none;
  4093. visibility:hidden;
  4094. }
  4095. #u22851_img {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:0px;
  4099. top:0px;
  4100. width:196px;
  4101. height:35px;
  4102. }
  4103. #u22851 {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:255px;
  4107. top:329px;
  4108. width:196px;
  4109. height:35px;
  4110. display:flex;
  4111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4112. font-weight:400;
  4113. font-style:normal;
  4114. font-size:12px;
  4115. color:#606266;
  4116. }
  4117. #u22851 .text {
  4118. position:absolute;
  4119. align-self:center;
  4120. padding:2px 2px 2px 0px;
  4121. box-sizing:border-box;
  4122. width:100%;
  4123. }
  4124. #u22851_text {
  4125. border-width:0px;
  4126. word-wrap:break-word;
  4127. text-transform:none;
  4128. visibility:hidden;
  4129. }
  4130. #u22852_img {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:0px;
  4134. top:0px;
  4135. width:196px;
  4136. height:35px;
  4137. }
  4138. #u22852 {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:451px;
  4142. top:329px;
  4143. width:196px;
  4144. height:35px;
  4145. display:flex;
  4146. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4147. font-weight:400;
  4148. font-style:normal;
  4149. font-size:12px;
  4150. color:#606266;
  4151. }
  4152. #u22852 .text {
  4153. position:absolute;
  4154. align-self:center;
  4155. padding:2px 2px 2px 0px;
  4156. box-sizing:border-box;
  4157. width:100%;
  4158. }
  4159. #u22852_text {
  4160. border-width:0px;
  4161. word-wrap:break-word;
  4162. text-transform:none;
  4163. visibility:hidden;
  4164. }
  4165. #u22853_img {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:0px;
  4169. top:0px;
  4170. width:175px;
  4171. height:35px;
  4172. }
  4173. #u22853 {
  4174. border-width:0px;
  4175. position:absolute;
  4176. left:647px;
  4177. top:329px;
  4178. width:175px;
  4179. height:35px;
  4180. display:flex;
  4181. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4182. font-weight:400;
  4183. font-style:normal;
  4184. font-size:12px;
  4185. color:#606266;
  4186. }
  4187. #u22853 .text {
  4188. position:absolute;
  4189. align-self:center;
  4190. padding:2px 2px 2px 0px;
  4191. box-sizing:border-box;
  4192. width:100%;
  4193. }
  4194. #u22853_text {
  4195. border-width:0px;
  4196. word-wrap:break-word;
  4197. text-transform:none;
  4198. visibility:hidden;
  4199. }
  4200. #u22854_img {
  4201. border-width:0px;
  4202. position:absolute;
  4203. left:0px;
  4204. top:0px;
  4205. width:196px;
  4206. height:35px;
  4207. }
  4208. #u22854 {
  4209. border-width:0px;
  4210. position:absolute;
  4211. left:822px;
  4212. top:329px;
  4213. width:196px;
  4214. height:35px;
  4215. display:flex;
  4216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4217. font-weight:400;
  4218. font-style:normal;
  4219. font-size:12px;
  4220. color:#606266;
  4221. }
  4222. #u22854 .text {
  4223. position:absolute;
  4224. align-self:center;
  4225. padding:2px 2px 2px 0px;
  4226. box-sizing:border-box;
  4227. width:100%;
  4228. }
  4229. #u22854_text {
  4230. border-width:0px;
  4231. word-wrap:break-word;
  4232. text-transform:none;
  4233. visibility:hidden;
  4234. }
  4235. #u22855_img {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:0px;
  4239. top:0px;
  4240. width:204px;
  4241. height:35px;
  4242. }
  4243. #u22855 {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:1018px;
  4247. top:329px;
  4248. width:204px;
  4249. height:35px;
  4250. display:flex;
  4251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4252. font-weight:400;
  4253. font-style:normal;
  4254. font-size:12px;
  4255. color:#02A7F0;
  4256. }
  4257. #u22855 .text {
  4258. position:absolute;
  4259. align-self:center;
  4260. padding:2px 2px 2px 0px;
  4261. box-sizing:border-box;
  4262. width:100%;
  4263. }
  4264. #u22855_text {
  4265. border-width:0px;
  4266. word-wrap:break-word;
  4267. text-transform:none;
  4268. visibility:hidden;
  4269. }
  4270. #u22856 {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:0px;
  4274. top:0px;
  4275. width:0px;
  4276. height:0px;
  4277. }
  4278. #u22857_div {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:0px;
  4282. top:0px;
  4283. width:140px;
  4284. height:30px;
  4285. background:inherit;
  4286. background-color:rgba(255, 255, 255, 1);
  4287. box-sizing:border-box;
  4288. border-width:1px;
  4289. border-style:solid;
  4290. border-color:rgba(201, 201, 201, 1);
  4291. border-radius:4px;
  4292. -moz-box-shadow:none;
  4293. -webkit-box-shadow:none;
  4294. box-shadow:none;
  4295. font-family:'Microsoft YaHei', sans-serif;
  4296. font-weight:400;
  4297. font-style:normal;
  4298. font-size:14px;
  4299. color:#CCCCCC;
  4300. text-align:left;
  4301. }
  4302. #u22857 {
  4303. border-width:0px;
  4304. position:absolute;
  4305. left:351px;
  4306. top:105px;
  4307. width:140px;
  4308. height:30px;
  4309. display:flex;
  4310. font-family:'Microsoft YaHei', sans-serif;
  4311. font-weight:400;
  4312. font-style:normal;
  4313. font-size:14px;
  4314. color:#CCCCCC;
  4315. text-align:left;
  4316. }
  4317. #u22857 .text {
  4318. position:absolute;
  4319. align-self:center;
  4320. padding:2px 8px 2px 8px;
  4321. box-sizing:border-box;
  4322. width:100%;
  4323. }
  4324. #u22857_text {
  4325. border-width:0px;
  4326. word-wrap:break-word;
  4327. text-transform:none;
  4328. visibility:hidden;
  4329. }
  4330. #u22858_input {
  4331. position:absolute;
  4332. left:0px;
  4333. top:0px;
  4334. width:127px;
  4335. height:25px;
  4336. padding:2px 2px 2px 2px;
  4337. font-family:'Microsoft YaHei', sans-serif;
  4338. font-weight:400;
  4339. font-style:normal;
  4340. font-size:10px;
  4341. letter-spacing:normal;
  4342. color:#000000;
  4343. vertical-align:none;
  4344. text-align:left;
  4345. text-transform:none;
  4346. background-color:transparent;
  4347. border-color:transparent;
  4348. }
  4349. #u22858_input.disabled {
  4350. position:absolute;
  4351. left:0px;
  4352. top:0px;
  4353. width:127px;
  4354. height:25px;
  4355. padding:2px 2px 2px 2px;
  4356. font-family:'Microsoft YaHei', sans-serif;
  4357. font-weight:400;
  4358. font-style:normal;
  4359. font-size:10px;
  4360. letter-spacing:normal;
  4361. color:#000000;
  4362. vertical-align:none;
  4363. text-align:left;
  4364. text-transform:none;
  4365. background-color:transparent;
  4366. border-color:transparent;
  4367. }
  4368. #u22858_div {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:0px;
  4372. top:0px;
  4373. width:127px;
  4374. height:25px;
  4375. background:inherit;
  4376. background-color:rgba(255, 255, 255, 1);
  4377. border:none;
  4378. border-radius:0px;
  4379. -moz-box-shadow:none;
  4380. -webkit-box-shadow:none;
  4381. box-shadow:none;
  4382. font-family:'Microsoft YaHei', sans-serif;
  4383. font-weight:400;
  4384. font-style:normal;
  4385. font-size:10px;
  4386. }
  4387. #u22858 {
  4388. border-width:0px;
  4389. position:absolute;
  4390. left:359px;
  4391. top:106px;
  4392. width:127px;
  4393. height:25px;
  4394. display:flex;
  4395. font-family:'Microsoft YaHei', sans-serif;
  4396. font-weight:400;
  4397. font-style:normal;
  4398. font-size:10px;
  4399. }
  4400. #u22858 .text {
  4401. position:absolute;
  4402. align-self:center;
  4403. padding:2px 2px 2px 2px;
  4404. box-sizing:border-box;
  4405. width:100%;
  4406. }
  4407. #u22858_div.disabled {
  4408. border-width:0px;
  4409. position:absolute;
  4410. left:0px;
  4411. top:0px;
  4412. width:127px;
  4413. height:25px;
  4414. background:inherit;
  4415. background-color:rgba(240, 240, 240, 1);
  4416. border:none;
  4417. border-radius:0px;
  4418. -moz-box-shadow:none;
  4419. -webkit-box-shadow:none;
  4420. box-shadow:none;
  4421. font-family:'Microsoft YaHei', sans-serif;
  4422. font-weight:400;
  4423. font-style:normal;
  4424. font-size:10px;
  4425. }
  4426. #u22858.disabled {
  4427. }
  4428. #u22859 {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:0px;
  4432. top:0px;
  4433. width:0px;
  4434. height:0px;
  4435. }
  4436. #u22860_div {
  4437. border-width:0px;
  4438. position:absolute;
  4439. left:0px;
  4440. top:0px;
  4441. width:140px;
  4442. height:30px;
  4443. background:inherit;
  4444. background-color:rgba(255, 255, 255, 1);
  4445. box-sizing:border-box;
  4446. border-width:1px;
  4447. border-style:solid;
  4448. border-color:rgba(215, 215, 215, 1);
  4449. border-radius:4px;
  4450. -moz-box-shadow:none;
  4451. -webkit-box-shadow:none;
  4452. box-shadow:none;
  4453. font-size:11px;
  4454. }
  4455. #u22860 {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:501px;
  4459. top:104px;
  4460. width:140px;
  4461. height:30px;
  4462. display:flex;
  4463. font-size:11px;
  4464. }
  4465. #u22860 .text {
  4466. position:absolute;
  4467. align-self:center;
  4468. padding:2px 2px 2px 2px;
  4469. box-sizing:border-box;
  4470. width:100%;
  4471. }
  4472. #u22860_text {
  4473. border-width:0px;
  4474. word-wrap:break-word;
  4475. text-transform:none;
  4476. visibility:hidden;
  4477. }
  4478. #u22861_input {
  4479. position:absolute;
  4480. left:0px;
  4481. top:0px;
  4482. width:126px;
  4483. height:23px;
  4484. padding:2px 2px 2px 2px;
  4485. font-family:'ArialMT', 'Arial', sans-serif;
  4486. font-weight:400;
  4487. font-style:normal;
  4488. font-size:11px;
  4489. letter-spacing:normal;
  4490. color:#AAAAAA;
  4491. vertical-align:none;
  4492. text-align:left;
  4493. text-transform:none;
  4494. background-color:transparent;
  4495. border-color:transparent;
  4496. }
  4497. #u22861_input.disabled {
  4498. position:absolute;
  4499. left:0px;
  4500. top:0px;
  4501. width:126px;
  4502. height:23px;
  4503. padding:2px 2px 2px 2px;
  4504. font-family:'ArialMT', 'Arial', sans-serif;
  4505. font-weight:400;
  4506. font-style:normal;
  4507. font-size:11px;
  4508. letter-spacing:normal;
  4509. color:#AAAAAA;
  4510. vertical-align:none;
  4511. text-align:left;
  4512. text-transform:none;
  4513. background-color:transparent;
  4514. border-color:transparent;
  4515. }
  4516. #u22861_div {
  4517. border-width:0px;
  4518. position:absolute;
  4519. left:0px;
  4520. top:0px;
  4521. width:126px;
  4522. height:23px;
  4523. background:inherit;
  4524. background-color:rgba(255, 255, 255, 1);
  4525. border:none;
  4526. border-radius:0px;
  4527. -moz-box-shadow:none;
  4528. -webkit-box-shadow:none;
  4529. box-shadow:none;
  4530. font-size:11px;
  4531. color:#AAAAAA;
  4532. }
  4533. #u22861 {
  4534. border-width:0px;
  4535. position:absolute;
  4536. left:508px;
  4537. top:106px;
  4538. width:126px;
  4539. height:23px;
  4540. display:flex;
  4541. font-size:11px;
  4542. color:#AAAAAA;
  4543. }
  4544. #u22861 .text {
  4545. position:absolute;
  4546. align-self:flex-start;
  4547. padding:2px 2px 2px 2px;
  4548. box-sizing:border-box;
  4549. width:100%;
  4550. }
  4551. #u22861_div.disabled {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:0px;
  4555. top:0px;
  4556. width:126px;
  4557. height:23px;
  4558. background:inherit;
  4559. background-color:rgba(240, 240, 240, 1);
  4560. border:none;
  4561. border-radius:0px;
  4562. -moz-box-shadow:none;
  4563. -webkit-box-shadow:none;
  4564. box-shadow:none;
  4565. font-size:11px;
  4566. color:#AAAAAA;
  4567. }
  4568. #u22861.disabled {
  4569. }
  4570. .u22861_input_option {
  4571. font-size:11px;
  4572. }
  4573. #u22862 {
  4574. border-width:0px;
  4575. position:absolute;
  4576. left:0px;
  4577. top:0px;
  4578. width:0px;
  4579. height:0px;
  4580. }
  4581. #u22863_div {
  4582. border-width:0px;
  4583. position:absolute;
  4584. left:0px;
  4585. top:0px;
  4586. width:140px;
  4587. height:30px;
  4588. background:inherit;
  4589. background-color:rgba(255, 255, 255, 1);
  4590. box-sizing:border-box;
  4591. border-width:1px;
  4592. border-style:solid;
  4593. border-color:rgba(215, 215, 215, 1);
  4594. border-radius:4px;
  4595. -moz-box-shadow:none;
  4596. -webkit-box-shadow:none;
  4597. box-shadow:none;
  4598. font-size:11px;
  4599. }
  4600. #u22863 {
  4601. border-width:0px;
  4602. position:absolute;
  4603. left:651px;
  4604. top:104px;
  4605. width:140px;
  4606. height:30px;
  4607. display:flex;
  4608. font-size:11px;
  4609. }
  4610. #u22863 .text {
  4611. position:absolute;
  4612. align-self:center;
  4613. padding:2px 2px 2px 2px;
  4614. box-sizing:border-box;
  4615. width:100%;
  4616. }
  4617. #u22863_text {
  4618. border-width:0px;
  4619. word-wrap:break-word;
  4620. text-transform:none;
  4621. visibility:hidden;
  4622. }
  4623. #u22864_input {
  4624. position:absolute;
  4625. left:0px;
  4626. top:0px;
  4627. width:126px;
  4628. height:23px;
  4629. padding:2px 2px 2px 2px;
  4630. font-family:'ArialMT', 'Arial', sans-serif;
  4631. font-weight:400;
  4632. font-style:normal;
  4633. font-size:11px;
  4634. letter-spacing:normal;
  4635. color:#AAAAAA;
  4636. vertical-align:none;
  4637. text-align:left;
  4638. text-transform:none;
  4639. background-color:transparent;
  4640. border-color:transparent;
  4641. }
  4642. #u22864_input.disabled {
  4643. position:absolute;
  4644. left:0px;
  4645. top:0px;
  4646. width:126px;
  4647. height:23px;
  4648. padding:2px 2px 2px 2px;
  4649. font-family:'ArialMT', 'Arial', sans-serif;
  4650. font-weight:400;
  4651. font-style:normal;
  4652. font-size:11px;
  4653. letter-spacing:normal;
  4654. color:#AAAAAA;
  4655. vertical-align:none;
  4656. text-align:left;
  4657. text-transform:none;
  4658. background-color:transparent;
  4659. border-color:transparent;
  4660. }
  4661. #u22864_div {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:0px;
  4665. top:0px;
  4666. width:126px;
  4667. height:23px;
  4668. background:inherit;
  4669. background-color:rgba(255, 255, 255, 1);
  4670. border:none;
  4671. border-radius:0px;
  4672. -moz-box-shadow:none;
  4673. -webkit-box-shadow:none;
  4674. box-shadow:none;
  4675. font-size:11px;
  4676. color:#AAAAAA;
  4677. }
  4678. #u22864 {
  4679. border-width:0px;
  4680. position:absolute;
  4681. left:658px;
  4682. top:106px;
  4683. width:126px;
  4684. height:23px;
  4685. display:flex;
  4686. font-size:11px;
  4687. color:#AAAAAA;
  4688. }
  4689. #u22864 .text {
  4690. position:absolute;
  4691. align-self:flex-start;
  4692. padding:2px 2px 2px 2px;
  4693. box-sizing:border-box;
  4694. width:100%;
  4695. }
  4696. #u22864_div.disabled {
  4697. border-width:0px;
  4698. position:absolute;
  4699. left:0px;
  4700. top:0px;
  4701. width:126px;
  4702. height:23px;
  4703. background:inherit;
  4704. background-color:rgba(240, 240, 240, 1);
  4705. border:none;
  4706. border-radius:0px;
  4707. -moz-box-shadow:none;
  4708. -webkit-box-shadow:none;
  4709. box-shadow:none;
  4710. font-size:11px;
  4711. color:#AAAAAA;
  4712. }
  4713. #u22864.disabled {
  4714. }
  4715. .u22864_input_option {
  4716. font-size:11px;
  4717. }
  4718. #u22865_div {
  4719. border-width:0px;
  4720. position:absolute;
  4721. left:0px;
  4722. top:0px;
  4723. width:59px;
  4724. height:30px;
  4725. background:inherit;
  4726. background-color:rgba(24, 144, 255, 1);
  4727. box-sizing:border-box;
  4728. border-width:1px;
  4729. border-style:solid;
  4730. border-color:rgba(0, 153, 255, 1);
  4731. border-radius:4px;
  4732. -moz-box-shadow:none;
  4733. -webkit-box-shadow:none;
  4734. box-shadow:none;
  4735. font-family:'Microsoft YaHei', sans-serif;
  4736. font-weight:400;
  4737. font-style:normal;
  4738. font-size:14px;
  4739. color:#FFFFFF;
  4740. }
  4741. #u22865 {
  4742. border-width:0px;
  4743. position:absolute;
  4744. left:801px;
  4745. top:103px;
  4746. width:59px;
  4747. height:30px;
  4748. display:flex;
  4749. font-family:'Microsoft YaHei', sans-serif;
  4750. font-weight:400;
  4751. font-style:normal;
  4752. font-size:14px;
  4753. color:#FFFFFF;
  4754. }
  4755. #u22865 .text {
  4756. position:absolute;
  4757. align-self:center;
  4758. padding:5px 15px 5px 15px;
  4759. box-sizing:border-box;
  4760. width:100%;
  4761. }
  4762. #u22865_text {
  4763. border-width:0px;
  4764. white-space:nowrap;
  4765. text-transform:none;
  4766. }
  4767. #u22866_div {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:0px;
  4771. top:0px;
  4772. width:55px;
  4773. height:30px;
  4774. background:inherit;
  4775. background-color:rgba(255, 255, 255, 1);
  4776. box-sizing:border-box;
  4777. border-width:1px;
  4778. border-style:solid;
  4779. border-color:rgba(170, 170, 170, 1);
  4780. border-radius:4px;
  4781. -moz-box-shadow:none;
  4782. -webkit-box-shadow:none;
  4783. box-shadow:none;
  4784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4785. font-weight:400;
  4786. font-style:normal;
  4787. font-size:12px;
  4788. color:#555555;
  4789. }
  4790. #u22866 {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:870px;
  4794. top:103px;
  4795. width:55px;
  4796. height:30px;
  4797. display:flex;
  4798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4799. font-weight:400;
  4800. font-style:normal;
  4801. font-size:12px;
  4802. color:#555555;
  4803. }
  4804. #u22866 .text {
  4805. position:absolute;
  4806. align-self:center;
  4807. padding:5px 15px 5px 15px;
  4808. box-sizing:border-box;
  4809. width:100%;
  4810. }
  4811. #u22866_text {
  4812. border-width:0px;
  4813. white-space:nowrap;
  4814. text-transform:none;
  4815. }
  4816. #u22867_div {
  4817. border-width:0px;
  4818. position:absolute;
  4819. left:0px;
  4820. top:0px;
  4821. width:55px;
  4822. height:30px;
  4823. background:inherit;
  4824. background-color:rgba(255, 255, 255, 1);
  4825. box-sizing:border-box;
  4826. border-width:1px;
  4827. border-style:solid;
  4828. border-color:rgba(170, 170, 170, 1);
  4829. border-radius:4px;
  4830. -moz-box-shadow:none;
  4831. -webkit-box-shadow:none;
  4832. box-shadow:none;
  4833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4834. font-weight:400;
  4835. font-style:normal;
  4836. font-size:12px;
  4837. color:#555555;
  4838. }
  4839. #u22867 {
  4840. border-width:0px;
  4841. position:absolute;
  4842. left:428px;
  4843. top:154px;
  4844. width:55px;
  4845. height:30px;
  4846. display:flex;
  4847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4848. font-weight:400;
  4849. font-style:normal;
  4850. font-size:12px;
  4851. color:#555555;
  4852. }
  4853. #u22867 .text {
  4854. position:absolute;
  4855. align-self:center;
  4856. padding:5px 15px 5px 15px;
  4857. box-sizing:border-box;
  4858. width:100%;
  4859. }
  4860. #u22867_text {
  4861. border-width:0px;
  4862. white-space:nowrap;
  4863. text-transform:none;
  4864. }
  4865. #u22868_div {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:0px;
  4869. top:0px;
  4870. width:55px;
  4871. height:30px;
  4872. background:inherit;
  4873. background-color:rgba(255, 255, 255, 1);
  4874. box-sizing:border-box;
  4875. border-width:1px;
  4876. border-style:solid;
  4877. border-color:rgba(170, 170, 170, 1);
  4878. border-radius:4px;
  4879. -moz-box-shadow:none;
  4880. -webkit-box-shadow:none;
  4881. box-shadow:none;
  4882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4883. font-weight:400;
  4884. font-style:normal;
  4885. font-size:12px;
  4886. color:#555555;
  4887. }
  4888. #u22868 {
  4889. border-width:0px;
  4890. position:absolute;
  4891. left:493px;
  4892. top:154px;
  4893. width:55px;
  4894. height:30px;
  4895. display:flex;
  4896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4897. font-weight:400;
  4898. font-style:normal;
  4899. font-size:12px;
  4900. color:#555555;
  4901. }
  4902. #u22868 .text {
  4903. position:absolute;
  4904. align-self:center;
  4905. padding:5px 15px 5px 15px;
  4906. box-sizing:border-box;
  4907. width:100%;
  4908. }
  4909. #u22868_text {
  4910. border-width:0px;
  4911. white-space:nowrap;
  4912. text-transform:none;
  4913. }
  4914. #u22869 {
  4915. border-width:0px;
  4916. position:absolute;
  4917. left:0px;
  4918. top:0px;
  4919. width:0px;
  4920. height:0px;
  4921. }
  4922. #u22870_div {
  4923. border-width:0px;
  4924. position:absolute;
  4925. left:0px;
  4926. top:0px;
  4927. width:680px;
  4928. height:427px;
  4929. background:inherit;
  4930. background-color:rgba(255, 255, 255, 1);
  4931. box-sizing:border-box;
  4932. border-width:1px;
  4933. border-style:solid;
  4934. border-color:rgba(215, 215, 215, 1);
  4935. border-radius:0px;
  4936. -moz-box-shadow:none;
  4937. -webkit-box-shadow:none;
  4938. box-shadow:none;
  4939. }
  4940. #u22870 {
  4941. border-width:0px;
  4942. position:absolute;
  4943. left:546px;
  4944. top:506px;
  4945. width:680px;
  4946. height:427px;
  4947. display:flex;
  4948. }
  4949. #u22870 .text {
  4950. position:absolute;
  4951. align-self:center;
  4952. padding:2px 2px 2px 2px;
  4953. box-sizing:border-box;
  4954. width:100%;
  4955. }
  4956. #u22870_text {
  4957. border-width:0px;
  4958. word-wrap:break-word;
  4959. text-transform:none;
  4960. visibility:hidden;
  4961. }
  4962. #u22871_div {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:0px;
  4966. top:0px;
  4967. width:91px;
  4968. height:30px;
  4969. background:inherit;
  4970. background-color:rgba(255, 255, 255, 0);
  4971. border:none;
  4972. border-radius:0px;
  4973. -moz-box-shadow:none;
  4974. -webkit-box-shadow:none;
  4975. box-shadow:none;
  4976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4977. font-weight:400;
  4978. font-style:normal;
  4979. font-size:18px;
  4980. color:#000000;
  4981. line-height:30px;
  4982. }
  4983. #u22871 {
  4984. border-width:0px;
  4985. position:absolute;
  4986. left:566px;
  4987. top:526px;
  4988. width:91px;
  4989. height:30px;
  4990. display:flex;
  4991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4992. font-weight:400;
  4993. font-style:normal;
  4994. font-size:18px;
  4995. color:#000000;
  4996. line-height:30px;
  4997. }
  4998. #u22871 .text {
  4999. position:absolute;
  5000. align-self:flex-start;
  5001. padding:0px 0px 0px 0px;
  5002. box-sizing:border-box;
  5003. width:100%;
  5004. }
  5005. #u22871_text {
  5006. border-width:0px;
  5007. white-space:nowrap;
  5008. text-transform:none;
  5009. }
  5010. #u22872 {
  5011. border-width:0px;
  5012. position:absolute;
  5013. left:0px;
  5014. top:0px;
  5015. width:0px;
  5016. height:0px;
  5017. }
  5018. #u22873_div {
  5019. border-width:0px;
  5020. position:absolute;
  5021. left:0px;
  5022. top:0px;
  5023. width:680px;
  5024. height:60px;
  5025. background:inherit;
  5026. background-color:rgba(255, 255, 255, 1);
  5027. box-sizing:border-box;
  5028. border-width:1px;
  5029. border-style:solid;
  5030. border-color:rgba(215, 215, 215, 1);
  5031. border-radius:0px;
  5032. -moz-box-shadow:none;
  5033. -webkit-box-shadow:none;
  5034. box-shadow:none;
  5035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5036. font-weight:400;
  5037. font-style:normal;
  5038. font-size:14px;
  5039. color:#AAAAAA;
  5040. text-align:center;
  5041. line-height:30px;
  5042. }
  5043. #u22873 {
  5044. border-width:0px;
  5045. position:absolute;
  5046. left:546px;
  5047. top:873px;
  5048. width:680px;
  5049. height:60px;
  5050. display:flex;
  5051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5052. font-weight:400;
  5053. font-style:normal;
  5054. font-size:14px;
  5055. color:#AAAAAA;
  5056. text-align:center;
  5057. line-height:30px;
  5058. }
  5059. #u22873 .text {
  5060. position:absolute;
  5061. align-self:center;
  5062. padding:5px 10px 5px 10px;
  5063. box-sizing:border-box;
  5064. width:100%;
  5065. }
  5066. #u22873_text {
  5067. border-width:0px;
  5068. word-wrap:break-word;
  5069. text-transform:none;
  5070. visibility:hidden;
  5071. }
  5072. #u22874_div {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:0px;
  5076. top:0px;
  5077. width:80px;
  5078. height:30px;
  5079. background:inherit;
  5080. background-color:rgba(24, 144, 255, 1);
  5081. border:none;
  5082. border-radius:4px;
  5083. -moz-box-shadow:none;
  5084. -webkit-box-shadow:none;
  5085. box-shadow:none;
  5086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5087. font-weight:400;
  5088. font-style:normal;
  5089. font-size:14px;
  5090. color:#FFFFFF;
  5091. }
  5092. #u22874 {
  5093. border-width:0px;
  5094. position:absolute;
  5095. left:1101px;
  5096. top:888px;
  5097. width:80px;
  5098. height:30px;
  5099. display:flex;
  5100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5101. font-weight:400;
  5102. font-style:normal;
  5103. font-size:14px;
  5104. color:#FFFFFF;
  5105. }
  5106. #u22874 .text {
  5107. position:absolute;
  5108. align-self:center;
  5109. padding:2px 2px 2px 2px;
  5110. box-sizing:border-box;
  5111. width:100%;
  5112. }
  5113. #u22874_text {
  5114. border-width:0px;
  5115. word-wrap:break-word;
  5116. text-transform:none;
  5117. }
  5118. #u22875_div {
  5119. border-width:0px;
  5120. position:absolute;
  5121. left:0px;
  5122. top:0px;
  5123. width:80px;
  5124. height:30px;
  5125. background:inherit;
  5126. background-color:rgba(255, 255, 255, 1);
  5127. box-sizing:border-box;
  5128. border-width:1px;
  5129. border-style:solid;
  5130. border-color:rgba(170, 170, 170, 1);
  5131. border-radius:4px;
  5132. -moz-box-shadow:none;
  5133. -webkit-box-shadow:none;
  5134. box-shadow:none;
  5135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5136. font-weight:400;
  5137. font-style:normal;
  5138. font-size:14px;
  5139. }
  5140. #u22875 {
  5141. border-width:0px;
  5142. position:absolute;
  5143. left:1002px;
  5144. top:888px;
  5145. width:80px;
  5146. height:30px;
  5147. display:flex;
  5148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5149. font-weight:400;
  5150. font-style:normal;
  5151. font-size:14px;
  5152. }
  5153. #u22875 .text {
  5154. position:absolute;
  5155. align-self:center;
  5156. padding:2px 2px 2px 2px;
  5157. box-sizing:border-box;
  5158. width:100%;
  5159. }
  5160. #u22875_text {
  5161. border-width:0px;
  5162. word-wrap:break-word;
  5163. text-transform:none;
  5164. }
  5165. #u22876 {
  5166. border-width:0px;
  5167. position:absolute;
  5168. left:0px;
  5169. top:0px;
  5170. width:0px;
  5171. height:0px;
  5172. }
  5173. #u22877_div {
  5174. border-width:0px;
  5175. position:absolute;
  5176. left:0px;
  5177. top:0px;
  5178. width:400px;
  5179. height:80px;
  5180. background:inherit;
  5181. background-color:rgba(255, 255, 255, 1);
  5182. box-sizing:border-box;
  5183. border-width:1px;
  5184. border-style:solid;
  5185. border-color:rgba(170, 170, 170, 1);
  5186. border-radius:4px;
  5187. -moz-box-shadow:none;
  5188. -webkit-box-shadow:none;
  5189. box-shadow:none;
  5190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5191. font-weight:400;
  5192. font-style:normal;
  5193. text-align:left;
  5194. }
  5195. #u22877 {
  5196. border-width:0px;
  5197. position:absolute;
  5198. left:685px;
  5199. top:733px;
  5200. width:400px;
  5201. height:80px;
  5202. display:flex;
  5203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5204. font-weight:400;
  5205. font-style:normal;
  5206. text-align:left;
  5207. }
  5208. #u22877 .text {
  5209. position:absolute;
  5210. align-self:center;
  5211. padding:2px 2px 2px 10px;
  5212. box-sizing:border-box;
  5213. width:100%;
  5214. }
  5215. #u22877_text {
  5216. border-width:0px;
  5217. word-wrap:break-word;
  5218. text-transform:none;
  5219. visibility:hidden;
  5220. }
  5221. #u22878_input {
  5222. position:absolute;
  5223. left:0px;
  5224. top:0px;
  5225. width:188px;
  5226. height:31px;
  5227. padding:2px 2px 2px 2px;
  5228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5229. font-weight:400;
  5230. font-style:normal;
  5231. font-size:13px;
  5232. letter-spacing:normal;
  5233. color:#AAAAAA;
  5234. vertical-align:none;
  5235. text-align:left;
  5236. text-transform:none;
  5237. background-color:transparent;
  5238. border-color:transparent;
  5239. }
  5240. #u22878_input.disabled {
  5241. position:absolute;
  5242. left:0px;
  5243. top:0px;
  5244. width:188px;
  5245. height:31px;
  5246. padding:2px 2px 2px 2px;
  5247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5248. font-weight:400;
  5249. font-style:normal;
  5250. font-size:13px;
  5251. letter-spacing:normal;
  5252. color:#AAAAAA;
  5253. vertical-align:none;
  5254. text-align:left;
  5255. text-transform:none;
  5256. background-color:transparent;
  5257. border-color:transparent;
  5258. }
  5259. #u22878_div {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:0px;
  5263. top:0px;
  5264. width:188px;
  5265. height:31px;
  5266. background:inherit;
  5267. background-color:rgba(255, 255, 255, 0);
  5268. border:none;
  5269. border-radius:0px;
  5270. -moz-box-shadow:none;
  5271. -webkit-box-shadow:none;
  5272. box-shadow:none;
  5273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5274. font-weight:400;
  5275. font-style:normal;
  5276. color:#AAAAAA;
  5277. }
  5278. #u22878 {
  5279. border-width:0px;
  5280. position:absolute;
  5281. left:695px;
  5282. top:738px;
  5283. width:188px;
  5284. height:31px;
  5285. display:flex;
  5286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5287. font-weight:400;
  5288. font-style:normal;
  5289. color:#AAAAAA;
  5290. }
  5291. #u22878 .text {
  5292. position:absolute;
  5293. align-self:center;
  5294. padding:2px 2px 2px 2px;
  5295. box-sizing:border-box;
  5296. width:100%;
  5297. }
  5298. #u22878_div.disabled {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:0px;
  5302. top:0px;
  5303. width:188px;
  5304. height:31px;
  5305. background:inherit;
  5306. background-color:rgba(240, 240, 240, 1);
  5307. border:none;
  5308. border-radius:0px;
  5309. -moz-box-shadow:none;
  5310. -webkit-box-shadow:none;
  5311. box-shadow:none;
  5312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5313. font-weight:400;
  5314. font-style:normal;
  5315. color:#AAAAAA;
  5316. }
  5317. #u22878.disabled {
  5318. }
  5319. #u22879_div {
  5320. border-width:0px;
  5321. position:absolute;
  5322. left:0px;
  5323. top:0px;
  5324. width:39px;
  5325. height:24px;
  5326. background:inherit;
  5327. background-color:rgba(255, 255, 255, 0);
  5328. border:none;
  5329. border-top:0px;
  5330. border-right:0px;
  5331. border-bottom:0px;
  5332. border-radius:0px;
  5333. border-top-left-radius:0px;
  5334. border-bottom-left-radius:0px;
  5335. -moz-box-shadow:none;
  5336. -webkit-box-shadow:none;
  5337. box-shadow:none;
  5338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5339. font-weight:400;
  5340. font-style:normal;
  5341. font-size:10px;
  5342. color:#AAAAAA;
  5343. text-align:right;
  5344. }
  5345. #u22879 {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:1043px;
  5349. top:788px;
  5350. width:39px;
  5351. height:24px;
  5352. display:flex;
  5353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5354. font-weight:400;
  5355. font-style:normal;
  5356. font-size:10px;
  5357. color:#AAAAAA;
  5358. text-align:right;
  5359. }
  5360. #u22879 .text {
  5361. position:absolute;
  5362. align-self:center;
  5363. padding:5px 0px 5px 0px;
  5364. box-sizing:border-box;
  5365. width:100%;
  5366. }
  5367. #u22879_text {
  5368. border-width:0px;
  5369. white-space:nowrap;
  5370. text-transform:none;
  5371. }
  5372. #u22880_div {
  5373. border-width:0px;
  5374. position:absolute;
  5375. left:0px;
  5376. top:0px;
  5377. width:92px;
  5378. height:30px;
  5379. background:inherit;
  5380. background-color:rgba(255, 255, 255, 0);
  5381. border:none;
  5382. border-top:0px;
  5383. border-right:0px;
  5384. border-bottom:0px;
  5385. border-radius:0px;
  5386. border-top-left-radius:0px;
  5387. border-bottom-left-radius:0px;
  5388. -moz-box-shadow:none;
  5389. -webkit-box-shadow:none;
  5390. box-shadow:none;
  5391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5392. font-weight:400;
  5393. font-style:normal;
  5394. font-size:14px;
  5395. text-align:right;
  5396. }
  5397. #u22880 {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:583px;
  5401. top:588px;
  5402. width:92px;
  5403. height:30px;
  5404. display:flex;
  5405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5406. font-weight:400;
  5407. font-style:normal;
  5408. font-size:14px;
  5409. text-align:right;
  5410. }
  5411. #u22880 .text {
  5412. position:absolute;
  5413. align-self:center;
  5414. padding:5px 0px 5px 0px;
  5415. box-sizing:border-box;
  5416. width:100%;
  5417. }
  5418. #u22880_text {
  5419. border-width:0px;
  5420. white-space:nowrap;
  5421. text-transform:none;
  5422. }
  5423. #u22881_div {
  5424. border-width:0px;
  5425. position:absolute;
  5426. left:0px;
  5427. top:0px;
  5428. width:43px;
  5429. height:30px;
  5430. background:inherit;
  5431. background-color:rgba(255, 255, 255, 0);
  5432. border:none;
  5433. border-top:0px;
  5434. border-right:0px;
  5435. border-bottom:0px;
  5436. border-radius:0px;
  5437. border-top-left-radius:0px;
  5438. border-bottom-left-radius:0px;
  5439. -moz-box-shadow:none;
  5440. -webkit-box-shadow:none;
  5441. box-shadow:none;
  5442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5443. font-weight:400;
  5444. font-style:normal;
  5445. font-size:14px;
  5446. text-align:right;
  5447. }
  5448. #u22881 {
  5449. border-width:0px;
  5450. position:absolute;
  5451. left:632px;
  5452. top:738px;
  5453. width:43px;
  5454. height:30px;
  5455. display:flex;
  5456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5457. font-weight:400;
  5458. font-style:normal;
  5459. font-size:14px;
  5460. text-align:right;
  5461. }
  5462. #u22881 .text {
  5463. position:absolute;
  5464. align-self:center;
  5465. padding:5px 0px 5px 0px;
  5466. box-sizing:border-box;
  5467. width:100%;
  5468. }
  5469. #u22881_text {
  5470. border-width:0px;
  5471. white-space:nowrap;
  5472. text-transform:none;
  5473. }
  5474. #u22882 {
  5475. border-width:0px;
  5476. position:absolute;
  5477. left:0px;
  5478. top:0px;
  5479. width:0px;
  5480. height:0px;
  5481. }
  5482. #u22883_div {
  5483. border-width:0px;
  5484. position:absolute;
  5485. left:0px;
  5486. top:0px;
  5487. width:400px;
  5488. height:40px;
  5489. background:inherit;
  5490. background-color:rgba(255, 255, 255, 1);
  5491. box-sizing:border-box;
  5492. border-width:1px;
  5493. border-style:solid;
  5494. border-color:rgba(170, 170, 170, 1);
  5495. border-radius:4px;
  5496. -moz-box-shadow:none;
  5497. -webkit-box-shadow:none;
  5498. box-shadow:none;
  5499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5500. font-weight:400;
  5501. font-style:normal;
  5502. text-align:left;
  5503. }
  5504. #u22883 {
  5505. border-width:0px;
  5506. position:absolute;
  5507. left:685px;
  5508. top:583px;
  5509. width:400px;
  5510. height:40px;
  5511. display:flex;
  5512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5513. font-weight:400;
  5514. font-style:normal;
  5515. text-align:left;
  5516. }
  5517. #u22883 .text {
  5518. position:absolute;
  5519. align-self:center;
  5520. padding:2px 2px 2px 10px;
  5521. box-sizing:border-box;
  5522. width:100%;
  5523. }
  5524. #u22883_text {
  5525. border-width:0px;
  5526. word-wrap:break-word;
  5527. text-transform:none;
  5528. visibility:hidden;
  5529. }
  5530. #u22884_input {
  5531. position:absolute;
  5532. left:0px;
  5533. top:0px;
  5534. width:380px;
  5535. height:31px;
  5536. padding:2px 2px 2px 2px;
  5537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5538. font-weight:400;
  5539. font-style:normal;
  5540. font-size:13px;
  5541. letter-spacing:normal;
  5542. color:#AAAAAA;
  5543. vertical-align:none;
  5544. text-align:left;
  5545. text-transform:none;
  5546. background-color:transparent;
  5547. border-color:transparent;
  5548. }
  5549. #u22884_input.disabled {
  5550. position:absolute;
  5551. left:0px;
  5552. top:0px;
  5553. width:380px;
  5554. height:31px;
  5555. padding:2px 2px 2px 2px;
  5556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5557. font-weight:400;
  5558. font-style:normal;
  5559. font-size:13px;
  5560. letter-spacing:normal;
  5561. color:#AAAAAA;
  5562. vertical-align:none;
  5563. text-align:left;
  5564. text-transform:none;
  5565. background-color:transparent;
  5566. border-color:transparent;
  5567. }
  5568. #u22884_div {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:0px;
  5572. top:0px;
  5573. width:380px;
  5574. height:31px;
  5575. background:inherit;
  5576. background-color:rgba(255, 255, 255, 0);
  5577. border:none;
  5578. border-radius:0px;
  5579. -moz-box-shadow:none;
  5580. -webkit-box-shadow:none;
  5581. box-shadow:none;
  5582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5583. font-weight:400;
  5584. font-style:normal;
  5585. color:#AAAAAA;
  5586. }
  5587. #u22884 {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:695px;
  5591. top:588px;
  5592. width:380px;
  5593. height:31px;
  5594. display:flex;
  5595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5596. font-weight:400;
  5597. font-style:normal;
  5598. color:#AAAAAA;
  5599. }
  5600. #u22884 .text {
  5601. position:absolute;
  5602. align-self:center;
  5603. padding:2px 2px 2px 2px;
  5604. box-sizing:border-box;
  5605. width:100%;
  5606. }
  5607. #u22884_div.disabled {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:0px;
  5611. top:0px;
  5612. width:380px;
  5613. height:31px;
  5614. background:inherit;
  5615. background-color:rgba(240, 240, 240, 1);
  5616. border:none;
  5617. border-radius:0px;
  5618. -moz-box-shadow:none;
  5619. -webkit-box-shadow:none;
  5620. box-shadow:none;
  5621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5622. font-weight:400;
  5623. font-style:normal;
  5624. color:#AAAAAA;
  5625. }
  5626. #u22884.disabled {
  5627. }
  5628. #u22885_div {
  5629. border-width:0px;
  5630. position:absolute;
  5631. left:0px;
  5632. top:0px;
  5633. width:78px;
  5634. height:30px;
  5635. background:inherit;
  5636. background-color:rgba(255, 255, 255, 0);
  5637. border:none;
  5638. border-top:0px;
  5639. border-right:0px;
  5640. border-bottom:0px;
  5641. border-radius:0px;
  5642. border-top-left-radius:0px;
  5643. border-bottom-left-radius:0px;
  5644. -moz-box-shadow:none;
  5645. -webkit-box-shadow:none;
  5646. box-shadow:none;
  5647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5648. font-weight:400;
  5649. font-style:normal;
  5650. font-size:14px;
  5651. text-align:right;
  5652. }
  5653. #u22885 {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:597px;
  5657. top:638px;
  5658. width:78px;
  5659. height:30px;
  5660. display:flex;
  5661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5662. font-weight:400;
  5663. font-style:normal;
  5664. font-size:14px;
  5665. text-align:right;
  5666. }
  5667. #u22885 .text {
  5668. position:absolute;
  5669. align-self:center;
  5670. padding:5px 0px 5px 0px;
  5671. box-sizing:border-box;
  5672. width:100%;
  5673. }
  5674. #u22885_text {
  5675. border-width:0px;
  5676. white-space:nowrap;
  5677. text-transform:none;
  5678. }
  5679. #u22886 {
  5680. border-width:0px;
  5681. position:absolute;
  5682. left:0px;
  5683. top:0px;
  5684. width:0px;
  5685. height:0px;
  5686. }
  5687. #u22887_div {
  5688. border-width:0px;
  5689. position:absolute;
  5690. left:0px;
  5691. top:0px;
  5692. width:400px;
  5693. height:40px;
  5694. background:inherit;
  5695. background-color:rgba(255, 255, 255, 1);
  5696. box-sizing:border-box;
  5697. border-width:1px;
  5698. border-style:solid;
  5699. border-color:rgba(170, 170, 170, 1);
  5700. border-radius:4px;
  5701. -moz-box-shadow:none;
  5702. -webkit-box-shadow:none;
  5703. box-shadow:none;
  5704. }
  5705. #u22887 {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:685px;
  5709. top:633px;
  5710. width:400px;
  5711. height:40px;
  5712. display:flex;
  5713. }
  5714. #u22887 .text {
  5715. position:absolute;
  5716. align-self:center;
  5717. padding:2px 2px 2px 0px;
  5718. box-sizing:border-box;
  5719. width:100%;
  5720. }
  5721. #u22887_text {
  5722. border-width:0px;
  5723. word-wrap:break-word;
  5724. text-transform:none;
  5725. visibility:hidden;
  5726. }
  5727. #u22888_input {
  5728. position:absolute;
  5729. left:0px;
  5730. top:0px;
  5731. width:380px;
  5732. height:30px;
  5733. padding:2px 2px 2px 0px;
  5734. font-family:'ArialMT', 'Arial', sans-serif;
  5735. font-weight:400;
  5736. font-style:normal;
  5737. font-size:13px;
  5738. letter-spacing:normal;
  5739. color:#AAAAAA;
  5740. vertical-align:none;
  5741. text-align:left;
  5742. text-transform:none;
  5743. background-color:transparent;
  5744. border-color:transparent;
  5745. }
  5746. #u22888_input.disabled {
  5747. position:absolute;
  5748. left:0px;
  5749. top:0px;
  5750. width:380px;
  5751. height:30px;
  5752. padding:2px 2px 2px 0px;
  5753. font-family:'ArialMT', 'Arial', sans-serif;
  5754. font-weight:400;
  5755. font-style:normal;
  5756. font-size:13px;
  5757. letter-spacing:normal;
  5758. color:#AAAAAA;
  5759. vertical-align:none;
  5760. text-align:left;
  5761. text-transform:none;
  5762. background-color:transparent;
  5763. border-color:transparent;
  5764. }
  5765. #u22888_div {
  5766. border-width:0px;
  5767. position:absolute;
  5768. left:0px;
  5769. top:0px;
  5770. width:380px;
  5771. height:30px;
  5772. background:inherit;
  5773. background-color:rgba(255, 255, 255, 1);
  5774. border:none;
  5775. border-radius:0px;
  5776. -moz-box-shadow:none;
  5777. -webkit-box-shadow:none;
  5778. box-shadow:none;
  5779. color:#AAAAAA;
  5780. }
  5781. #u22888 {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:695px;
  5785. top:637px;
  5786. width:380px;
  5787. height:30px;
  5788. display:flex;
  5789. color:#AAAAAA;
  5790. }
  5791. #u22888 .text {
  5792. position:absolute;
  5793. align-self:flex-start;
  5794. padding:2px 2px 2px 0px;
  5795. box-sizing:border-box;
  5796. width:100%;
  5797. }
  5798. #u22888_div.disabled {
  5799. border-width:0px;
  5800. position:absolute;
  5801. left:0px;
  5802. top:0px;
  5803. width:380px;
  5804. height:30px;
  5805. background:inherit;
  5806. background-color:rgba(240, 240, 240, 1);
  5807. border:none;
  5808. border-radius:0px;
  5809. -moz-box-shadow:none;
  5810. -webkit-box-shadow:none;
  5811. box-shadow:none;
  5812. color:#AAAAAA;
  5813. }
  5814. #u22888.disabled {
  5815. }
  5816. .u22888_input_option {
  5817. }
  5818. #u22889 {
  5819. border-width:0px;
  5820. position:absolute;
  5821. left:0px;
  5822. top:0px;
  5823. width:0px;
  5824. height:0px;
  5825. }
  5826. #u22890_div {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:0px;
  5830. top:0px;
  5831. width:400px;
  5832. height:40px;
  5833. background:inherit;
  5834. background-color:rgba(255, 255, 255, 1);
  5835. box-sizing:border-box;
  5836. border-width:1px;
  5837. border-style:solid;
  5838. border-color:rgba(170, 170, 170, 1);
  5839. border-radius:4px;
  5840. -moz-box-shadow:none;
  5841. -webkit-box-shadow:none;
  5842. box-shadow:none;
  5843. }
  5844. #u22890 {
  5845. border-width:0px;
  5846. position:absolute;
  5847. left:685px;
  5848. top:683px;
  5849. width:400px;
  5850. height:40px;
  5851. display:flex;
  5852. }
  5853. #u22890 .text {
  5854. position:absolute;
  5855. align-self:center;
  5856. padding:2px 2px 2px 0px;
  5857. box-sizing:border-box;
  5858. width:100%;
  5859. }
  5860. #u22890_text {
  5861. border-width:0px;
  5862. word-wrap:break-word;
  5863. text-transform:none;
  5864. visibility:hidden;
  5865. }
  5866. #u22891_input {
  5867. position:absolute;
  5868. left:0px;
  5869. top:0px;
  5870. width:380px;
  5871. height:30px;
  5872. padding:2px 2px 2px 0px;
  5873. font-family:'ArialMT', 'Arial', sans-serif;
  5874. font-weight:400;
  5875. font-style:normal;
  5876. font-size:13px;
  5877. letter-spacing:normal;
  5878. color:#AAAAAA;
  5879. vertical-align:none;
  5880. text-align:left;
  5881. text-transform:none;
  5882. background-color:transparent;
  5883. border-color:transparent;
  5884. }
  5885. #u22891_input.disabled {
  5886. position:absolute;
  5887. left:0px;
  5888. top:0px;
  5889. width:380px;
  5890. height:30px;
  5891. padding:2px 2px 2px 0px;
  5892. font-family:'ArialMT', 'Arial', sans-serif;
  5893. font-weight:400;
  5894. font-style:normal;
  5895. font-size:13px;
  5896. letter-spacing:normal;
  5897. color:#AAAAAA;
  5898. vertical-align:none;
  5899. text-align:left;
  5900. text-transform:none;
  5901. background-color:transparent;
  5902. border-color:transparent;
  5903. }
  5904. #u22891_div {
  5905. border-width:0px;
  5906. position:absolute;
  5907. left:0px;
  5908. top:0px;
  5909. width:380px;
  5910. height:30px;
  5911. background:inherit;
  5912. background-color:rgba(255, 255, 255, 1);
  5913. border:none;
  5914. border-radius:0px;
  5915. -moz-box-shadow:none;
  5916. -webkit-box-shadow:none;
  5917. box-shadow:none;
  5918. color:#AAAAAA;
  5919. }
  5920. #u22891 {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:695px;
  5924. top:687px;
  5925. width:380px;
  5926. height:30px;
  5927. display:flex;
  5928. color:#AAAAAA;
  5929. }
  5930. #u22891 .text {
  5931. position:absolute;
  5932. align-self:flex-start;
  5933. padding:2px 2px 2px 0px;
  5934. box-sizing:border-box;
  5935. width:100%;
  5936. }
  5937. #u22891_div.disabled {
  5938. border-width:0px;
  5939. position:absolute;
  5940. left:0px;
  5941. top:0px;
  5942. width:380px;
  5943. height:30px;
  5944. background:inherit;
  5945. background-color:rgba(240, 240, 240, 1);
  5946. border:none;
  5947. border-radius:0px;
  5948. -moz-box-shadow:none;
  5949. -webkit-box-shadow:none;
  5950. box-shadow:none;
  5951. color:#AAAAAA;
  5952. }
  5953. #u22891.disabled {
  5954. }
  5955. .u22891_input_option {
  5956. }
  5957. #u22892_div {
  5958. border-width:0px;
  5959. position:absolute;
  5960. left:0px;
  5961. top:0px;
  5962. width:78px;
  5963. height:30px;
  5964. background:inherit;
  5965. background-color:rgba(255, 255, 255, 0);
  5966. border:none;
  5967. border-top:0px;
  5968. border-right:0px;
  5969. border-bottom:0px;
  5970. border-radius:0px;
  5971. border-top-left-radius:0px;
  5972. border-bottom-left-radius:0px;
  5973. -moz-box-shadow:none;
  5974. -webkit-box-shadow:none;
  5975. box-shadow:none;
  5976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5977. font-weight:400;
  5978. font-style:normal;
  5979. font-size:14px;
  5980. text-align:right;
  5981. }
  5982. #u22892 {
  5983. border-width:0px;
  5984. position:absolute;
  5985. left:597px;
  5986. top:688px;
  5987. width:78px;
  5988. height:30px;
  5989. display:flex;
  5990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5991. font-weight:400;
  5992. font-style:normal;
  5993. font-size:14px;
  5994. text-align:right;
  5995. }
  5996. #u22892 .text {
  5997. position:absolute;
  5998. align-self:center;
  5999. padding:5px 0px 5px 0px;
  6000. box-sizing:border-box;
  6001. width:100%;
  6002. }
  6003. #u22892_text {
  6004. border-width:0px;
  6005. white-space:nowrap;
  6006. text-transform:none;
  6007. }
  6008. #u22893 {
  6009. border-width:0px;
  6010. position:absolute;
  6011. left:0px;
  6012. top:0px;
  6013. width:0px;
  6014. height:0px;
  6015. }
  6016. #u22894_div {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:0px;
  6020. top:0px;
  6021. width:200px;
  6022. height:1192px;
  6023. background:inherit;
  6024. background-color:rgba(255, 255, 255, 1);
  6025. border:none;
  6026. border-radius:0px;
  6027. -moz-box-shadow:none;
  6028. -webkit-box-shadow:none;
  6029. box-shadow:none;
  6030. }
  6031. #u22894 {
  6032. border-width:0px;
  6033. position:absolute;
  6034. left:120px;
  6035. top:50px;
  6036. width:200px;
  6037. height:1192px;
  6038. display:flex;
  6039. }
  6040. #u22894 .text {
  6041. position:absolute;
  6042. align-self:center;
  6043. padding:2px 2px 2px 2px;
  6044. box-sizing:border-box;
  6045. width:100%;
  6046. }
  6047. #u22894_text {
  6048. border-width:0px;
  6049. word-wrap:break-word;
  6050. text-transform:none;
  6051. visibility:hidden;
  6052. }
  6053. #u22895_div {
  6054. border-width:0px;
  6055. position:absolute;
  6056. left:0px;
  6057. top:0px;
  6058. width:200px;
  6059. height:60px;
  6060. background:inherit;
  6061. background-color:rgba(224, 231, 247, 1);
  6062. border:none;
  6063. border-radius:0px;
  6064. -moz-box-shadow:none;
  6065. -webkit-box-shadow:none;
  6066. box-shadow:none;
  6067. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6068. font-weight:500;
  6069. font-style:normal;
  6070. font-size:18px;
  6071. }
  6072. #u22895 {
  6073. border-width:0px;
  6074. position:absolute;
  6075. left:120px;
  6076. top:50px;
  6077. width:200px;
  6078. height:60px;
  6079. display:flex;
  6080. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6081. font-weight:500;
  6082. font-style:normal;
  6083. font-size:18px;
  6084. }
  6085. #u22895 .text {
  6086. position:absolute;
  6087. align-self:center;
  6088. padding:0px 0px 0px 20px;
  6089. box-sizing:border-box;
  6090. width:100%;
  6091. }
  6092. #u22895_text {
  6093. border-width:0px;
  6094. word-wrap:break-word;
  6095. text-transform:none;
  6096. }
  6097. #u22896_div {
  6098. border-width:0px;
  6099. position:absolute;
  6100. left:0px;
  6101. top:0px;
  6102. width:65px;
  6103. height:22px;
  6104. background:inherit;
  6105. background-color:rgba(255, 255, 255, 0);
  6106. border:none;
  6107. border-radius:0px;
  6108. -moz-box-shadow:none;
  6109. -webkit-box-shadow:none;
  6110. box-shadow:none;
  6111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6112. font-weight:400;
  6113. font-style:normal;
  6114. font-size:16px;
  6115. }
  6116. #u22896 {
  6117. border-width:0px;
  6118. position:absolute;
  6119. left:147px;
  6120. top:392px;
  6121. width:65px;
  6122. height:22px;
  6123. display:flex;
  6124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6125. font-weight:400;
  6126. font-style:normal;
  6127. font-size:16px;
  6128. }
  6129. #u22896 .text {
  6130. position:absolute;
  6131. align-self:flex-start;
  6132. padding:0px 0px 0px 0px;
  6133. box-sizing:border-box;
  6134. width:100%;
  6135. }
  6136. #u22896_text {
  6137. border-width:0px;
  6138. white-space:nowrap;
  6139. text-transform:none;
  6140. }
  6141. #u22897_div {
  6142. border-width:0px;
  6143. position:absolute;
  6144. left:0px;
  6145. top:0px;
  6146. width:65px;
  6147. height:22px;
  6148. background:inherit;
  6149. background-color:rgba(255, 255, 255, 0);
  6150. border:none;
  6151. border-radius:0px;
  6152. -moz-box-shadow:none;
  6153. -webkit-box-shadow:none;
  6154. box-shadow:none;
  6155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6156. font-weight:400;
  6157. font-style:normal;
  6158. font-size:16px;
  6159. }
  6160. #u22897 {
  6161. border-width:0px;
  6162. position:absolute;
  6163. left:147px;
  6164. top:434px;
  6165. width:65px;
  6166. height:22px;
  6167. display:flex;
  6168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6169. font-weight:400;
  6170. font-style:normal;
  6171. font-size:16px;
  6172. }
  6173. #u22897 .text {
  6174. position:absolute;
  6175. align-self:flex-start;
  6176. padding:0px 0px 0px 0px;
  6177. box-sizing:border-box;
  6178. width:100%;
  6179. }
  6180. #u22897_text {
  6181. border-width:0px;
  6182. white-space:nowrap;
  6183. text-transform:none;
  6184. }
  6185. #u22898_img {
  6186. border-width:0px;
  6187. position:absolute;
  6188. left:0px;
  6189. top:0px;
  6190. width:201px;
  6191. height:2px;
  6192. }
  6193. #u22898 {
  6194. border-width:0px;
  6195. position:absolute;
  6196. left:120px;
  6197. top:335px;
  6198. width:200px;
  6199. height:1px;
  6200. display:flex;
  6201. }
  6202. #u22898 .text {
  6203. position:absolute;
  6204. align-self:center;
  6205. padding:2px 2px 2px 2px;
  6206. box-sizing:border-box;
  6207. width:100%;
  6208. }
  6209. #u22898_text {
  6210. border-width:0px;
  6211. word-wrap:break-word;
  6212. text-transform:none;
  6213. visibility:hidden;
  6214. }
  6215. #u22899_div {
  6216. border-width:0px;
  6217. position:absolute;
  6218. left:0px;
  6219. top:0px;
  6220. width:49px;
  6221. height:17px;
  6222. background:inherit;
  6223. background-color:rgba(255, 255, 255, 0);
  6224. border:none;
  6225. border-radius:0px;
  6226. -moz-box-shadow:none;
  6227. -webkit-box-shadow:none;
  6228. box-shadow:none;
  6229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6230. font-weight:400;
  6231. font-style:normal;
  6232. font-size:12px;
  6233. color:#AAAAAA;
  6234. }
  6235. #u22899 {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:147px;
  6239. top:355px;
  6240. width:49px;
  6241. height:17px;
  6242. display:flex;
  6243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6244. font-weight:400;
  6245. font-style:normal;
  6246. font-size:12px;
  6247. color:#AAAAAA;
  6248. }
  6249. #u22899 .text {
  6250. position:absolute;
  6251. align-self:flex-start;
  6252. padding:0px 0px 0px 0px;
  6253. box-sizing:border-box;
  6254. width:100%;
  6255. }
  6256. #u22899_text {
  6257. border-width:0px;
  6258. white-space:nowrap;
  6259. text-transform:none;
  6260. }
  6261. #u22900_div {
  6262. border-width:0px;
  6263. position:absolute;
  6264. left:0px;
  6265. top:0px;
  6266. width:33px;
  6267. height:22px;
  6268. background:inherit;
  6269. background-color:rgba(255, 255, 255, 0);
  6270. border:none;
  6271. border-radius:0px;
  6272. -moz-box-shadow:none;
  6273. -webkit-box-shadow:none;
  6274. box-shadow:none;
  6275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6276. font-weight:400;
  6277. font-style:normal;
  6278. font-size:16px;
  6279. }
  6280. #u22900 {
  6281. border-width:0px;
  6282. position:absolute;
  6283. left:147px;
  6284. top:476px;
  6285. width:33px;
  6286. height:22px;
  6287. display:flex;
  6288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6289. font-weight:400;
  6290. font-style:normal;
  6291. font-size:16px;
  6292. }
  6293. #u22900 .text {
  6294. position:absolute;
  6295. align-self:flex-start;
  6296. padding:0px 0px 0px 0px;
  6297. box-sizing:border-box;
  6298. width:100%;
  6299. }
  6300. #u22900_text {
  6301. border-width:0px;
  6302. white-space:nowrap;
  6303. text-transform:none;
  6304. }
  6305. #u22901_div {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:0px;
  6309. top:0px;
  6310. width:33px;
  6311. height:22px;
  6312. background:inherit;
  6313. background-color:rgba(255, 255, 255, 0);
  6314. border:none;
  6315. border-radius:0px;
  6316. -moz-box-shadow:none;
  6317. -webkit-box-shadow:none;
  6318. box-shadow:none;
  6319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6320. font-weight:400;
  6321. font-style:normal;
  6322. font-size:16px;
  6323. }
  6324. #u22901 {
  6325. border-width:0px;
  6326. position:absolute;
  6327. left:147px;
  6328. top:518px;
  6329. width:33px;
  6330. height:22px;
  6331. display:flex;
  6332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6333. font-weight:400;
  6334. font-style:normal;
  6335. font-size:16px;
  6336. }
  6337. #u22901 .text {
  6338. position:absolute;
  6339. align-self:flex-start;
  6340. padding:0px 0px 0px 0px;
  6341. box-sizing:border-box;
  6342. width:100%;
  6343. }
  6344. #u22901_text {
  6345. border-width:0px;
  6346. white-space:nowrap;
  6347. text-transform:none;
  6348. }
  6349. #u22902_div {
  6350. border-width:0px;
  6351. position:absolute;
  6352. left:0px;
  6353. top:0px;
  6354. width:49px;
  6355. height:22px;
  6356. background:inherit;
  6357. background-color:rgba(255, 255, 255, 0);
  6358. border:none;
  6359. border-radius:0px;
  6360. -moz-box-shadow:none;
  6361. -webkit-box-shadow:none;
  6362. box-shadow:none;
  6363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6364. font-weight:400;
  6365. font-style:normal;
  6366. font-size:16px;
  6367. }
  6368. #u22902 {
  6369. border-width:0px;
  6370. position:absolute;
  6371. left:147px;
  6372. top:560px;
  6373. width:49px;
  6374. height:22px;
  6375. display:flex;
  6376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6377. font-weight:400;
  6378. font-style:normal;
  6379. font-size:16px;
  6380. }
  6381. #u22902 .text {
  6382. position:absolute;
  6383. align-self:flex-start;
  6384. padding:0px 0px 0px 0px;
  6385. box-sizing:border-box;
  6386. width:100%;
  6387. }
  6388. #u22902_text {
  6389. border-width:0px;
  6390. white-space:nowrap;
  6391. text-transform:none;
  6392. }
  6393. #u22903_div {
  6394. border-width:0px;
  6395. position:absolute;
  6396. left:0px;
  6397. top:0px;
  6398. width:65px;
  6399. height:22px;
  6400. background:inherit;
  6401. background-color:rgba(255, 255, 255, 0);
  6402. border:none;
  6403. border-radius:0px;
  6404. -moz-box-shadow:none;
  6405. -webkit-box-shadow:none;
  6406. box-shadow:none;
  6407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6408. font-weight:400;
  6409. font-style:normal;
  6410. font-size:16px;
  6411. }
  6412. #u22903 {
  6413. border-width:0px;
  6414. position:absolute;
  6415. left:147px;
  6416. top:209px;
  6417. width:65px;
  6418. height:22px;
  6419. display:flex;
  6420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6421. font-weight:400;
  6422. font-style:normal;
  6423. font-size:16px;
  6424. }
  6425. #u22903 .text {
  6426. position:absolute;
  6427. align-self:flex-start;
  6428. padding:0px 0px 0px 0px;
  6429. box-sizing:border-box;
  6430. width:100%;
  6431. }
  6432. #u22903_text {
  6433. border-width:0px;
  6434. white-space:nowrap;
  6435. text-transform:none;
  6436. }
  6437. #u22904_div {
  6438. border-width:0px;
  6439. position:absolute;
  6440. left:0px;
  6441. top:0px;
  6442. width:49px;
  6443. height:17px;
  6444. background:inherit;
  6445. background-color:rgba(255, 255, 255, 0);
  6446. border:none;
  6447. border-radius:0px;
  6448. -moz-box-shadow:none;
  6449. -webkit-box-shadow:none;
  6450. box-shadow:none;
  6451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6452. font-weight:400;
  6453. font-style:normal;
  6454. font-size:12px;
  6455. color:#AAAAAA;
  6456. }
  6457. #u22904 {
  6458. border-width:0px;
  6459. position:absolute;
  6460. left:147px;
  6461. top:130px;
  6462. width:49px;
  6463. height:17px;
  6464. display:flex;
  6465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6466. font-weight:400;
  6467. font-style:normal;
  6468. font-size:12px;
  6469. color:#AAAAAA;
  6470. }
  6471. #u22904 .text {
  6472. position:absolute;
  6473. align-self:flex-start;
  6474. padding:0px 0px 0px 0px;
  6475. box-sizing:border-box;
  6476. width:100%;
  6477. }
  6478. #u22904_text {
  6479. border-width:0px;
  6480. white-space:nowrap;
  6481. text-transform:none;
  6482. }
  6483. #u22905_div {
  6484. border-width:0px;
  6485. position:absolute;
  6486. left:0px;
  6487. top:0px;
  6488. width:65px;
  6489. height:22px;
  6490. background:inherit;
  6491. background-color:rgba(255, 255, 255, 0);
  6492. border:none;
  6493. border-radius:0px;
  6494. -moz-box-shadow:none;
  6495. -webkit-box-shadow:none;
  6496. box-shadow:none;
  6497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6498. font-weight:400;
  6499. font-style:normal;
  6500. font-size:16px;
  6501. }
  6502. #u22905 {
  6503. border-width:0px;
  6504. position:absolute;
  6505. left:147px;
  6506. top:251px;
  6507. width:65px;
  6508. height:22px;
  6509. display:flex;
  6510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6511. font-weight:400;
  6512. font-style:normal;
  6513. font-size:16px;
  6514. }
  6515. #u22905 .text {
  6516. position:absolute;
  6517. align-self:flex-start;
  6518. padding:0px 0px 0px 0px;
  6519. box-sizing:border-box;
  6520. width:100%;
  6521. }
  6522. #u22905_text {
  6523. border-width:0px;
  6524. white-space:nowrap;
  6525. text-transform:none;
  6526. }
  6527. #u22906_div {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:0px;
  6531. top:0px;
  6532. width:65px;
  6533. height:22px;
  6534. background:inherit;
  6535. background-color:rgba(255, 255, 255, 0);
  6536. border:none;
  6537. border-radius:0px;
  6538. -moz-box-shadow:none;
  6539. -webkit-box-shadow:none;
  6540. box-shadow:none;
  6541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6542. font-weight:400;
  6543. font-style:normal;
  6544. font-size:16px;
  6545. }
  6546. #u22906 {
  6547. border-width:0px;
  6548. position:absolute;
  6549. left:147px;
  6550. top:293px;
  6551. width:65px;
  6552. height:22px;
  6553. display:flex;
  6554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6555. font-weight:400;
  6556. font-style:normal;
  6557. font-size:16px;
  6558. }
  6559. #u22906 .text {
  6560. position:absolute;
  6561. align-self:flex-start;
  6562. padding:0px 0px 0px 0px;
  6563. box-sizing:border-box;
  6564. width:100%;
  6565. }
  6566. #u22906_text {
  6567. border-width:0px;
  6568. white-space:nowrap;
  6569. text-transform:none;
  6570. }
  6571. #u22907_div {
  6572. border-width:0px;
  6573. position:absolute;
  6574. left:0px;
  6575. top:0px;
  6576. width:33px;
  6577. height:22px;
  6578. background:inherit;
  6579. background-color:rgba(255, 255, 255, 0);
  6580. border:none;
  6581. border-radius:0px;
  6582. -moz-box-shadow:none;
  6583. -webkit-box-shadow:none;
  6584. box-shadow:none;
  6585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6586. font-weight:400;
  6587. font-style:normal;
  6588. font-size:16px;
  6589. }
  6590. #u22907 {
  6591. border-width:0px;
  6592. position:absolute;
  6593. left:147px;
  6594. top:167px;
  6595. width:33px;
  6596. height:22px;
  6597. display:flex;
  6598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6599. font-weight:400;
  6600. font-style:normal;
  6601. font-size:16px;
  6602. }
  6603. #u22907 .text {
  6604. position:absolute;
  6605. align-self:flex-start;
  6606. padding:0px 0px 0px 0px;
  6607. box-sizing:border-box;
  6608. width:100%;
  6609. }
  6610. #u22907_text {
  6611. border-width:0px;
  6612. white-space:nowrap;
  6613. text-transform:none;
  6614. }