styles.css 169 KB

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