styles.css 175 KB

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