styles.css 165 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2323px;
  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. #u1166_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1197px;
  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. #u1166 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1197px;
  41. display:flex;
  42. }
  43. #u1166 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u1166_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u1167_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. #u1167 {
  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. #u1167 .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. #u1167_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u1168_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. #u1168 {
  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. #u1168 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u1168_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u1169 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u1170_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u1170 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u1170 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u1170_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u1171_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. #u1171 {
  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. #u1171 .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. #u1171_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u1172_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. #u1172 {
  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. #u1172 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u1172_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u1173 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u1174_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. #u1174_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. #u1174_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. #u1174 {
  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. #u1174 .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. #u1174_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. #u1174.disabled {
  356. }
  357. .u1174_input_option {
  358. font-size:14px;
  359. }
  360. #u1175_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u1175 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u1175 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u1175_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u1176_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. #u1176 {
  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. #u1176 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u1176_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u1177_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. #u1177 {
  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. #u1177 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u1177_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u1178 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u1179_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. #u1179 {
  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. #u1179 .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. #u1179_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u1180_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u1180 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u1180 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u1180_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u1181 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u1182_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. #u1182 {
  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. #u1182 .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. #u1182_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u1183_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u1183 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u1183 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u1183_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u1184 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u1185_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. #u1185 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:397px;
  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. #u1185 .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. #u1185_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u1186_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u1186 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:401px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u1186 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u1186_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u1187 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u1188_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. #u1188 {
  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. #u1188 .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. #u1188_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u1189_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u1189 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u1189 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u1189_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u1190 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u1191_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. #u1191 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:439px;
  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. #u1191 .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. #u1191_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u1192_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u1192 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:443px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u1192 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u1192_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u1193 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u1194_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. #u1194 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:313px;
  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. #u1194 .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. #u1194_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u1195_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u1195 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:317px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u1195 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u1195_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u1196 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u1197_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. #u1197 {
  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. #u1197 .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. #u1197_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u1198_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u1198 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u1198 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u1198_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u1199 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u1200_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. #u1200 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:355px;
  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. #u1200 .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. #u1200_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u1201_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u1201 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:359px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u1201 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u1201_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u1202 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u1203_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. #u1203 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:481px;
  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. #u1203 .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. #u1203_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u1204_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u1204 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:485px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u1204 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u1204_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u1205 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u1206_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. #u1206 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:523px;
  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. #u1206 .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. #u1206_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u1207_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u1207 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:527px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u1207 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u1207_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u1208_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. #u1208 {
  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. #u1208 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u1208_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u1209_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u1209 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u1209 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u1209_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u1210_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. #u1210 {
  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. #u1210 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u1210_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u1211_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u1211 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u1211 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u1211_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u1212 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u1213_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. #u1213 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u1213 .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. #u1213_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u1214_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u1214 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u1214 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u1214_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u1215 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u1216_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. #u1216 {
  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. #u1216 .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. #u1216_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u1217_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u1217 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:569px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u1217 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u1217_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u1218 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u1219_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. #u1219 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:39px;
  1670. top:273px;
  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. #u1219 .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. #u1219_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u1220_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u1220 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:277px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u1220 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u1220_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u1221_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:1265px;
  1728. height:1180px;
  1729. background:inherit;
  1730. background-color:rgba(255, 255, 255, 1);
  1731. border:none;
  1732. border-radius:0px;
  1733. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1734. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1735. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1736. color:#1890FF;
  1737. }
  1738. #u1221 {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:329px;
  1742. top:50px;
  1743. width:1265px;
  1744. height:1180px;
  1745. display:flex;
  1746. color:#1890FF;
  1747. }
  1748. #u1221 .text {
  1749. position:absolute;
  1750. align-self:center;
  1751. padding:2px 2px 2px 2px;
  1752. box-sizing:border-box;
  1753. width:100%;
  1754. }
  1755. #u1221_text {
  1756. border-width:0px;
  1757. word-wrap:break-word;
  1758. text-transform:none;
  1759. visibility:hidden;
  1760. }
  1761. #u1222_div {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:0px;
  1765. top:0px;
  1766. width:73px;
  1767. height:50px;
  1768. background:inherit;
  1769. background-color:rgba(255, 255, 255, 0);
  1770. border:none;
  1771. border-left:0px;
  1772. border-top:0px;
  1773. border-right:0px;
  1774. border-radius:0px;
  1775. border-bottom-right-radius:0px;
  1776. border-bottom-left-radius:0px;
  1777. -moz-box-shadow:none;
  1778. -webkit-box-shadow:none;
  1779. box-shadow:none;
  1780. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1781. font-weight:500;
  1782. font-style:normal;
  1783. font-size:18px;
  1784. }
  1785. #u1222 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:348px;
  1789. top:50px;
  1790. width:73px;
  1791. height:50px;
  1792. display:flex;
  1793. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1794. font-weight:500;
  1795. font-style:normal;
  1796. font-size:18px;
  1797. }
  1798. #u1222 .text {
  1799. position:absolute;
  1800. align-self:center;
  1801. padding:0px 0px 0px 0px;
  1802. box-sizing:border-box;
  1803. width:100%;
  1804. }
  1805. #u1222_text {
  1806. border-width:0px;
  1807. white-space:nowrap;
  1808. text-transform:none;
  1809. }
  1810. #u1223_div {
  1811. border-width:0px;
  1812. position:absolute;
  1813. left:0px;
  1814. top:0px;
  1815. width:67px;
  1816. height:30px;
  1817. background:inherit;
  1818. background-color:rgba(24, 144, 255, 1);
  1819. border:none;
  1820. border-radius:4px;
  1821. -moz-box-shadow:none;
  1822. -webkit-box-shadow:none;
  1823. box-shadow:none;
  1824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1825. font-weight:400;
  1826. font-style:normal;
  1827. font-size:14px;
  1828. color:#FFFFFF;
  1829. }
  1830. #u1223 {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:350px;
  1834. top:154px;
  1835. width:67px;
  1836. height:30px;
  1837. display:flex;
  1838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1839. font-weight:400;
  1840. font-style:normal;
  1841. font-size:14px;
  1842. color:#FFFFFF;
  1843. }
  1844. #u1223 .text {
  1845. position:absolute;
  1846. align-self:center;
  1847. padding:5px 15px 5px 15px;
  1848. box-sizing:border-box;
  1849. width:100%;
  1850. }
  1851. #u1223_text {
  1852. border-width:0px;
  1853. white-space:nowrap;
  1854. text-transform:none;
  1855. }
  1856. #u1224 {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:348px;
  1860. top:201px;
  1861. width:1227px;
  1862. height:364px;
  1863. }
  1864. #u1225_img {
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:0px;
  1868. top:0px;
  1869. width:126px;
  1870. height:39px;
  1871. }
  1872. #u1225 {
  1873. border-width:0px;
  1874. position:absolute;
  1875. left:0px;
  1876. top:0px;
  1877. width:126px;
  1878. height:39px;
  1879. display:flex;
  1880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1881. font-weight:400;
  1882. font-style:normal;
  1883. font-size:12px;
  1884. color:#FFFFFF;
  1885. }
  1886. #u1225 .text {
  1887. position:absolute;
  1888. align-self:center;
  1889. padding:2px 2px 2px 0px;
  1890. box-sizing:border-box;
  1891. width:100%;
  1892. }
  1893. #u1225_text {
  1894. border-width:0px;
  1895. word-wrap:break-word;
  1896. text-transform:none;
  1897. }
  1898. #u1226_img {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:0px;
  1902. top:0px;
  1903. width:137px;
  1904. height:39px;
  1905. }
  1906. #u1226 {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:126px;
  1910. top:0px;
  1911. width:137px;
  1912. height:39px;
  1913. display:flex;
  1914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1915. font-weight:400;
  1916. font-style:normal;
  1917. font-size:12px;
  1918. color:#FFFFFF;
  1919. }
  1920. #u1226 .text {
  1921. position:absolute;
  1922. align-self:center;
  1923. padding:2px 2px 2px 0px;
  1924. box-sizing:border-box;
  1925. width:100%;
  1926. }
  1927. #u1226_text {
  1928. border-width:0px;
  1929. word-wrap:break-word;
  1930. text-transform:none;
  1931. }
  1932. #u1227_img {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:0px;
  1936. top:0px;
  1937. width:135px;
  1938. height:39px;
  1939. }
  1940. #u1227 {
  1941. border-width:0px;
  1942. position:absolute;
  1943. left:263px;
  1944. top:0px;
  1945. width:135px;
  1946. height:39px;
  1947. display:flex;
  1948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1949. font-weight:400;
  1950. font-style:normal;
  1951. font-size:12px;
  1952. color:#FFFFFF;
  1953. }
  1954. #u1227 .text {
  1955. position:absolute;
  1956. align-self:center;
  1957. padding:2px 2px 2px 0px;
  1958. box-sizing:border-box;
  1959. width:100%;
  1960. }
  1961. #u1227_text {
  1962. border-width:0px;
  1963. word-wrap:break-word;
  1964. text-transform:none;
  1965. }
  1966. #u1228_img {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:0px;
  1970. top:0px;
  1971. width:137px;
  1972. height:39px;
  1973. }
  1974. #u1228 {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:398px;
  1978. top:0px;
  1979. width:137px;
  1980. height:39px;
  1981. display:flex;
  1982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1983. font-weight:400;
  1984. font-style:normal;
  1985. font-size:12px;
  1986. color:#FFFFFF;
  1987. }
  1988. #u1228 .text {
  1989. position:absolute;
  1990. align-self:center;
  1991. padding:2px 2px 2px 0px;
  1992. box-sizing:border-box;
  1993. width:100%;
  1994. }
  1995. #u1228_text {
  1996. border-width:0px;
  1997. word-wrap:break-word;
  1998. text-transform:none;
  1999. }
  2000. #u1229_img {
  2001. border-width:0px;
  2002. position:absolute;
  2003. left:0px;
  2004. top:0px;
  2005. width:137px;
  2006. height:39px;
  2007. }
  2008. #u1229 {
  2009. border-width:0px;
  2010. position:absolute;
  2011. left:535px;
  2012. top:0px;
  2013. width:137px;
  2014. height:39px;
  2015. display:flex;
  2016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2017. font-weight:400;
  2018. font-style:normal;
  2019. font-size:12px;
  2020. color:#FFFFFF;
  2021. }
  2022. #u1229 .text {
  2023. position:absolute;
  2024. align-self:center;
  2025. padding:2px 2px 2px 0px;
  2026. box-sizing:border-box;
  2027. width:100%;
  2028. }
  2029. #u1229_text {
  2030. border-width:0px;
  2031. word-wrap:break-word;
  2032. text-transform:none;
  2033. }
  2034. #u1230_img {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:0px;
  2038. top:0px;
  2039. width:137px;
  2040. height:39px;
  2041. }
  2042. #u1230 {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:672px;
  2046. top:0px;
  2047. width:137px;
  2048. height:39px;
  2049. display:flex;
  2050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2051. font-weight:400;
  2052. font-style:normal;
  2053. font-size:12px;
  2054. color:#FFFFFF;
  2055. }
  2056. #u1230 .text {
  2057. position:absolute;
  2058. align-self:center;
  2059. padding:2px 2px 2px 0px;
  2060. box-sizing:border-box;
  2061. width:100%;
  2062. }
  2063. #u1230_text {
  2064. border-width:0px;
  2065. word-wrap:break-word;
  2066. text-transform:none;
  2067. }
  2068. #u1231_img {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:0px;
  2072. top:0px;
  2073. width:137px;
  2074. height:39px;
  2075. }
  2076. #u1231 {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:809px;
  2080. top:0px;
  2081. width:137px;
  2082. height:39px;
  2083. display:flex;
  2084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2085. font-weight:400;
  2086. font-style:normal;
  2087. font-size:12px;
  2088. color:#FFFFFF;
  2089. }
  2090. #u1231 .text {
  2091. position:absolute;
  2092. align-self:center;
  2093. padding:2px 2px 2px 0px;
  2094. box-sizing:border-box;
  2095. width:100%;
  2096. }
  2097. #u1231_text {
  2098. border-width:0px;
  2099. word-wrap:break-word;
  2100. text-transform:none;
  2101. }
  2102. #u1232_img {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:0px;
  2106. top:0px;
  2107. width:137px;
  2108. height:39px;
  2109. }
  2110. #u1232 {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:946px;
  2114. top:0px;
  2115. width:137px;
  2116. height:39px;
  2117. display:flex;
  2118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2119. font-weight:400;
  2120. font-style:normal;
  2121. font-size:12px;
  2122. color:#FFFFFF;
  2123. }
  2124. #u1232 .text {
  2125. position:absolute;
  2126. align-self:center;
  2127. padding:2px 2px 2px 0px;
  2128. box-sizing:border-box;
  2129. width:100%;
  2130. }
  2131. #u1232_text {
  2132. border-width:0px;
  2133. word-wrap:break-word;
  2134. text-transform:none;
  2135. }
  2136. #u1233_img {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:0px;
  2140. top:0px;
  2141. width:144px;
  2142. height:39px;
  2143. }
  2144. #u1233 {
  2145. border-width:0px;
  2146. position:absolute;
  2147. left:1083px;
  2148. top:0px;
  2149. width:144px;
  2150. height:39px;
  2151. display:flex;
  2152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2153. font-weight:400;
  2154. font-style:normal;
  2155. font-size:12px;
  2156. color:#FFFFFF;
  2157. }
  2158. #u1233 .text {
  2159. position:absolute;
  2160. align-self:center;
  2161. padding:2px 2px 2px 0px;
  2162. box-sizing:border-box;
  2163. width:100%;
  2164. }
  2165. #u1233_text {
  2166. border-width:0px;
  2167. word-wrap:break-word;
  2168. text-transform:none;
  2169. }
  2170. #u1234_img {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:0px;
  2174. top:0px;
  2175. width:126px;
  2176. height:36px;
  2177. }
  2178. #u1234 {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:0px;
  2182. top:39px;
  2183. width:126px;
  2184. height:36px;
  2185. display:flex;
  2186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2187. font-weight:400;
  2188. font-style:normal;
  2189. font-size:12px;
  2190. }
  2191. #u1234 .text {
  2192. position:absolute;
  2193. align-self:center;
  2194. padding:2px 2px 2px 0px;
  2195. box-sizing:border-box;
  2196. width:100%;
  2197. }
  2198. #u1234_text {
  2199. border-width:0px;
  2200. word-wrap:break-word;
  2201. text-transform:none;
  2202. visibility:hidden;
  2203. }
  2204. #u1235_img {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:0px;
  2208. top:0px;
  2209. width:137px;
  2210. height:36px;
  2211. }
  2212. #u1235 {
  2213. border-width:0px;
  2214. position:absolute;
  2215. left:126px;
  2216. top:39px;
  2217. width:137px;
  2218. height:36px;
  2219. display:flex;
  2220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2221. font-weight:400;
  2222. font-style:normal;
  2223. font-size:12px;
  2224. }
  2225. #u1235 .text {
  2226. position:absolute;
  2227. align-self:center;
  2228. padding:2px 2px 2px 0px;
  2229. box-sizing:border-box;
  2230. width:100%;
  2231. }
  2232. #u1235_text {
  2233. border-width:0px;
  2234. word-wrap:break-word;
  2235. text-transform:none;
  2236. visibility:hidden;
  2237. }
  2238. #u1236_img {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:0px;
  2242. top:0px;
  2243. width:135px;
  2244. height:36px;
  2245. }
  2246. #u1236 {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:263px;
  2250. top:39px;
  2251. width:135px;
  2252. height:36px;
  2253. display:flex;
  2254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2255. font-weight:400;
  2256. font-style:normal;
  2257. font-size:12px;
  2258. }
  2259. #u1236 .text {
  2260. position:absolute;
  2261. align-self:center;
  2262. padding:2px 2px 2px 0px;
  2263. box-sizing:border-box;
  2264. width:100%;
  2265. }
  2266. #u1236_text {
  2267. border-width:0px;
  2268. word-wrap:break-word;
  2269. text-transform:none;
  2270. visibility:hidden;
  2271. }
  2272. #u1237_img {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:0px;
  2276. top:0px;
  2277. width:137px;
  2278. height:36px;
  2279. }
  2280. #u1237 {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:398px;
  2284. top:39px;
  2285. width:137px;
  2286. height:36px;
  2287. display:flex;
  2288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2289. font-weight:400;
  2290. font-style:normal;
  2291. font-size:12px;
  2292. }
  2293. #u1237 .text {
  2294. position:absolute;
  2295. align-self:center;
  2296. padding:2px 2px 2px 0px;
  2297. box-sizing:border-box;
  2298. width:100%;
  2299. }
  2300. #u1237_text {
  2301. border-width:0px;
  2302. word-wrap:break-word;
  2303. text-transform:none;
  2304. visibility:hidden;
  2305. }
  2306. #u1238_img {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:0px;
  2310. top:0px;
  2311. width:137px;
  2312. height:36px;
  2313. }
  2314. #u1238 {
  2315. border-width:0px;
  2316. position:absolute;
  2317. left:535px;
  2318. top:39px;
  2319. width:137px;
  2320. height:36px;
  2321. display:flex;
  2322. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2323. font-weight:400;
  2324. font-style:normal;
  2325. font-size:12px;
  2326. }
  2327. #u1238 .text {
  2328. position:absolute;
  2329. align-self:center;
  2330. padding:2px 2px 2px 0px;
  2331. box-sizing:border-box;
  2332. width:100%;
  2333. }
  2334. #u1238_text {
  2335. border-width:0px;
  2336. word-wrap:break-word;
  2337. text-transform:none;
  2338. visibility:hidden;
  2339. }
  2340. #u1239_img {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:0px;
  2344. top:0px;
  2345. width:137px;
  2346. height:36px;
  2347. }
  2348. #u1239 {
  2349. border-width:0px;
  2350. position:absolute;
  2351. left:672px;
  2352. top:39px;
  2353. width:137px;
  2354. height:36px;
  2355. display:flex;
  2356. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2357. font-weight:400;
  2358. font-style:normal;
  2359. font-size:12px;
  2360. }
  2361. #u1239 .text {
  2362. position:absolute;
  2363. align-self:center;
  2364. padding:2px 2px 2px 0px;
  2365. box-sizing:border-box;
  2366. width:100%;
  2367. }
  2368. #u1239_text {
  2369. border-width:0px;
  2370. word-wrap:break-word;
  2371. text-transform:none;
  2372. visibility:hidden;
  2373. }
  2374. #u1240_img {
  2375. border-width:0px;
  2376. position:absolute;
  2377. left:0px;
  2378. top:0px;
  2379. width:137px;
  2380. height:36px;
  2381. }
  2382. #u1240 {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:809px;
  2386. top:39px;
  2387. width:137px;
  2388. height:36px;
  2389. display:flex;
  2390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2391. font-weight:400;
  2392. font-style:normal;
  2393. font-size:12px;
  2394. }
  2395. #u1240 .text {
  2396. position:absolute;
  2397. align-self:center;
  2398. padding:2px 2px 2px 0px;
  2399. box-sizing:border-box;
  2400. width:100%;
  2401. }
  2402. #u1240_text {
  2403. border-width:0px;
  2404. word-wrap:break-word;
  2405. text-transform:none;
  2406. visibility:hidden;
  2407. }
  2408. #u1241_img {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:0px;
  2412. top:0px;
  2413. width:137px;
  2414. height:36px;
  2415. }
  2416. #u1241 {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:946px;
  2420. top:39px;
  2421. width:137px;
  2422. height:36px;
  2423. display:flex;
  2424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2425. font-weight:400;
  2426. font-style:normal;
  2427. font-size:12px;
  2428. }
  2429. #u1241 .text {
  2430. position:absolute;
  2431. align-self:center;
  2432. padding:2px 2px 2px 0px;
  2433. box-sizing:border-box;
  2434. width:100%;
  2435. }
  2436. #u1241_text {
  2437. border-width:0px;
  2438. word-wrap:break-word;
  2439. text-transform:none;
  2440. visibility:hidden;
  2441. }
  2442. #u1242_img {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:0px;
  2446. top:0px;
  2447. width:144px;
  2448. height:36px;
  2449. }
  2450. #u1242 {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:1083px;
  2454. top:39px;
  2455. width:144px;
  2456. height:36px;
  2457. display:flex;
  2458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2459. font-weight:400;
  2460. font-style:normal;
  2461. font-size:12px;
  2462. color:#1890FF;
  2463. }
  2464. #u1242 .text {
  2465. position:absolute;
  2466. align-self:center;
  2467. padding:2px 2px 2px 0px;
  2468. box-sizing:border-box;
  2469. width:100%;
  2470. }
  2471. #u1242_text {
  2472. border-width:0px;
  2473. word-wrap:break-word;
  2474. text-transform:none;
  2475. }
  2476. #u1243_img {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:0px;
  2480. top:0px;
  2481. width:126px;
  2482. height:38px;
  2483. }
  2484. #u1243 {
  2485. border-width:0px;
  2486. position:absolute;
  2487. left:0px;
  2488. top:75px;
  2489. width:126px;
  2490. height:38px;
  2491. display:flex;
  2492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2493. font-weight:400;
  2494. font-style:normal;
  2495. font-size:12px;
  2496. }
  2497. #u1243 .text {
  2498. position:absolute;
  2499. align-self:center;
  2500. padding:2px 2px 2px 0px;
  2501. box-sizing:border-box;
  2502. width:100%;
  2503. }
  2504. #u1243_text {
  2505. border-width:0px;
  2506. word-wrap:break-word;
  2507. text-transform:none;
  2508. visibility:hidden;
  2509. }
  2510. #u1244_img {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:0px;
  2514. top:0px;
  2515. width:137px;
  2516. height:38px;
  2517. }
  2518. #u1244 {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:126px;
  2522. top:75px;
  2523. width:137px;
  2524. height:38px;
  2525. display:flex;
  2526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2527. font-weight:400;
  2528. font-style:normal;
  2529. font-size:12px;
  2530. }
  2531. #u1244 .text {
  2532. position:absolute;
  2533. align-self:center;
  2534. padding:2px 2px 2px 0px;
  2535. box-sizing:border-box;
  2536. width:100%;
  2537. }
  2538. #u1244_text {
  2539. border-width:0px;
  2540. word-wrap:break-word;
  2541. text-transform:none;
  2542. visibility:hidden;
  2543. }
  2544. #u1245_img {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:0px;
  2548. top:0px;
  2549. width:135px;
  2550. height:38px;
  2551. }
  2552. #u1245 {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:263px;
  2556. top:75px;
  2557. width:135px;
  2558. height:38px;
  2559. display:flex;
  2560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2561. font-weight:400;
  2562. font-style:normal;
  2563. font-size:12px;
  2564. }
  2565. #u1245 .text {
  2566. position:absolute;
  2567. align-self:center;
  2568. padding:2px 2px 2px 0px;
  2569. box-sizing:border-box;
  2570. width:100%;
  2571. }
  2572. #u1245_text {
  2573. border-width:0px;
  2574. word-wrap:break-word;
  2575. text-transform:none;
  2576. visibility:hidden;
  2577. }
  2578. #u1246_img {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:0px;
  2582. top:0px;
  2583. width:137px;
  2584. height:38px;
  2585. }
  2586. #u1246 {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:398px;
  2590. top:75px;
  2591. width:137px;
  2592. height:38px;
  2593. display:flex;
  2594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2595. font-weight:400;
  2596. font-style:normal;
  2597. font-size:12px;
  2598. }
  2599. #u1246 .text {
  2600. position:absolute;
  2601. align-self:center;
  2602. padding:2px 2px 2px 0px;
  2603. box-sizing:border-box;
  2604. width:100%;
  2605. }
  2606. #u1246_text {
  2607. border-width:0px;
  2608. word-wrap:break-word;
  2609. text-transform:none;
  2610. visibility:hidden;
  2611. }
  2612. #u1247_img {
  2613. border-width:0px;
  2614. position:absolute;
  2615. left:0px;
  2616. top:0px;
  2617. width:137px;
  2618. height:38px;
  2619. }
  2620. #u1247 {
  2621. border-width:0px;
  2622. position:absolute;
  2623. left:535px;
  2624. top:75px;
  2625. width:137px;
  2626. height:38px;
  2627. display:flex;
  2628. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2629. font-weight:400;
  2630. font-style:normal;
  2631. font-size:12px;
  2632. }
  2633. #u1247 .text {
  2634. position:absolute;
  2635. align-self:center;
  2636. padding:2px 2px 2px 0px;
  2637. box-sizing:border-box;
  2638. width:100%;
  2639. }
  2640. #u1247_text {
  2641. border-width:0px;
  2642. word-wrap:break-word;
  2643. text-transform:none;
  2644. visibility:hidden;
  2645. }
  2646. #u1248_img {
  2647. border-width:0px;
  2648. position:absolute;
  2649. left:0px;
  2650. top:0px;
  2651. width:137px;
  2652. height:38px;
  2653. }
  2654. #u1248 {
  2655. border-width:0px;
  2656. position:absolute;
  2657. left:672px;
  2658. top:75px;
  2659. width:137px;
  2660. height:38px;
  2661. display:flex;
  2662. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2663. font-weight:400;
  2664. font-style:normal;
  2665. font-size:12px;
  2666. }
  2667. #u1248 .text {
  2668. position:absolute;
  2669. align-self:center;
  2670. padding:2px 2px 2px 0px;
  2671. box-sizing:border-box;
  2672. width:100%;
  2673. }
  2674. #u1248_text {
  2675. border-width:0px;
  2676. word-wrap:break-word;
  2677. text-transform:none;
  2678. visibility:hidden;
  2679. }
  2680. #u1249_img {
  2681. border-width:0px;
  2682. position:absolute;
  2683. left:0px;
  2684. top:0px;
  2685. width:137px;
  2686. height:38px;
  2687. }
  2688. #u1249 {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:809px;
  2692. top:75px;
  2693. width:137px;
  2694. height:38px;
  2695. display:flex;
  2696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2697. font-weight:400;
  2698. font-style:normal;
  2699. font-size:12px;
  2700. }
  2701. #u1249 .text {
  2702. position:absolute;
  2703. align-self:center;
  2704. padding:2px 2px 2px 0px;
  2705. box-sizing:border-box;
  2706. width:100%;
  2707. }
  2708. #u1249_text {
  2709. border-width:0px;
  2710. word-wrap:break-word;
  2711. text-transform:none;
  2712. visibility:hidden;
  2713. }
  2714. #u1250_img {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:0px;
  2718. top:0px;
  2719. width:137px;
  2720. height:38px;
  2721. }
  2722. #u1250 {
  2723. border-width:0px;
  2724. position:absolute;
  2725. left:946px;
  2726. top:75px;
  2727. width:137px;
  2728. height:38px;
  2729. display:flex;
  2730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2731. font-weight:400;
  2732. font-style:normal;
  2733. font-size:12px;
  2734. }
  2735. #u1250 .text {
  2736. position:absolute;
  2737. align-self:center;
  2738. padding:2px 2px 2px 0px;
  2739. box-sizing:border-box;
  2740. width:100%;
  2741. }
  2742. #u1250_text {
  2743. border-width:0px;
  2744. word-wrap:break-word;
  2745. text-transform:none;
  2746. visibility:hidden;
  2747. }
  2748. #u1251_img {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:0px;
  2752. top:0px;
  2753. width:144px;
  2754. height:38px;
  2755. }
  2756. #u1251 {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:1083px;
  2760. top:75px;
  2761. width:144px;
  2762. height:38px;
  2763. display:flex;
  2764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2765. font-weight:400;
  2766. font-style:normal;
  2767. font-size:12px;
  2768. color:#1890FF;
  2769. }
  2770. #u1251 .text {
  2771. position:absolute;
  2772. align-self:center;
  2773. padding:2px 2px 2px 0px;
  2774. box-sizing:border-box;
  2775. width:100%;
  2776. }
  2777. #u1251_text {
  2778. border-width:0px;
  2779. word-wrap:break-word;
  2780. text-transform:none;
  2781. visibility:hidden;
  2782. }
  2783. #u1252_img {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:0px;
  2787. top:0px;
  2788. width:126px;
  2789. height:38px;
  2790. }
  2791. #u1252 {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:0px;
  2795. top:113px;
  2796. width:126px;
  2797. height:38px;
  2798. display:flex;
  2799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2800. font-weight:400;
  2801. font-style:normal;
  2802. font-size:12px;
  2803. }
  2804. #u1252 .text {
  2805. position:absolute;
  2806. align-self:center;
  2807. padding:2px 2px 2px 0px;
  2808. box-sizing:border-box;
  2809. width:100%;
  2810. }
  2811. #u1252_text {
  2812. border-width:0px;
  2813. word-wrap:break-word;
  2814. text-transform:none;
  2815. visibility:hidden;
  2816. }
  2817. #u1253_img {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:0px;
  2821. top:0px;
  2822. width:137px;
  2823. height:38px;
  2824. }
  2825. #u1253 {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:126px;
  2829. top:113px;
  2830. width:137px;
  2831. height:38px;
  2832. display:flex;
  2833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2834. font-weight:400;
  2835. font-style:normal;
  2836. font-size:12px;
  2837. }
  2838. #u1253 .text {
  2839. position:absolute;
  2840. align-self:center;
  2841. padding:2px 2px 2px 0px;
  2842. box-sizing:border-box;
  2843. width:100%;
  2844. }
  2845. #u1253_text {
  2846. border-width:0px;
  2847. word-wrap:break-word;
  2848. text-transform:none;
  2849. visibility:hidden;
  2850. }
  2851. #u1254_img {
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:0px;
  2855. top:0px;
  2856. width:135px;
  2857. height:38px;
  2858. }
  2859. #u1254 {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:263px;
  2863. top:113px;
  2864. width:135px;
  2865. height:38px;
  2866. display:flex;
  2867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2868. font-weight:400;
  2869. font-style:normal;
  2870. font-size:12px;
  2871. }
  2872. #u1254 .text {
  2873. position:absolute;
  2874. align-self:center;
  2875. padding:2px 2px 2px 0px;
  2876. box-sizing:border-box;
  2877. width:100%;
  2878. }
  2879. #u1254_text {
  2880. border-width:0px;
  2881. word-wrap:break-word;
  2882. text-transform:none;
  2883. visibility:hidden;
  2884. }
  2885. #u1255_img {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:0px;
  2889. top:0px;
  2890. width:137px;
  2891. height:38px;
  2892. }
  2893. #u1255 {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:398px;
  2897. top:113px;
  2898. width:137px;
  2899. height:38px;
  2900. display:flex;
  2901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2902. font-weight:400;
  2903. font-style:normal;
  2904. font-size:12px;
  2905. }
  2906. #u1255 .text {
  2907. position:absolute;
  2908. align-self:center;
  2909. padding:2px 2px 2px 0px;
  2910. box-sizing:border-box;
  2911. width:100%;
  2912. }
  2913. #u1255_text {
  2914. border-width:0px;
  2915. word-wrap:break-word;
  2916. text-transform:none;
  2917. visibility:hidden;
  2918. }
  2919. #u1256_img {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:0px;
  2923. top:0px;
  2924. width:137px;
  2925. height:38px;
  2926. }
  2927. #u1256 {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:535px;
  2931. top:113px;
  2932. width:137px;
  2933. height:38px;
  2934. display:flex;
  2935. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2936. font-weight:400;
  2937. font-style:normal;
  2938. font-size:12px;
  2939. }
  2940. #u1256 .text {
  2941. position:absolute;
  2942. align-self:center;
  2943. padding:2px 2px 2px 0px;
  2944. box-sizing:border-box;
  2945. width:100%;
  2946. }
  2947. #u1256_text {
  2948. border-width:0px;
  2949. word-wrap:break-word;
  2950. text-transform:none;
  2951. visibility:hidden;
  2952. }
  2953. #u1257_img {
  2954. border-width:0px;
  2955. position:absolute;
  2956. left:0px;
  2957. top:0px;
  2958. width:137px;
  2959. height:38px;
  2960. }
  2961. #u1257 {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:672px;
  2965. top:113px;
  2966. width:137px;
  2967. height:38px;
  2968. display:flex;
  2969. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2970. font-weight:400;
  2971. font-style:normal;
  2972. font-size:12px;
  2973. }
  2974. #u1257 .text {
  2975. position:absolute;
  2976. align-self:center;
  2977. padding:2px 2px 2px 0px;
  2978. box-sizing:border-box;
  2979. width:100%;
  2980. }
  2981. #u1257_text {
  2982. border-width:0px;
  2983. word-wrap:break-word;
  2984. text-transform:none;
  2985. visibility:hidden;
  2986. }
  2987. #u1258_img {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:0px;
  2991. top:0px;
  2992. width:137px;
  2993. height:38px;
  2994. }
  2995. #u1258 {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:809px;
  2999. top:113px;
  3000. width:137px;
  3001. height:38px;
  3002. display:flex;
  3003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3004. font-weight:400;
  3005. font-style:normal;
  3006. font-size:12px;
  3007. }
  3008. #u1258 .text {
  3009. position:absolute;
  3010. align-self:center;
  3011. padding:2px 2px 2px 0px;
  3012. box-sizing:border-box;
  3013. width:100%;
  3014. }
  3015. #u1258_text {
  3016. border-width:0px;
  3017. word-wrap:break-word;
  3018. text-transform:none;
  3019. visibility:hidden;
  3020. }
  3021. #u1259_img {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:0px;
  3025. top:0px;
  3026. width:137px;
  3027. height:38px;
  3028. }
  3029. #u1259 {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:946px;
  3033. top:113px;
  3034. width:137px;
  3035. height:38px;
  3036. display:flex;
  3037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3038. font-weight:400;
  3039. font-style:normal;
  3040. font-size:12px;
  3041. }
  3042. #u1259 .text {
  3043. position:absolute;
  3044. align-self:center;
  3045. padding:2px 2px 2px 0px;
  3046. box-sizing:border-box;
  3047. width:100%;
  3048. }
  3049. #u1259_text {
  3050. border-width:0px;
  3051. word-wrap:break-word;
  3052. text-transform:none;
  3053. visibility:hidden;
  3054. }
  3055. #u1260_img {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:0px;
  3059. top:0px;
  3060. width:144px;
  3061. height:38px;
  3062. }
  3063. #u1260 {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:1083px;
  3067. top:113px;
  3068. width:144px;
  3069. height:38px;
  3070. display:flex;
  3071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3072. font-weight:400;
  3073. font-style:normal;
  3074. font-size:12px;
  3075. color:#1890FF;
  3076. }
  3077. #u1260 .text {
  3078. position:absolute;
  3079. align-self:center;
  3080. padding:2px 2px 2px 0px;
  3081. box-sizing:border-box;
  3082. width:100%;
  3083. }
  3084. #u1260_text {
  3085. border-width:0px;
  3086. word-wrap:break-word;
  3087. text-transform:none;
  3088. visibility:hidden;
  3089. }
  3090. #u1261_img {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:0px;
  3094. top:0px;
  3095. width:126px;
  3096. height:38px;
  3097. }
  3098. #u1261 {
  3099. border-width:0px;
  3100. position:absolute;
  3101. left:0px;
  3102. top:151px;
  3103. width:126px;
  3104. height:38px;
  3105. display:flex;
  3106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3107. font-weight:400;
  3108. font-style:normal;
  3109. font-size:12px;
  3110. }
  3111. #u1261 .text {
  3112. position:absolute;
  3113. align-self:center;
  3114. padding:2px 2px 2px 0px;
  3115. box-sizing:border-box;
  3116. width:100%;
  3117. }
  3118. #u1261_text {
  3119. border-width:0px;
  3120. word-wrap:break-word;
  3121. text-transform:none;
  3122. visibility:hidden;
  3123. }
  3124. #u1262_img {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:0px;
  3128. top:0px;
  3129. width:137px;
  3130. height:38px;
  3131. }
  3132. #u1262 {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:126px;
  3136. top:151px;
  3137. width:137px;
  3138. height:38px;
  3139. display:flex;
  3140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3141. font-weight:400;
  3142. font-style:normal;
  3143. font-size:12px;
  3144. }
  3145. #u1262 .text {
  3146. position:absolute;
  3147. align-self:center;
  3148. padding:2px 2px 2px 0px;
  3149. box-sizing:border-box;
  3150. width:100%;
  3151. }
  3152. #u1262_text {
  3153. border-width:0px;
  3154. word-wrap:break-word;
  3155. text-transform:none;
  3156. visibility:hidden;
  3157. }
  3158. #u1263_img {
  3159. border-width:0px;
  3160. position:absolute;
  3161. left:0px;
  3162. top:0px;
  3163. width:135px;
  3164. height:38px;
  3165. }
  3166. #u1263 {
  3167. border-width:0px;
  3168. position:absolute;
  3169. left:263px;
  3170. top:151px;
  3171. width:135px;
  3172. height:38px;
  3173. display:flex;
  3174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3175. font-weight:400;
  3176. font-style:normal;
  3177. font-size:12px;
  3178. }
  3179. #u1263 .text {
  3180. position:absolute;
  3181. align-self:center;
  3182. padding:2px 2px 2px 0px;
  3183. box-sizing:border-box;
  3184. width:100%;
  3185. }
  3186. #u1263_text {
  3187. border-width:0px;
  3188. word-wrap:break-word;
  3189. text-transform:none;
  3190. visibility:hidden;
  3191. }
  3192. #u1264_img {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:0px;
  3196. top:0px;
  3197. width:137px;
  3198. height:38px;
  3199. }
  3200. #u1264 {
  3201. border-width:0px;
  3202. position:absolute;
  3203. left:398px;
  3204. top:151px;
  3205. width:137px;
  3206. height:38px;
  3207. display:flex;
  3208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3209. font-weight:400;
  3210. font-style:normal;
  3211. font-size:12px;
  3212. }
  3213. #u1264 .text {
  3214. position:absolute;
  3215. align-self:center;
  3216. padding:2px 2px 2px 0px;
  3217. box-sizing:border-box;
  3218. width:100%;
  3219. }
  3220. #u1264_text {
  3221. border-width:0px;
  3222. word-wrap:break-word;
  3223. text-transform:none;
  3224. visibility:hidden;
  3225. }
  3226. #u1265_img {
  3227. border-width:0px;
  3228. position:absolute;
  3229. left:0px;
  3230. top:0px;
  3231. width:137px;
  3232. height:38px;
  3233. }
  3234. #u1265 {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:535px;
  3238. top:151px;
  3239. width:137px;
  3240. height:38px;
  3241. display:flex;
  3242. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3243. font-weight:400;
  3244. font-style:normal;
  3245. font-size:12px;
  3246. }
  3247. #u1265 .text {
  3248. position:absolute;
  3249. align-self:center;
  3250. padding:2px 2px 2px 0px;
  3251. box-sizing:border-box;
  3252. width:100%;
  3253. }
  3254. #u1265_text {
  3255. border-width:0px;
  3256. word-wrap:break-word;
  3257. text-transform:none;
  3258. visibility:hidden;
  3259. }
  3260. #u1266_img {
  3261. border-width:0px;
  3262. position:absolute;
  3263. left:0px;
  3264. top:0px;
  3265. width:137px;
  3266. height:38px;
  3267. }
  3268. #u1266 {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:672px;
  3272. top:151px;
  3273. width:137px;
  3274. height:38px;
  3275. display:flex;
  3276. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3277. font-weight:400;
  3278. font-style:normal;
  3279. font-size:12px;
  3280. }
  3281. #u1266 .text {
  3282. position:absolute;
  3283. align-self:center;
  3284. padding:2px 2px 2px 0px;
  3285. box-sizing:border-box;
  3286. width:100%;
  3287. }
  3288. #u1266_text {
  3289. border-width:0px;
  3290. word-wrap:break-word;
  3291. text-transform:none;
  3292. visibility:hidden;
  3293. }
  3294. #u1267_img {
  3295. border-width:0px;
  3296. position:absolute;
  3297. left:0px;
  3298. top:0px;
  3299. width:137px;
  3300. height:38px;
  3301. }
  3302. #u1267 {
  3303. border-width:0px;
  3304. position:absolute;
  3305. left:809px;
  3306. top:151px;
  3307. width:137px;
  3308. height:38px;
  3309. display:flex;
  3310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3311. font-weight:400;
  3312. font-style:normal;
  3313. font-size:12px;
  3314. }
  3315. #u1267 .text {
  3316. position:absolute;
  3317. align-self:center;
  3318. padding:2px 2px 2px 0px;
  3319. box-sizing:border-box;
  3320. width:100%;
  3321. }
  3322. #u1267_text {
  3323. border-width:0px;
  3324. word-wrap:break-word;
  3325. text-transform:none;
  3326. visibility:hidden;
  3327. }
  3328. #u1268_img {
  3329. border-width:0px;
  3330. position:absolute;
  3331. left:0px;
  3332. top:0px;
  3333. width:137px;
  3334. height:38px;
  3335. }
  3336. #u1268 {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:946px;
  3340. top:151px;
  3341. width:137px;
  3342. height:38px;
  3343. display:flex;
  3344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3345. font-weight:400;
  3346. font-style:normal;
  3347. font-size:12px;
  3348. }
  3349. #u1268 .text {
  3350. position:absolute;
  3351. align-self:center;
  3352. padding:2px 2px 2px 0px;
  3353. box-sizing:border-box;
  3354. width:100%;
  3355. }
  3356. #u1268_text {
  3357. border-width:0px;
  3358. word-wrap:break-word;
  3359. text-transform:none;
  3360. visibility:hidden;
  3361. }
  3362. #u1269_img {
  3363. border-width:0px;
  3364. position:absolute;
  3365. left:0px;
  3366. top:0px;
  3367. width:144px;
  3368. height:38px;
  3369. }
  3370. #u1269 {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:1083px;
  3374. top:151px;
  3375. width:144px;
  3376. height:38px;
  3377. display:flex;
  3378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3379. font-weight:400;
  3380. font-style:normal;
  3381. font-size:12px;
  3382. color:#1890FF;
  3383. }
  3384. #u1269 .text {
  3385. position:absolute;
  3386. align-self:center;
  3387. padding:2px 2px 2px 0px;
  3388. box-sizing:border-box;
  3389. width:100%;
  3390. }
  3391. #u1269_text {
  3392. border-width:0px;
  3393. word-wrap:break-word;
  3394. text-transform:none;
  3395. visibility:hidden;
  3396. }
  3397. #u1270_img {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:0px;
  3401. top:0px;
  3402. width:126px;
  3403. height:35px;
  3404. }
  3405. #u1270 {
  3406. border-width:0px;
  3407. position:absolute;
  3408. left:0px;
  3409. top:189px;
  3410. width:126px;
  3411. height:35px;
  3412. display:flex;
  3413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3414. font-weight:400;
  3415. font-style:normal;
  3416. font-size:12px;
  3417. color:#606266;
  3418. }
  3419. #u1270 .text {
  3420. position:absolute;
  3421. align-self:center;
  3422. padding:2px 2px 2px 0px;
  3423. box-sizing:border-box;
  3424. width:100%;
  3425. }
  3426. #u1270_text {
  3427. border-width:0px;
  3428. word-wrap:break-word;
  3429. text-transform:none;
  3430. visibility:hidden;
  3431. }
  3432. #u1271_img {
  3433. border-width:0px;
  3434. position:absolute;
  3435. left:0px;
  3436. top:0px;
  3437. width:137px;
  3438. height:35px;
  3439. }
  3440. #u1271 {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:126px;
  3444. top:189px;
  3445. width:137px;
  3446. height:35px;
  3447. display:flex;
  3448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3449. font-weight:400;
  3450. font-style:normal;
  3451. font-size:12px;
  3452. color:#606266;
  3453. }
  3454. #u1271 .text {
  3455. position:absolute;
  3456. align-self:center;
  3457. padding:2px 2px 2px 0px;
  3458. box-sizing:border-box;
  3459. width:100%;
  3460. }
  3461. #u1271_text {
  3462. border-width:0px;
  3463. word-wrap:break-word;
  3464. text-transform:none;
  3465. visibility:hidden;
  3466. }
  3467. #u1272_img {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:0px;
  3471. top:0px;
  3472. width:135px;
  3473. height:35px;
  3474. }
  3475. #u1272 {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:263px;
  3479. top:189px;
  3480. width:135px;
  3481. height:35px;
  3482. display:flex;
  3483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3484. font-weight:400;
  3485. font-style:normal;
  3486. font-size:12px;
  3487. color:#606266;
  3488. }
  3489. #u1272 .text {
  3490. position:absolute;
  3491. align-self:center;
  3492. padding:2px 2px 2px 0px;
  3493. box-sizing:border-box;
  3494. width:100%;
  3495. }
  3496. #u1272_text {
  3497. border-width:0px;
  3498. word-wrap:break-word;
  3499. text-transform:none;
  3500. visibility:hidden;
  3501. }
  3502. #u1273_img {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:0px;
  3506. top:0px;
  3507. width:137px;
  3508. height:35px;
  3509. }
  3510. #u1273 {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:398px;
  3514. top:189px;
  3515. width:137px;
  3516. height:35px;
  3517. display:flex;
  3518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3519. font-weight:400;
  3520. font-style:normal;
  3521. font-size:12px;
  3522. color:#606266;
  3523. }
  3524. #u1273 .text {
  3525. position:absolute;
  3526. align-self:center;
  3527. padding:2px 2px 2px 0px;
  3528. box-sizing:border-box;
  3529. width:100%;
  3530. }
  3531. #u1273_text {
  3532. border-width:0px;
  3533. word-wrap:break-word;
  3534. text-transform:none;
  3535. visibility:hidden;
  3536. }
  3537. #u1274_img {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:0px;
  3541. top:0px;
  3542. width:137px;
  3543. height:35px;
  3544. }
  3545. #u1274 {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:535px;
  3549. top:189px;
  3550. width:137px;
  3551. height:35px;
  3552. display:flex;
  3553. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3554. font-weight:400;
  3555. font-style:normal;
  3556. font-size:12px;
  3557. color:#606266;
  3558. }
  3559. #u1274 .text {
  3560. position:absolute;
  3561. align-self:center;
  3562. padding:2px 2px 2px 0px;
  3563. box-sizing:border-box;
  3564. width:100%;
  3565. }
  3566. #u1274_text {
  3567. border-width:0px;
  3568. word-wrap:break-word;
  3569. text-transform:none;
  3570. visibility:hidden;
  3571. }
  3572. #u1275_img {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:0px;
  3576. top:0px;
  3577. width:137px;
  3578. height:35px;
  3579. }
  3580. #u1275 {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:672px;
  3584. top:189px;
  3585. width:137px;
  3586. height:35px;
  3587. display:flex;
  3588. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3589. font-weight:400;
  3590. font-style:normal;
  3591. font-size:12px;
  3592. color:#606266;
  3593. }
  3594. #u1275 .text {
  3595. position:absolute;
  3596. align-self:center;
  3597. padding:2px 2px 2px 0px;
  3598. box-sizing:border-box;
  3599. width:100%;
  3600. }
  3601. #u1275_text {
  3602. border-width:0px;
  3603. word-wrap:break-word;
  3604. text-transform:none;
  3605. visibility:hidden;
  3606. }
  3607. #u1276_img {
  3608. border-width:0px;
  3609. position:absolute;
  3610. left:0px;
  3611. top:0px;
  3612. width:137px;
  3613. height:35px;
  3614. }
  3615. #u1276 {
  3616. border-width:0px;
  3617. position:absolute;
  3618. left:809px;
  3619. top:189px;
  3620. width:137px;
  3621. height:35px;
  3622. display:flex;
  3623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3624. font-weight:400;
  3625. font-style:normal;
  3626. font-size:12px;
  3627. color:#606266;
  3628. }
  3629. #u1276 .text {
  3630. position:absolute;
  3631. align-self:center;
  3632. padding:2px 2px 2px 0px;
  3633. box-sizing:border-box;
  3634. width:100%;
  3635. }
  3636. #u1276_text {
  3637. border-width:0px;
  3638. word-wrap:break-word;
  3639. text-transform:none;
  3640. visibility:hidden;
  3641. }
  3642. #u1277_img {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:0px;
  3646. top:0px;
  3647. width:137px;
  3648. height:35px;
  3649. }
  3650. #u1277 {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:946px;
  3654. top:189px;
  3655. width:137px;
  3656. height:35px;
  3657. display:flex;
  3658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3659. font-weight:400;
  3660. font-style:normal;
  3661. font-size:12px;
  3662. color:#606266;
  3663. }
  3664. #u1277 .text {
  3665. position:absolute;
  3666. align-self:center;
  3667. padding:2px 2px 2px 0px;
  3668. box-sizing:border-box;
  3669. width:100%;
  3670. }
  3671. #u1277_text {
  3672. border-width:0px;
  3673. word-wrap:break-word;
  3674. text-transform:none;
  3675. visibility:hidden;
  3676. }
  3677. #u1278_img {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:0px;
  3681. top:0px;
  3682. width:144px;
  3683. height:35px;
  3684. }
  3685. #u1278 {
  3686. border-width:0px;
  3687. position:absolute;
  3688. left:1083px;
  3689. top:189px;
  3690. width:144px;
  3691. height:35px;
  3692. display:flex;
  3693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3694. font-weight:400;
  3695. font-style:normal;
  3696. font-size:12px;
  3697. color:#02A7F0;
  3698. }
  3699. #u1278 .text {
  3700. position:absolute;
  3701. align-self:center;
  3702. padding:2px 2px 2px 0px;
  3703. box-sizing:border-box;
  3704. width:100%;
  3705. }
  3706. #u1278_text {
  3707. border-width:0px;
  3708. word-wrap:break-word;
  3709. text-transform:none;
  3710. visibility:hidden;
  3711. }
  3712. #u1279_img {
  3713. border-width:0px;
  3714. position:absolute;
  3715. left:0px;
  3716. top:0px;
  3717. width:126px;
  3718. height:35px;
  3719. }
  3720. #u1279 {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:0px;
  3724. top:224px;
  3725. width:126px;
  3726. height:35px;
  3727. display:flex;
  3728. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3729. font-weight:400;
  3730. font-style:normal;
  3731. font-size:12px;
  3732. color:#606266;
  3733. }
  3734. #u1279 .text {
  3735. position:absolute;
  3736. align-self:center;
  3737. padding:2px 2px 2px 0px;
  3738. box-sizing:border-box;
  3739. width:100%;
  3740. }
  3741. #u1279_text {
  3742. border-width:0px;
  3743. word-wrap:break-word;
  3744. text-transform:none;
  3745. visibility:hidden;
  3746. }
  3747. #u1280_img {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:0px;
  3751. top:0px;
  3752. width:137px;
  3753. height:35px;
  3754. }
  3755. #u1280 {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:126px;
  3759. top:224px;
  3760. width:137px;
  3761. height:35px;
  3762. display:flex;
  3763. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3764. font-weight:400;
  3765. font-style:normal;
  3766. font-size:12px;
  3767. color:#606266;
  3768. }
  3769. #u1280 .text {
  3770. position:absolute;
  3771. align-self:center;
  3772. padding:2px 2px 2px 0px;
  3773. box-sizing:border-box;
  3774. width:100%;
  3775. }
  3776. #u1280_text {
  3777. border-width:0px;
  3778. word-wrap:break-word;
  3779. text-transform:none;
  3780. visibility:hidden;
  3781. }
  3782. #u1281_img {
  3783. border-width:0px;
  3784. position:absolute;
  3785. left:0px;
  3786. top:0px;
  3787. width:135px;
  3788. height:35px;
  3789. }
  3790. #u1281 {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:263px;
  3794. top:224px;
  3795. width:135px;
  3796. height:35px;
  3797. display:flex;
  3798. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3799. font-weight:400;
  3800. font-style:normal;
  3801. font-size:12px;
  3802. color:#606266;
  3803. }
  3804. #u1281 .text {
  3805. position:absolute;
  3806. align-self:center;
  3807. padding:2px 2px 2px 0px;
  3808. box-sizing:border-box;
  3809. width:100%;
  3810. }
  3811. #u1281_text {
  3812. border-width:0px;
  3813. word-wrap:break-word;
  3814. text-transform:none;
  3815. visibility:hidden;
  3816. }
  3817. #u1282_img {
  3818. border-width:0px;
  3819. position:absolute;
  3820. left:0px;
  3821. top:0px;
  3822. width:137px;
  3823. height:35px;
  3824. }
  3825. #u1282 {
  3826. border-width:0px;
  3827. position:absolute;
  3828. left:398px;
  3829. top:224px;
  3830. width:137px;
  3831. height:35px;
  3832. display:flex;
  3833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3834. font-weight:400;
  3835. font-style:normal;
  3836. font-size:12px;
  3837. color:#606266;
  3838. }
  3839. #u1282 .text {
  3840. position:absolute;
  3841. align-self:center;
  3842. padding:2px 2px 2px 0px;
  3843. box-sizing:border-box;
  3844. width:100%;
  3845. }
  3846. #u1282_text {
  3847. border-width:0px;
  3848. word-wrap:break-word;
  3849. text-transform:none;
  3850. visibility:hidden;
  3851. }
  3852. #u1283_img {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:137px;
  3858. height:35px;
  3859. }
  3860. #u1283 {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:535px;
  3864. top:224px;
  3865. width:137px;
  3866. height:35px;
  3867. display:flex;
  3868. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3869. font-weight:400;
  3870. font-style:normal;
  3871. font-size:12px;
  3872. color:#606266;
  3873. }
  3874. #u1283 .text {
  3875. position:absolute;
  3876. align-self:center;
  3877. padding:2px 2px 2px 0px;
  3878. box-sizing:border-box;
  3879. width:100%;
  3880. }
  3881. #u1283_text {
  3882. border-width:0px;
  3883. word-wrap:break-word;
  3884. text-transform:none;
  3885. visibility:hidden;
  3886. }
  3887. #u1284_img {
  3888. border-width:0px;
  3889. position:absolute;
  3890. left:0px;
  3891. top:0px;
  3892. width:137px;
  3893. height:35px;
  3894. }
  3895. #u1284 {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:672px;
  3899. top:224px;
  3900. width:137px;
  3901. height:35px;
  3902. display:flex;
  3903. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3904. font-weight:400;
  3905. font-style:normal;
  3906. font-size:12px;
  3907. color:#606266;
  3908. }
  3909. #u1284 .text {
  3910. position:absolute;
  3911. align-self:center;
  3912. padding:2px 2px 2px 0px;
  3913. box-sizing:border-box;
  3914. width:100%;
  3915. }
  3916. #u1284_text {
  3917. border-width:0px;
  3918. word-wrap:break-word;
  3919. text-transform:none;
  3920. visibility:hidden;
  3921. }
  3922. #u1285_img {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:0px;
  3926. top:0px;
  3927. width:137px;
  3928. height:35px;
  3929. }
  3930. #u1285 {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:809px;
  3934. top:224px;
  3935. width:137px;
  3936. height:35px;
  3937. display:flex;
  3938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3939. font-weight:400;
  3940. font-style:normal;
  3941. font-size:12px;
  3942. color:#606266;
  3943. }
  3944. #u1285 .text {
  3945. position:absolute;
  3946. align-self:center;
  3947. padding:2px 2px 2px 0px;
  3948. box-sizing:border-box;
  3949. width:100%;
  3950. }
  3951. #u1285_text {
  3952. border-width:0px;
  3953. word-wrap:break-word;
  3954. text-transform:none;
  3955. visibility:hidden;
  3956. }
  3957. #u1286_img {
  3958. border-width:0px;
  3959. position:absolute;
  3960. left:0px;
  3961. top:0px;
  3962. width:137px;
  3963. height:35px;
  3964. }
  3965. #u1286 {
  3966. border-width:0px;
  3967. position:absolute;
  3968. left:946px;
  3969. top:224px;
  3970. width:137px;
  3971. height:35px;
  3972. display:flex;
  3973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3974. font-weight:400;
  3975. font-style:normal;
  3976. font-size:12px;
  3977. color:#606266;
  3978. }
  3979. #u1286 .text {
  3980. position:absolute;
  3981. align-self:center;
  3982. padding:2px 2px 2px 0px;
  3983. box-sizing:border-box;
  3984. width:100%;
  3985. }
  3986. #u1286_text {
  3987. border-width:0px;
  3988. word-wrap:break-word;
  3989. text-transform:none;
  3990. visibility:hidden;
  3991. }
  3992. #u1287_img {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:0px;
  3996. top:0px;
  3997. width:144px;
  3998. height:35px;
  3999. }
  4000. #u1287 {
  4001. border-width:0px;
  4002. position:absolute;
  4003. left:1083px;
  4004. top:224px;
  4005. width:144px;
  4006. height:35px;
  4007. display:flex;
  4008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4009. font-weight:400;
  4010. font-style:normal;
  4011. font-size:12px;
  4012. color:#02A7F0;
  4013. }
  4014. #u1287 .text {
  4015. position:absolute;
  4016. align-self:center;
  4017. padding:2px 2px 2px 0px;
  4018. box-sizing:border-box;
  4019. width:100%;
  4020. }
  4021. #u1287_text {
  4022. border-width:0px;
  4023. word-wrap:break-word;
  4024. text-transform:none;
  4025. visibility:hidden;
  4026. }
  4027. #u1288_img {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:0px;
  4031. top:0px;
  4032. width:126px;
  4033. height:35px;
  4034. }
  4035. #u1288 {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:0px;
  4039. top:259px;
  4040. width:126px;
  4041. height:35px;
  4042. display:flex;
  4043. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4044. font-weight:400;
  4045. font-style:normal;
  4046. font-size:12px;
  4047. color:#606266;
  4048. }
  4049. #u1288 .text {
  4050. position:absolute;
  4051. align-self:center;
  4052. padding:2px 2px 2px 0px;
  4053. box-sizing:border-box;
  4054. width:100%;
  4055. }
  4056. #u1288_text {
  4057. border-width:0px;
  4058. word-wrap:break-word;
  4059. text-transform:none;
  4060. visibility:hidden;
  4061. }
  4062. #u1289_img {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:0px;
  4066. top:0px;
  4067. width:137px;
  4068. height:35px;
  4069. }
  4070. #u1289 {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:126px;
  4074. top:259px;
  4075. width:137px;
  4076. height:35px;
  4077. display:flex;
  4078. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4079. font-weight:400;
  4080. font-style:normal;
  4081. font-size:12px;
  4082. color:#606266;
  4083. }
  4084. #u1289 .text {
  4085. position:absolute;
  4086. align-self:center;
  4087. padding:2px 2px 2px 0px;
  4088. box-sizing:border-box;
  4089. width:100%;
  4090. }
  4091. #u1289_text {
  4092. border-width:0px;
  4093. word-wrap:break-word;
  4094. text-transform:none;
  4095. visibility:hidden;
  4096. }
  4097. #u1290_img {
  4098. border-width:0px;
  4099. position:absolute;
  4100. left:0px;
  4101. top:0px;
  4102. width:135px;
  4103. height:35px;
  4104. }
  4105. #u1290 {
  4106. border-width:0px;
  4107. position:absolute;
  4108. left:263px;
  4109. top:259px;
  4110. width:135px;
  4111. height:35px;
  4112. display:flex;
  4113. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4114. font-weight:400;
  4115. font-style:normal;
  4116. font-size:12px;
  4117. color:#606266;
  4118. }
  4119. #u1290 .text {
  4120. position:absolute;
  4121. align-self:center;
  4122. padding:2px 2px 2px 0px;
  4123. box-sizing:border-box;
  4124. width:100%;
  4125. }
  4126. #u1290_text {
  4127. border-width:0px;
  4128. word-wrap:break-word;
  4129. text-transform:none;
  4130. visibility:hidden;
  4131. }
  4132. #u1291_img {
  4133. border-width:0px;
  4134. position:absolute;
  4135. left:0px;
  4136. top:0px;
  4137. width:137px;
  4138. height:35px;
  4139. }
  4140. #u1291 {
  4141. border-width:0px;
  4142. position:absolute;
  4143. left:398px;
  4144. top:259px;
  4145. width:137px;
  4146. height:35px;
  4147. display:flex;
  4148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4149. font-weight:400;
  4150. font-style:normal;
  4151. font-size:12px;
  4152. color:#606266;
  4153. }
  4154. #u1291 .text {
  4155. position:absolute;
  4156. align-self:center;
  4157. padding:2px 2px 2px 0px;
  4158. box-sizing:border-box;
  4159. width:100%;
  4160. }
  4161. #u1291_text {
  4162. border-width:0px;
  4163. word-wrap:break-word;
  4164. text-transform:none;
  4165. visibility:hidden;
  4166. }
  4167. #u1292_img {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:0px;
  4171. top:0px;
  4172. width:137px;
  4173. height:35px;
  4174. }
  4175. #u1292 {
  4176. border-width:0px;
  4177. position:absolute;
  4178. left:535px;
  4179. top:259px;
  4180. width:137px;
  4181. height:35px;
  4182. display:flex;
  4183. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4184. font-weight:400;
  4185. font-style:normal;
  4186. font-size:12px;
  4187. color:#606266;
  4188. }
  4189. #u1292 .text {
  4190. position:absolute;
  4191. align-self:center;
  4192. padding:2px 2px 2px 0px;
  4193. box-sizing:border-box;
  4194. width:100%;
  4195. }
  4196. #u1292_text {
  4197. border-width:0px;
  4198. word-wrap:break-word;
  4199. text-transform:none;
  4200. visibility:hidden;
  4201. }
  4202. #u1293_img {
  4203. border-width:0px;
  4204. position:absolute;
  4205. left:0px;
  4206. top:0px;
  4207. width:137px;
  4208. height:35px;
  4209. }
  4210. #u1293 {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:672px;
  4214. top:259px;
  4215. width:137px;
  4216. height:35px;
  4217. display:flex;
  4218. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4219. font-weight:400;
  4220. font-style:normal;
  4221. font-size:12px;
  4222. color:#606266;
  4223. }
  4224. #u1293 .text {
  4225. position:absolute;
  4226. align-self:center;
  4227. padding:2px 2px 2px 0px;
  4228. box-sizing:border-box;
  4229. width:100%;
  4230. }
  4231. #u1293_text {
  4232. border-width:0px;
  4233. word-wrap:break-word;
  4234. text-transform:none;
  4235. visibility:hidden;
  4236. }
  4237. #u1294_img {
  4238. border-width:0px;
  4239. position:absolute;
  4240. left:0px;
  4241. top:0px;
  4242. width:137px;
  4243. height:35px;
  4244. }
  4245. #u1294 {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:809px;
  4249. top:259px;
  4250. width:137px;
  4251. height:35px;
  4252. display:flex;
  4253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4254. font-weight:400;
  4255. font-style:normal;
  4256. font-size:12px;
  4257. color:#606266;
  4258. }
  4259. #u1294 .text {
  4260. position:absolute;
  4261. align-self:center;
  4262. padding:2px 2px 2px 0px;
  4263. box-sizing:border-box;
  4264. width:100%;
  4265. }
  4266. #u1294_text {
  4267. border-width:0px;
  4268. word-wrap:break-word;
  4269. text-transform:none;
  4270. visibility:hidden;
  4271. }
  4272. #u1295_img {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:0px;
  4276. top:0px;
  4277. width:137px;
  4278. height:35px;
  4279. }
  4280. #u1295 {
  4281. border-width:0px;
  4282. position:absolute;
  4283. left:946px;
  4284. top:259px;
  4285. width:137px;
  4286. height:35px;
  4287. display:flex;
  4288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4289. font-weight:400;
  4290. font-style:normal;
  4291. font-size:12px;
  4292. color:#606266;
  4293. }
  4294. #u1295 .text {
  4295. position:absolute;
  4296. align-self:center;
  4297. padding:2px 2px 2px 0px;
  4298. box-sizing:border-box;
  4299. width:100%;
  4300. }
  4301. #u1295_text {
  4302. border-width:0px;
  4303. word-wrap:break-word;
  4304. text-transform:none;
  4305. visibility:hidden;
  4306. }
  4307. #u1296_img {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:0px;
  4311. top:0px;
  4312. width:144px;
  4313. height:35px;
  4314. }
  4315. #u1296 {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:1083px;
  4319. top:259px;
  4320. width:144px;
  4321. height:35px;
  4322. display:flex;
  4323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4324. font-weight:400;
  4325. font-style:normal;
  4326. font-size:12px;
  4327. color:#02A7F0;
  4328. }
  4329. #u1296 .text {
  4330. position:absolute;
  4331. align-self:center;
  4332. padding:2px 2px 2px 0px;
  4333. box-sizing:border-box;
  4334. width:100%;
  4335. }
  4336. #u1296_text {
  4337. border-width:0px;
  4338. word-wrap:break-word;
  4339. text-transform:none;
  4340. visibility:hidden;
  4341. }
  4342. #u1297_img {
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:0px;
  4346. top:0px;
  4347. width:126px;
  4348. height:35px;
  4349. }
  4350. #u1297 {
  4351. border-width:0px;
  4352. position:absolute;
  4353. left:0px;
  4354. top:294px;
  4355. width:126px;
  4356. height:35px;
  4357. display:flex;
  4358. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4359. font-weight:400;
  4360. font-style:normal;
  4361. font-size:12px;
  4362. color:#606266;
  4363. }
  4364. #u1297 .text {
  4365. position:absolute;
  4366. align-self:center;
  4367. padding:2px 2px 2px 0px;
  4368. box-sizing:border-box;
  4369. width:100%;
  4370. }
  4371. #u1297_text {
  4372. border-width:0px;
  4373. word-wrap:break-word;
  4374. text-transform:none;
  4375. visibility:hidden;
  4376. }
  4377. #u1298_img {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:0px;
  4381. top:0px;
  4382. width:137px;
  4383. height:35px;
  4384. }
  4385. #u1298 {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:126px;
  4389. top:294px;
  4390. width:137px;
  4391. height:35px;
  4392. display:flex;
  4393. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4394. font-weight:400;
  4395. font-style:normal;
  4396. font-size:12px;
  4397. color:#606266;
  4398. }
  4399. #u1298 .text {
  4400. position:absolute;
  4401. align-self:center;
  4402. padding:2px 2px 2px 0px;
  4403. box-sizing:border-box;
  4404. width:100%;
  4405. }
  4406. #u1298_text {
  4407. border-width:0px;
  4408. word-wrap:break-word;
  4409. text-transform:none;
  4410. visibility:hidden;
  4411. }
  4412. #u1299_img {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:0px;
  4416. top:0px;
  4417. width:135px;
  4418. height:35px;
  4419. }
  4420. #u1299 {
  4421. border-width:0px;
  4422. position:absolute;
  4423. left:263px;
  4424. top:294px;
  4425. width:135px;
  4426. height:35px;
  4427. display:flex;
  4428. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4429. font-weight:400;
  4430. font-style:normal;
  4431. font-size:12px;
  4432. color:#606266;
  4433. }
  4434. #u1299 .text {
  4435. position:absolute;
  4436. align-self:center;
  4437. padding:2px 2px 2px 0px;
  4438. box-sizing:border-box;
  4439. width:100%;
  4440. }
  4441. #u1299_text {
  4442. border-width:0px;
  4443. word-wrap:break-word;
  4444. text-transform:none;
  4445. visibility:hidden;
  4446. }
  4447. #u1300_img {
  4448. border-width:0px;
  4449. position:absolute;
  4450. left:0px;
  4451. top:0px;
  4452. width:137px;
  4453. height:35px;
  4454. }
  4455. #u1300 {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:398px;
  4459. top:294px;
  4460. width:137px;
  4461. height:35px;
  4462. display:flex;
  4463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4464. font-weight:400;
  4465. font-style:normal;
  4466. font-size:12px;
  4467. color:#606266;
  4468. }
  4469. #u1300 .text {
  4470. position:absolute;
  4471. align-self:center;
  4472. padding:2px 2px 2px 0px;
  4473. box-sizing:border-box;
  4474. width:100%;
  4475. }
  4476. #u1300_text {
  4477. border-width:0px;
  4478. word-wrap:break-word;
  4479. text-transform:none;
  4480. visibility:hidden;
  4481. }
  4482. #u1301_img {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:0px;
  4486. top:0px;
  4487. width:137px;
  4488. height:35px;
  4489. }
  4490. #u1301 {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:535px;
  4494. top:294px;
  4495. width:137px;
  4496. height:35px;
  4497. display:flex;
  4498. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4499. font-weight:400;
  4500. font-style:normal;
  4501. font-size:12px;
  4502. color:#606266;
  4503. }
  4504. #u1301 .text {
  4505. position:absolute;
  4506. align-self:center;
  4507. padding:2px 2px 2px 0px;
  4508. box-sizing:border-box;
  4509. width:100%;
  4510. }
  4511. #u1301_text {
  4512. border-width:0px;
  4513. word-wrap:break-word;
  4514. text-transform:none;
  4515. visibility:hidden;
  4516. }
  4517. #u1302_img {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:0px;
  4521. top:0px;
  4522. width:137px;
  4523. height:35px;
  4524. }
  4525. #u1302 {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:672px;
  4529. top:294px;
  4530. width:137px;
  4531. height:35px;
  4532. display:flex;
  4533. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4534. font-weight:400;
  4535. font-style:normal;
  4536. font-size:12px;
  4537. color:#606266;
  4538. }
  4539. #u1302 .text {
  4540. position:absolute;
  4541. align-self:center;
  4542. padding:2px 2px 2px 0px;
  4543. box-sizing:border-box;
  4544. width:100%;
  4545. }
  4546. #u1302_text {
  4547. border-width:0px;
  4548. word-wrap:break-word;
  4549. text-transform:none;
  4550. visibility:hidden;
  4551. }
  4552. #u1303_img {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:0px;
  4556. top:0px;
  4557. width:137px;
  4558. height:35px;
  4559. }
  4560. #u1303 {
  4561. border-width:0px;
  4562. position:absolute;
  4563. left:809px;
  4564. top:294px;
  4565. width:137px;
  4566. height:35px;
  4567. display:flex;
  4568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4569. font-weight:400;
  4570. font-style:normal;
  4571. font-size:12px;
  4572. color:#606266;
  4573. }
  4574. #u1303 .text {
  4575. position:absolute;
  4576. align-self:center;
  4577. padding:2px 2px 2px 0px;
  4578. box-sizing:border-box;
  4579. width:100%;
  4580. }
  4581. #u1303_text {
  4582. border-width:0px;
  4583. word-wrap:break-word;
  4584. text-transform:none;
  4585. visibility:hidden;
  4586. }
  4587. #u1304_img {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:0px;
  4591. top:0px;
  4592. width:137px;
  4593. height:35px;
  4594. }
  4595. #u1304 {
  4596. border-width:0px;
  4597. position:absolute;
  4598. left:946px;
  4599. top:294px;
  4600. width:137px;
  4601. height:35px;
  4602. display:flex;
  4603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4604. font-weight:400;
  4605. font-style:normal;
  4606. font-size:12px;
  4607. color:#606266;
  4608. }
  4609. #u1304 .text {
  4610. position:absolute;
  4611. align-self:center;
  4612. padding:2px 2px 2px 0px;
  4613. box-sizing:border-box;
  4614. width:100%;
  4615. }
  4616. #u1304_text {
  4617. border-width:0px;
  4618. word-wrap:break-word;
  4619. text-transform:none;
  4620. visibility:hidden;
  4621. }
  4622. #u1305_img {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:0px;
  4626. top:0px;
  4627. width:144px;
  4628. height:35px;
  4629. }
  4630. #u1305 {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:1083px;
  4634. top:294px;
  4635. width:144px;
  4636. height:35px;
  4637. display:flex;
  4638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4639. font-weight:400;
  4640. font-style:normal;
  4641. font-size:12px;
  4642. color:#02A7F0;
  4643. }
  4644. #u1305 .text {
  4645. position:absolute;
  4646. align-self:center;
  4647. padding:2px 2px 2px 0px;
  4648. box-sizing:border-box;
  4649. width:100%;
  4650. }
  4651. #u1305_text {
  4652. border-width:0px;
  4653. word-wrap:break-word;
  4654. text-transform:none;
  4655. visibility:hidden;
  4656. }
  4657. #u1306_img {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:0px;
  4661. top:0px;
  4662. width:126px;
  4663. height:35px;
  4664. }
  4665. #u1306 {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:0px;
  4669. top:329px;
  4670. width:126px;
  4671. height:35px;
  4672. display:flex;
  4673. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4674. font-weight:400;
  4675. font-style:normal;
  4676. font-size:12px;
  4677. color:#606266;
  4678. }
  4679. #u1306 .text {
  4680. position:absolute;
  4681. align-self:center;
  4682. padding:2px 2px 2px 0px;
  4683. box-sizing:border-box;
  4684. width:100%;
  4685. }
  4686. #u1306_text {
  4687. border-width:0px;
  4688. word-wrap:break-word;
  4689. text-transform:none;
  4690. visibility:hidden;
  4691. }
  4692. #u1307_img {
  4693. border-width:0px;
  4694. position:absolute;
  4695. left:0px;
  4696. top:0px;
  4697. width:137px;
  4698. height:35px;
  4699. }
  4700. #u1307 {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:126px;
  4704. top:329px;
  4705. width:137px;
  4706. height:35px;
  4707. display:flex;
  4708. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4709. font-weight:400;
  4710. font-style:normal;
  4711. font-size:12px;
  4712. color:#606266;
  4713. }
  4714. #u1307 .text {
  4715. position:absolute;
  4716. align-self:center;
  4717. padding:2px 2px 2px 0px;
  4718. box-sizing:border-box;
  4719. width:100%;
  4720. }
  4721. #u1307_text {
  4722. border-width:0px;
  4723. word-wrap:break-word;
  4724. text-transform:none;
  4725. visibility:hidden;
  4726. }
  4727. #u1308_img {
  4728. border-width:0px;
  4729. position:absolute;
  4730. left:0px;
  4731. top:0px;
  4732. width:135px;
  4733. height:35px;
  4734. }
  4735. #u1308 {
  4736. border-width:0px;
  4737. position:absolute;
  4738. left:263px;
  4739. top:329px;
  4740. width:135px;
  4741. height:35px;
  4742. display:flex;
  4743. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4744. font-weight:400;
  4745. font-style:normal;
  4746. font-size:12px;
  4747. color:#606266;
  4748. }
  4749. #u1308 .text {
  4750. position:absolute;
  4751. align-self:center;
  4752. padding:2px 2px 2px 0px;
  4753. box-sizing:border-box;
  4754. width:100%;
  4755. }
  4756. #u1308_text {
  4757. border-width:0px;
  4758. word-wrap:break-word;
  4759. text-transform:none;
  4760. visibility:hidden;
  4761. }
  4762. #u1309_img {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:0px;
  4766. top:0px;
  4767. width:137px;
  4768. height:35px;
  4769. }
  4770. #u1309 {
  4771. border-width:0px;
  4772. position:absolute;
  4773. left:398px;
  4774. top:329px;
  4775. width:137px;
  4776. height:35px;
  4777. display:flex;
  4778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4779. font-weight:400;
  4780. font-style:normal;
  4781. font-size:12px;
  4782. color:#606266;
  4783. }
  4784. #u1309 .text {
  4785. position:absolute;
  4786. align-self:center;
  4787. padding:2px 2px 2px 0px;
  4788. box-sizing:border-box;
  4789. width:100%;
  4790. }
  4791. #u1309_text {
  4792. border-width:0px;
  4793. word-wrap:break-word;
  4794. text-transform:none;
  4795. visibility:hidden;
  4796. }
  4797. #u1310_img {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:0px;
  4801. top:0px;
  4802. width:137px;
  4803. height:35px;
  4804. }
  4805. #u1310 {
  4806. border-width:0px;
  4807. position:absolute;
  4808. left:535px;
  4809. top:329px;
  4810. width:137px;
  4811. height:35px;
  4812. display:flex;
  4813. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4814. font-weight:400;
  4815. font-style:normal;
  4816. font-size:12px;
  4817. color:#606266;
  4818. }
  4819. #u1310 .text {
  4820. position:absolute;
  4821. align-self:center;
  4822. padding:2px 2px 2px 0px;
  4823. box-sizing:border-box;
  4824. width:100%;
  4825. }
  4826. #u1310_text {
  4827. border-width:0px;
  4828. word-wrap:break-word;
  4829. text-transform:none;
  4830. visibility:hidden;
  4831. }
  4832. #u1311_img {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:0px;
  4836. top:0px;
  4837. width:137px;
  4838. height:35px;
  4839. }
  4840. #u1311 {
  4841. border-width:0px;
  4842. position:absolute;
  4843. left:672px;
  4844. top:329px;
  4845. width:137px;
  4846. height:35px;
  4847. display:flex;
  4848. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4849. font-weight:400;
  4850. font-style:normal;
  4851. font-size:12px;
  4852. color:#606266;
  4853. }
  4854. #u1311 .text {
  4855. position:absolute;
  4856. align-self:center;
  4857. padding:2px 2px 2px 0px;
  4858. box-sizing:border-box;
  4859. width:100%;
  4860. }
  4861. #u1311_text {
  4862. border-width:0px;
  4863. word-wrap:break-word;
  4864. text-transform:none;
  4865. visibility:hidden;
  4866. }
  4867. #u1312_img {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:0px;
  4871. top:0px;
  4872. width:137px;
  4873. height:35px;
  4874. }
  4875. #u1312 {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:809px;
  4879. top:329px;
  4880. width:137px;
  4881. height:35px;
  4882. display:flex;
  4883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4884. font-weight:400;
  4885. font-style:normal;
  4886. font-size:12px;
  4887. color:#606266;
  4888. }
  4889. #u1312 .text {
  4890. position:absolute;
  4891. align-self:center;
  4892. padding:2px 2px 2px 0px;
  4893. box-sizing:border-box;
  4894. width:100%;
  4895. }
  4896. #u1312_text {
  4897. border-width:0px;
  4898. word-wrap:break-word;
  4899. text-transform:none;
  4900. visibility:hidden;
  4901. }
  4902. #u1313_img {
  4903. border-width:0px;
  4904. position:absolute;
  4905. left:0px;
  4906. top:0px;
  4907. width:137px;
  4908. height:35px;
  4909. }
  4910. #u1313 {
  4911. border-width:0px;
  4912. position:absolute;
  4913. left:946px;
  4914. top:329px;
  4915. width:137px;
  4916. height:35px;
  4917. display:flex;
  4918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4919. font-weight:400;
  4920. font-style:normal;
  4921. font-size:12px;
  4922. color:#606266;
  4923. }
  4924. #u1313 .text {
  4925. position:absolute;
  4926. align-self:center;
  4927. padding:2px 2px 2px 0px;
  4928. box-sizing:border-box;
  4929. width:100%;
  4930. }
  4931. #u1313_text {
  4932. border-width:0px;
  4933. word-wrap:break-word;
  4934. text-transform:none;
  4935. visibility:hidden;
  4936. }
  4937. #u1314_img {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:0px;
  4941. top:0px;
  4942. width:144px;
  4943. height:35px;
  4944. }
  4945. #u1314 {
  4946. border-width:0px;
  4947. position:absolute;
  4948. left:1083px;
  4949. top:329px;
  4950. width:144px;
  4951. height:35px;
  4952. display:flex;
  4953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4954. font-weight:400;
  4955. font-style:normal;
  4956. font-size:12px;
  4957. color:#02A7F0;
  4958. }
  4959. #u1314 .text {
  4960. position:absolute;
  4961. align-self:center;
  4962. padding:2px 2px 2px 0px;
  4963. box-sizing:border-box;
  4964. width:100%;
  4965. }
  4966. #u1314_text {
  4967. border-width:0px;
  4968. word-wrap:break-word;
  4969. text-transform:none;
  4970. visibility:hidden;
  4971. }
  4972. #u1315 {
  4973. border-width:0px;
  4974. position:absolute;
  4975. left:0px;
  4976. top:0px;
  4977. width:0px;
  4978. height:0px;
  4979. }
  4980. #u1316_div {
  4981. border-width:0px;
  4982. position:absolute;
  4983. left:0px;
  4984. top:0px;
  4985. width:100px;
  4986. height:100px;
  4987. background:inherit;
  4988. background-color:rgba(255, 255, 255, 1);
  4989. box-sizing:border-box;
  4990. border-width:1px;
  4991. border-style:solid;
  4992. border-color:rgba(242, 242, 242, 1);
  4993. border-radius:3px;
  4994. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4995. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4996. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4997. }
  4998. #u1316 {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:1445px;
  5002. top:269px;
  5003. width:100px;
  5004. height:100px;
  5005. display:flex;
  5006. }
  5007. #u1316 .text {
  5008. position:absolute;
  5009. align-self:center;
  5010. padding:2px 2px 2px 2px;
  5011. box-sizing:border-box;
  5012. width:100%;
  5013. }
  5014. #u1316_text {
  5015. border-width:0px;
  5016. word-wrap:break-word;
  5017. text-transform:none;
  5018. visibility:hidden;
  5019. }
  5020. #u1317_div {
  5021. border-width:0px;
  5022. position:absolute;
  5023. left:0px;
  5024. top:0px;
  5025. width:83px;
  5026. height:40px;
  5027. background:inherit;
  5028. background-color:rgba(255, 255, 255, 1);
  5029. box-sizing:border-box;
  5030. border-width:1px;
  5031. border-style:solid;
  5032. border-color:rgba(242, 242, 242, 1);
  5033. border-left:0px;
  5034. border-top:0px;
  5035. border-right:0px;
  5036. border-radius:4px;
  5037. border-bottom-right-radius:0px;
  5038. border-bottom-left-radius:0px;
  5039. -moz-box-shadow:none;
  5040. -webkit-box-shadow:none;
  5041. box-shadow:none;
  5042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5043. font-weight:400;
  5044. font-style:normal;
  5045. font-size:14px;
  5046. }
  5047. #u1317 {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:1453px;
  5051. top:280px;
  5052. width:83px;
  5053. height:40px;
  5054. display:flex;
  5055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5056. font-weight:400;
  5057. font-style:normal;
  5058. font-size:14px;
  5059. }
  5060. #u1317 .text {
  5061. position:absolute;
  5062. align-self:center;
  5063. padding:5px 0px 5px 0px;
  5064. box-sizing:border-box;
  5065. width:100%;
  5066. }
  5067. #u1317_text {
  5068. border-width:0px;
  5069. word-wrap:break-word;
  5070. text-transform:none;
  5071. }
  5072. #u1318_div {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:0px;
  5076. top:0px;
  5077. width:83px;
  5078. height:40px;
  5079. background:inherit;
  5080. background-color:rgba(255, 255, 255, 1);
  5081. border:none;
  5082. border-left:0px;
  5083. border-top:0px;
  5084. border-right:0px;
  5085. border-radius:4px;
  5086. border-bottom-right-radius:0px;
  5087. border-bottom-left-radius:0px;
  5088. -moz-box-shadow:none;
  5089. -webkit-box-shadow:none;
  5090. box-shadow:none;
  5091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5092. font-weight:400;
  5093. font-style:normal;
  5094. font-size:14px;
  5095. }
  5096. #u1318 {
  5097. border-width:0px;
  5098. position:absolute;
  5099. left:1453px;
  5100. top:320px;
  5101. width:83px;
  5102. height:40px;
  5103. display:flex;
  5104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5105. font-weight:400;
  5106. font-style:normal;
  5107. font-size:14px;
  5108. }
  5109. #u1318 .text {
  5110. position:absolute;
  5111. align-self:center;
  5112. padding:5px 0px 5px 0px;
  5113. box-sizing:border-box;
  5114. width:100%;
  5115. }
  5116. #u1318_text {
  5117. border-width:0px;
  5118. word-wrap:break-word;
  5119. text-transform:none;
  5120. }
  5121. #u1319 {
  5122. border-width:0px;
  5123. position:absolute;
  5124. left:0px;
  5125. top:0px;
  5126. width:0px;
  5127. height:0px;
  5128. }
  5129. #u1320_div {
  5130. border-width:0px;
  5131. position:absolute;
  5132. left:0px;
  5133. top:0px;
  5134. width:140px;
  5135. height:30px;
  5136. background:inherit;
  5137. background-color:rgba(255, 255, 255, 1);
  5138. box-sizing:border-box;
  5139. border-width:1px;
  5140. border-style:solid;
  5141. border-color:rgba(215, 215, 215, 1);
  5142. border-radius:4px;
  5143. -moz-box-shadow:none;
  5144. -webkit-box-shadow:none;
  5145. box-shadow:none;
  5146. font-size:11px;
  5147. }
  5148. #u1320 {
  5149. border-width:0px;
  5150. position:absolute;
  5151. left:798px;
  5152. top:105px;
  5153. width:140px;
  5154. height:30px;
  5155. display:flex;
  5156. font-size:11px;
  5157. }
  5158. #u1320 .text {
  5159. position:absolute;
  5160. align-self:center;
  5161. padding:2px 2px 2px 2px;
  5162. box-sizing:border-box;
  5163. width:100%;
  5164. }
  5165. #u1320_text {
  5166. border-width:0px;
  5167. word-wrap:break-word;
  5168. text-transform:none;
  5169. visibility:hidden;
  5170. }
  5171. #u1321_input {
  5172. position:absolute;
  5173. left:0px;
  5174. top:0px;
  5175. width:126px;
  5176. height:23px;
  5177. padding:2px 2px 2px 2px;
  5178. font-family:'ArialMT', 'Arial', sans-serif;
  5179. font-weight:400;
  5180. font-style:normal;
  5181. font-size:11px;
  5182. letter-spacing:normal;
  5183. color:#AAAAAA;
  5184. vertical-align:none;
  5185. text-align:left;
  5186. text-transform:none;
  5187. background-color:transparent;
  5188. border-color:transparent;
  5189. }
  5190. #u1321_input.disabled {
  5191. position:absolute;
  5192. left:0px;
  5193. top:0px;
  5194. width:126px;
  5195. height:23px;
  5196. padding:2px 2px 2px 2px;
  5197. font-family:'ArialMT', 'Arial', sans-serif;
  5198. font-weight:400;
  5199. font-style:normal;
  5200. font-size:11px;
  5201. letter-spacing:normal;
  5202. color:#AAAAAA;
  5203. vertical-align:none;
  5204. text-align:left;
  5205. text-transform:none;
  5206. background-color:transparent;
  5207. border-color:transparent;
  5208. }
  5209. #u1321_div {
  5210. border-width:0px;
  5211. position:absolute;
  5212. left:0px;
  5213. top:0px;
  5214. width:126px;
  5215. height:23px;
  5216. background:inherit;
  5217. background-color:rgba(255, 255, 255, 1);
  5218. border:none;
  5219. border-radius:0px;
  5220. -moz-box-shadow:none;
  5221. -webkit-box-shadow:none;
  5222. box-shadow:none;
  5223. font-size:11px;
  5224. color:#AAAAAA;
  5225. }
  5226. #u1321 {
  5227. border-width:0px;
  5228. position:absolute;
  5229. left:805px;
  5230. top:107px;
  5231. width:126px;
  5232. height:23px;
  5233. display:flex;
  5234. font-size:11px;
  5235. color:#AAAAAA;
  5236. }
  5237. #u1321 .text {
  5238. position:absolute;
  5239. align-self:flex-start;
  5240. padding:2px 2px 2px 2px;
  5241. box-sizing:border-box;
  5242. width:100%;
  5243. }
  5244. #u1321_div.disabled {
  5245. border-width:0px;
  5246. position:absolute;
  5247. left:0px;
  5248. top:0px;
  5249. width:126px;
  5250. height:23px;
  5251. background:inherit;
  5252. background-color:rgba(240, 240, 240, 1);
  5253. border:none;
  5254. border-radius:0px;
  5255. -moz-box-shadow:none;
  5256. -webkit-box-shadow:none;
  5257. box-shadow:none;
  5258. font-size:11px;
  5259. color:#AAAAAA;
  5260. }
  5261. #u1321.disabled {
  5262. }
  5263. .u1321_input_option {
  5264. font-size:11px;
  5265. }
  5266. #u1322 {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:0px;
  5270. top:0px;
  5271. width:0px;
  5272. height:0px;
  5273. }
  5274. #u1323_div {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:0px;
  5278. top:0px;
  5279. width:140px;
  5280. height:30px;
  5281. background:inherit;
  5282. background-color:rgba(255, 255, 255, 1);
  5283. box-sizing:border-box;
  5284. border-width:1px;
  5285. border-style:solid;
  5286. border-color:rgba(215, 215, 215, 1);
  5287. border-radius:4px;
  5288. -moz-box-shadow:none;
  5289. -webkit-box-shadow:none;
  5290. box-shadow:none;
  5291. font-size:11px;
  5292. }
  5293. #u1323 {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:948px;
  5297. top:105px;
  5298. width:140px;
  5299. height:30px;
  5300. display:flex;
  5301. font-size:11px;
  5302. }
  5303. #u1323 .text {
  5304. position:absolute;
  5305. align-self:center;
  5306. padding:2px 2px 2px 2px;
  5307. box-sizing:border-box;
  5308. width:100%;
  5309. }
  5310. #u1323_text {
  5311. border-width:0px;
  5312. word-wrap:break-word;
  5313. text-transform:none;
  5314. visibility:hidden;
  5315. }
  5316. #u1324_input {
  5317. position:absolute;
  5318. left:0px;
  5319. top:0px;
  5320. width:126px;
  5321. height:23px;
  5322. padding:2px 2px 2px 2px;
  5323. font-family:'ArialMT', 'Arial', sans-serif;
  5324. font-weight:400;
  5325. font-style:normal;
  5326. font-size:11px;
  5327. letter-spacing:normal;
  5328. color:#AAAAAA;
  5329. vertical-align:none;
  5330. text-align:left;
  5331. text-transform:none;
  5332. background-color:transparent;
  5333. border-color:transparent;
  5334. }
  5335. #u1324_input.disabled {
  5336. position:absolute;
  5337. left:0px;
  5338. top:0px;
  5339. width:126px;
  5340. height:23px;
  5341. padding:2px 2px 2px 2px;
  5342. font-family:'ArialMT', 'Arial', sans-serif;
  5343. font-weight:400;
  5344. font-style:normal;
  5345. font-size:11px;
  5346. letter-spacing:normal;
  5347. color:#AAAAAA;
  5348. vertical-align:none;
  5349. text-align:left;
  5350. text-transform:none;
  5351. background-color:transparent;
  5352. border-color:transparent;
  5353. }
  5354. #u1324_div {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:0px;
  5358. top:0px;
  5359. width:126px;
  5360. height:23px;
  5361. background:inherit;
  5362. background-color:rgba(255, 255, 255, 1);
  5363. border:none;
  5364. border-radius:0px;
  5365. -moz-box-shadow:none;
  5366. -webkit-box-shadow:none;
  5367. box-shadow:none;
  5368. font-size:11px;
  5369. color:#AAAAAA;
  5370. }
  5371. #u1324 {
  5372. border-width:0px;
  5373. position:absolute;
  5374. left:955px;
  5375. top:107px;
  5376. width:126px;
  5377. height:23px;
  5378. display:flex;
  5379. font-size:11px;
  5380. color:#AAAAAA;
  5381. }
  5382. #u1324 .text {
  5383. position:absolute;
  5384. align-self:flex-start;
  5385. padding:2px 2px 2px 2px;
  5386. box-sizing:border-box;
  5387. width:100%;
  5388. }
  5389. #u1324_div.disabled {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:0px;
  5393. top:0px;
  5394. width:126px;
  5395. height:23px;
  5396. background:inherit;
  5397. background-color:rgba(240, 240, 240, 1);
  5398. border:none;
  5399. border-radius:0px;
  5400. -moz-box-shadow:none;
  5401. -webkit-box-shadow:none;
  5402. box-shadow:none;
  5403. font-size:11px;
  5404. color:#AAAAAA;
  5405. }
  5406. #u1324.disabled {
  5407. }
  5408. .u1324_input_option {
  5409. font-size:11px;
  5410. }
  5411. #u1325 {
  5412. border-width:0px;
  5413. position:absolute;
  5414. left:0px;
  5415. top:0px;
  5416. width:0px;
  5417. height:0px;
  5418. }
  5419. #u1326_div {
  5420. border-width:0px;
  5421. position:absolute;
  5422. left:0px;
  5423. top:0px;
  5424. width:140px;
  5425. height:30px;
  5426. background:inherit;
  5427. background-color:rgba(255, 255, 255, 1);
  5428. box-sizing:border-box;
  5429. border-width:1px;
  5430. border-style:solid;
  5431. border-color:rgba(215, 215, 215, 1);
  5432. border-radius:4px;
  5433. -moz-box-shadow:none;
  5434. -webkit-box-shadow:none;
  5435. box-shadow:none;
  5436. font-size:11px;
  5437. }
  5438. #u1326 {
  5439. border-width:0px;
  5440. position:absolute;
  5441. left:1098px;
  5442. top:105px;
  5443. width:140px;
  5444. height:30px;
  5445. display:flex;
  5446. font-size:11px;
  5447. }
  5448. #u1326 .text {
  5449. position:absolute;
  5450. align-self:center;
  5451. padding:2px 2px 2px 2px;
  5452. box-sizing:border-box;
  5453. width:100%;
  5454. }
  5455. #u1326_text {
  5456. border-width:0px;
  5457. word-wrap:break-word;
  5458. text-transform:none;
  5459. visibility:hidden;
  5460. }
  5461. #u1327_input {
  5462. position:absolute;
  5463. left:0px;
  5464. top:0px;
  5465. width:126px;
  5466. height:23px;
  5467. padding:2px 2px 2px 2px;
  5468. font-family:'ArialMT', 'Arial', sans-serif;
  5469. font-weight:400;
  5470. font-style:normal;
  5471. font-size:11px;
  5472. letter-spacing:normal;
  5473. color:#AAAAAA;
  5474. vertical-align:none;
  5475. text-align:left;
  5476. text-transform:none;
  5477. background-color:transparent;
  5478. border-color:transparent;
  5479. }
  5480. #u1327_input.disabled {
  5481. position:absolute;
  5482. left:0px;
  5483. top:0px;
  5484. width:126px;
  5485. height:23px;
  5486. padding:2px 2px 2px 2px;
  5487. font-family:'ArialMT', 'Arial', sans-serif;
  5488. font-weight:400;
  5489. font-style:normal;
  5490. font-size:11px;
  5491. letter-spacing:normal;
  5492. color:#AAAAAA;
  5493. vertical-align:none;
  5494. text-align:left;
  5495. text-transform:none;
  5496. background-color:transparent;
  5497. border-color:transparent;
  5498. }
  5499. #u1327_div {
  5500. border-width:0px;
  5501. position:absolute;
  5502. left:0px;
  5503. top:0px;
  5504. width:126px;
  5505. height:23px;
  5506. background:inherit;
  5507. background-color:rgba(255, 255, 255, 1);
  5508. border:none;
  5509. border-radius:0px;
  5510. -moz-box-shadow:none;
  5511. -webkit-box-shadow:none;
  5512. box-shadow:none;
  5513. font-size:11px;
  5514. color:#AAAAAA;
  5515. }
  5516. #u1327 {
  5517. border-width:0px;
  5518. position:absolute;
  5519. left:1105px;
  5520. top:107px;
  5521. width:126px;
  5522. height:23px;
  5523. display:flex;
  5524. font-size:11px;
  5525. color:#AAAAAA;
  5526. }
  5527. #u1327 .text {
  5528. position:absolute;
  5529. align-self:flex-start;
  5530. padding:2px 2px 2px 2px;
  5531. box-sizing:border-box;
  5532. width:100%;
  5533. }
  5534. #u1327_div.disabled {
  5535. border-width:0px;
  5536. position:absolute;
  5537. left:0px;
  5538. top:0px;
  5539. width:126px;
  5540. height:23px;
  5541. background:inherit;
  5542. background-color:rgba(240, 240, 240, 1);
  5543. border:none;
  5544. border-radius:0px;
  5545. -moz-box-shadow:none;
  5546. -webkit-box-shadow:none;
  5547. box-shadow:none;
  5548. font-size:11px;
  5549. color:#AAAAAA;
  5550. }
  5551. #u1327.disabled {
  5552. }
  5553. .u1327_input_option {
  5554. font-size:11px;
  5555. }
  5556. #u1328_div {
  5557. border-width:0px;
  5558. position:absolute;
  5559. left:0px;
  5560. top:0px;
  5561. width:59px;
  5562. height:30px;
  5563. background:inherit;
  5564. background-color:rgba(24, 144, 255, 1);
  5565. box-sizing:border-box;
  5566. border-width:1px;
  5567. border-style:solid;
  5568. border-color:rgba(0, 153, 255, 1);
  5569. border-radius:4px;
  5570. -moz-box-shadow:none;
  5571. -webkit-box-shadow:none;
  5572. box-shadow:none;
  5573. font-family:'Microsoft YaHei', sans-serif;
  5574. font-weight:400;
  5575. font-style:normal;
  5576. font-size:14px;
  5577. color:#FFFFFF;
  5578. }
  5579. #u1328 {
  5580. border-width:0px;
  5581. position:absolute;
  5582. left:1248px;
  5583. top:105px;
  5584. width:59px;
  5585. height:30px;
  5586. display:flex;
  5587. font-family:'Microsoft YaHei', sans-serif;
  5588. font-weight:400;
  5589. font-style:normal;
  5590. font-size:14px;
  5591. color:#FFFFFF;
  5592. }
  5593. #u1328 .text {
  5594. position:absolute;
  5595. align-self:center;
  5596. padding:5px 15px 5px 15px;
  5597. box-sizing:border-box;
  5598. width:100%;
  5599. }
  5600. #u1328_text {
  5601. border-width:0px;
  5602. white-space:nowrap;
  5603. text-transform:none;
  5604. }
  5605. #u1329_div {
  5606. border-width:0px;
  5607. position:absolute;
  5608. left:0px;
  5609. top:0px;
  5610. width:55px;
  5611. height:30px;
  5612. background:inherit;
  5613. background-color:rgba(255, 255, 255, 1);
  5614. box-sizing:border-box;
  5615. border-width:1px;
  5616. border-style:solid;
  5617. border-color:rgba(170, 170, 170, 1);
  5618. border-radius:4px;
  5619. -moz-box-shadow:none;
  5620. -webkit-box-shadow:none;
  5621. box-shadow:none;
  5622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5623. font-weight:400;
  5624. font-style:normal;
  5625. font-size:12px;
  5626. color:#555555;
  5627. }
  5628. #u1329 {
  5629. border-width:0px;
  5630. position:absolute;
  5631. left:1317px;
  5632. top:105px;
  5633. width:55px;
  5634. height:30px;
  5635. display:flex;
  5636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5637. font-weight:400;
  5638. font-style:normal;
  5639. font-size:12px;
  5640. color:#555555;
  5641. }
  5642. #u1329 .text {
  5643. position:absolute;
  5644. align-self:center;
  5645. padding:5px 15px 5px 15px;
  5646. box-sizing:border-box;
  5647. width:100%;
  5648. }
  5649. #u1329_text {
  5650. border-width:0px;
  5651. white-space:nowrap;
  5652. text-transform:none;
  5653. }
  5654. #u1330_img {
  5655. border-width:0px;
  5656. position:absolute;
  5657. left:0px;
  5658. top:0px;
  5659. width:13px;
  5660. height:13px;
  5661. }
  5662. #u1330 {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:427px;
  5666. top:69px;
  5667. width:13px;
  5668. height:13px;
  5669. display:flex;
  5670. }
  5671. #u1330 .text {
  5672. position:absolute;
  5673. align-self:center;
  5674. padding:2px 2px 2px 2px;
  5675. box-sizing:border-box;
  5676. width:100%;
  5677. }
  5678. #u1330_text {
  5679. border-width:0px;
  5680. word-wrap:break-word;
  5681. text-transform:none;
  5682. visibility:hidden;
  5683. }
  5684. #u1331 {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:0px;
  5688. top:0px;
  5689. width:0px;
  5690. height:0px;
  5691. }
  5692. #u1332_div {
  5693. border-width:0px;
  5694. position:absolute;
  5695. left:0px;
  5696. top:0px;
  5697. width:140px;
  5698. height:30px;
  5699. background:inherit;
  5700. background-color:rgba(255, 255, 255, 1);
  5701. box-sizing:border-box;
  5702. border-width:1px;
  5703. border-style:solid;
  5704. border-color:rgba(215, 215, 215, 1);
  5705. border-radius:4px;
  5706. -moz-box-shadow:none;
  5707. -webkit-box-shadow:none;
  5708. box-shadow:none;
  5709. font-size:11px;
  5710. }
  5711. #u1332 {
  5712. border-width:0px;
  5713. position:absolute;
  5714. left:348px;
  5715. top:105px;
  5716. width:140px;
  5717. height:30px;
  5718. display:flex;
  5719. font-size:11px;
  5720. }
  5721. #u1332 .text {
  5722. position:absolute;
  5723. align-self:center;
  5724. padding:2px 2px 2px 2px;
  5725. box-sizing:border-box;
  5726. width:100%;
  5727. }
  5728. #u1332_text {
  5729. border-width:0px;
  5730. word-wrap:break-word;
  5731. text-transform:none;
  5732. visibility:hidden;
  5733. }
  5734. #u1333_input {
  5735. position:absolute;
  5736. left:0px;
  5737. top:0px;
  5738. width:120px;
  5739. height:23px;
  5740. padding:2px 2px 2px 2px;
  5741. font-family:'ArialMT', 'Arial', sans-serif;
  5742. font-weight:400;
  5743. font-style:normal;
  5744. font-size:11px;
  5745. letter-spacing:normal;
  5746. color:#AAAAAA;
  5747. vertical-align:none;
  5748. text-align:left;
  5749. text-transform:none;
  5750. background-color:transparent;
  5751. border-color:transparent;
  5752. }
  5753. #u1333_input.disabled {
  5754. position:absolute;
  5755. left:0px;
  5756. top:0px;
  5757. width:120px;
  5758. height:23px;
  5759. padding:2px 2px 2px 2px;
  5760. font-family:'ArialMT', 'Arial', sans-serif;
  5761. font-weight:400;
  5762. font-style:normal;
  5763. font-size:11px;
  5764. letter-spacing:normal;
  5765. color:#AAAAAA;
  5766. vertical-align:none;
  5767. text-align:left;
  5768. text-transform:none;
  5769. background-color:transparent;
  5770. border-color:transparent;
  5771. }
  5772. #u1333_div {
  5773. border-width:0px;
  5774. position:absolute;
  5775. left:0px;
  5776. top:0px;
  5777. width:120px;
  5778. height:23px;
  5779. background:inherit;
  5780. background-color:rgba(255, 255, 255, 1);
  5781. border:none;
  5782. border-radius:0px;
  5783. -moz-box-shadow:none;
  5784. -webkit-box-shadow:none;
  5785. box-shadow:none;
  5786. font-size:11px;
  5787. color:#AAAAAA;
  5788. }
  5789. #u1333 {
  5790. border-width:0px;
  5791. position:absolute;
  5792. left:355px;
  5793. top:107px;
  5794. width:120px;
  5795. height:23px;
  5796. display:flex;
  5797. font-size:11px;
  5798. color:#AAAAAA;
  5799. }
  5800. #u1333 .text {
  5801. position:absolute;
  5802. align-self:flex-start;
  5803. padding:2px 2px 2px 2px;
  5804. box-sizing:border-box;
  5805. width:100%;
  5806. }
  5807. #u1333_div.disabled {
  5808. border-width:0px;
  5809. position:absolute;
  5810. left:0px;
  5811. top:0px;
  5812. width:120px;
  5813. height:23px;
  5814. background:inherit;
  5815. background-color:rgba(240, 240, 240, 1);
  5816. border:none;
  5817. border-radius:0px;
  5818. -moz-box-shadow:none;
  5819. -webkit-box-shadow:none;
  5820. box-shadow:none;
  5821. font-size:11px;
  5822. color:#AAAAAA;
  5823. }
  5824. #u1333.disabled {
  5825. }
  5826. .u1333_input_option {
  5827. font-size:11px;
  5828. }
  5829. #u1334 {
  5830. border-width:0px;
  5831. position:absolute;
  5832. left:0px;
  5833. top:0px;
  5834. width:0px;
  5835. height:0px;
  5836. }
  5837. #u1335_div {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:0px;
  5841. top:0px;
  5842. width:140px;
  5843. height:30px;
  5844. background:inherit;
  5845. background-color:rgba(255, 255, 255, 1);
  5846. box-sizing:border-box;
  5847. border-width:1px;
  5848. border-style:solid;
  5849. border-color:rgba(215, 215, 215, 1);
  5850. border-radius:4px;
  5851. -moz-box-shadow:none;
  5852. -webkit-box-shadow:none;
  5853. box-shadow:none;
  5854. font-size:11px;
  5855. }
  5856. #u1335 {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:498px;
  5860. top:105px;
  5861. width:140px;
  5862. height:30px;
  5863. display:flex;
  5864. font-size:11px;
  5865. }
  5866. #u1335 .text {
  5867. position:absolute;
  5868. align-self:center;
  5869. padding:2px 2px 2px 2px;
  5870. box-sizing:border-box;
  5871. width:100%;
  5872. }
  5873. #u1335_text {
  5874. border-width:0px;
  5875. word-wrap:break-word;
  5876. text-transform:none;
  5877. visibility:hidden;
  5878. }
  5879. #u1336_input {
  5880. position:absolute;
  5881. left:0px;
  5882. top:0px;
  5883. width:126px;
  5884. height:23px;
  5885. padding:2px 2px 2px 2px;
  5886. font-family:'ArialMT', 'Arial', sans-serif;
  5887. font-weight:400;
  5888. font-style:normal;
  5889. font-size:11px;
  5890. letter-spacing:normal;
  5891. color:#AAAAAA;
  5892. vertical-align:none;
  5893. text-align:left;
  5894. text-transform:none;
  5895. background-color:transparent;
  5896. border-color:transparent;
  5897. }
  5898. #u1336_input.disabled {
  5899. position:absolute;
  5900. left:0px;
  5901. top:0px;
  5902. width:126px;
  5903. height:23px;
  5904. padding:2px 2px 2px 2px;
  5905. font-family:'ArialMT', 'Arial', sans-serif;
  5906. font-weight:400;
  5907. font-style:normal;
  5908. font-size:11px;
  5909. letter-spacing:normal;
  5910. color:#AAAAAA;
  5911. vertical-align:none;
  5912. text-align:left;
  5913. text-transform:none;
  5914. background-color:transparent;
  5915. border-color:transparent;
  5916. }
  5917. #u1336_div {
  5918. border-width:0px;
  5919. position:absolute;
  5920. left:0px;
  5921. top:0px;
  5922. width:126px;
  5923. height:23px;
  5924. background:inherit;
  5925. background-color:rgba(255, 255, 255, 1);
  5926. border:none;
  5927. border-radius:0px;
  5928. -moz-box-shadow:none;
  5929. -webkit-box-shadow:none;
  5930. box-shadow:none;
  5931. font-size:11px;
  5932. color:#AAAAAA;
  5933. }
  5934. #u1336 {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:505px;
  5938. top:107px;
  5939. width:126px;
  5940. height:23px;
  5941. display:flex;
  5942. font-size:11px;
  5943. color:#AAAAAA;
  5944. }
  5945. #u1336 .text {
  5946. position:absolute;
  5947. align-self:flex-start;
  5948. padding:2px 2px 2px 2px;
  5949. box-sizing:border-box;
  5950. width:100%;
  5951. }
  5952. #u1336_div.disabled {
  5953. border-width:0px;
  5954. position:absolute;
  5955. left:0px;
  5956. top:0px;
  5957. width:126px;
  5958. height:23px;
  5959. background:inherit;
  5960. background-color:rgba(240, 240, 240, 1);
  5961. border:none;
  5962. border-radius:0px;
  5963. -moz-box-shadow:none;
  5964. -webkit-box-shadow:none;
  5965. box-shadow:none;
  5966. font-size:11px;
  5967. color:#AAAAAA;
  5968. }
  5969. #u1336.disabled {
  5970. }
  5971. .u1336_input_option {
  5972. font-size:11px;
  5973. }
  5974. #u1337 {
  5975. border-width:0px;
  5976. position:absolute;
  5977. left:0px;
  5978. top:0px;
  5979. width:0px;
  5980. height:0px;
  5981. }
  5982. #u1338_div {
  5983. border-width:0px;
  5984. position:absolute;
  5985. left:0px;
  5986. top:0px;
  5987. width:140px;
  5988. height:30px;
  5989. background:inherit;
  5990. background-color:rgba(255, 255, 255, 1);
  5991. box-sizing:border-box;
  5992. border-width:1px;
  5993. border-style:solid;
  5994. border-color:rgba(215, 215, 215, 1);
  5995. border-radius:4px;
  5996. -moz-box-shadow:none;
  5997. -webkit-box-shadow:none;
  5998. box-shadow:none;
  5999. font-size:11px;
  6000. }
  6001. #u1338 {
  6002. border-width:0px;
  6003. position:absolute;
  6004. left:648px;
  6005. top:105px;
  6006. width:140px;
  6007. height:30px;
  6008. display:flex;
  6009. font-size:11px;
  6010. }
  6011. #u1338 .text {
  6012. position:absolute;
  6013. align-self:center;
  6014. padding:2px 2px 2px 2px;
  6015. box-sizing:border-box;
  6016. width:100%;
  6017. }
  6018. #u1338_text {
  6019. border-width:0px;
  6020. word-wrap:break-word;
  6021. text-transform:none;
  6022. visibility:hidden;
  6023. }
  6024. #u1339_input {
  6025. position:absolute;
  6026. left:0px;
  6027. top:0px;
  6028. width:126px;
  6029. height:23px;
  6030. padding:2px 2px 2px 2px;
  6031. font-family:'ArialMT', 'Arial', sans-serif;
  6032. font-weight:400;
  6033. font-style:normal;
  6034. font-size:11px;
  6035. letter-spacing:normal;
  6036. color:#AAAAAA;
  6037. vertical-align:none;
  6038. text-align:left;
  6039. text-transform:none;
  6040. background-color:transparent;
  6041. border-color:transparent;
  6042. }
  6043. #u1339_input.disabled {
  6044. position:absolute;
  6045. left:0px;
  6046. top:0px;
  6047. width:126px;
  6048. height:23px;
  6049. padding:2px 2px 2px 2px;
  6050. font-family:'ArialMT', 'Arial', sans-serif;
  6051. font-weight:400;
  6052. font-style:normal;
  6053. font-size:11px;
  6054. letter-spacing:normal;
  6055. color:#AAAAAA;
  6056. vertical-align:none;
  6057. text-align:left;
  6058. text-transform:none;
  6059. background-color:transparent;
  6060. border-color:transparent;
  6061. }
  6062. #u1339_div {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:0px;
  6066. top:0px;
  6067. width:126px;
  6068. height:23px;
  6069. background:inherit;
  6070. background-color:rgba(255, 255, 255, 1);
  6071. border:none;
  6072. border-radius:0px;
  6073. -moz-box-shadow:none;
  6074. -webkit-box-shadow:none;
  6075. box-shadow:none;
  6076. font-size:11px;
  6077. color:#AAAAAA;
  6078. }
  6079. #u1339 {
  6080. border-width:0px;
  6081. position:absolute;
  6082. left:655px;
  6083. top:107px;
  6084. width:126px;
  6085. height:23px;
  6086. display:flex;
  6087. font-size:11px;
  6088. color:#AAAAAA;
  6089. }
  6090. #u1339 .text {
  6091. position:absolute;
  6092. align-self:flex-start;
  6093. padding:2px 2px 2px 2px;
  6094. box-sizing:border-box;
  6095. width:100%;
  6096. }
  6097. #u1339_div.disabled {
  6098. border-width:0px;
  6099. position:absolute;
  6100. left:0px;
  6101. top:0px;
  6102. width:126px;
  6103. height:23px;
  6104. background:inherit;
  6105. background-color:rgba(240, 240, 240, 1);
  6106. border:none;
  6107. border-radius:0px;
  6108. -moz-box-shadow:none;
  6109. -webkit-box-shadow:none;
  6110. box-shadow:none;
  6111. font-size:11px;
  6112. color:#AAAAAA;
  6113. }
  6114. #u1339.disabled {
  6115. }
  6116. .u1339_input_option {
  6117. font-size:11px;
  6118. }
  6119. #u1340 {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:0px;
  6123. top:0px;
  6124. width:0px;
  6125. height:0px;
  6126. }
  6127. #u1341_div {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:0px;
  6131. top:0px;
  6132. width:200px;
  6133. height:1187px;
  6134. background:inherit;
  6135. background-color:rgba(255, 255, 255, 1);
  6136. border:none;
  6137. border-radius:0px;
  6138. -moz-box-shadow:none;
  6139. -webkit-box-shadow:none;
  6140. box-shadow:none;
  6141. }
  6142. #u1341 {
  6143. border-width:0px;
  6144. position:absolute;
  6145. left:120px;
  6146. top:50px;
  6147. width:200px;
  6148. height:1187px;
  6149. display:flex;
  6150. }
  6151. #u1341 .text {
  6152. position:absolute;
  6153. align-self:center;
  6154. padding:2px 2px 2px 2px;
  6155. box-sizing:border-box;
  6156. width:100%;
  6157. }
  6158. #u1341_text {
  6159. border-width:0px;
  6160. word-wrap:break-word;
  6161. text-transform:none;
  6162. visibility:hidden;
  6163. }
  6164. #u1342_div {
  6165. border-width:0px;
  6166. position:absolute;
  6167. left:0px;
  6168. top:0px;
  6169. width:200px;
  6170. height:60px;
  6171. background:inherit;
  6172. background-color:rgba(224, 231, 247, 1);
  6173. border:none;
  6174. border-radius:0px;
  6175. -moz-box-shadow:none;
  6176. -webkit-box-shadow:none;
  6177. box-shadow:none;
  6178. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6179. font-weight:500;
  6180. font-style:normal;
  6181. font-size:18px;
  6182. }
  6183. #u1342 {
  6184. border-width:0px;
  6185. position:absolute;
  6186. left:120px;
  6187. top:50px;
  6188. width:200px;
  6189. height:60px;
  6190. display:flex;
  6191. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6192. font-weight:500;
  6193. font-style:normal;
  6194. font-size:18px;
  6195. }
  6196. #u1342 .text {
  6197. position:absolute;
  6198. align-self:center;
  6199. padding:0px 0px 0px 20px;
  6200. box-sizing:border-box;
  6201. width:100%;
  6202. }
  6203. #u1342_text {
  6204. border-width:0px;
  6205. word-wrap:break-word;
  6206. text-transform:none;
  6207. }
  6208. #u1343_div {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:0px;
  6212. top:0px;
  6213. width:97px;
  6214. height:22px;
  6215. background:inherit;
  6216. background-color:rgba(255, 255, 255, 0);
  6217. border:none;
  6218. border-radius:0px;
  6219. -moz-box-shadow:none;
  6220. -webkit-box-shadow:none;
  6221. box-shadow:none;
  6222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6223. font-weight:400;
  6224. font-style:normal;
  6225. font-size:16px;
  6226. }
  6227. #u1343 {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:147px;
  6231. top:167px;
  6232. width:97px;
  6233. height:22px;
  6234. display:flex;
  6235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6236. font-weight:400;
  6237. font-style:normal;
  6238. font-size:16px;
  6239. }
  6240. #u1343 .text {
  6241. position:absolute;
  6242. align-self:flex-start;
  6243. padding:0px 0px 0px 0px;
  6244. box-sizing:border-box;
  6245. width:100%;
  6246. }
  6247. #u1343_text {
  6248. border-width:0px;
  6249. word-wrap:break-word;
  6250. text-transform:none;
  6251. }
  6252. #u1344_img {
  6253. border-width:0px;
  6254. position:absolute;
  6255. left:0px;
  6256. top:0px;
  6257. width:201px;
  6258. height:2px;
  6259. }
  6260. #u1344 {
  6261. border-width:0px;
  6262. position:absolute;
  6263. left:120px;
  6264. top:255px;
  6265. width:200px;
  6266. height:1px;
  6267. display:flex;
  6268. }
  6269. #u1344 .text {
  6270. position:absolute;
  6271. align-self:center;
  6272. padding:2px 2px 2px 2px;
  6273. box-sizing:border-box;
  6274. width:100%;
  6275. }
  6276. #u1344_text {
  6277. border-width:0px;
  6278. word-wrap:break-word;
  6279. text-transform:none;
  6280. visibility:hidden;
  6281. }
  6282. #u1345_div {
  6283. border-width:0px;
  6284. position:absolute;
  6285. left:0px;
  6286. top:0px;
  6287. width:65px;
  6288. height:22px;
  6289. background:inherit;
  6290. background-color:rgba(255, 255, 255, 0);
  6291. border:none;
  6292. border-radius:0px;
  6293. -moz-box-shadow:none;
  6294. -webkit-box-shadow:none;
  6295. box-shadow:none;
  6296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6297. font-weight:400;
  6298. font-style:normal;
  6299. font-size:16px;
  6300. }
  6301. #u1345 {
  6302. border-width:0px;
  6303. position:absolute;
  6304. left:147px;
  6305. top:208px;
  6306. width:65px;
  6307. height:22px;
  6308. display:flex;
  6309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6310. font-weight:400;
  6311. font-style:normal;
  6312. font-size:16px;
  6313. }
  6314. #u1345 .text {
  6315. position:absolute;
  6316. align-self:flex-start;
  6317. padding:0px 0px 0px 0px;
  6318. box-sizing:border-box;
  6319. width:100%;
  6320. }
  6321. #u1345_text {
  6322. border-width:0px;
  6323. white-space:nowrap;
  6324. text-transform:none;
  6325. }
  6326. #u1346_img {
  6327. border-width:0px;
  6328. position:absolute;
  6329. left:0px;
  6330. top:0px;
  6331. width:201px;
  6332. height:2px;
  6333. }
  6334. #u1346 {
  6335. border-width:0px;
  6336. position:absolute;
  6337. left:120px;
  6338. top:583px;
  6339. width:200px;
  6340. height:1px;
  6341. display:flex;
  6342. }
  6343. #u1346 .text {
  6344. position:absolute;
  6345. align-self:center;
  6346. padding:2px 2px 2px 2px;
  6347. box-sizing:border-box;
  6348. width:100%;
  6349. }
  6350. #u1346_text {
  6351. border-width:0px;
  6352. word-wrap:break-word;
  6353. text-transform:none;
  6354. visibility:hidden;
  6355. }
  6356. #u1347_div {
  6357. border-width:0px;
  6358. position:absolute;
  6359. left:0px;
  6360. top:0px;
  6361. width:65px;
  6362. height:22px;
  6363. background:inherit;
  6364. background-color:rgba(255, 255, 255, 0);
  6365. border:none;
  6366. border-radius:0px;
  6367. -moz-box-shadow:none;
  6368. -webkit-box-shadow:none;
  6369. box-shadow:none;
  6370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6371. font-weight:400;
  6372. font-style:normal;
  6373. font-size:16px;
  6374. }
  6375. #u1347 {
  6376. border-width:0px;
  6377. position:absolute;
  6378. left:147px;
  6379. top:640px;
  6380. width:65px;
  6381. height:22px;
  6382. display:flex;
  6383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6384. font-weight:400;
  6385. font-style:normal;
  6386. font-size:16px;
  6387. }
  6388. #u1347 .text {
  6389. position:absolute;
  6390. align-self:flex-start;
  6391. padding:0px 0px 0px 0px;
  6392. box-sizing:border-box;
  6393. width:100%;
  6394. }
  6395. #u1347_text {
  6396. border-width:0px;
  6397. white-space:nowrap;
  6398. text-transform:none;
  6399. }
  6400. #u1348_div {
  6401. border-width:0px;
  6402. position:absolute;
  6403. left:0px;
  6404. top:0px;
  6405. width:49px;
  6406. height:17px;
  6407. background:inherit;
  6408. background-color:rgba(255, 255, 255, 0);
  6409. border:none;
  6410. border-radius:0px;
  6411. -moz-box-shadow:none;
  6412. -webkit-box-shadow:none;
  6413. box-shadow:none;
  6414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6415. font-weight:400;
  6416. font-style:normal;
  6417. font-size:12px;
  6418. color:#AAAAAA;
  6419. }
  6420. #u1348 {
  6421. border-width:0px;
  6422. position:absolute;
  6423. left:147px;
  6424. top:603px;
  6425. width:49px;
  6426. height:17px;
  6427. display:flex;
  6428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6429. font-weight:400;
  6430. font-style:normal;
  6431. font-size:12px;
  6432. color:#AAAAAA;
  6433. }
  6434. #u1348 .text {
  6435. position:absolute;
  6436. align-self:flex-start;
  6437. padding:0px 0px 0px 0px;
  6438. box-sizing:border-box;
  6439. width:100%;
  6440. }
  6441. #u1348_text {
  6442. border-width:0px;
  6443. white-space:nowrap;
  6444. text-transform:none;
  6445. }
  6446. #u1349_div {
  6447. border-width:0px;
  6448. position:absolute;
  6449. left:0px;
  6450. top:0px;
  6451. width:65px;
  6452. height:22px;
  6453. background:inherit;
  6454. background-color:rgba(255, 255, 255, 0);
  6455. border:none;
  6456. border-radius:0px;
  6457. -moz-box-shadow:none;
  6458. -webkit-box-shadow:none;
  6459. box-shadow:none;
  6460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6461. font-weight:400;
  6462. font-style:normal;
  6463. font-size:16px;
  6464. }
  6465. #u1349 {
  6466. border-width:0px;
  6467. position:absolute;
  6468. left:147px;
  6469. top:312px;
  6470. width:65px;
  6471. height:22px;
  6472. display:flex;
  6473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6474. font-weight:400;
  6475. font-style:normal;
  6476. font-size:16px;
  6477. }
  6478. #u1349 .text {
  6479. position:absolute;
  6480. align-self:flex-start;
  6481. padding:0px 0px 0px 0px;
  6482. box-sizing:border-box;
  6483. width:100%;
  6484. }
  6485. #u1349_text {
  6486. border-width:0px;
  6487. white-space:nowrap;
  6488. text-transform:none;
  6489. }
  6490. #u1350_div {
  6491. border-width:0px;
  6492. position:absolute;
  6493. left:0px;
  6494. top:0px;
  6495. width:49px;
  6496. height:17px;
  6497. background:inherit;
  6498. background-color:rgba(255, 255, 255, 0);
  6499. border:none;
  6500. border-radius:0px;
  6501. -moz-box-shadow:none;
  6502. -webkit-box-shadow:none;
  6503. box-shadow:none;
  6504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6505. font-weight:400;
  6506. font-style:normal;
  6507. font-size:12px;
  6508. color:#AAAAAA;
  6509. }
  6510. #u1350 {
  6511. border-width:0px;
  6512. position:absolute;
  6513. left:147px;
  6514. top:275px;
  6515. width:49px;
  6516. height:17px;
  6517. display:flex;
  6518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6519. font-weight:400;
  6520. font-style:normal;
  6521. font-size:12px;
  6522. color:#AAAAAA;
  6523. }
  6524. #u1350 .text {
  6525. position:absolute;
  6526. align-self:flex-start;
  6527. padding:0px 0px 0px 0px;
  6528. box-sizing:border-box;
  6529. width:100%;
  6530. }
  6531. #u1350_text {
  6532. border-width:0px;
  6533. white-space:nowrap;
  6534. text-transform:none;
  6535. }
  6536. #u1351_div {
  6537. border-width:0px;
  6538. position:absolute;
  6539. left:0px;
  6540. top:0px;
  6541. width:65px;
  6542. height:22px;
  6543. background:inherit;
  6544. background-color:rgba(255, 255, 255, 0);
  6545. border:none;
  6546. border-radius:0px;
  6547. -moz-box-shadow:none;
  6548. -webkit-box-shadow:none;
  6549. box-shadow:none;
  6550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6551. font-weight:400;
  6552. font-style:normal;
  6553. font-size:16px;
  6554. }
  6555. #u1351 {
  6556. border-width:0px;
  6557. position:absolute;
  6558. left:147px;
  6559. top:724px;
  6560. width:65px;
  6561. height:22px;
  6562. display:flex;
  6563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6564. font-weight:400;
  6565. font-style:normal;
  6566. font-size:16px;
  6567. }
  6568. #u1351 .text {
  6569. position:absolute;
  6570. align-self:flex-start;
  6571. padding:0px 0px 0px 0px;
  6572. box-sizing:border-box;
  6573. width:100%;
  6574. }
  6575. #u1351_text {
  6576. border-width:0px;
  6577. white-space:nowrap;
  6578. text-transform:none;
  6579. }
  6580. #u1352_div {
  6581. border-width:0px;
  6582. position:absolute;
  6583. left:0px;
  6584. top:0px;
  6585. width:49px;
  6586. height:17px;
  6587. background:inherit;
  6588. background-color:rgba(255, 255, 255, 0);
  6589. border:none;
  6590. border-radius:0px;
  6591. -moz-box-shadow:none;
  6592. -webkit-box-shadow:none;
  6593. box-shadow:none;
  6594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6595. font-weight:400;
  6596. font-style:normal;
  6597. font-size:12px;
  6598. color:#AAAAAA;
  6599. }
  6600. #u1352 {
  6601. border-width:0px;
  6602. position:absolute;
  6603. left:147px;
  6604. top:130px;
  6605. width:49px;
  6606. height:17px;
  6607. display:flex;
  6608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6609. font-weight:400;
  6610. font-style:normal;
  6611. font-size:12px;
  6612. color:#AAAAAA;
  6613. }
  6614. #u1352 .text {
  6615. position:absolute;
  6616. align-self:flex-start;
  6617. padding:0px 0px 0px 0px;
  6618. box-sizing:border-box;
  6619. width:100%;
  6620. }
  6621. #u1352_text {
  6622. border-width:0px;
  6623. white-space:nowrap;
  6624. text-transform:none;
  6625. }
  6626. #u1353_img {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:0px;
  6630. top:0px;
  6631. width:201px;
  6632. height:2px;
  6633. }
  6634. #u1353 {
  6635. border-width:0px;
  6636. position:absolute;
  6637. left:120px;
  6638. top:857px;
  6639. width:200px;
  6640. height:1px;
  6641. display:flex;
  6642. }
  6643. #u1353 .text {
  6644. position:absolute;
  6645. align-self:center;
  6646. padding:2px 2px 2px 2px;
  6647. box-sizing:border-box;
  6648. width:100%;
  6649. }
  6650. #u1353_text {
  6651. border-width:0px;
  6652. word-wrap:break-word;
  6653. text-transform:none;
  6654. visibility:hidden;
  6655. }
  6656. #u1354_div {
  6657. border-width:0px;
  6658. position:absolute;
  6659. left:0px;
  6660. top:0px;
  6661. width:65px;
  6662. height:22px;
  6663. background:inherit;
  6664. background-color:rgba(255, 255, 255, 0);
  6665. border:none;
  6666. border-radius:0px;
  6667. -moz-box-shadow:none;
  6668. -webkit-box-shadow:none;
  6669. box-shadow:none;
  6670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6671. font-weight:400;
  6672. font-style:normal;
  6673. font-size:16px;
  6674. }
  6675. #u1354 {
  6676. border-width:0px;
  6677. position:absolute;
  6678. left:147px;
  6679. top:914px;
  6680. width:65px;
  6681. height:22px;
  6682. display:flex;
  6683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6684. font-weight:400;
  6685. font-style:normal;
  6686. font-size:16px;
  6687. }
  6688. #u1354 .text {
  6689. position:absolute;
  6690. align-self:flex-start;
  6691. padding:0px 0px 0px 0px;
  6692. box-sizing:border-box;
  6693. width:100%;
  6694. }
  6695. #u1354_text {
  6696. border-width:0px;
  6697. white-space:nowrap;
  6698. text-transform:none;
  6699. }
  6700. #u1355_div {
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:0px;
  6704. top:0px;
  6705. width:49px;
  6706. height:17px;
  6707. background:inherit;
  6708. background-color:rgba(255, 255, 255, 0);
  6709. border:none;
  6710. border-radius:0px;
  6711. -moz-box-shadow:none;
  6712. -webkit-box-shadow:none;
  6713. box-shadow:none;
  6714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6715. font-weight:400;
  6716. font-style:normal;
  6717. font-size:12px;
  6718. color:#AAAAAA;
  6719. }
  6720. #u1355 {
  6721. border-width:0px;
  6722. position:absolute;
  6723. left:147px;
  6724. top:877px;
  6725. width:49px;
  6726. height:17px;
  6727. display:flex;
  6728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6729. font-weight:400;
  6730. font-style:normal;
  6731. font-size:12px;
  6732. color:#AAAAAA;
  6733. }
  6734. #u1355 .text {
  6735. position:absolute;
  6736. align-self:flex-start;
  6737. padding:0px 0px 0px 0px;
  6738. box-sizing:border-box;
  6739. width:100%;
  6740. }
  6741. #u1355_text {
  6742. border-width:0px;
  6743. white-space:nowrap;
  6744. text-transform:none;
  6745. }
  6746. #u1356_div {
  6747. border-width:0px;
  6748. position:absolute;
  6749. left:0px;
  6750. top:0px;
  6751. width:65px;
  6752. height:22px;
  6753. background:inherit;
  6754. background-color:rgba(255, 255, 255, 0);
  6755. border:none;
  6756. border-radius:0px;
  6757. -moz-box-shadow:none;
  6758. -webkit-box-shadow:none;
  6759. box-shadow:none;
  6760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6761. font-weight:400;
  6762. font-style:normal;
  6763. font-size:16px;
  6764. }
  6765. #u1356 {
  6766. border-width:0px;
  6767. position:absolute;
  6768. left:147px;
  6769. top:806px;
  6770. width:65px;
  6771. height:22px;
  6772. display:flex;
  6773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6774. font-weight:400;
  6775. font-style:normal;
  6776. font-size:16px;
  6777. }
  6778. #u1356 .text {
  6779. position:absolute;
  6780. align-self:flex-start;
  6781. padding:0px 0px 0px 0px;
  6782. box-sizing:border-box;
  6783. width:100%;
  6784. }
  6785. #u1356_text {
  6786. border-width:0px;
  6787. white-space:nowrap;
  6788. text-transform:none;
  6789. }
  6790. #u1357_img {
  6791. border-width:0px;
  6792. position:absolute;
  6793. left:0px;
  6794. top:0px;
  6795. width:201px;
  6796. height:2px;
  6797. }
  6798. #u1357 {
  6799. border-width:0px;
  6800. position:absolute;
  6801. left:120px;
  6802. top:435px;
  6803. width:200px;
  6804. height:1px;
  6805. display:flex;
  6806. }
  6807. #u1357 .text {
  6808. position:absolute;
  6809. align-self:center;
  6810. padding:2px 2px 2px 2px;
  6811. box-sizing:border-box;
  6812. width:100%;
  6813. }
  6814. #u1357_text {
  6815. border-width:0px;
  6816. word-wrap:break-word;
  6817. text-transform:none;
  6818. visibility:hidden;
  6819. }
  6820. #u1358_div {
  6821. border-width:0px;
  6822. position:absolute;
  6823. left:0px;
  6824. top:0px;
  6825. width:65px;
  6826. height:22px;
  6827. background:inherit;
  6828. background-color:rgba(255, 255, 255, 0);
  6829. border:none;
  6830. border-radius:0px;
  6831. -moz-box-shadow:none;
  6832. -webkit-box-shadow:none;
  6833. box-shadow:none;
  6834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6835. font-weight:400;
  6836. font-style:normal;
  6837. font-size:16px;
  6838. }
  6839. #u1358 {
  6840. border-width:0px;
  6841. position:absolute;
  6842. left:147px;
  6843. top:492px;
  6844. width:65px;
  6845. height:22px;
  6846. display:flex;
  6847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6848. font-weight:400;
  6849. font-style:normal;
  6850. font-size:16px;
  6851. }
  6852. #u1358 .text {
  6853. position:absolute;
  6854. align-self:flex-start;
  6855. padding:0px 0px 0px 0px;
  6856. box-sizing:border-box;
  6857. width:100%;
  6858. }
  6859. #u1358_text {
  6860. border-width:0px;
  6861. white-space:nowrap;
  6862. text-transform:none;
  6863. }
  6864. #u1359_div {
  6865. border-width:0px;
  6866. position:absolute;
  6867. left:0px;
  6868. top:0px;
  6869. width:49px;
  6870. height:17px;
  6871. background:inherit;
  6872. background-color:rgba(255, 255, 255, 0);
  6873. border:none;
  6874. border-radius:0px;
  6875. -moz-box-shadow:none;
  6876. -webkit-box-shadow:none;
  6877. box-shadow:none;
  6878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6879. font-weight:400;
  6880. font-style:normal;
  6881. font-size:12px;
  6882. color:#AAAAAA;
  6883. }
  6884. #u1359 {
  6885. border-width:0px;
  6886. position:absolute;
  6887. left:147px;
  6888. top:455px;
  6889. width:49px;
  6890. height:17px;
  6891. display:flex;
  6892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6893. font-weight:400;
  6894. font-style:normal;
  6895. font-size:12px;
  6896. color:#AAAAAA;
  6897. }
  6898. #u1359 .text {
  6899. position:absolute;
  6900. align-self:flex-start;
  6901. padding:0px 0px 0px 0px;
  6902. box-sizing:border-box;
  6903. width:100%;
  6904. }
  6905. #u1359_text {
  6906. border-width:0px;
  6907. white-space:nowrap;
  6908. text-transform:none;
  6909. }
  6910. #u1360_div {
  6911. border-width:0px;
  6912. position:absolute;
  6913. left:0px;
  6914. top:0px;
  6915. width:97px;
  6916. height:22px;
  6917. background:inherit;
  6918. background-color:rgba(255, 255, 255, 0);
  6919. border:none;
  6920. border-radius:0px;
  6921. -moz-box-shadow:none;
  6922. -webkit-box-shadow:none;
  6923. box-shadow:none;
  6924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6925. font-weight:400;
  6926. font-style:normal;
  6927. font-size:16px;
  6928. }
  6929. #u1360 {
  6930. border-width:0px;
  6931. position:absolute;
  6932. left:147px;
  6933. top:533px;
  6934. width:97px;
  6935. height:22px;
  6936. display:flex;
  6937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6938. font-weight:400;
  6939. font-style:normal;
  6940. font-size:16px;
  6941. }
  6942. #u1360 .text {
  6943. position:absolute;
  6944. align-self:flex-start;
  6945. padding:0px 0px 0px 0px;
  6946. box-sizing:border-box;
  6947. width:100%;
  6948. }
  6949. #u1360_text {
  6950. border-width:0px;
  6951. word-wrap:break-word;
  6952. text-transform:none;
  6953. }
  6954. #u1361_div {
  6955. border-width:0px;
  6956. position:absolute;
  6957. left:0px;
  6958. top:0px;
  6959. width:65px;
  6960. height:22px;
  6961. background:inherit;
  6962. background-color:rgba(255, 255, 255, 0);
  6963. border:none;
  6964. border-radius:0px;
  6965. -moz-box-shadow:none;
  6966. -webkit-box-shadow:none;
  6967. box-shadow:none;
  6968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6969. font-weight:400;
  6970. font-style:normal;
  6971. font-size:16px;
  6972. }
  6973. #u1361 {
  6974. border-width:0px;
  6975. position:absolute;
  6976. left:147px;
  6977. top:354px;
  6978. width:65px;
  6979. height:22px;
  6980. display:flex;
  6981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6982. font-weight:400;
  6983. font-style:normal;
  6984. font-size:16px;
  6985. }
  6986. #u1361 .text {
  6987. position:absolute;
  6988. align-self:flex-start;
  6989. padding:0px 0px 0px 0px;
  6990. box-sizing:border-box;
  6991. width:100%;
  6992. }
  6993. #u1361_text {
  6994. border-width:0px;
  6995. white-space:nowrap;
  6996. text-transform:none;
  6997. }
  6998. #u1362_div {
  6999. border-width:0px;
  7000. position:absolute;
  7001. left:0px;
  7002. top:0px;
  7003. width:65px;
  7004. height:22px;
  7005. background:inherit;
  7006. background-color:rgba(255, 255, 255, 0);
  7007. border:none;
  7008. border-radius:0px;
  7009. -moz-box-shadow:none;
  7010. -webkit-box-shadow:none;
  7011. box-shadow:none;
  7012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7013. font-weight:400;
  7014. font-style:normal;
  7015. font-size:16px;
  7016. }
  7017. #u1362 {
  7018. border-width:0px;
  7019. position:absolute;
  7020. left:147px;
  7021. top:682px;
  7022. width:65px;
  7023. height:22px;
  7024. display:flex;
  7025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7026. font-weight:400;
  7027. font-style:normal;
  7028. font-size:16px;
  7029. }
  7030. #u1362 .text {
  7031. position:absolute;
  7032. align-self:flex-start;
  7033. padding:0px 0px 0px 0px;
  7034. box-sizing:border-box;
  7035. width:100%;
  7036. }
  7037. #u1362_text {
  7038. border-width:0px;
  7039. white-space:nowrap;
  7040. text-transform:none;
  7041. }
  7042. #u1363_div {
  7043. border-width:0px;
  7044. position:absolute;
  7045. left:0px;
  7046. top:0px;
  7047. width:65px;
  7048. height:22px;
  7049. background:inherit;
  7050. background-color:rgba(255, 255, 255, 0);
  7051. border:none;
  7052. border-radius:0px;
  7053. -moz-box-shadow:none;
  7054. -webkit-box-shadow:none;
  7055. box-shadow:none;
  7056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7057. font-weight:400;
  7058. font-style:normal;
  7059. font-size:16px;
  7060. }
  7061. #u1363 {
  7062. border-width:0px;
  7063. position:absolute;
  7064. left:147px;
  7065. top:765px;
  7066. width:65px;
  7067. height:22px;
  7068. display:flex;
  7069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7070. font-weight:400;
  7071. font-style:normal;
  7072. font-size:16px;
  7073. }
  7074. #u1363 .text {
  7075. position:absolute;
  7076. align-self:flex-start;
  7077. padding:0px 0px 0px 0px;
  7078. box-sizing:border-box;
  7079. width:100%;
  7080. }
  7081. #u1363_text {
  7082. border-width:0px;
  7083. white-space:nowrap;
  7084. text-transform:none;
  7085. }
  7086. #u1364_div {
  7087. border-width:0px;
  7088. position:absolute;
  7089. left:0px;
  7090. top:0px;
  7091. width:65px;
  7092. height:22px;
  7093. background:inherit;
  7094. background-color:rgba(255, 255, 255, 0);
  7095. border:none;
  7096. border-radius:0px;
  7097. -moz-box-shadow:none;
  7098. -webkit-box-shadow:none;
  7099. box-shadow:none;
  7100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7101. font-weight:400;
  7102. font-style:normal;
  7103. font-size:16px;
  7104. }
  7105. #u1364 {
  7106. border-width:0px;
  7107. position:absolute;
  7108. left:147px;
  7109. top:396px;
  7110. width:65px;
  7111. height:22px;
  7112. display:flex;
  7113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7114. font-weight:400;
  7115. font-style:normal;
  7116. font-size:16px;
  7117. }
  7118. #u1364 .text {
  7119. position:absolute;
  7120. align-self:flex-start;
  7121. padding:0px 0px 0px 0px;
  7122. box-sizing:border-box;
  7123. width:100%;
  7124. }
  7125. #u1364_text {
  7126. border-width:0px;
  7127. white-space:nowrap;
  7128. text-transform:none;
  7129. }
  7130. #u1365 {
  7131. border-width:0px;
  7132. position:absolute;
  7133. left:0px;
  7134. top:0px;
  7135. width:0px;
  7136. height:0px;
  7137. }
  7138. #u1366_div {
  7139. border-width:0px;
  7140. position:absolute;
  7141. left:0px;
  7142. top:0px;
  7143. width:680px;
  7144. height:1200px;
  7145. background:inherit;
  7146. background-color:rgba(255, 255, 255, 1);
  7147. box-sizing:border-box;
  7148. border-width:1px;
  7149. border-style:solid;
  7150. border-color:rgba(242, 242, 242, 1);
  7151. border-radius:0px;
  7152. -moz-box-shadow:none;
  7153. -webkit-box-shadow:none;
  7154. box-shadow:none;
  7155. }
  7156. #u1366 {
  7157. border-width:0px;
  7158. position:absolute;
  7159. left:1643px;
  7160. top:50px;
  7161. width:680px;
  7162. height:1200px;
  7163. display:flex;
  7164. }
  7165. #u1366 .text {
  7166. position:absolute;
  7167. align-self:center;
  7168. padding:2px 2px 2px 2px;
  7169. box-sizing:border-box;
  7170. width:100%;
  7171. }
  7172. #u1366_text {
  7173. border-width:0px;
  7174. word-wrap:break-word;
  7175. text-transform:none;
  7176. visibility:hidden;
  7177. }
  7178. #u1367_div {
  7179. border-width:0px;
  7180. position:absolute;
  7181. left:0px;
  7182. top:0px;
  7183. width:145px;
  7184. height:30px;
  7185. background:inherit;
  7186. background-color:rgba(255, 255, 255, 0);
  7187. border:none;
  7188. border-radius:0px;
  7189. -moz-box-shadow:none;
  7190. -webkit-box-shadow:none;
  7191. box-shadow:none;
  7192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7193. font-weight:400;
  7194. font-style:normal;
  7195. font-size:18px;
  7196. color:#000000;
  7197. line-height:30px;
  7198. }
  7199. #u1367 {
  7200. border-width:0px;
  7201. position:absolute;
  7202. left:1663px;
  7203. top:70px;
  7204. width:145px;
  7205. height:30px;
  7206. display:flex;
  7207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7208. font-weight:400;
  7209. font-style:normal;
  7210. font-size:18px;
  7211. color:#000000;
  7212. line-height:30px;
  7213. }
  7214. #u1367 .text {
  7215. position:absolute;
  7216. align-self:flex-start;
  7217. padding:0px 0px 0px 0px;
  7218. box-sizing:border-box;
  7219. width:100%;
  7220. }
  7221. #u1367_text {
  7222. border-width:0px;
  7223. white-space:nowrap;
  7224. text-transform:none;
  7225. }
  7226. #u1368_div {
  7227. border-width:0px;
  7228. position:absolute;
  7229. left:0px;
  7230. top:0px;
  7231. width:40px;
  7232. height:40px;
  7233. background:inherit;
  7234. background-color:rgba(255, 255, 255, 0);
  7235. border:none;
  7236. border-top:0px;
  7237. border-right:0px;
  7238. border-bottom:0px;
  7239. border-radius:0px;
  7240. border-top-left-radius:0px;
  7241. border-bottom-left-radius:0px;
  7242. -moz-box-shadow:none;
  7243. -webkit-box-shadow:none;
  7244. box-shadow:none;
  7245. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7246. font-weight:500;
  7247. font-style:normal;
  7248. font-size:18px;
  7249. text-align:center;
  7250. }
  7251. #u1368 {
  7252. border-width:0px;
  7253. position:absolute;
  7254. left:2283px;
  7255. top:50px;
  7256. width:40px;
  7257. height:40px;
  7258. display:flex;
  7259. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7260. font-weight:500;
  7261. font-style:normal;
  7262. font-size:18px;
  7263. text-align:center;
  7264. }
  7265. #u1368 .text {
  7266. position:absolute;
  7267. align-self:center;
  7268. padding:5px 10px 5px 0px;
  7269. box-sizing:border-box;
  7270. width:100%;
  7271. }
  7272. #u1368_text {
  7273. border-width:0px;
  7274. word-wrap:break-word;
  7275. text-transform:none;
  7276. }
  7277. #u1369_img {
  7278. border-width:0px;
  7279. position:absolute;
  7280. left:0px;
  7281. top:0px;
  7282. width:13px;
  7283. height:13px;
  7284. }
  7285. #u1369 {
  7286. border-width:0px;
  7287. position:absolute;
  7288. left:2270px;
  7289. top:68px;
  7290. width:13px;
  7291. height:13px;
  7292. display:flex;
  7293. }
  7294. #u1369 .text {
  7295. position:absolute;
  7296. align-self:center;
  7297. padding:2px 2px 2px 2px;
  7298. box-sizing:border-box;
  7299. width:100%;
  7300. }
  7301. #u1369_text {
  7302. border-width:0px;
  7303. word-wrap:break-word;
  7304. text-transform:none;
  7305. visibility:hidden;
  7306. }
  7307. #u1370 {
  7308. border-width:0px;
  7309. position:absolute;
  7310. left:0px;
  7311. top:0px;
  7312. width:0px;
  7313. height:0px;
  7314. }
  7315. #u1371_div {
  7316. border-width:0px;
  7317. position:absolute;
  7318. left:0px;
  7319. top:0px;
  7320. width:680px;
  7321. height:60px;
  7322. background:inherit;
  7323. background-color:rgba(255, 255, 255, 1);
  7324. box-sizing:border-box;
  7325. border-width:1px;
  7326. border-style:solid;
  7327. border-color:rgba(215, 215, 215, 1);
  7328. border-radius:0px;
  7329. -moz-box-shadow:none;
  7330. -webkit-box-shadow:none;
  7331. box-shadow:none;
  7332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7333. font-weight:400;
  7334. font-style:normal;
  7335. font-size:14px;
  7336. color:#AAAAAA;
  7337. text-align:center;
  7338. line-height:30px;
  7339. }
  7340. #u1371 {
  7341. border-width:0px;
  7342. position:absolute;
  7343. left:1643px;
  7344. top:1190px;
  7345. width:680px;
  7346. height:60px;
  7347. display:flex;
  7348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7349. font-weight:400;
  7350. font-style:normal;
  7351. font-size:14px;
  7352. color:#AAAAAA;
  7353. text-align:center;
  7354. line-height:30px;
  7355. }
  7356. #u1371 .text {
  7357. position:absolute;
  7358. align-self:center;
  7359. padding:5px 10px 5px 10px;
  7360. box-sizing:border-box;
  7361. width:100%;
  7362. }
  7363. #u1371_text {
  7364. border-width:0px;
  7365. word-wrap:break-word;
  7366. text-transform:none;
  7367. visibility:hidden;
  7368. }
  7369. #u1372_div {
  7370. border-width:0px;
  7371. position:absolute;
  7372. left:0px;
  7373. top:0px;
  7374. width:80px;
  7375. height:30px;
  7376. background:inherit;
  7377. background-color:rgba(24, 144, 255, 1);
  7378. border:none;
  7379. border-radius:4px;
  7380. -moz-box-shadow:none;
  7381. -webkit-box-shadow:none;
  7382. box-shadow:none;
  7383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7384. font-weight:400;
  7385. font-style:normal;
  7386. font-size:14px;
  7387. color:#FFFFFF;
  7388. }
  7389. #u1372 {
  7390. border-width:0px;
  7391. position:absolute;
  7392. left:2198px;
  7393. top:1205px;
  7394. width:80px;
  7395. height:30px;
  7396. display:flex;
  7397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7398. font-weight:400;
  7399. font-style:normal;
  7400. font-size:14px;
  7401. color:#FFFFFF;
  7402. }
  7403. #u1372 .text {
  7404. position:absolute;
  7405. align-self:center;
  7406. padding:2px 2px 2px 2px;
  7407. box-sizing:border-box;
  7408. width:100%;
  7409. }
  7410. #u1372_text {
  7411. border-width:0px;
  7412. word-wrap:break-word;
  7413. text-transform:none;
  7414. }
  7415. #u1373_div {
  7416. border-width:0px;
  7417. position:absolute;
  7418. left:0px;
  7419. top:0px;
  7420. width:80px;
  7421. height:30px;
  7422. background:inherit;
  7423. background-color:rgba(255, 255, 255, 1);
  7424. box-sizing:border-box;
  7425. border-width:1px;
  7426. border-style:solid;
  7427. border-color:rgba(170, 170, 170, 1);
  7428. border-radius:4px;
  7429. -moz-box-shadow:none;
  7430. -webkit-box-shadow:none;
  7431. box-shadow:none;
  7432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7433. font-weight:400;
  7434. font-style:normal;
  7435. font-size:14px;
  7436. }
  7437. #u1373 {
  7438. border-width:0px;
  7439. position:absolute;
  7440. left:2099px;
  7441. top:1205px;
  7442. width:80px;
  7443. height:30px;
  7444. display:flex;
  7445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7446. font-weight:400;
  7447. font-style:normal;
  7448. font-size:14px;
  7449. }
  7450. #u1373 .text {
  7451. position:absolute;
  7452. align-self:center;
  7453. padding:2px 2px 2px 2px;
  7454. box-sizing:border-box;
  7455. width:100%;
  7456. }
  7457. #u1373_text {
  7458. border-width:0px;
  7459. word-wrap:break-word;
  7460. text-transform:none;
  7461. }
  7462. #u1374_div {
  7463. border-width:0px;
  7464. position:absolute;
  7465. left:0px;
  7466. top:0px;
  7467. width:88px;
  7468. height:30px;
  7469. background:inherit;
  7470. background-color:rgba(255, 255, 255, 0);
  7471. border:none;
  7472. border-top:0px;
  7473. border-right:0px;
  7474. border-bottom:0px;
  7475. border-radius:0px;
  7476. border-top-left-radius:0px;
  7477. border-bottom-left-radius:0px;
  7478. -moz-box-shadow:none;
  7479. -webkit-box-shadow:none;
  7480. box-shadow:none;
  7481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7482. font-weight:400;
  7483. font-style:normal;
  7484. font-size:14px;
  7485. }
  7486. #u1374 {
  7487. border-width:0px;
  7488. position:absolute;
  7489. left:1683px;
  7490. top:229px;
  7491. width:88px;
  7492. height:30px;
  7493. display:flex;
  7494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7495. font-weight:400;
  7496. font-style:normal;
  7497. font-size:14px;
  7498. }
  7499. #u1374 .text {
  7500. position:absolute;
  7501. align-self:center;
  7502. padding:5px 10px 5px 0px;
  7503. box-sizing:border-box;
  7504. width:100%;
  7505. }
  7506. #u1374_text {
  7507. border-width:0px;
  7508. white-space:nowrap;
  7509. text-transform:none;
  7510. }
  7511. #u1375_div {
  7512. border-width:0px;
  7513. position:absolute;
  7514. left:0px;
  7515. top:0px;
  7516. width:88px;
  7517. height:30px;
  7518. background:inherit;
  7519. background-color:rgba(255, 255, 255, 0);
  7520. border:none;
  7521. border-top:0px;
  7522. border-right:0px;
  7523. border-bottom:0px;
  7524. border-radius:0px;
  7525. border-top-left-radius:0px;
  7526. border-bottom-left-radius:0px;
  7527. -moz-box-shadow:none;
  7528. -webkit-box-shadow:none;
  7529. box-shadow:none;
  7530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7531. font-weight:400;
  7532. font-style:normal;
  7533. font-size:14px;
  7534. }
  7535. #u1375 {
  7536. border-width:0px;
  7537. position:absolute;
  7538. left:1683px;
  7539. top:179px;
  7540. width:88px;
  7541. height:30px;
  7542. display:flex;
  7543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7544. font-weight:400;
  7545. font-style:normal;
  7546. font-size:14px;
  7547. }
  7548. #u1375 .text {
  7549. position:absolute;
  7550. align-self:center;
  7551. padding:5px 10px 5px 0px;
  7552. box-sizing:border-box;
  7553. width:100%;
  7554. }
  7555. #u1375_text {
  7556. border-width:0px;
  7557. white-space:nowrap;
  7558. text-transform:none;
  7559. }
  7560. #u1376 {
  7561. border-width:0px;
  7562. position:absolute;
  7563. left:0px;
  7564. top:0px;
  7565. width:0px;
  7566. height:0px;
  7567. }
  7568. #u1377_div {
  7569. border-width:0px;
  7570. position:absolute;
  7571. left:0px;
  7572. top:0px;
  7573. width:482px;
  7574. height:40px;
  7575. background:inherit;
  7576. background-color:rgba(255, 255, 255, 1);
  7577. box-sizing:border-box;
  7578. border-width:1px;
  7579. border-style:solid;
  7580. border-color:rgba(170, 170, 170, 1);
  7581. border-radius:4px;
  7582. -moz-box-shadow:none;
  7583. -webkit-box-shadow:none;
  7584. box-shadow:none;
  7585. }
  7586. #u1377 {
  7587. border-width:0px;
  7588. position:absolute;
  7589. left:1801px;
  7590. top:174px;
  7591. width:482px;
  7592. height:40px;
  7593. display:flex;
  7594. }
  7595. #u1377 .text {
  7596. position:absolute;
  7597. align-self:center;
  7598. padding:2px 2px 2px 0px;
  7599. box-sizing:border-box;
  7600. width:100%;
  7601. }
  7602. #u1377_text {
  7603. border-width:0px;
  7604. word-wrap:break-word;
  7605. text-transform:none;
  7606. visibility:hidden;
  7607. }
  7608. #u1378_input {
  7609. position:absolute;
  7610. left:0px;
  7611. top:0px;
  7612. width:458px;
  7613. height:30px;
  7614. padding:2px 2px 2px 0px;
  7615. font-family:'ArialMT', 'Arial', sans-serif;
  7616. font-weight:400;
  7617. font-style:normal;
  7618. font-size:13px;
  7619. letter-spacing:normal;
  7620. color:#AAAAAA;
  7621. vertical-align:none;
  7622. text-align:left;
  7623. text-transform:none;
  7624. background-color:transparent;
  7625. border-color:transparent;
  7626. }
  7627. #u1378_input.disabled {
  7628. position:absolute;
  7629. left:0px;
  7630. top:0px;
  7631. width:458px;
  7632. height:30px;
  7633. padding:2px 2px 2px 0px;
  7634. font-family:'ArialMT', 'Arial', sans-serif;
  7635. font-weight:400;
  7636. font-style:normal;
  7637. font-size:13px;
  7638. letter-spacing:normal;
  7639. color:#AAAAAA;
  7640. vertical-align:none;
  7641. text-align:left;
  7642. text-transform:none;
  7643. background-color:transparent;
  7644. border-color:transparent;
  7645. }
  7646. #u1378_div {
  7647. border-width:0px;
  7648. position:absolute;
  7649. left:0px;
  7650. top:0px;
  7651. width:458px;
  7652. height:30px;
  7653. background:inherit;
  7654. background-color:rgba(255, 255, 255, 1);
  7655. border:none;
  7656. border-radius:0px;
  7657. -moz-box-shadow:none;
  7658. -webkit-box-shadow:none;
  7659. box-shadow:none;
  7660. color:#AAAAAA;
  7661. }
  7662. #u1378 {
  7663. border-width:0px;
  7664. position:absolute;
  7665. left:1813px;
  7666. top:180px;
  7667. width:458px;
  7668. height:30px;
  7669. display:flex;
  7670. color:#AAAAAA;
  7671. }
  7672. #u1378 .text {
  7673. position:absolute;
  7674. align-self:flex-start;
  7675. padding:2px 2px 2px 0px;
  7676. box-sizing:border-box;
  7677. width:100%;
  7678. }
  7679. #u1378_div.disabled {
  7680. border-width:0px;
  7681. position:absolute;
  7682. left:0px;
  7683. top:0px;
  7684. width:458px;
  7685. height:30px;
  7686. background:inherit;
  7687. background-color:rgba(240, 240, 240, 1);
  7688. border:none;
  7689. border-radius:0px;
  7690. -moz-box-shadow:none;
  7691. -webkit-box-shadow:none;
  7692. box-shadow:none;
  7693. color:#AAAAAA;
  7694. }
  7695. #u1378.disabled {
  7696. }
  7697. .u1378_input_option {
  7698. }
  7699. #u1379 {
  7700. border-width:0px;
  7701. position:absolute;
  7702. left:0px;
  7703. top:0px;
  7704. width:0px;
  7705. height:0px;
  7706. }
  7707. #u1380_div {
  7708. border-width:0px;
  7709. position:absolute;
  7710. left:0px;
  7711. top:0px;
  7712. width:482px;
  7713. height:40px;
  7714. background:inherit;
  7715. background-color:rgba(255, 255, 255, 1);
  7716. box-sizing:border-box;
  7717. border-width:1px;
  7718. border-style:solid;
  7719. border-color:rgba(170, 170, 170, 1);
  7720. border-radius:4px;
  7721. -moz-box-shadow:none;
  7722. -webkit-box-shadow:none;
  7723. box-shadow:none;
  7724. }
  7725. #u1380 {
  7726. border-width:0px;
  7727. position:absolute;
  7728. left:1801px;
  7729. top:224px;
  7730. width:482px;
  7731. height:40px;
  7732. display:flex;
  7733. }
  7734. #u1380 .text {
  7735. position:absolute;
  7736. align-self:center;
  7737. padding:2px 2px 2px 0px;
  7738. box-sizing:border-box;
  7739. width:100%;
  7740. }
  7741. #u1380_text {
  7742. border-width:0px;
  7743. word-wrap:break-word;
  7744. text-transform:none;
  7745. visibility:hidden;
  7746. }
  7747. #u1381_input {
  7748. position:absolute;
  7749. left:0px;
  7750. top:0px;
  7751. width:458px;
  7752. height:30px;
  7753. padding:2px 2px 2px 0px;
  7754. font-family:'ArialMT', 'Arial', sans-serif;
  7755. font-weight:400;
  7756. font-style:normal;
  7757. font-size:13px;
  7758. letter-spacing:normal;
  7759. color:#AAAAAA;
  7760. vertical-align:none;
  7761. text-align:left;
  7762. text-transform:none;
  7763. background-color:transparent;
  7764. border-color:transparent;
  7765. }
  7766. #u1381_input.disabled {
  7767. position:absolute;
  7768. left:0px;
  7769. top:0px;
  7770. width:458px;
  7771. height:30px;
  7772. padding:2px 2px 2px 0px;
  7773. font-family:'ArialMT', 'Arial', sans-serif;
  7774. font-weight:400;
  7775. font-style:normal;
  7776. font-size:13px;
  7777. letter-spacing:normal;
  7778. color:#AAAAAA;
  7779. vertical-align:none;
  7780. text-align:left;
  7781. text-transform:none;
  7782. background-color:transparent;
  7783. border-color:transparent;
  7784. }
  7785. #u1381_div {
  7786. border-width:0px;
  7787. position:absolute;
  7788. left:0px;
  7789. top:0px;
  7790. width:458px;
  7791. height:30px;
  7792. background:inherit;
  7793. background-color:rgba(255, 255, 255, 1);
  7794. border:none;
  7795. border-radius:0px;
  7796. -moz-box-shadow:none;
  7797. -webkit-box-shadow:none;
  7798. box-shadow:none;
  7799. color:#AAAAAA;
  7800. }
  7801. #u1381 {
  7802. border-width:0px;
  7803. position:absolute;
  7804. left:1813px;
  7805. top:228px;
  7806. width:458px;
  7807. height:30px;
  7808. display:flex;
  7809. color:#AAAAAA;
  7810. }
  7811. #u1381 .text {
  7812. position:absolute;
  7813. align-self:flex-start;
  7814. padding:2px 2px 2px 0px;
  7815. box-sizing:border-box;
  7816. width:100%;
  7817. }
  7818. #u1381_div.disabled {
  7819. border-width:0px;
  7820. position:absolute;
  7821. left:0px;
  7822. top:0px;
  7823. width:458px;
  7824. height:30px;
  7825. background:inherit;
  7826. background-color:rgba(240, 240, 240, 1);
  7827. border:none;
  7828. border-radius:0px;
  7829. -moz-box-shadow:none;
  7830. -webkit-box-shadow:none;
  7831. box-shadow:none;
  7832. color:#AAAAAA;
  7833. }
  7834. #u1381.disabled {
  7835. }
  7836. .u1381_input_option {
  7837. }
  7838. #u1382_div {
  7839. border-width:0px;
  7840. position:absolute;
  7841. left:0px;
  7842. top:0px;
  7843. width:88px;
  7844. height:30px;
  7845. background:inherit;
  7846. background-color:rgba(255, 255, 255, 0);
  7847. border:none;
  7848. border-top:0px;
  7849. border-right:0px;
  7850. border-bottom:0px;
  7851. border-radius:0px;
  7852. border-top-left-radius:0px;
  7853. border-bottom-left-radius:0px;
  7854. -moz-box-shadow:none;
  7855. -webkit-box-shadow:none;
  7856. box-shadow:none;
  7857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7858. font-weight:400;
  7859. font-style:normal;
  7860. font-size:14px;
  7861. }
  7862. #u1382 {
  7863. border-width:0px;
  7864. position:absolute;
  7865. left:1683px;
  7866. top:279px;
  7867. width:88px;
  7868. height:30px;
  7869. display:flex;
  7870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7871. font-weight:400;
  7872. font-style:normal;
  7873. font-size:14px;
  7874. }
  7875. #u1382 .text {
  7876. position:absolute;
  7877. align-self:center;
  7878. padding:5px 10px 5px 0px;
  7879. box-sizing:border-box;
  7880. width:100%;
  7881. }
  7882. #u1382_text {
  7883. border-width:0px;
  7884. white-space:nowrap;
  7885. text-transform:none;
  7886. }
  7887. #u1383 {
  7888. border-width:0px;
  7889. position:absolute;
  7890. left:0px;
  7891. top:0px;
  7892. width:0px;
  7893. height:0px;
  7894. }
  7895. #u1384_div {
  7896. border-width:0px;
  7897. position:absolute;
  7898. left:0px;
  7899. top:0px;
  7900. width:482px;
  7901. height:40px;
  7902. background:inherit;
  7903. background-color:rgba(255, 255, 255, 1);
  7904. box-sizing:border-box;
  7905. border-width:1px;
  7906. border-style:solid;
  7907. border-color:rgba(170, 170, 170, 1);
  7908. border-radius:4px;
  7909. -moz-box-shadow:none;
  7910. -webkit-box-shadow:none;
  7911. box-shadow:none;
  7912. }
  7913. #u1384 {
  7914. border-width:0px;
  7915. position:absolute;
  7916. left:1801px;
  7917. top:274px;
  7918. width:482px;
  7919. height:40px;
  7920. display:flex;
  7921. }
  7922. #u1384 .text {
  7923. position:absolute;
  7924. align-self:center;
  7925. padding:2px 2px 2px 0px;
  7926. box-sizing:border-box;
  7927. width:100%;
  7928. }
  7929. #u1384_text {
  7930. border-width:0px;
  7931. word-wrap:break-word;
  7932. text-transform:none;
  7933. visibility:hidden;
  7934. }
  7935. #u1385_input {
  7936. position:absolute;
  7937. left:0px;
  7938. top:0px;
  7939. width:458px;
  7940. height:30px;
  7941. padding:2px 2px 2px 0px;
  7942. font-family:'ArialMT', 'Arial', sans-serif;
  7943. font-weight:400;
  7944. font-style:normal;
  7945. font-size:13px;
  7946. letter-spacing:normal;
  7947. color:#AAAAAA;
  7948. vertical-align:none;
  7949. text-align:left;
  7950. text-transform:none;
  7951. background-color:transparent;
  7952. border-color:transparent;
  7953. }
  7954. #u1385_input.disabled {
  7955. position:absolute;
  7956. left:0px;
  7957. top:0px;
  7958. width:458px;
  7959. height:30px;
  7960. padding:2px 2px 2px 0px;
  7961. font-family:'ArialMT', 'Arial', sans-serif;
  7962. font-weight:400;
  7963. font-style:normal;
  7964. font-size:13px;
  7965. letter-spacing:normal;
  7966. color:#AAAAAA;
  7967. vertical-align:none;
  7968. text-align:left;
  7969. text-transform:none;
  7970. background-color:transparent;
  7971. border-color:transparent;
  7972. }
  7973. #u1385_div {
  7974. border-width:0px;
  7975. position:absolute;
  7976. left:0px;
  7977. top:0px;
  7978. width:458px;
  7979. height:30px;
  7980. background:inherit;
  7981. background-color:rgba(255, 255, 255, 1);
  7982. border:none;
  7983. border-radius:0px;
  7984. -moz-box-shadow:none;
  7985. -webkit-box-shadow:none;
  7986. box-shadow:none;
  7987. color:#AAAAAA;
  7988. }
  7989. #u1385 {
  7990. border-width:0px;
  7991. position:absolute;
  7992. left:1813px;
  7993. top:278px;
  7994. width:458px;
  7995. height:30px;
  7996. display:flex;
  7997. color:#AAAAAA;
  7998. }
  7999. #u1385 .text {
  8000. position:absolute;
  8001. align-self:flex-start;
  8002. padding:2px 2px 2px 0px;
  8003. box-sizing:border-box;
  8004. width:100%;
  8005. }
  8006. #u1385_div.disabled {
  8007. border-width:0px;
  8008. position:absolute;
  8009. left:0px;
  8010. top:0px;
  8011. width:458px;
  8012. height:30px;
  8013. background:inherit;
  8014. background-color:rgba(240, 240, 240, 1);
  8015. border:none;
  8016. border-radius:0px;
  8017. -moz-box-shadow:none;
  8018. -webkit-box-shadow:none;
  8019. box-shadow:none;
  8020. color:#AAAAAA;
  8021. }
  8022. #u1385.disabled {
  8023. }
  8024. .u1385_input_option {
  8025. }
  8026. #u1386 {
  8027. border-width:0px;
  8028. position:absolute;
  8029. left:0px;
  8030. top:0px;
  8031. width:0px;
  8032. height:0px;
  8033. }
  8034. #u1387_div {
  8035. border-width:0px;
  8036. position:absolute;
  8037. left:0px;
  8038. top:0px;
  8039. width:603px;
  8040. height:60px;
  8041. background:inherit;
  8042. background-color:rgba(242, 242, 242, 1);
  8043. box-sizing:border-box;
  8044. border-width:1px;
  8045. border-style:solid;
  8046. border-color:rgba(242, 242, 242, 1);
  8047. border-radius:4px;
  8048. -moz-box-shadow:none;
  8049. -webkit-box-shadow:none;
  8050. box-shadow:none;
  8051. }
  8052. #u1387 {
  8053. border-width:0px;
  8054. position:absolute;
  8055. left:1680px;
  8056. top:324px;
  8057. width:603px;
  8058. height:60px;
  8059. display:flex;
  8060. }
  8061. #u1387 .text {
  8062. position:absolute;
  8063. align-self:center;
  8064. padding:2px 2px 2px 2px;
  8065. box-sizing:border-box;
  8066. width:100%;
  8067. }
  8068. #u1387_text {
  8069. border-width:0px;
  8070. word-wrap:break-word;
  8071. text-transform:none;
  8072. visibility:hidden;
  8073. }
  8074. #u1388_div {
  8075. border-width:0px;
  8076. position:absolute;
  8077. left:0px;
  8078. top:0px;
  8079. width:109px;
  8080. height:30px;
  8081. background:inherit;
  8082. background-color:rgba(255, 255, 255, 0);
  8083. border:none;
  8084. border-top:0px;
  8085. border-right:0px;
  8086. border-bottom:0px;
  8087. border-radius:0px;
  8088. border-top-left-radius:0px;
  8089. border-bottom-left-radius:0px;
  8090. -moz-box-shadow:none;
  8091. -webkit-box-shadow:none;
  8092. box-shadow:none;
  8093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8094. font-weight:400;
  8095. font-style:normal;
  8096. font-size:14px;
  8097. }
  8098. #u1388 {
  8099. border-width:0px;
  8100. position:absolute;
  8101. left:1697px;
  8102. top:339px;
  8103. width:109px;
  8104. height:30px;
  8105. display:flex;
  8106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8107. font-weight:400;
  8108. font-style:normal;
  8109. font-size:14px;
  8110. }
  8111. #u1388 .text {
  8112. position:absolute;
  8113. align-self:center;
  8114. padding:5px 10px 5px 0px;
  8115. box-sizing:border-box;
  8116. width:100%;
  8117. }
  8118. #u1388_text {
  8119. border-width:0px;
  8120. white-space:nowrap;
  8121. text-transform:none;
  8122. }
  8123. #u1389 {
  8124. border-width:0px;
  8125. position:absolute;
  8126. left:0px;
  8127. top:0px;
  8128. width:0px;
  8129. height:0px;
  8130. }
  8131. #u1390_div {
  8132. border-width:0px;
  8133. position:absolute;
  8134. left:0px;
  8135. top:0px;
  8136. width:100px;
  8137. height:40px;
  8138. background:inherit;
  8139. background-color:rgba(255, 255, 255, 1);
  8140. box-sizing:border-box;
  8141. border-width:1px;
  8142. border-style:solid;
  8143. border-color:rgba(170, 170, 170, 1);
  8144. border-radius:4px;
  8145. -moz-box-shadow:none;
  8146. -webkit-box-shadow:none;
  8147. box-shadow:none;
  8148. }
  8149. #u1390 {
  8150. border-width:0px;
  8151. position:absolute;
  8152. left:1806px;
  8153. top:334px;
  8154. width:100px;
  8155. height:40px;
  8156. display:flex;
  8157. }
  8158. #u1390 .text {
  8159. position:absolute;
  8160. align-self:center;
  8161. padding:2px 2px 2px 0px;
  8162. box-sizing:border-box;
  8163. width:100%;
  8164. }
  8165. #u1390_text {
  8166. border-width:0px;
  8167. word-wrap:break-word;
  8168. text-transform:none;
  8169. visibility:hidden;
  8170. }
  8171. #u1391_input {
  8172. position:absolute;
  8173. left:0px;
  8174. top:0px;
  8175. width:91px;
  8176. height:31px;
  8177. padding:2px 2px 2px 2px;
  8178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8179. font-weight:400;
  8180. font-style:normal;
  8181. font-size:13px;
  8182. letter-spacing:normal;
  8183. color:#AAAAAA;
  8184. vertical-align:none;
  8185. text-align:left;
  8186. text-transform:none;
  8187. background-color:transparent;
  8188. border-color:transparent;
  8189. }
  8190. #u1391_input.disabled {
  8191. position:absolute;
  8192. left:0px;
  8193. top:0px;
  8194. width:91px;
  8195. height:31px;
  8196. padding:2px 2px 2px 2px;
  8197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8198. font-weight:400;
  8199. font-style:normal;
  8200. font-size:13px;
  8201. letter-spacing:normal;
  8202. color:#AAAAAA;
  8203. vertical-align:none;
  8204. text-align:left;
  8205. text-transform:none;
  8206. background-color:transparent;
  8207. border-color:transparent;
  8208. }
  8209. #u1391_div {
  8210. border-width:0px;
  8211. position:absolute;
  8212. left:0px;
  8213. top:0px;
  8214. width:91px;
  8215. height:31px;
  8216. background:inherit;
  8217. background-color:rgba(255, 255, 255, 0);
  8218. border:none;
  8219. border-radius:0px;
  8220. -moz-box-shadow:none;
  8221. -webkit-box-shadow:none;
  8222. box-shadow:none;
  8223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8224. font-weight:400;
  8225. font-style:normal;
  8226. color:#AAAAAA;
  8227. }
  8228. #u1391 {
  8229. border-width:0px;
  8230. position:absolute;
  8231. left:1810px;
  8232. top:339px;
  8233. width:91px;
  8234. height:31px;
  8235. display:flex;
  8236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8237. font-weight:400;
  8238. font-style:normal;
  8239. color:#AAAAAA;
  8240. }
  8241. #u1391 .text {
  8242. position:absolute;
  8243. align-self:center;
  8244. padding:2px 2px 2px 2px;
  8245. box-sizing:border-box;
  8246. width:100%;
  8247. }
  8248. #u1391_div.disabled {
  8249. border-width:0px;
  8250. position:absolute;
  8251. left:0px;
  8252. top:0px;
  8253. width:91px;
  8254. height:31px;
  8255. background:inherit;
  8256. background-color:rgba(240, 240, 240, 1);
  8257. border:none;
  8258. border-radius:0px;
  8259. -moz-box-shadow:none;
  8260. -webkit-box-shadow:none;
  8261. box-shadow:none;
  8262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8263. font-weight:400;
  8264. font-style:normal;
  8265. color:#AAAAAA;
  8266. }
  8267. #u1391.disabled {
  8268. }
  8269. #u1392_div {
  8270. border-width:0px;
  8271. position:absolute;
  8272. left:0px;
  8273. top:0px;
  8274. width:137px;
  8275. height:30px;
  8276. background:inherit;
  8277. background-color:rgba(255, 255, 255, 0);
  8278. border:none;
  8279. border-top:0px;
  8280. border-right:0px;
  8281. border-bottom:0px;
  8282. border-radius:0px;
  8283. border-top-left-radius:0px;
  8284. border-bottom-left-radius:0px;
  8285. -moz-box-shadow:none;
  8286. -webkit-box-shadow:none;
  8287. box-shadow:none;
  8288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8289. font-weight:400;
  8290. font-style:normal;
  8291. font-size:14px;
  8292. }
  8293. #u1392 {
  8294. border-width:0px;
  8295. position:absolute;
  8296. left:2006px;
  8297. top:339px;
  8298. width:137px;
  8299. height:30px;
  8300. display:flex;
  8301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8302. font-weight:400;
  8303. font-style:normal;
  8304. font-size:14px;
  8305. }
  8306. #u1392 .text {
  8307. position:absolute;
  8308. align-self:center;
  8309. padding:5px 10px 5px 0px;
  8310. box-sizing:border-box;
  8311. width:100%;
  8312. }
  8313. #u1392_text {
  8314. border-width:0px;
  8315. white-space:nowrap;
  8316. text-transform:none;
  8317. }
  8318. #u1393 {
  8319. border-width:0px;
  8320. position:absolute;
  8321. left:0px;
  8322. top:0px;
  8323. width:0px;
  8324. height:0px;
  8325. }
  8326. #u1394_div {
  8327. border-width:0px;
  8328. position:absolute;
  8329. left:0px;
  8330. top:0px;
  8331. width:80px;
  8332. height:40px;
  8333. background:inherit;
  8334. background-color:rgba(255, 255, 255, 1);
  8335. box-sizing:border-box;
  8336. border-width:1px;
  8337. border-style:solid;
  8338. border-color:rgba(170, 170, 170, 1);
  8339. border-radius:4px;
  8340. -moz-box-shadow:none;
  8341. -webkit-box-shadow:none;
  8342. box-shadow:none;
  8343. }
  8344. #u1394 {
  8345. border-width:0px;
  8346. position:absolute;
  8347. left:1916px;
  8348. top:334px;
  8349. width:80px;
  8350. height:40px;
  8351. display:flex;
  8352. }
  8353. #u1394 .text {
  8354. position:absolute;
  8355. align-self:center;
  8356. padding:2px 2px 2px 0px;
  8357. box-sizing:border-box;
  8358. width:100%;
  8359. }
  8360. #u1394_text {
  8361. border-width:0px;
  8362. word-wrap:break-word;
  8363. text-transform:none;
  8364. visibility:hidden;
  8365. }
  8366. #u1395_input {
  8367. position:absolute;
  8368. left:0px;
  8369. top:0px;
  8370. width:76px;
  8371. height:30px;
  8372. padding:2px 2px 2px 0px;
  8373. font-family:'ArialMT', 'Arial', sans-serif;
  8374. font-weight:400;
  8375. font-style:normal;
  8376. font-size:13px;
  8377. letter-spacing:normal;
  8378. color:#AAAAAA;
  8379. vertical-align:none;
  8380. text-align:left;
  8381. text-transform:none;
  8382. background-color:transparent;
  8383. border-color:transparent;
  8384. }
  8385. #u1395_input.disabled {
  8386. position:absolute;
  8387. left:0px;
  8388. top:0px;
  8389. width:76px;
  8390. height:30px;
  8391. padding:2px 2px 2px 0px;
  8392. font-family:'ArialMT', 'Arial', sans-serif;
  8393. font-weight:400;
  8394. font-style:normal;
  8395. font-size:13px;
  8396. letter-spacing:normal;
  8397. color:#AAAAAA;
  8398. vertical-align:none;
  8399. text-align:left;
  8400. text-transform:none;
  8401. background-color:transparent;
  8402. border-color:transparent;
  8403. }
  8404. #u1395_div {
  8405. border-width:0px;
  8406. position:absolute;
  8407. left:0px;
  8408. top:0px;
  8409. width:76px;
  8410. height:30px;
  8411. background:inherit;
  8412. background-color:rgba(255, 255, 255, 1);
  8413. border:none;
  8414. border-radius:0px;
  8415. -moz-box-shadow:none;
  8416. -webkit-box-shadow:none;
  8417. box-shadow:none;
  8418. color:#AAAAAA;
  8419. }
  8420. #u1395 {
  8421. border-width:0px;
  8422. position:absolute;
  8423. left:1918px;
  8424. top:338px;
  8425. width:76px;
  8426. height:30px;
  8427. display:flex;
  8428. color:#AAAAAA;
  8429. }
  8430. #u1395 .text {
  8431. position:absolute;
  8432. align-self:flex-start;
  8433. padding:2px 2px 2px 0px;
  8434. box-sizing:border-box;
  8435. width:100%;
  8436. }
  8437. #u1395_div.disabled {
  8438. border-width:0px;
  8439. position:absolute;
  8440. left:0px;
  8441. top:0px;
  8442. width:76px;
  8443. height:30px;
  8444. background:inherit;
  8445. background-color:rgba(240, 240, 240, 1);
  8446. border:none;
  8447. border-radius:0px;
  8448. -moz-box-shadow:none;
  8449. -webkit-box-shadow:none;
  8450. box-shadow:none;
  8451. color:#AAAAAA;
  8452. }
  8453. #u1395.disabled {
  8454. }
  8455. .u1395_input_option {
  8456. }
  8457. #u1396 {
  8458. border-width:0px;
  8459. position:absolute;
  8460. left:0px;
  8461. top:0px;
  8462. width:0px;
  8463. height:0px;
  8464. }
  8465. #u1397_div {
  8466. border-width:0px;
  8467. position:absolute;
  8468. left:0px;
  8469. top:0px;
  8470. width:100px;
  8471. height:40px;
  8472. background:inherit;
  8473. background-color:rgba(255, 255, 255, 1);
  8474. box-sizing:border-box;
  8475. border-width:1px;
  8476. border-style:solid;
  8477. border-color:rgba(170, 170, 170, 1);
  8478. border-radius:4px;
  8479. -moz-box-shadow:none;
  8480. -webkit-box-shadow:none;
  8481. box-shadow:none;
  8482. }
  8483. #u1397 {
  8484. border-width:0px;
  8485. position:absolute;
  8486. left:2143px;
  8487. top:334px;
  8488. width:100px;
  8489. height:40px;
  8490. display:flex;
  8491. }
  8492. #u1397 .text {
  8493. position:absolute;
  8494. align-self:center;
  8495. padding:2px 2px 2px 0px;
  8496. box-sizing:border-box;
  8497. width:100%;
  8498. }
  8499. #u1397_text {
  8500. border-width:0px;
  8501. word-wrap:break-word;
  8502. text-transform:none;
  8503. visibility:hidden;
  8504. }
  8505. #u1398_input {
  8506. position:absolute;
  8507. left:0px;
  8508. top:0px;
  8509. width:91px;
  8510. height:31px;
  8511. padding:2px 2px 2px 2px;
  8512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8513. font-weight:400;
  8514. font-style:normal;
  8515. font-size:13px;
  8516. letter-spacing:normal;
  8517. color:#AAAAAA;
  8518. vertical-align:none;
  8519. text-align:left;
  8520. text-transform:none;
  8521. background-color:transparent;
  8522. border-color:transparent;
  8523. }
  8524. #u1398_input.disabled {
  8525. position:absolute;
  8526. left:0px;
  8527. top:0px;
  8528. width:91px;
  8529. height:31px;
  8530. padding:2px 2px 2px 2px;
  8531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8532. font-weight:400;
  8533. font-style:normal;
  8534. font-size:13px;
  8535. letter-spacing:normal;
  8536. color:#AAAAAA;
  8537. vertical-align:none;
  8538. text-align:left;
  8539. text-transform:none;
  8540. background-color:transparent;
  8541. border-color:transparent;
  8542. }
  8543. #u1398_div {
  8544. border-width:0px;
  8545. position:absolute;
  8546. left:0px;
  8547. top:0px;
  8548. width:91px;
  8549. height:31px;
  8550. background:inherit;
  8551. background-color:rgba(255, 255, 255, 0);
  8552. border:none;
  8553. border-radius:0px;
  8554. -moz-box-shadow:none;
  8555. -webkit-box-shadow:none;
  8556. box-shadow:none;
  8557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8558. font-weight:400;
  8559. font-style:normal;
  8560. color:#AAAAAA;
  8561. }
  8562. #u1398 {
  8563. border-width:0px;
  8564. position:absolute;
  8565. left:2147px;
  8566. top:339px;
  8567. width:91px;
  8568. height:31px;
  8569. display:flex;
  8570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8571. font-weight:400;
  8572. font-style:normal;
  8573. color:#AAAAAA;
  8574. }
  8575. #u1398 .text {
  8576. position:absolute;
  8577. align-self:center;
  8578. padding:2px 2px 2px 2px;
  8579. box-sizing:border-box;
  8580. width:100%;
  8581. }
  8582. #u1398_div.disabled {
  8583. border-width:0px;
  8584. position:absolute;
  8585. left:0px;
  8586. top:0px;
  8587. width:91px;
  8588. height:31px;
  8589. background:inherit;
  8590. background-color:rgba(240, 240, 240, 1);
  8591. border:none;
  8592. border-radius:0px;
  8593. -moz-box-shadow:none;
  8594. -webkit-box-shadow:none;
  8595. box-shadow:none;
  8596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8597. font-weight:400;
  8598. font-style:normal;
  8599. color:#AAAAAA;
  8600. }
  8601. #u1398.disabled {
  8602. }
  8603. #u1399_div {
  8604. border-width:0px;
  8605. position:absolute;
  8606. left:0px;
  8607. top:0px;
  8608. width:25px;
  8609. height:30px;
  8610. background:inherit;
  8611. background-color:rgba(255, 255, 255, 0);
  8612. border:none;
  8613. border-top:0px;
  8614. border-right:0px;
  8615. border-bottom:0px;
  8616. border-radius:0px;
  8617. border-top-left-radius:0px;
  8618. border-bottom-left-radius:0px;
  8619. -moz-box-shadow:none;
  8620. -webkit-box-shadow:none;
  8621. box-shadow:none;
  8622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8623. font-weight:400;
  8624. font-style:normal;
  8625. font-size:14px;
  8626. }
  8627. #u1399 {
  8628. border-width:0px;
  8629. position:absolute;
  8630. left:2253px;
  8631. top:339px;
  8632. width:25px;
  8633. height:30px;
  8634. display:flex;
  8635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8636. font-weight:400;
  8637. font-style:normal;
  8638. font-size:14px;
  8639. }
  8640. #u1399 .text {
  8641. position:absolute;
  8642. align-self:center;
  8643. padding:5px 10px 5px 0px;
  8644. box-sizing:border-box;
  8645. width:100%;
  8646. }
  8647. #u1399_text {
  8648. border-width:0px;
  8649. white-space:nowrap;
  8650. text-transform:none;
  8651. }
  8652. #u1400 {
  8653. border-width:0px;
  8654. position:absolute;
  8655. left:0px;
  8656. top:0px;
  8657. width:0px;
  8658. height:0px;
  8659. }
  8660. #u1401_div {
  8661. border-width:0px;
  8662. position:absolute;
  8663. left:0px;
  8664. top:0px;
  8665. width:74px;
  8666. height:30px;
  8667. background:inherit;
  8668. background-color:rgba(242, 242, 242, 0);
  8669. border:none;
  8670. border-top:0px;
  8671. border-right:0px;
  8672. border-bottom:0px;
  8673. border-radius:0px;
  8674. border-top-left-radius:0px;
  8675. border-bottom-left-radius:0px;
  8676. -moz-box-shadow:none;
  8677. -webkit-box-shadow:none;
  8678. box-shadow:none;
  8679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8680. font-weight:400;
  8681. font-style:normal;
  8682. font-size:14px;
  8683. }
  8684. #u1401 {
  8685. border-width:0px;
  8686. position:absolute;
  8687. left:1680px;
  8688. top:404px;
  8689. width:74px;
  8690. height:30px;
  8691. display:flex;
  8692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8693. font-weight:400;
  8694. font-style:normal;
  8695. font-size:14px;
  8696. }
  8697. #u1401 .text {
  8698. position:absolute;
  8699. align-self:center;
  8700. padding:5px 10px 5px 0px;
  8701. box-sizing:border-box;
  8702. width:100%;
  8703. }
  8704. #u1401_text {
  8705. border-width:0px;
  8706. white-space:nowrap;
  8707. text-transform:none;
  8708. }
  8709. #u1402_img {
  8710. border-width:0px;
  8711. position:absolute;
  8712. left:0px;
  8713. top:0px;
  8714. width:10px;
  8715. height:10px;
  8716. }
  8717. #u1402 {
  8718. border-width:0px;
  8719. position:absolute;
  8720. left:1750px;
  8721. top:414px;
  8722. width:10px;
  8723. height:10px;
  8724. display:flex;
  8725. }
  8726. #u1402 .text {
  8727. position:absolute;
  8728. align-self:center;
  8729. padding:2px 2px 2px 2px;
  8730. box-sizing:border-box;
  8731. width:100%;
  8732. }
  8733. #u1402_text {
  8734. border-width:0px;
  8735. word-wrap:break-word;
  8736. text-transform:none;
  8737. visibility:hidden;
  8738. }
  8739. #u1403_div {
  8740. border-width:0px;
  8741. position:absolute;
  8742. left:0px;
  8743. top:0px;
  8744. width:59px;
  8745. height:30px;
  8746. background:inherit;
  8747. background-color:rgba(24, 144, 255, 1);
  8748. border:none;
  8749. border-radius:4px;
  8750. -moz-box-shadow:none;
  8751. -webkit-box-shadow:none;
  8752. box-shadow:none;
  8753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8754. font-weight:400;
  8755. font-style:normal;
  8756. font-size:14px;
  8757. color:#FFFFFF;
  8758. }
  8759. #u1403 {
  8760. border-width:0px;
  8761. position:absolute;
  8762. left:1780px;
  8763. top:404px;
  8764. width:59px;
  8765. height:30px;
  8766. display:flex;
  8767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8768. font-weight:400;
  8769. font-style:normal;
  8770. font-size:14px;
  8771. color:#FFFFFF;
  8772. }
  8773. #u1403 .text {
  8774. position:absolute;
  8775. align-self:center;
  8776. padding:5px 15px 5px 15px;
  8777. box-sizing:border-box;
  8778. width:100%;
  8779. }
  8780. #u1403_text {
  8781. border-width:0px;
  8782. white-space:nowrap;
  8783. text-transform:none;
  8784. }
  8785. #u1404 {
  8786. border-width:0px;
  8787. position:absolute;
  8788. left:1683px;
  8789. top:444px;
  8790. width:600px;
  8791. height:113px;
  8792. }
  8793. #u1405_img {
  8794. border-width:0px;
  8795. position:absolute;
  8796. left:0px;
  8797. top:0px;
  8798. width:150px;
  8799. height:39px;
  8800. }
  8801. #u1405 {
  8802. border-width:0px;
  8803. position:absolute;
  8804. left:0px;
  8805. top:0px;
  8806. width:150px;
  8807. height:39px;
  8808. display:flex;
  8809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8810. font-weight:400;
  8811. font-style:normal;
  8812. font-size:12px;
  8813. color:#FFFFFF;
  8814. }
  8815. #u1405 .text {
  8816. position:absolute;
  8817. align-self:center;
  8818. padding:2px 2px 2px 0px;
  8819. box-sizing:border-box;
  8820. width:100%;
  8821. }
  8822. #u1405_text {
  8823. border-width:0px;
  8824. word-wrap:break-word;
  8825. text-transform:none;
  8826. }
  8827. #u1406_img {
  8828. border-width:0px;
  8829. position:absolute;
  8830. left:0px;
  8831. top:0px;
  8832. width:150px;
  8833. height:39px;
  8834. }
  8835. #u1406 {
  8836. border-width:0px;
  8837. position:absolute;
  8838. left:150px;
  8839. top:0px;
  8840. width:150px;
  8841. height:39px;
  8842. display:flex;
  8843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8844. font-weight:400;
  8845. font-style:normal;
  8846. font-size:12px;
  8847. color:#FFFFFF;
  8848. }
  8849. #u1406 .text {
  8850. position:absolute;
  8851. align-self:center;
  8852. padding:2px 2px 2px 0px;
  8853. box-sizing:border-box;
  8854. width:100%;
  8855. }
  8856. #u1406_text {
  8857. border-width:0px;
  8858. word-wrap:break-word;
  8859. text-transform:none;
  8860. }
  8861. #u1407_img {
  8862. border-width:0px;
  8863. position:absolute;
  8864. left:0px;
  8865. top:0px;
  8866. width:150px;
  8867. height:39px;
  8868. }
  8869. #u1407 {
  8870. border-width:0px;
  8871. position:absolute;
  8872. left:300px;
  8873. top:0px;
  8874. width:150px;
  8875. height:39px;
  8876. display:flex;
  8877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8878. font-weight:400;
  8879. font-style:normal;
  8880. font-size:12px;
  8881. color:#FFFFFF;
  8882. }
  8883. #u1407 .text {
  8884. position:absolute;
  8885. align-self:center;
  8886. padding:2px 2px 2px 0px;
  8887. box-sizing:border-box;
  8888. width:100%;
  8889. }
  8890. #u1407_text {
  8891. border-width:0px;
  8892. word-wrap:break-word;
  8893. text-transform:none;
  8894. }
  8895. #u1408_img {
  8896. border-width:0px;
  8897. position:absolute;
  8898. left:0px;
  8899. top:0px;
  8900. width:150px;
  8901. height:39px;
  8902. }
  8903. #u1408 {
  8904. border-width:0px;
  8905. position:absolute;
  8906. left:450px;
  8907. top:0px;
  8908. width:150px;
  8909. height:39px;
  8910. display:flex;
  8911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8912. font-weight:400;
  8913. font-style:normal;
  8914. font-size:12px;
  8915. color:#FFFFFF;
  8916. }
  8917. #u1408 .text {
  8918. position:absolute;
  8919. align-self:center;
  8920. padding:2px 2px 2px 0px;
  8921. box-sizing:border-box;
  8922. width:100%;
  8923. }
  8924. #u1408_text {
  8925. border-width:0px;
  8926. word-wrap:break-word;
  8927. text-transform:none;
  8928. }
  8929. #u1409_img {
  8930. border-width:0px;
  8931. position:absolute;
  8932. left:0px;
  8933. top:0px;
  8934. width:150px;
  8935. height:36px;
  8936. }
  8937. #u1409 {
  8938. border-width:0px;
  8939. position:absolute;
  8940. left:0px;
  8941. top:39px;
  8942. width:150px;
  8943. height:36px;
  8944. display:flex;
  8945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8946. font-weight:400;
  8947. font-style:normal;
  8948. font-size:12px;
  8949. }
  8950. #u1409 .text {
  8951. position:absolute;
  8952. align-self:center;
  8953. padding:2px 2px 2px 0px;
  8954. box-sizing:border-box;
  8955. width:100%;
  8956. }
  8957. #u1409_text {
  8958. border-width:0px;
  8959. word-wrap:break-word;
  8960. text-transform:none;
  8961. visibility:hidden;
  8962. }
  8963. #u1410_img {
  8964. border-width:0px;
  8965. position:absolute;
  8966. left:0px;
  8967. top:0px;
  8968. width:150px;
  8969. height:36px;
  8970. }
  8971. #u1410 {
  8972. border-width:0px;
  8973. position:absolute;
  8974. left:150px;
  8975. top:39px;
  8976. width:150px;
  8977. height:36px;
  8978. display:flex;
  8979. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8980. font-weight:400;
  8981. font-style:normal;
  8982. font-size:12px;
  8983. }
  8984. #u1410 .text {
  8985. position:absolute;
  8986. align-self:center;
  8987. padding:2px 2px 2px 0px;
  8988. box-sizing:border-box;
  8989. width:100%;
  8990. }
  8991. #u1410_text {
  8992. border-width:0px;
  8993. word-wrap:break-word;
  8994. text-transform:none;
  8995. visibility:hidden;
  8996. }
  8997. #u1411_img {
  8998. border-width:0px;
  8999. position:absolute;
  9000. left:0px;
  9001. top:0px;
  9002. width:150px;
  9003. height:36px;
  9004. }
  9005. #u1411 {
  9006. border-width:0px;
  9007. position:absolute;
  9008. left:300px;
  9009. top:39px;
  9010. width:150px;
  9011. height:36px;
  9012. display:flex;
  9013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9014. font-weight:400;
  9015. font-style:normal;
  9016. font-size:12px;
  9017. }
  9018. #u1411 .text {
  9019. position:absolute;
  9020. align-self:center;
  9021. padding:2px 2px 2px 0px;
  9022. box-sizing:border-box;
  9023. width:100%;
  9024. }
  9025. #u1411_text {
  9026. border-width:0px;
  9027. word-wrap:break-word;
  9028. text-transform:none;
  9029. visibility:hidden;
  9030. }
  9031. #u1412_img {
  9032. border-width:0px;
  9033. position:absolute;
  9034. left:0px;
  9035. top:0px;
  9036. width:150px;
  9037. height:36px;
  9038. }
  9039. #u1412 {
  9040. border-width:0px;
  9041. position:absolute;
  9042. left:450px;
  9043. top:39px;
  9044. width:150px;
  9045. height:36px;
  9046. display:flex;
  9047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9048. font-weight:400;
  9049. font-style:normal;
  9050. font-size:12px;
  9051. color:#1890FF;
  9052. }
  9053. #u1412 .text {
  9054. position:absolute;
  9055. align-self:center;
  9056. padding:2px 2px 2px 0px;
  9057. box-sizing:border-box;
  9058. width:100%;
  9059. }
  9060. #u1412_text {
  9061. border-width:0px;
  9062. word-wrap:break-word;
  9063. text-transform:none;
  9064. }
  9065. #u1413_img {
  9066. border-width:0px;
  9067. position:absolute;
  9068. left:0px;
  9069. top:0px;
  9070. width:150px;
  9071. height:38px;
  9072. }
  9073. #u1413 {
  9074. border-width:0px;
  9075. position:absolute;
  9076. left:0px;
  9077. top:75px;
  9078. width:150px;
  9079. height:38px;
  9080. display:flex;
  9081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9082. font-weight:400;
  9083. font-style:normal;
  9084. font-size:12px;
  9085. }
  9086. #u1413 .text {
  9087. position:absolute;
  9088. align-self:center;
  9089. padding:2px 2px 2px 0px;
  9090. box-sizing:border-box;
  9091. width:100%;
  9092. }
  9093. #u1413_text {
  9094. border-width:0px;
  9095. word-wrap:break-word;
  9096. text-transform:none;
  9097. visibility:hidden;
  9098. }
  9099. #u1414_img {
  9100. border-width:0px;
  9101. position:absolute;
  9102. left:0px;
  9103. top:0px;
  9104. width:150px;
  9105. height:38px;
  9106. }
  9107. #u1414 {
  9108. border-width:0px;
  9109. position:absolute;
  9110. left:150px;
  9111. top:75px;
  9112. width:150px;
  9113. height:38px;
  9114. display:flex;
  9115. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9116. font-weight:400;
  9117. font-style:normal;
  9118. font-size:12px;
  9119. }
  9120. #u1414 .text {
  9121. position:absolute;
  9122. align-self:center;
  9123. padding:2px 2px 2px 0px;
  9124. box-sizing:border-box;
  9125. width:100%;
  9126. }
  9127. #u1414_text {
  9128. border-width:0px;
  9129. word-wrap:break-word;
  9130. text-transform:none;
  9131. visibility:hidden;
  9132. }
  9133. #u1415_img {
  9134. border-width:0px;
  9135. position:absolute;
  9136. left:0px;
  9137. top:0px;
  9138. width:150px;
  9139. height:38px;
  9140. }
  9141. #u1415 {
  9142. border-width:0px;
  9143. position:absolute;
  9144. left:300px;
  9145. top:75px;
  9146. width:150px;
  9147. height:38px;
  9148. display:flex;
  9149. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9150. font-weight:400;
  9151. font-style:normal;
  9152. font-size:12px;
  9153. }
  9154. #u1415 .text {
  9155. position:absolute;
  9156. align-self:center;
  9157. padding:2px 2px 2px 0px;
  9158. box-sizing:border-box;
  9159. width:100%;
  9160. }
  9161. #u1415_text {
  9162. border-width:0px;
  9163. word-wrap:break-word;
  9164. text-transform:none;
  9165. visibility:hidden;
  9166. }
  9167. #u1416_img {
  9168. border-width:0px;
  9169. position:absolute;
  9170. left:0px;
  9171. top:0px;
  9172. width:150px;
  9173. height:38px;
  9174. }
  9175. #u1416 {
  9176. border-width:0px;
  9177. position:absolute;
  9178. left:450px;
  9179. top:75px;
  9180. width:150px;
  9181. height:38px;
  9182. display:flex;
  9183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9184. font-weight:400;
  9185. font-style:normal;
  9186. font-size:12px;
  9187. color:#1890FF;
  9188. }
  9189. #u1416 .text {
  9190. position:absolute;
  9191. align-self:center;
  9192. padding:2px 2px 2px 0px;
  9193. box-sizing:border-box;
  9194. width:100%;
  9195. }
  9196. #u1416_text {
  9197. border-width:0px;
  9198. word-wrap:break-word;
  9199. text-transform:none;
  9200. visibility:hidden;
  9201. }
  9202. #u1417_div {
  9203. border-width:0px;
  9204. position:absolute;
  9205. left:0px;
  9206. top:0px;
  9207. width:81px;
  9208. height:30px;
  9209. background:inherit;
  9210. background-color:rgba(255, 255, 255, 0);
  9211. border:none;
  9212. border-top:0px;
  9213. border-right:0px;
  9214. border-bottom:0px;
  9215. border-radius:0px;
  9216. border-top-left-radius:0px;
  9217. border-bottom-left-radius:0px;
  9218. -moz-box-shadow:none;
  9219. -webkit-box-shadow:none;
  9220. box-shadow:none;
  9221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9222. font-weight:400;
  9223. font-style:normal;
  9224. font-size:14px;
  9225. }
  9226. #u1417 {
  9227. border-width:0px;
  9228. position:absolute;
  9229. left:1683px;
  9230. top:129px;
  9231. width:81px;
  9232. height:30px;
  9233. display:flex;
  9234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9235. font-weight:400;
  9236. font-style:normal;
  9237. font-size:14px;
  9238. }
  9239. #u1417 .text {
  9240. position:absolute;
  9241. align-self:center;
  9242. padding:5px 10px 5px 0px;
  9243. box-sizing:border-box;
  9244. width:100%;
  9245. }
  9246. #u1417_text {
  9247. border-width:0px;
  9248. white-space:nowrap;
  9249. text-transform:none;
  9250. }
  9251. #u1418 {
  9252. border-width:0px;
  9253. position:absolute;
  9254. left:0px;
  9255. top:0px;
  9256. width:0px;
  9257. height:0px;
  9258. }
  9259. #u1419_div {
  9260. border-width:0px;
  9261. position:absolute;
  9262. left:0px;
  9263. top:0px;
  9264. width:482px;
  9265. height:40px;
  9266. background:inherit;
  9267. background-color:rgba(255, 255, 255, 1);
  9268. box-sizing:border-box;
  9269. border-width:1px;
  9270. border-style:solid;
  9271. border-color:rgba(170, 170, 170, 1);
  9272. border-radius:4px;
  9273. -moz-box-shadow:none;
  9274. -webkit-box-shadow:none;
  9275. box-shadow:none;
  9276. }
  9277. #u1419 {
  9278. border-width:0px;
  9279. position:absolute;
  9280. left:1801px;
  9281. top:124px;
  9282. width:482px;
  9283. height:40px;
  9284. display:flex;
  9285. }
  9286. #u1419 .text {
  9287. position:absolute;
  9288. align-self:center;
  9289. padding:2px 2px 2px 0px;
  9290. box-sizing:border-box;
  9291. width:100%;
  9292. }
  9293. #u1419_text {
  9294. border-width:0px;
  9295. word-wrap:break-word;
  9296. text-transform:none;
  9297. visibility:hidden;
  9298. }
  9299. #u1420_input {
  9300. position:absolute;
  9301. left:0px;
  9302. top:0px;
  9303. width:458px;
  9304. height:30px;
  9305. padding:2px 2px 2px 0px;
  9306. font-family:'ArialMT', 'Arial', sans-serif;
  9307. font-weight:400;
  9308. font-style:normal;
  9309. font-size:13px;
  9310. letter-spacing:normal;
  9311. color:#AAAAAA;
  9312. vertical-align:none;
  9313. text-align:left;
  9314. text-transform:none;
  9315. background-color:transparent;
  9316. border-color:transparent;
  9317. }
  9318. #u1420_input.disabled {
  9319. position:absolute;
  9320. left:0px;
  9321. top:0px;
  9322. width:458px;
  9323. height:30px;
  9324. padding:2px 2px 2px 0px;
  9325. font-family:'ArialMT', 'Arial', sans-serif;
  9326. font-weight:400;
  9327. font-style:normal;
  9328. font-size:13px;
  9329. letter-spacing:normal;
  9330. color:#AAAAAA;
  9331. vertical-align:none;
  9332. text-align:left;
  9333. text-transform:none;
  9334. background-color:transparent;
  9335. border-color:transparent;
  9336. }
  9337. #u1420_div {
  9338. border-width:0px;
  9339. position:absolute;
  9340. left:0px;
  9341. top:0px;
  9342. width:458px;
  9343. height:30px;
  9344. background:inherit;
  9345. background-color:rgba(255, 255, 255, 1);
  9346. border:none;
  9347. border-radius:0px;
  9348. -moz-box-shadow:none;
  9349. -webkit-box-shadow:none;
  9350. box-shadow:none;
  9351. color:#AAAAAA;
  9352. }
  9353. #u1420 {
  9354. border-width:0px;
  9355. position:absolute;
  9356. left:1813px;
  9357. top:130px;
  9358. width:458px;
  9359. height:30px;
  9360. display:flex;
  9361. color:#AAAAAA;
  9362. }
  9363. #u1420 .text {
  9364. position:absolute;
  9365. align-self:flex-start;
  9366. padding:2px 2px 2px 0px;
  9367. box-sizing:border-box;
  9368. width:100%;
  9369. }
  9370. #u1420_div.disabled {
  9371. border-width:0px;
  9372. position:absolute;
  9373. left:0px;
  9374. top:0px;
  9375. width:458px;
  9376. height:30px;
  9377. background:inherit;
  9378. background-color:rgba(240, 240, 240, 1);
  9379. border:none;
  9380. border-radius:0px;
  9381. -moz-box-shadow:none;
  9382. -webkit-box-shadow:none;
  9383. box-shadow:none;
  9384. color:#AAAAAA;
  9385. }
  9386. #u1420.disabled {
  9387. }
  9388. .u1420_input_option {
  9389. }