styles.css 123 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u35215 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u35217 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:0px;
  33. height:0px;
  34. }
  35. #u35218_div {
  36. border-width:0px;
  37. position:absolute;
  38. left:0px;
  39. top:0px;
  40. width:129px;
  41. height:22px;
  42. background:inherit;
  43. background-color:rgba(255, 255, 255, 0);
  44. border:none;
  45. border-radius:0px;
  46. -moz-box-shadow:none;
  47. -webkit-box-shadow:none;
  48. box-shadow:none;
  49. font-size:16px;
  50. color:#FFFFFF;
  51. }
  52. #u35218 {
  53. border-width:0px;
  54. position:absolute;
  55. left:49px;
  56. top:14px;
  57. width:129px;
  58. height:22px;
  59. display:flex;
  60. font-size:16px;
  61. color:#FFFFFF;
  62. }
  63. #u35218 .text {
  64. position:absolute;
  65. align-self:flex-start;
  66. padding:0px 0px 0px 0px;
  67. box-sizing:border-box;
  68. width:100%;
  69. }
  70. #u35218_text {
  71. border-width:0px;
  72. white-space:nowrap;
  73. text-transform:none;
  74. }
  75. #u35219_div {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. background:inherit;
  83. background-color:rgba(30, 42, 68, 1);
  84. border:none;
  85. border-radius:0px;
  86. -moz-box-shadow:none;
  87. -webkit-box-shadow:none;
  88. box-shadow:none;
  89. color:#AFB3B6;
  90. }
  91. #u35219 {
  92. border-width:0px;
  93. position:absolute;
  94. left:0px;
  95. top:0px;
  96. width:1600px;
  97. height:50px;
  98. display:flex;
  99. color:#AFB3B6;
  100. }
  101. #u35219 .text {
  102. position:absolute;
  103. align-self:center;
  104. padding:2px 2px 2px 2px;
  105. box-sizing:border-box;
  106. width:100%;
  107. }
  108. #u35219_text {
  109. border-width:0px;
  110. word-wrap:break-word;
  111. text-transform:none;
  112. visibility:hidden;
  113. }
  114. #u35220 {
  115. border-width:0px;
  116. position:absolute;
  117. left:0px;
  118. top:0px;
  119. width:0px;
  120. height:0px;
  121. }
  122. #u35221_img {
  123. border-width:0px;
  124. position:absolute;
  125. left:0px;
  126. top:0px;
  127. width:31px;
  128. height:31px;
  129. }
  130. #u35221 {
  131. border-width:0px;
  132. position:absolute;
  133. left:19px;
  134. top:10px;
  135. width:31px;
  136. height:31px;
  137. display:flex;
  138. }
  139. #u35221 .text {
  140. position:absolute;
  141. align-self:center;
  142. padding:2px 2px 2px 2px;
  143. box-sizing:border-box;
  144. width:100%;
  145. }
  146. #u35221_text {
  147. border-width:0px;
  148. word-wrap:break-word;
  149. text-transform:none;
  150. }
  151. #u35222_div {
  152. border-width:0px;
  153. position:absolute;
  154. left:0px;
  155. top:0px;
  156. width:129px;
  157. height:22px;
  158. background:inherit;
  159. background-color:rgba(255, 255, 255, 0);
  160. border:none;
  161. border-radius:0px;
  162. -moz-box-shadow:none;
  163. -webkit-box-shadow:none;
  164. box-shadow:none;
  165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  166. font-weight:400;
  167. font-style:normal;
  168. font-size:16px;
  169. color:#FFFFFF;
  170. }
  171. #u35222 {
  172. border-width:0px;
  173. position:absolute;
  174. left:62px;
  175. top:14px;
  176. width:129px;
  177. height:22px;
  178. display:flex;
  179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  180. font-weight:400;
  181. font-style:normal;
  182. font-size:16px;
  183. color:#FFFFFF;
  184. }
  185. #u35222 .text {
  186. position:absolute;
  187. align-self:flex-start;
  188. padding:0px 0px 0px 0px;
  189. box-sizing:border-box;
  190. width:100%;
  191. }
  192. #u35222_text {
  193. border-width:0px;
  194. white-space:nowrap;
  195. text-transform:none;
  196. }
  197. #u35223_div {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:0px;
  202. width:200px;
  203. height:1200px;
  204. background:inherit;
  205. background-color:rgba(30, 42, 68, 1);
  206. border:none;
  207. border-radius:0px;
  208. -moz-box-shadow:none;
  209. -webkit-box-shadow:none;
  210. box-shadow:none;
  211. color:#AFB3B6;
  212. }
  213. #u35223 {
  214. border-width:0px;
  215. position:absolute;
  216. left:0px;
  217. top:47px;
  218. width:200px;
  219. height:1200px;
  220. display:flex;
  221. color:#AFB3B6;
  222. }
  223. #u35223 .text {
  224. position:absolute;
  225. align-self:center;
  226. padding:2px 2px 2px 2px;
  227. box-sizing:border-box;
  228. width:100%;
  229. }
  230. #u35223_text {
  231. border-width:0px;
  232. word-wrap:break-word;
  233. text-transform:none;
  234. visibility:hidden;
  235. }
  236. #u35224_img {
  237. border-width:0px;
  238. position:absolute;
  239. left:0px;
  240. top:0px;
  241. width:15px;
  242. height:15px;
  243. }
  244. #u35224 {
  245. border-width:0px;
  246. position:absolute;
  247. left:1523px;
  248. top:18px;
  249. width:15px;
  250. height:15px;
  251. display:flex;
  252. }
  253. #u35224 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u35224_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u35225_img {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:15px;
  272. height:15px;
  273. }
  274. #u35225 {
  275. border-width:0px;
  276. position:absolute;
  277. left:1493px;
  278. top:18px;
  279. width:15px;
  280. height:15px;
  281. display:flex;
  282. }
  283. #u35225 .text {
  284. position:absolute;
  285. align-self:center;
  286. padding:2px 2px 2px 2px;
  287. box-sizing:border-box;
  288. width:100%;
  289. }
  290. #u35225_text {
  291. border-width:0px;
  292. word-wrap:break-word;
  293. text-transform:none;
  294. visibility:hidden;
  295. }
  296. #u35226 {
  297. border-width:0px;
  298. position:absolute;
  299. left:0px;
  300. top:0px;
  301. width:0px;
  302. height:0px;
  303. }
  304. #u35227_img {
  305. border-width:0px;
  306. position:absolute;
  307. left:0px;
  308. top:0px;
  309. width:14px;
  310. height:14px;
  311. }
  312. #u35227 {
  313. border-width:0px;
  314. position:absolute;
  315. left:1553px;
  316. top:18px;
  317. width:14px;
  318. height:14px;
  319. display:flex;
  320. }
  321. #u35227 .text {
  322. position:absolute;
  323. align-self:center;
  324. padding:2px 2px 2px 2px;
  325. box-sizing:border-box;
  326. width:100%;
  327. }
  328. #u35227_text {
  329. border-width:0px;
  330. word-wrap:break-word;
  331. text-transform:none;
  332. visibility:hidden;
  333. }
  334. #u35228_img {
  335. border-width:0px;
  336. position:absolute;
  337. left:0px;
  338. top:0px;
  339. width:8px;
  340. height:5px;
  341. }
  342. #u35228 {
  343. border-width:0px;
  344. position:absolute;
  345. left:1572px;
  346. top:23px;
  347. width:8px;
  348. height:5px;
  349. display:flex;
  350. }
  351. #u35228 .text {
  352. position:absolute;
  353. align-self:center;
  354. padding:2px 2px 2px 2px;
  355. box-sizing:border-box;
  356. width:100%;
  357. }
  358. #u35228_text {
  359. border-width:0px;
  360. word-wrap:break-word;
  361. text-transform:none;
  362. visibility:hidden;
  363. }
  364. #u35229_div {
  365. border-width:0px;
  366. position:absolute;
  367. left:0px;
  368. top:0px;
  369. width:1402px;
  370. height:1200px;
  371. background:inherit;
  372. background-color:rgba(242, 242, 242, 1);
  373. border:none;
  374. border-radius:0px;
  375. -moz-box-shadow:none;
  376. -webkit-box-shadow:none;
  377. box-shadow:none;
  378. }
  379. #u35229 {
  380. border-width:0px;
  381. position:absolute;
  382. left:198px;
  383. top:47px;
  384. width:1402px;
  385. height:1200px;
  386. display:flex;
  387. }
  388. #u35229 .text {
  389. position:absolute;
  390. align-self:center;
  391. padding:2px 2px 2px 2px;
  392. box-sizing:border-box;
  393. width:100%;
  394. }
  395. #u35229_text {
  396. border-width:0px;
  397. word-wrap:break-word;
  398. text-transform:none;
  399. visibility:hidden;
  400. }
  401. #u35230 {
  402. border-width:0px;
  403. position:absolute;
  404. left:35px;
  405. top:81px;
  406. width:118px;
  407. height:220px;
  408. }
  409. #u35230_children {
  410. border-width:0px;
  411. position:absolute;
  412. left:0px;
  413. top:0px;
  414. width:0px;
  415. height:0px;
  416. }
  417. #u35231 {
  418. border-width:0px;
  419. position:absolute;
  420. left:0px;
  421. top:0px;
  422. width:98px;
  423. height:20px;
  424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  425. font-weight:400;
  426. font-style:normal;
  427. font-size:14px;
  428. color:#FFFFFF;
  429. }
  430. #u35232_div {
  431. border-width:0px;
  432. position:absolute;
  433. left:0px;
  434. top:0px;
  435. width:76px;
  436. height:20px;
  437. background:inherit;
  438. background-color:rgba(255, 255, 255, 0);
  439. border:none;
  440. border-radius:0px;
  441. -moz-box-shadow:none;
  442. -webkit-box-shadow:none;
  443. box-shadow:none;
  444. }
  445. #u35232 {
  446. border-width:0px;
  447. position:absolute;
  448. left:22px;
  449. top:0px;
  450. width:76px;
  451. height:20px;
  452. display:flex;
  453. }
  454. #u35232 .text {
  455. position:absolute;
  456. align-self:center;
  457. padding:2px 2px 2px 3px;
  458. box-sizing:border-box;
  459. width:100%;
  460. }
  461. #u35232_text {
  462. border-width:0px;
  463. white-space:nowrap;
  464. text-transform:none;
  465. }
  466. #u35233 {
  467. border-width:0px;
  468. position:absolute;
  469. left:0px;
  470. top:20px;
  471. width:84px;
  472. height:20px;
  473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  474. font-weight:400;
  475. font-style:normal;
  476. font-size:14px;
  477. color:#FFFFFF;
  478. }
  479. #u35234_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:9px;
  485. height:9px;
  486. }
  487. #u35234 {
  488. border-width:0px;
  489. position:absolute;
  490. left:6px;
  491. top:6px;
  492. width:9px;
  493. height:9px;
  494. display:flex;
  495. }
  496. #u35234 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u35234_img.selected {
  504. }
  505. #u35234.selected {
  506. }
  507. #u35234_text {
  508. border-width:0px;
  509. word-wrap:break-word;
  510. text-transform:none;
  511. visibility:hidden;
  512. }
  513. #u35235_div {
  514. border-width:0px;
  515. position:absolute;
  516. left:0px;
  517. top:0px;
  518. width:62px;
  519. height:20px;
  520. background:inherit;
  521. background-color:rgba(255, 255, 255, 0);
  522. border:none;
  523. border-radius:0px;
  524. -moz-box-shadow:none;
  525. -webkit-box-shadow:none;
  526. box-shadow:none;
  527. }
  528. #u35235 {
  529. border-width:0px;
  530. position:absolute;
  531. left:22px;
  532. top:0px;
  533. width:62px;
  534. height:20px;
  535. display:flex;
  536. }
  537. #u35235 .text {
  538. position:absolute;
  539. align-self:center;
  540. padding:2px 2px 2px 3px;
  541. box-sizing:border-box;
  542. width:100%;
  543. }
  544. #u35235_text {
  545. border-width:0px;
  546. white-space:nowrap;
  547. text-transform:none;
  548. }
  549. #u35233_children {
  550. border-width:0px;
  551. position:absolute;
  552. left:0px;
  553. top:0px;
  554. width:0px;
  555. height:0px;
  556. }
  557. #u35236 {
  558. border-width:0px;
  559. position:absolute;
  560. left:20px;
  561. top:20px;
  562. width:98px;
  563. height:20px;
  564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  565. font-weight:400;
  566. font-style:normal;
  567. font-size:14px;
  568. color:#FFFFFF;
  569. }
  570. #u35237_div {
  571. border-width:0px;
  572. position:absolute;
  573. left:0px;
  574. top:0px;
  575. width:76px;
  576. height:20px;
  577. background:inherit;
  578. background-color:rgba(255, 255, 255, 0);
  579. border:none;
  580. border-radius:0px;
  581. -moz-box-shadow:none;
  582. -webkit-box-shadow:none;
  583. box-shadow:none;
  584. }
  585. #u35237 {
  586. border-width:0px;
  587. position:absolute;
  588. left:22px;
  589. top:0px;
  590. width:76px;
  591. height:20px;
  592. display:flex;
  593. }
  594. #u35237 .text {
  595. position:absolute;
  596. align-self:center;
  597. padding:2px 2px 2px 3px;
  598. box-sizing:border-box;
  599. width:100%;
  600. }
  601. #u35237_text {
  602. border-width:0px;
  603. white-space:nowrap;
  604. text-transform:none;
  605. }
  606. #u35238 {
  607. border-width:0px;
  608. position:absolute;
  609. left:20px;
  610. top:40px;
  611. width:98px;
  612. height:20px;
  613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  614. font-weight:400;
  615. font-style:normal;
  616. font-size:14px;
  617. color:#FFFFFF;
  618. }
  619. #u35239_div {
  620. border-width:0px;
  621. position:absolute;
  622. left:0px;
  623. top:0px;
  624. width:76px;
  625. height:20px;
  626. background:inherit;
  627. background-color:rgba(255, 255, 255, 0);
  628. border:none;
  629. border-radius:0px;
  630. -moz-box-shadow:none;
  631. -webkit-box-shadow:none;
  632. box-shadow:none;
  633. }
  634. #u35239 {
  635. border-width:0px;
  636. position:absolute;
  637. left:22px;
  638. top:0px;
  639. width:76px;
  640. height:20px;
  641. display:flex;
  642. }
  643. #u35239 .text {
  644. position:absolute;
  645. align-self:center;
  646. padding:2px 2px 2px 3px;
  647. box-sizing:border-box;
  648. width:100%;
  649. }
  650. #u35239_text {
  651. border-width:0px;
  652. white-space:nowrap;
  653. text-transform:none;
  654. }
  655. #u35240 {
  656. border-width:0px;
  657. position:absolute;
  658. left:0px;
  659. top:80px;
  660. width:84px;
  661. height:20px;
  662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  663. font-weight:400;
  664. font-style:normal;
  665. font-size:14px;
  666. color:#FFFFFF;
  667. }
  668. #u35241_img {
  669. border-width:0px;
  670. position:absolute;
  671. left:0px;
  672. top:0px;
  673. width:9px;
  674. height:9px;
  675. }
  676. #u35241 {
  677. border-width:0px;
  678. position:absolute;
  679. left:6px;
  680. top:6px;
  681. width:9px;
  682. height:9px;
  683. display:flex;
  684. }
  685. #u35241 .text {
  686. position:absolute;
  687. align-self:center;
  688. padding:2px 2px 2px 2px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u35241_img.selected {
  693. }
  694. #u35241.selected {
  695. }
  696. #u35241_text {
  697. border-width:0px;
  698. word-wrap:break-word;
  699. text-transform:none;
  700. visibility:hidden;
  701. }
  702. #u35242_div {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:62px;
  708. height:20px;
  709. background:inherit;
  710. background-color:rgba(255, 255, 255, 0);
  711. border:none;
  712. border-radius:0px;
  713. -moz-box-shadow:none;
  714. -webkit-box-shadow:none;
  715. box-shadow:none;
  716. }
  717. #u35242 {
  718. border-width:0px;
  719. position:absolute;
  720. left:22px;
  721. top:0px;
  722. width:62px;
  723. height:20px;
  724. display:flex;
  725. }
  726. #u35242 .text {
  727. position:absolute;
  728. align-self:center;
  729. padding:2px 2px 2px 3px;
  730. box-sizing:border-box;
  731. width:100%;
  732. }
  733. #u35242_text {
  734. border-width:0px;
  735. white-space:nowrap;
  736. text-transform:none;
  737. }
  738. #u35240_children {
  739. border-width:0px;
  740. position:absolute;
  741. left:0px;
  742. top:0px;
  743. width:0px;
  744. height:0px;
  745. }
  746. #u35243 {
  747. border-width:0px;
  748. position:absolute;
  749. left:20px;
  750. top:20px;
  751. width:98px;
  752. height:20px;
  753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  754. font-weight:400;
  755. font-style:normal;
  756. font-size:14px;
  757. color:#FFFFFF;
  758. }
  759. #u35244_div {
  760. border-width:0px;
  761. position:absolute;
  762. left:0px;
  763. top:0px;
  764. width:76px;
  765. height:20px;
  766. background:inherit;
  767. background-color:rgba(255, 255, 255, 0);
  768. border:none;
  769. border-radius:0px;
  770. -moz-box-shadow:none;
  771. -webkit-box-shadow:none;
  772. box-shadow:none;
  773. }
  774. #u35244 {
  775. border-width:0px;
  776. position:absolute;
  777. left:22px;
  778. top:0px;
  779. width:76px;
  780. height:20px;
  781. display:flex;
  782. }
  783. #u35244 .text {
  784. position:absolute;
  785. align-self:center;
  786. padding:2px 2px 2px 3px;
  787. box-sizing:border-box;
  788. width:100%;
  789. }
  790. #u35244_text {
  791. border-width:0px;
  792. white-space:nowrap;
  793. text-transform:none;
  794. }
  795. #u35245 {
  796. border-width:0px;
  797. position:absolute;
  798. left:20px;
  799. top:40px;
  800. width:98px;
  801. height:20px;
  802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  803. font-weight:400;
  804. font-style:normal;
  805. font-size:14px;
  806. color:#FFFFFF;
  807. }
  808. #u35246_div {
  809. border-width:0px;
  810. position:absolute;
  811. left:0px;
  812. top:0px;
  813. width:76px;
  814. height:20px;
  815. background:inherit;
  816. background-color:rgba(255, 255, 255, 0);
  817. border:none;
  818. border-radius:0px;
  819. -moz-box-shadow:none;
  820. -webkit-box-shadow:none;
  821. box-shadow:none;
  822. }
  823. #u35246 {
  824. border-width:0px;
  825. position:absolute;
  826. left:22px;
  827. top:0px;
  828. width:76px;
  829. height:20px;
  830. display:flex;
  831. }
  832. #u35246 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 3px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u35246_text {
  840. border-width:0px;
  841. white-space:nowrap;
  842. text-transform:none;
  843. }
  844. #u35247 {
  845. border-width:0px;
  846. position:absolute;
  847. left:0px;
  848. top:140px;
  849. width:84px;
  850. height:20px;
  851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  852. font-weight:400;
  853. font-style:normal;
  854. font-size:14px;
  855. color:#FFFFFF;
  856. }
  857. #u35248_img {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:9px;
  863. height:9px;
  864. }
  865. #u35248 {
  866. border-width:0px;
  867. position:absolute;
  868. left:6px;
  869. top:6px;
  870. width:9px;
  871. height:9px;
  872. display:flex;
  873. }
  874. #u35248 .text {
  875. position:absolute;
  876. align-self:center;
  877. padding:2px 2px 2px 2px;
  878. box-sizing:border-box;
  879. width:100%;
  880. }
  881. #u35248_img.selected {
  882. }
  883. #u35248.selected {
  884. }
  885. #u35248_text {
  886. border-width:0px;
  887. word-wrap:break-word;
  888. text-transform:none;
  889. visibility:hidden;
  890. }
  891. #u35249_div {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:62px;
  897. height:20px;
  898. background:inherit;
  899. background-color:rgba(255, 255, 255, 0);
  900. border:none;
  901. border-radius:0px;
  902. -moz-box-shadow:none;
  903. -webkit-box-shadow:none;
  904. box-shadow:none;
  905. }
  906. #u35249 {
  907. border-width:0px;
  908. position:absolute;
  909. left:22px;
  910. top:0px;
  911. width:62px;
  912. height:20px;
  913. display:flex;
  914. }
  915. #u35249 .text {
  916. position:absolute;
  917. align-self:center;
  918. padding:2px 2px 2px 3px;
  919. box-sizing:border-box;
  920. width:100%;
  921. }
  922. #u35249_text {
  923. border-width:0px;
  924. white-space:nowrap;
  925. text-transform:none;
  926. }
  927. #u35247_children {
  928. border-width:0px;
  929. position:absolute;
  930. left:0px;
  931. top:0px;
  932. width:0px;
  933. height:0px;
  934. visibility:hidden;
  935. }
  936. #u35250 {
  937. border-width:0px;
  938. position:absolute;
  939. left:20px;
  940. top:20px;
  941. width:84px;
  942. height:20px;
  943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  944. font-weight:400;
  945. font-style:normal;
  946. font-size:14px;
  947. color:#FFFFFF;
  948. }
  949. #u35251_div {
  950. border-width:0px;
  951. position:absolute;
  952. left:0px;
  953. top:0px;
  954. width:62px;
  955. height:20px;
  956. background:inherit;
  957. background-color:rgba(255, 255, 255, 0);
  958. border:none;
  959. border-radius:0px;
  960. -moz-box-shadow:none;
  961. -webkit-box-shadow:none;
  962. box-shadow:none;
  963. }
  964. #u35251 {
  965. border-width:0px;
  966. position:absolute;
  967. left:22px;
  968. top:0px;
  969. width:62px;
  970. height:20px;
  971. display:flex;
  972. }
  973. #u35251 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 3px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u35251_text {
  981. border-width:0px;
  982. white-space:nowrap;
  983. text-transform:none;
  984. }
  985. #u35252 {
  986. border-width:0px;
  987. position:absolute;
  988. left:20px;
  989. top:40px;
  990. width:84px;
  991. height:20px;
  992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  993. font-weight:400;
  994. font-style:normal;
  995. font-size:14px;
  996. color:#FFFFFF;
  997. }
  998. #u35253_div {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:0px;
  1002. top:0px;
  1003. width:62px;
  1004. height:20px;
  1005. background:inherit;
  1006. background-color:rgba(255, 255, 255, 0);
  1007. border:none;
  1008. border-radius:0px;
  1009. -moz-box-shadow:none;
  1010. -webkit-box-shadow:none;
  1011. box-shadow:none;
  1012. }
  1013. #u35253 {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:22px;
  1017. top:0px;
  1018. width:62px;
  1019. height:20px;
  1020. display:flex;
  1021. }
  1022. #u35253 .text {
  1023. position:absolute;
  1024. align-self:center;
  1025. padding:2px 2px 2px 3px;
  1026. box-sizing:border-box;
  1027. width:100%;
  1028. }
  1029. #u35253_text {
  1030. border-width:0px;
  1031. white-space:nowrap;
  1032. text-transform:none;
  1033. }
  1034. #u35254 {
  1035. border-width:0px;
  1036. position:absolute;
  1037. left:20px;
  1038. top:60px;
  1039. width:84px;
  1040. height:20px;
  1041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1042. font-weight:400;
  1043. font-style:normal;
  1044. font-size:14px;
  1045. color:#FFFFFF;
  1046. }
  1047. #u35255_div {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:62px;
  1053. height:20px;
  1054. background:inherit;
  1055. background-color:rgba(255, 255, 255, 0);
  1056. border:none;
  1057. border-radius:0px;
  1058. -moz-box-shadow:none;
  1059. -webkit-box-shadow:none;
  1060. box-shadow:none;
  1061. }
  1062. #u35255 {
  1063. border-width:0px;
  1064. position:absolute;
  1065. left:22px;
  1066. top:0px;
  1067. width:62px;
  1068. height:20px;
  1069. display:flex;
  1070. }
  1071. #u35255 .text {
  1072. position:absolute;
  1073. align-self:center;
  1074. padding:2px 2px 2px 3px;
  1075. box-sizing:border-box;
  1076. width:100%;
  1077. }
  1078. #u35255_text {
  1079. border-width:0px;
  1080. white-space:nowrap;
  1081. text-transform:none;
  1082. }
  1083. #u35256 {
  1084. border-width:0px;
  1085. position:absolute;
  1086. left:20px;
  1087. top:80px;
  1088. width:84px;
  1089. height:20px;
  1090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1091. font-weight:400;
  1092. font-style:normal;
  1093. font-size:14px;
  1094. color:#FFFFFF;
  1095. }
  1096. #u35257_div {
  1097. border-width:0px;
  1098. position:absolute;
  1099. left:0px;
  1100. top:0px;
  1101. width:62px;
  1102. height:20px;
  1103. background:inherit;
  1104. background-color:rgba(255, 255, 255, 0);
  1105. border:none;
  1106. border-radius:0px;
  1107. -moz-box-shadow:none;
  1108. -webkit-box-shadow:none;
  1109. box-shadow:none;
  1110. }
  1111. #u35257 {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:22px;
  1115. top:0px;
  1116. width:62px;
  1117. height:20px;
  1118. display:flex;
  1119. }
  1120. #u35257 .text {
  1121. position:absolute;
  1122. align-self:center;
  1123. padding:2px 2px 2px 3px;
  1124. box-sizing:border-box;
  1125. width:100%;
  1126. }
  1127. #u35257_text {
  1128. border-width:0px;
  1129. white-space:nowrap;
  1130. text-transform:none;
  1131. }
  1132. #u35258 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:0px;
  1136. top:160px;
  1137. width:98px;
  1138. height:20px;
  1139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1140. font-weight:400;
  1141. font-style:normal;
  1142. font-size:14px;
  1143. color:#FFFFFF;
  1144. }
  1145. #u35259_img {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:0px;
  1149. top:0px;
  1150. width:9px;
  1151. height:9px;
  1152. }
  1153. #u35259 {
  1154. border-width:0px;
  1155. position:absolute;
  1156. left:6px;
  1157. top:6px;
  1158. width:9px;
  1159. height:9px;
  1160. display:flex;
  1161. }
  1162. #u35259 .text {
  1163. position:absolute;
  1164. align-self:center;
  1165. padding:2px 2px 2px 2px;
  1166. box-sizing:border-box;
  1167. width:100%;
  1168. }
  1169. #u35259_img.selected {
  1170. }
  1171. #u35259.selected {
  1172. }
  1173. #u35259_text {
  1174. border-width:0px;
  1175. word-wrap:break-word;
  1176. text-transform:none;
  1177. visibility:hidden;
  1178. }
  1179. #u35260_div {
  1180. border-width:0px;
  1181. position:absolute;
  1182. left:0px;
  1183. top:0px;
  1184. width:76px;
  1185. height:20px;
  1186. background:inherit;
  1187. background-color:rgba(255, 255, 255, 0);
  1188. border:none;
  1189. border-radius:0px;
  1190. -moz-box-shadow:none;
  1191. -webkit-box-shadow:none;
  1192. box-shadow:none;
  1193. }
  1194. #u35260 {
  1195. border-width:0px;
  1196. position:absolute;
  1197. left:22px;
  1198. top:0px;
  1199. width:76px;
  1200. height:20px;
  1201. display:flex;
  1202. }
  1203. #u35260 .text {
  1204. position:absolute;
  1205. align-self:center;
  1206. padding:2px 2px 2px 3px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u35260_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u35258_children {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:0px;
  1221. height:0px;
  1222. visibility:hidden;
  1223. }
  1224. #u35261 {
  1225. border-width:0px;
  1226. position:absolute;
  1227. left:20px;
  1228. top:20px;
  1229. width:98px;
  1230. height:20px;
  1231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1232. font-weight:400;
  1233. font-style:normal;
  1234. font-size:14px;
  1235. color:#FFFFFF;
  1236. }
  1237. #u35262_div {
  1238. border-width:0px;
  1239. position:absolute;
  1240. left:0px;
  1241. top:0px;
  1242. width:76px;
  1243. height:20px;
  1244. background:inherit;
  1245. background-color:rgba(255, 255, 255, 0);
  1246. border:none;
  1247. border-radius:0px;
  1248. -moz-box-shadow:none;
  1249. -webkit-box-shadow:none;
  1250. box-shadow:none;
  1251. }
  1252. #u35262 {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:22px;
  1256. top:0px;
  1257. width:76px;
  1258. height:20px;
  1259. display:flex;
  1260. }
  1261. #u35262 .text {
  1262. position:absolute;
  1263. align-self:center;
  1264. padding:2px 2px 2px 3px;
  1265. box-sizing:border-box;
  1266. width:100%;
  1267. }
  1268. #u35262_text {
  1269. border-width:0px;
  1270. white-space:nowrap;
  1271. text-transform:none;
  1272. }
  1273. #u35263 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:20px;
  1277. top:40px;
  1278. width:98px;
  1279. height:20px;
  1280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1281. font-weight:400;
  1282. font-style:normal;
  1283. font-size:14px;
  1284. color:#FFFFFF;
  1285. }
  1286. #u35264_div {
  1287. border-width:0px;
  1288. position:absolute;
  1289. left:0px;
  1290. top:0px;
  1291. width:76px;
  1292. height:20px;
  1293. background:inherit;
  1294. background-color:rgba(255, 255, 255, 0);
  1295. border:none;
  1296. border-radius:0px;
  1297. -moz-box-shadow:none;
  1298. -webkit-box-shadow:none;
  1299. box-shadow:none;
  1300. }
  1301. #u35264 {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:22px;
  1305. top:0px;
  1306. width:76px;
  1307. height:20px;
  1308. display:flex;
  1309. }
  1310. #u35264 .text {
  1311. position:absolute;
  1312. align-self:center;
  1313. padding:2px 2px 2px 3px;
  1314. box-sizing:border-box;
  1315. width:100%;
  1316. }
  1317. #u35264_text {
  1318. border-width:0px;
  1319. white-space:nowrap;
  1320. text-transform:none;
  1321. }
  1322. #u35265 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:180px;
  1327. width:84px;
  1328. height:20px;
  1329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1330. font-weight:400;
  1331. font-style:normal;
  1332. font-size:14px;
  1333. color:#FFFFFF;
  1334. }
  1335. #u35266_img {
  1336. border-width:0px;
  1337. position:absolute;
  1338. left:0px;
  1339. top:0px;
  1340. width:9px;
  1341. height:9px;
  1342. }
  1343. #u35266 {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:6px;
  1347. top:6px;
  1348. width:9px;
  1349. height:9px;
  1350. display:flex;
  1351. }
  1352. #u35266 .text {
  1353. position:absolute;
  1354. align-self:center;
  1355. padding:2px 2px 2px 2px;
  1356. box-sizing:border-box;
  1357. width:100%;
  1358. }
  1359. #u35266_img.selected {
  1360. }
  1361. #u35266.selected {
  1362. }
  1363. #u35266_text {
  1364. border-width:0px;
  1365. word-wrap:break-word;
  1366. text-transform:none;
  1367. visibility:hidden;
  1368. }
  1369. #u35267_div {
  1370. border-width:0px;
  1371. position:absolute;
  1372. left:0px;
  1373. top:0px;
  1374. width:62px;
  1375. height:20px;
  1376. background:inherit;
  1377. background-color:rgba(255, 255, 255, 0);
  1378. border:none;
  1379. border-radius:0px;
  1380. -moz-box-shadow:none;
  1381. -webkit-box-shadow:none;
  1382. box-shadow:none;
  1383. }
  1384. #u35267 {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:22px;
  1388. top:0px;
  1389. width:62px;
  1390. height:20px;
  1391. display:flex;
  1392. }
  1393. #u35267 .text {
  1394. position:absolute;
  1395. align-self:center;
  1396. padding:2px 2px 2px 3px;
  1397. box-sizing:border-box;
  1398. width:100%;
  1399. }
  1400. #u35267_text {
  1401. border-width:0px;
  1402. white-space:nowrap;
  1403. text-transform:none;
  1404. }
  1405. #u35265_children {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:0px;
  1409. top:0px;
  1410. width:0px;
  1411. height:0px;
  1412. visibility:hidden;
  1413. }
  1414. #u35268 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:20px;
  1418. top:20px;
  1419. width:98px;
  1420. height:20px;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u35269_div {
  1428. border-width:0px;
  1429. position:absolute;
  1430. left:0px;
  1431. top:0px;
  1432. width:76px;
  1433. height:20px;
  1434. background:inherit;
  1435. background-color:rgba(255, 255, 255, 0);
  1436. border:none;
  1437. border-radius:0px;
  1438. -moz-box-shadow:none;
  1439. -webkit-box-shadow:none;
  1440. box-shadow:none;
  1441. }
  1442. #u35269 {
  1443. border-width:0px;
  1444. position:absolute;
  1445. left:22px;
  1446. top:0px;
  1447. width:76px;
  1448. height:20px;
  1449. display:flex;
  1450. }
  1451. #u35269 .text {
  1452. position:absolute;
  1453. align-self:center;
  1454. padding:2px 2px 2px 3px;
  1455. box-sizing:border-box;
  1456. width:100%;
  1457. }
  1458. #u35269_text {
  1459. border-width:0px;
  1460. white-space:nowrap;
  1461. text-transform:none;
  1462. }
  1463. #u35270 {
  1464. border-width:0px;
  1465. position:absolute;
  1466. left:20px;
  1467. top:40px;
  1468. width:84px;
  1469. height:20px;
  1470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1471. font-weight:400;
  1472. font-style:normal;
  1473. font-size:14px;
  1474. color:#FFFFFF;
  1475. }
  1476. #u35271_div {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:0px;
  1480. top:0px;
  1481. width:62px;
  1482. height:20px;
  1483. background:inherit;
  1484. background-color:rgba(255, 255, 255, 0);
  1485. border:none;
  1486. border-radius:0px;
  1487. -moz-box-shadow:none;
  1488. -webkit-box-shadow:none;
  1489. box-shadow:none;
  1490. }
  1491. #u35271 {
  1492. border-width:0px;
  1493. position:absolute;
  1494. left:22px;
  1495. top:0px;
  1496. width:62px;
  1497. height:20px;
  1498. display:flex;
  1499. }
  1500. #u35271 .text {
  1501. position:absolute;
  1502. align-self:center;
  1503. padding:2px 2px 2px 3px;
  1504. box-sizing:border-box;
  1505. width:100%;
  1506. }
  1507. #u35271_text {
  1508. border-width:0px;
  1509. white-space:nowrap;
  1510. text-transform:none;
  1511. }
  1512. #u35272 {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:0px;
  1516. top:200px;
  1517. width:84px;
  1518. height:20px;
  1519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1520. font-weight:400;
  1521. font-style:normal;
  1522. font-size:14px;
  1523. color:#FFFFFF;
  1524. }
  1525. #u35273_img {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:0px;
  1529. top:0px;
  1530. width:9px;
  1531. height:9px;
  1532. }
  1533. #u35273 {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:6px;
  1537. top:6px;
  1538. width:9px;
  1539. height:9px;
  1540. display:flex;
  1541. }
  1542. #u35273 .text {
  1543. position:absolute;
  1544. align-self:center;
  1545. padding:2px 2px 2px 2px;
  1546. box-sizing:border-box;
  1547. width:100%;
  1548. }
  1549. #u35273_img.selected {
  1550. }
  1551. #u35273.selected {
  1552. }
  1553. #u35273_text {
  1554. border-width:0px;
  1555. word-wrap:break-word;
  1556. text-transform:none;
  1557. visibility:hidden;
  1558. }
  1559. #u35274_div {
  1560. border-width:0px;
  1561. position:absolute;
  1562. left:0px;
  1563. top:0px;
  1564. width:62px;
  1565. height:20px;
  1566. background:inherit;
  1567. background-color:rgba(255, 255, 255, 0);
  1568. border:none;
  1569. border-radius:0px;
  1570. -moz-box-shadow:none;
  1571. -webkit-box-shadow:none;
  1572. box-shadow:none;
  1573. }
  1574. #u35274 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:22px;
  1578. top:0px;
  1579. width:62px;
  1580. height:20px;
  1581. display:flex;
  1582. }
  1583. #u35274 .text {
  1584. position:absolute;
  1585. align-self:center;
  1586. padding:2px 2px 2px 3px;
  1587. box-sizing:border-box;
  1588. width:100%;
  1589. }
  1590. #u35274_text {
  1591. border-width:0px;
  1592. white-space:nowrap;
  1593. text-transform:none;
  1594. }
  1595. #u35272_children {
  1596. border-width:0px;
  1597. position:absolute;
  1598. left:0px;
  1599. top:0px;
  1600. width:0px;
  1601. height:0px;
  1602. visibility:hidden;
  1603. }
  1604. #u35275 {
  1605. border-width:0px;
  1606. position:absolute;
  1607. left:20px;
  1608. top:20px;
  1609. width:84px;
  1610. height:20px;
  1611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1612. font-weight:400;
  1613. font-style:normal;
  1614. font-size:14px;
  1615. color:#FFFFFF;
  1616. }
  1617. #u35276_div {
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:0px;
  1621. top:0px;
  1622. width:62px;
  1623. height:20px;
  1624. background:inherit;
  1625. background-color:rgba(255, 255, 255, 0);
  1626. border:none;
  1627. border-radius:0px;
  1628. -moz-box-shadow:none;
  1629. -webkit-box-shadow:none;
  1630. box-shadow:none;
  1631. }
  1632. #u35276 {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:22px;
  1636. top:0px;
  1637. width:62px;
  1638. height:20px;
  1639. display:flex;
  1640. }
  1641. #u35276 .text {
  1642. position:absolute;
  1643. align-self:center;
  1644. padding:2px 2px 2px 3px;
  1645. box-sizing:border-box;
  1646. width:100%;
  1647. }
  1648. #u35276_text {
  1649. border-width:0px;
  1650. white-space:nowrap;
  1651. text-transform:none;
  1652. }
  1653. #u35277 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:20px;
  1657. top:40px;
  1658. width:84px;
  1659. height:20px;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:14px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u35278_div {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:62px;
  1672. height:20px;
  1673. background:inherit;
  1674. background-color:rgba(255, 255, 255, 0);
  1675. border:none;
  1676. border-radius:0px;
  1677. -moz-box-shadow:none;
  1678. -webkit-box-shadow:none;
  1679. box-shadow:none;
  1680. }
  1681. #u35278 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:22px;
  1685. top:0px;
  1686. width:62px;
  1687. height:20px;
  1688. display:flex;
  1689. }
  1690. #u35278 .text {
  1691. position:absolute;
  1692. align-self:center;
  1693. padding:2px 2px 2px 3px;
  1694. box-sizing:border-box;
  1695. width:100%;
  1696. }
  1697. #u35278_text {
  1698. border-width:0px;
  1699. white-space:nowrap;
  1700. text-transform:none;
  1701. }
  1702. #u35279 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:20px;
  1706. top:60px;
  1707. width:84px;
  1708. height:20px;
  1709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1710. font-weight:400;
  1711. font-style:normal;
  1712. font-size:14px;
  1713. color:#FFFFFF;
  1714. }
  1715. #u35280_div {
  1716. border-width:0px;
  1717. position:absolute;
  1718. left:0px;
  1719. top:0px;
  1720. width:62px;
  1721. height:20px;
  1722. background:inherit;
  1723. background-color:rgba(255, 255, 255, 0);
  1724. border:none;
  1725. border-radius:0px;
  1726. -moz-box-shadow:none;
  1727. -webkit-box-shadow:none;
  1728. box-shadow:none;
  1729. }
  1730. #u35280 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:22px;
  1734. top:0px;
  1735. width:62px;
  1736. height:20px;
  1737. display:flex;
  1738. }
  1739. #u35280 .text {
  1740. position:absolute;
  1741. align-self:center;
  1742. padding:2px 2px 2px 3px;
  1743. box-sizing:border-box;
  1744. width:100%;
  1745. }
  1746. #u35280_text {
  1747. border-width:0px;
  1748. white-space:nowrap;
  1749. text-transform:none;
  1750. }
  1751. #u35281 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:0px;
  1757. height:0px;
  1758. }
  1759. #u35282_input {
  1760. position:absolute;
  1761. left:0px;
  1762. top:0px;
  1763. width:141px;
  1764. height:22px;
  1765. padding:2px 2px 2px 2px;
  1766. font-family:'ArialMT', 'Arial', sans-serif;
  1767. font-weight:400;
  1768. font-style:normal;
  1769. font-size:14px;
  1770. letter-spacing:normal;
  1771. color:#FFFFFF;
  1772. vertical-align:none;
  1773. text-align:left;
  1774. text-transform:none;
  1775. background-color:transparent;
  1776. border-color:transparent;
  1777. }
  1778. #u35282_input.disabled {
  1779. position:absolute;
  1780. left:0px;
  1781. top:0px;
  1782. width:141px;
  1783. height:22px;
  1784. padding:2px 2px 2px 2px;
  1785. font-family:'ArialMT', 'Arial', sans-serif;
  1786. font-weight:400;
  1787. font-style:normal;
  1788. font-size:14px;
  1789. letter-spacing:normal;
  1790. color:#FFFFFF;
  1791. vertical-align:none;
  1792. text-align:left;
  1793. text-transform:none;
  1794. background-color:transparent;
  1795. border-color:transparent;
  1796. }
  1797. #u35282_div {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:141px;
  1803. height:22px;
  1804. background:inherit;
  1805. background-color:rgba(255, 255, 255, 0);
  1806. border:none;
  1807. border-radius:0px;
  1808. -moz-box-shadow:none;
  1809. -webkit-box-shadow:none;
  1810. box-shadow:none;
  1811. font-size:14px;
  1812. color:#FFFFFF;
  1813. }
  1814. #u35282 {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:243px;
  1818. top:14px;
  1819. width:141px;
  1820. height:22px;
  1821. display:flex;
  1822. font-size:14px;
  1823. color:#FFFFFF;
  1824. }
  1825. #u35282 .text {
  1826. position:absolute;
  1827. align-self:flex-start;
  1828. padding:2px 2px 2px 2px;
  1829. box-sizing:border-box;
  1830. width:100%;
  1831. }
  1832. #u35282_div.disabled {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:0px;
  1836. top:0px;
  1837. width:141px;
  1838. height:22px;
  1839. background:inherit;
  1840. background-color:rgba(240, 240, 240, 1);
  1841. border:none;
  1842. border-radius:0px;
  1843. -moz-box-shadow:none;
  1844. -webkit-box-shadow:none;
  1845. box-shadow:none;
  1846. font-size:14px;
  1847. color:#FFFFFF;
  1848. }
  1849. #u35282.disabled {
  1850. }
  1851. .u35282_input_option {
  1852. font-size:14px;
  1853. }
  1854. #u35283_img {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:0px;
  1858. top:0px;
  1859. width:22px;
  1860. height:22px;
  1861. }
  1862. #u35283 {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:216px;
  1866. top:15px;
  1867. width:22px;
  1868. height:22px;
  1869. display:flex;
  1870. }
  1871. #u35283 .text {
  1872. position:absolute;
  1873. align-self:center;
  1874. padding:2px 2px 2px 2px;
  1875. box-sizing:border-box;
  1876. width:100%;
  1877. }
  1878. #u35283_text {
  1879. border-width:0px;
  1880. word-wrap:break-word;
  1881. text-transform:none;
  1882. visibility:hidden;
  1883. }
  1884. #u35284_div {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:0px;
  1888. top:0px;
  1889. width:136px;
  1890. height:16px;
  1891. background:inherit;
  1892. background-color:rgba(255, 255, 255, 0);
  1893. border:none;
  1894. border-radius:0px;
  1895. -moz-box-shadow:none;
  1896. -webkit-box-shadow:none;
  1897. box-shadow:none;
  1898. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  1899. font-weight:200;
  1900. font-style:normal;
  1901. font-size:11px;
  1902. color:#555555;
  1903. }
  1904. #u35284 {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:208px;
  1908. top:53px;
  1909. width:136px;
  1910. height:16px;
  1911. display:flex;
  1912. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  1913. font-weight:200;
  1914. font-style:normal;
  1915. font-size:11px;
  1916. color:#555555;
  1917. }
  1918. #u35284 .text {
  1919. position:absolute;
  1920. align-self:flex-start;
  1921. padding:0px 0px 0px 0px;
  1922. box-sizing:border-box;
  1923. width:100%;
  1924. }
  1925. #u35284_text {
  1926. border-width:0px;
  1927. white-space:nowrap;
  1928. text-transform:none;
  1929. }
  1930. #u35285_div {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:0px;
  1934. top:0px;
  1935. width:140px;
  1936. height:24px;
  1937. background:inherit;
  1938. background-color:rgba(242, 242, 242, 0.2);
  1939. border:none;
  1940. border-radius:25px;
  1941. -moz-box-shadow:none;
  1942. -webkit-box-shadow:none;
  1943. box-shadow:none;
  1944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1945. font-weight:400;
  1946. font-style:normal;
  1947. color:#FFFFFF;
  1948. text-align:center;
  1949. }
  1950. #u35285 {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:417px;
  1954. top:13px;
  1955. width:140px;
  1956. height:24px;
  1957. display:flex;
  1958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1959. font-weight:400;
  1960. font-style:normal;
  1961. color:#FFFFFF;
  1962. text-align:center;
  1963. }
  1964. #u35285 .text {
  1965. position:absolute;
  1966. align-self:center;
  1967. padding:0px 0px 0px 0px;
  1968. box-sizing:border-box;
  1969. width:100%;
  1970. }
  1971. #u35285_text {
  1972. border-width:0px;
  1973. word-wrap:break-word;
  1974. text-transform:none;
  1975. }
  1976. #u35286_div {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:0px;
  1980. top:0px;
  1981. width:85px;
  1982. height:20px;
  1983. background:inherit;
  1984. background-color:rgba(30, 42, 68, 1);
  1985. border:none;
  1986. border-radius:0px;
  1987. -moz-box-shadow:none;
  1988. -webkit-box-shadow:none;
  1989. box-shadow:none;
  1990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1991. font-weight:400;
  1992. font-style:normal;
  1993. color:#FFFFFF;
  1994. }
  1995. #u35286 {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:1374px;
  1999. top:15px;
  2000. width:85px;
  2001. height:20px;
  2002. display:flex;
  2003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2004. font-weight:400;
  2005. font-style:normal;
  2006. color:#FFFFFF;
  2007. }
  2008. #u35286 .text {
  2009. position:absolute;
  2010. align-self:flex-start;
  2011. padding:0px 0px 0px 0px;
  2012. box-sizing:border-box;
  2013. width:100%;
  2014. }
  2015. #u35286_text {
  2016. border-width:0px;
  2017. white-space:nowrap;
  2018. text-transform:none;
  2019. }
  2020. #u35287_div {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:1381px;
  2026. height:1154px;
  2027. background:inherit;
  2028. background-color:rgba(255, 255, 255, 1);
  2029. border:none;
  2030. border-radius:0px;
  2031. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2032. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2033. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2034. }
  2035. #u35287 {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:208px;
  2039. top:80px;
  2040. width:1381px;
  2041. height:1154px;
  2042. display:flex;
  2043. }
  2044. #u35287 .text {
  2045. position:absolute;
  2046. align-self:center;
  2047. padding:2px 2px 2px 2px;
  2048. box-sizing:border-box;
  2049. width:100%;
  2050. }
  2051. #u35287_text {
  2052. border-width:0px;
  2053. word-wrap:break-word;
  2054. text-transform:none;
  2055. visibility:hidden;
  2056. }
  2057. #u35288 {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:546px;
  2061. top:283px;
  2062. width:1019px;
  2063. height:465px;
  2064. }
  2065. #u35289_img {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:0px;
  2069. top:0px;
  2070. width:189px;
  2071. height:41px;
  2072. }
  2073. #u35289 {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:0px;
  2077. top:0px;
  2078. width:189px;
  2079. height:41px;
  2080. display:flex;
  2081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2082. font-weight:400;
  2083. font-style:normal;
  2084. font-size:12px;
  2085. color:#FFFFFF;
  2086. }
  2087. #u35289 .text {
  2088. position:absolute;
  2089. align-self:center;
  2090. padding:2px 2px 2px 0px;
  2091. box-sizing:border-box;
  2092. width:100%;
  2093. }
  2094. #u35289_text {
  2095. border-width:0px;
  2096. word-wrap:break-word;
  2097. text-transform:none;
  2098. }
  2099. #u35290_img {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:0px;
  2103. top:0px;
  2104. width:215px;
  2105. height:41px;
  2106. }
  2107. #u35290 {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:189px;
  2111. top:0px;
  2112. width:215px;
  2113. height:41px;
  2114. display:flex;
  2115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2116. font-weight:400;
  2117. font-style:normal;
  2118. font-size:12px;
  2119. color:#FFFFFF;
  2120. }
  2121. #u35290 .text {
  2122. position:absolute;
  2123. align-self:center;
  2124. padding:2px 2px 2px 0px;
  2125. box-sizing:border-box;
  2126. width:100%;
  2127. }
  2128. #u35290_text {
  2129. border-width:0px;
  2130. word-wrap:break-word;
  2131. text-transform:none;
  2132. }
  2133. #u35291_img {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:0px;
  2137. top:0px;
  2138. width:215px;
  2139. height:41px;
  2140. }
  2141. #u35291 {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:404px;
  2145. top:0px;
  2146. width:215px;
  2147. height:41px;
  2148. display:flex;
  2149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2150. font-weight:400;
  2151. font-style:normal;
  2152. font-size:12px;
  2153. color:#FFFFFF;
  2154. }
  2155. #u35291 .text {
  2156. position:absolute;
  2157. align-self:center;
  2158. padding:2px 2px 2px 0px;
  2159. box-sizing:border-box;
  2160. width:100%;
  2161. }
  2162. #u35291_text {
  2163. border-width:0px;
  2164. word-wrap:break-word;
  2165. text-transform:none;
  2166. }
  2167. #u35292_img {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:0px;
  2171. top:0px;
  2172. width:189px;
  2173. height:41px;
  2174. }
  2175. #u35292 {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:619px;
  2179. top:0px;
  2180. width:189px;
  2181. height:41px;
  2182. display:flex;
  2183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2184. font-weight:400;
  2185. font-style:normal;
  2186. font-size:12px;
  2187. color:#FFFFFF;
  2188. }
  2189. #u35292 .text {
  2190. position:absolute;
  2191. align-self:center;
  2192. padding:2px 2px 2px 0px;
  2193. box-sizing:border-box;
  2194. width:100%;
  2195. }
  2196. #u35292_text {
  2197. border-width:0px;
  2198. word-wrap:break-word;
  2199. text-transform:none;
  2200. }
  2201. #u35293_img {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:0px;
  2205. top:0px;
  2206. width:211px;
  2207. height:41px;
  2208. }
  2209. #u35293 {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:808px;
  2213. top:0px;
  2214. width:211px;
  2215. height:41px;
  2216. display:flex;
  2217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2218. font-weight:400;
  2219. font-style:normal;
  2220. font-size:12px;
  2221. color:#FFFFFF;
  2222. }
  2223. #u35293 .text {
  2224. position:absolute;
  2225. align-self:center;
  2226. padding:2px 2px 2px 0px;
  2227. box-sizing:border-box;
  2228. width:100%;
  2229. }
  2230. #u35293_text {
  2231. border-width:0px;
  2232. word-wrap:break-word;
  2233. text-transform:none;
  2234. }
  2235. #u35294_img {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:0px;
  2239. top:0px;
  2240. width:189px;
  2241. height:39px;
  2242. }
  2243. #u35294 {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:0px;
  2247. top:41px;
  2248. width:189px;
  2249. height:39px;
  2250. display:flex;
  2251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2252. font-weight:400;
  2253. font-style:normal;
  2254. font-size:12px;
  2255. }
  2256. #u35294 .text {
  2257. position:absolute;
  2258. align-self:center;
  2259. padding:2px 2px 2px 0px;
  2260. box-sizing:border-box;
  2261. width:100%;
  2262. }
  2263. #u35294_text {
  2264. border-width:0px;
  2265. word-wrap:break-word;
  2266. text-transform:none;
  2267. }
  2268. #u35295_img {
  2269. border-width:0px;
  2270. position:absolute;
  2271. left:0px;
  2272. top:0px;
  2273. width:215px;
  2274. height:39px;
  2275. }
  2276. #u35295 {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:189px;
  2280. top:41px;
  2281. width:215px;
  2282. height:39px;
  2283. display:flex;
  2284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2285. font-weight:400;
  2286. font-style:normal;
  2287. font-size:12px;
  2288. }
  2289. #u35295 .text {
  2290. position:absolute;
  2291. align-self:center;
  2292. padding:2px 2px 2px 0px;
  2293. box-sizing:border-box;
  2294. width:100%;
  2295. }
  2296. #u35295_text {
  2297. border-width:0px;
  2298. word-wrap:break-word;
  2299. text-transform:none;
  2300. }
  2301. #u35296_img {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:0px;
  2305. top:0px;
  2306. width:215px;
  2307. height:39px;
  2308. }
  2309. #u35296 {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:404px;
  2313. top:41px;
  2314. width:215px;
  2315. height:39px;
  2316. display:flex;
  2317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2318. font-weight:400;
  2319. font-style:normal;
  2320. font-size:12px;
  2321. }
  2322. #u35296 .text {
  2323. position:absolute;
  2324. align-self:center;
  2325. padding:2px 2px 2px 0px;
  2326. box-sizing:border-box;
  2327. width:100%;
  2328. }
  2329. #u35296_text {
  2330. border-width:0px;
  2331. word-wrap:break-word;
  2332. text-transform:none;
  2333. }
  2334. #u35297_img {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:189px;
  2340. height:39px;
  2341. }
  2342. #u35297 {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:619px;
  2346. top:41px;
  2347. width:189px;
  2348. height:39px;
  2349. display:flex;
  2350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2351. font-weight:400;
  2352. font-style:normal;
  2353. font-size:12px;
  2354. }
  2355. #u35297 .text {
  2356. position:absolute;
  2357. align-self:center;
  2358. padding:2px 2px 2px 0px;
  2359. box-sizing:border-box;
  2360. width:100%;
  2361. }
  2362. #u35297_text {
  2363. border-width:0px;
  2364. word-wrap:break-word;
  2365. text-transform:none;
  2366. }
  2367. #u35298_img {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:0px;
  2371. top:0px;
  2372. width:211px;
  2373. height:39px;
  2374. }
  2375. #u35298 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:808px;
  2379. top:41px;
  2380. width:211px;
  2381. height:39px;
  2382. display:flex;
  2383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2384. font-weight:400;
  2385. font-style:normal;
  2386. font-size:12px;
  2387. color:#1890FF;
  2388. }
  2389. #u35298 .text {
  2390. position:absolute;
  2391. align-self:center;
  2392. padding:2px 2px 2px 0px;
  2393. box-sizing:border-box;
  2394. width:100%;
  2395. }
  2396. #u35298_text {
  2397. border-width:0px;
  2398. word-wrap:break-word;
  2399. text-transform:none;
  2400. }
  2401. #u35299_img {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:189px;
  2407. height:35px;
  2408. }
  2409. #u35299 {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:0px;
  2413. top:80px;
  2414. width:189px;
  2415. height:35px;
  2416. display:flex;
  2417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2418. font-weight:400;
  2419. font-style:normal;
  2420. font-size:12px;
  2421. }
  2422. #u35299 .text {
  2423. position:absolute;
  2424. align-self:center;
  2425. padding:2px 2px 2px 0px;
  2426. box-sizing:border-box;
  2427. width:100%;
  2428. }
  2429. #u35299_text {
  2430. border-width:0px;
  2431. word-wrap:break-word;
  2432. text-transform:none;
  2433. }
  2434. #u35300_img {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:0px;
  2438. top:0px;
  2439. width:215px;
  2440. height:35px;
  2441. }
  2442. #u35300 {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:189px;
  2446. top:80px;
  2447. width:215px;
  2448. height:35px;
  2449. display:flex;
  2450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2451. font-weight:400;
  2452. font-style:normal;
  2453. font-size:12px;
  2454. }
  2455. #u35300 .text {
  2456. position:absolute;
  2457. align-self:center;
  2458. padding:2px 2px 2px 0px;
  2459. box-sizing:border-box;
  2460. width:100%;
  2461. }
  2462. #u35300_text {
  2463. border-width:0px;
  2464. word-wrap:break-word;
  2465. text-transform:none;
  2466. }
  2467. #u35301_img {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:0px;
  2471. top:0px;
  2472. width:215px;
  2473. height:35px;
  2474. }
  2475. #u35301 {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:404px;
  2479. top:80px;
  2480. width:215px;
  2481. height:35px;
  2482. display:flex;
  2483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2484. font-weight:400;
  2485. font-style:normal;
  2486. font-size:12px;
  2487. }
  2488. #u35301 .text {
  2489. position:absolute;
  2490. align-self:center;
  2491. padding:2px 2px 2px 0px;
  2492. box-sizing:border-box;
  2493. width:100%;
  2494. }
  2495. #u35301_text {
  2496. border-width:0px;
  2497. word-wrap:break-word;
  2498. text-transform:none;
  2499. }
  2500. #u35302_img {
  2501. border-width:0px;
  2502. position:absolute;
  2503. left:0px;
  2504. top:0px;
  2505. width:189px;
  2506. height:35px;
  2507. }
  2508. #u35302 {
  2509. border-width:0px;
  2510. position:absolute;
  2511. left:619px;
  2512. top:80px;
  2513. width:189px;
  2514. height:35px;
  2515. display:flex;
  2516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2517. font-weight:400;
  2518. font-style:normal;
  2519. font-size:12px;
  2520. }
  2521. #u35302 .text {
  2522. position:absolute;
  2523. align-self:center;
  2524. padding:2px 2px 2px 0px;
  2525. box-sizing:border-box;
  2526. width:100%;
  2527. }
  2528. #u35302_text {
  2529. border-width:0px;
  2530. word-wrap:break-word;
  2531. text-transform:none;
  2532. }
  2533. #u35303_img {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:0px;
  2537. top:0px;
  2538. width:211px;
  2539. height:35px;
  2540. }
  2541. #u35303 {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:808px;
  2545. top:80px;
  2546. width:211px;
  2547. height:35px;
  2548. display:flex;
  2549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2550. font-weight:400;
  2551. font-style:normal;
  2552. font-size:12px;
  2553. color:#1890FF;
  2554. }
  2555. #u35303 .text {
  2556. position:absolute;
  2557. align-self:center;
  2558. padding:2px 2px 2px 0px;
  2559. box-sizing:border-box;
  2560. width:100%;
  2561. }
  2562. #u35303_text {
  2563. border-width:0px;
  2564. word-wrap:break-word;
  2565. text-transform:none;
  2566. }
  2567. #u35304_img {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:0px;
  2571. top:0px;
  2572. width:189px;
  2573. height:35px;
  2574. }
  2575. #u35304 {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:0px;
  2579. top:115px;
  2580. width:189px;
  2581. height:35px;
  2582. display:flex;
  2583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2584. font-weight:400;
  2585. font-style:normal;
  2586. font-size:12px;
  2587. }
  2588. #u35304 .text {
  2589. position:absolute;
  2590. align-self:center;
  2591. padding:2px 2px 2px 0px;
  2592. box-sizing:border-box;
  2593. width:100%;
  2594. }
  2595. #u35304_text {
  2596. border-width:0px;
  2597. word-wrap:break-word;
  2598. text-transform:none;
  2599. }
  2600. #u35305_img {
  2601. border-width:0px;
  2602. position:absolute;
  2603. left:0px;
  2604. top:0px;
  2605. width:215px;
  2606. height:35px;
  2607. }
  2608. #u35305 {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:189px;
  2612. top:115px;
  2613. width:215px;
  2614. height:35px;
  2615. display:flex;
  2616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2617. font-weight:400;
  2618. font-style:normal;
  2619. font-size:12px;
  2620. }
  2621. #u35305 .text {
  2622. position:absolute;
  2623. align-self:center;
  2624. padding:2px 2px 2px 0px;
  2625. box-sizing:border-box;
  2626. width:100%;
  2627. }
  2628. #u35305_text {
  2629. border-width:0px;
  2630. word-wrap:break-word;
  2631. text-transform:none;
  2632. }
  2633. #u35306_img {
  2634. border-width:0px;
  2635. position:absolute;
  2636. left:0px;
  2637. top:0px;
  2638. width:215px;
  2639. height:35px;
  2640. }
  2641. #u35306 {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:404px;
  2645. top:115px;
  2646. width:215px;
  2647. height:35px;
  2648. display:flex;
  2649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2650. font-weight:400;
  2651. font-style:normal;
  2652. font-size:12px;
  2653. }
  2654. #u35306 .text {
  2655. position:absolute;
  2656. align-self:center;
  2657. padding:2px 2px 2px 0px;
  2658. box-sizing:border-box;
  2659. width:100%;
  2660. }
  2661. #u35306_text {
  2662. border-width:0px;
  2663. word-wrap:break-word;
  2664. text-transform:none;
  2665. }
  2666. #u35307_img {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:0px;
  2671. width:189px;
  2672. height:35px;
  2673. }
  2674. #u35307 {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:619px;
  2678. top:115px;
  2679. width:189px;
  2680. height:35px;
  2681. display:flex;
  2682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2683. font-weight:400;
  2684. font-style:normal;
  2685. font-size:12px;
  2686. }
  2687. #u35307 .text {
  2688. position:absolute;
  2689. align-self:center;
  2690. padding:2px 2px 2px 0px;
  2691. box-sizing:border-box;
  2692. width:100%;
  2693. }
  2694. #u35307_text {
  2695. border-width:0px;
  2696. word-wrap:break-word;
  2697. text-transform:none;
  2698. }
  2699. #u35308_img {
  2700. border-width:0px;
  2701. position:absolute;
  2702. left:0px;
  2703. top:0px;
  2704. width:211px;
  2705. height:35px;
  2706. }
  2707. #u35308 {
  2708. border-width:0px;
  2709. position:absolute;
  2710. left:808px;
  2711. top:115px;
  2712. width:211px;
  2713. height:35px;
  2714. display:flex;
  2715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2716. font-weight:400;
  2717. font-style:normal;
  2718. font-size:12px;
  2719. color:#1890FF;
  2720. }
  2721. #u35308 .text {
  2722. position:absolute;
  2723. align-self:center;
  2724. padding:2px 2px 2px 0px;
  2725. box-sizing:border-box;
  2726. width:100%;
  2727. }
  2728. #u35308_text {
  2729. border-width:0px;
  2730. word-wrap:break-word;
  2731. text-transform:none;
  2732. }
  2733. #u35309_img {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:0px;
  2737. top:0px;
  2738. width:189px;
  2739. height:34px;
  2740. }
  2741. #u35309 {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:0px;
  2745. top:150px;
  2746. width:189px;
  2747. height:34px;
  2748. display:flex;
  2749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2750. font-weight:400;
  2751. font-style:normal;
  2752. font-size:12px;
  2753. }
  2754. #u35309 .text {
  2755. position:absolute;
  2756. align-self:center;
  2757. padding:2px 2px 2px 0px;
  2758. box-sizing:border-box;
  2759. width:100%;
  2760. }
  2761. #u35309_text {
  2762. border-width:0px;
  2763. word-wrap:break-word;
  2764. text-transform:none;
  2765. }
  2766. #u35310_img {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:0px;
  2770. top:0px;
  2771. width:215px;
  2772. height:34px;
  2773. }
  2774. #u35310 {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:189px;
  2778. top:150px;
  2779. width:215px;
  2780. height:34px;
  2781. display:flex;
  2782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2783. font-weight:400;
  2784. font-style:normal;
  2785. font-size:12px;
  2786. }
  2787. #u35310 .text {
  2788. position:absolute;
  2789. align-self:center;
  2790. padding:2px 2px 2px 0px;
  2791. box-sizing:border-box;
  2792. width:100%;
  2793. }
  2794. #u35310_text {
  2795. border-width:0px;
  2796. word-wrap:break-word;
  2797. text-transform:none;
  2798. }
  2799. #u35311_img {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:0px;
  2803. top:0px;
  2804. width:215px;
  2805. height:34px;
  2806. }
  2807. #u35311 {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:404px;
  2811. top:150px;
  2812. width:215px;
  2813. height:34px;
  2814. display:flex;
  2815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2816. font-weight:400;
  2817. font-style:normal;
  2818. font-size:12px;
  2819. }
  2820. #u35311 .text {
  2821. position:absolute;
  2822. align-self:center;
  2823. padding:2px 2px 2px 0px;
  2824. box-sizing:border-box;
  2825. width:100%;
  2826. }
  2827. #u35311_text {
  2828. border-width:0px;
  2829. word-wrap:break-word;
  2830. text-transform:none;
  2831. }
  2832. #u35312_img {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:0px;
  2836. top:0px;
  2837. width:189px;
  2838. height:34px;
  2839. }
  2840. #u35312 {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:619px;
  2844. top:150px;
  2845. width:189px;
  2846. height:34px;
  2847. display:flex;
  2848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2849. font-weight:400;
  2850. font-style:normal;
  2851. font-size:12px;
  2852. }
  2853. #u35312 .text {
  2854. position:absolute;
  2855. align-self:center;
  2856. padding:2px 2px 2px 0px;
  2857. box-sizing:border-box;
  2858. width:100%;
  2859. }
  2860. #u35312_text {
  2861. border-width:0px;
  2862. word-wrap:break-word;
  2863. text-transform:none;
  2864. }
  2865. #u35313_img {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:0px;
  2869. top:0px;
  2870. width:211px;
  2871. height:34px;
  2872. }
  2873. #u35313 {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:808px;
  2877. top:150px;
  2878. width:211px;
  2879. height:34px;
  2880. display:flex;
  2881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2882. font-weight:400;
  2883. font-style:normal;
  2884. font-size:12px;
  2885. color:#1890FF;
  2886. }
  2887. #u35313 .text {
  2888. position:absolute;
  2889. align-self:center;
  2890. padding:2px 2px 2px 0px;
  2891. box-sizing:border-box;
  2892. width:100%;
  2893. }
  2894. #u35313_text {
  2895. border-width:0px;
  2896. word-wrap:break-word;
  2897. text-transform:none;
  2898. }
  2899. #u35314_img {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:189px;
  2905. height:36px;
  2906. }
  2907. #u35314 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:184px;
  2912. width:189px;
  2913. height:36px;
  2914. display:flex;
  2915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2916. font-weight:400;
  2917. font-style:normal;
  2918. font-size:12px;
  2919. }
  2920. #u35314 .text {
  2921. position:absolute;
  2922. align-self:center;
  2923. padding:2px 2px 2px 0px;
  2924. box-sizing:border-box;
  2925. width:100%;
  2926. }
  2927. #u35314_text {
  2928. border-width:0px;
  2929. word-wrap:break-word;
  2930. text-transform:none;
  2931. visibility:hidden;
  2932. }
  2933. #u35315_img {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:0px;
  2937. top:0px;
  2938. width:215px;
  2939. height:36px;
  2940. }
  2941. #u35315 {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:189px;
  2945. top:184px;
  2946. width:215px;
  2947. height:36px;
  2948. display:flex;
  2949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2950. font-weight:400;
  2951. font-style:normal;
  2952. font-size:12px;
  2953. }
  2954. #u35315 .text {
  2955. position:absolute;
  2956. align-self:center;
  2957. padding:2px 2px 2px 0px;
  2958. box-sizing:border-box;
  2959. width:100%;
  2960. }
  2961. #u35315_text {
  2962. border-width:0px;
  2963. word-wrap:break-word;
  2964. text-transform:none;
  2965. visibility:hidden;
  2966. }
  2967. #u35316_img {
  2968. border-width:0px;
  2969. position:absolute;
  2970. left:0px;
  2971. top:0px;
  2972. width:215px;
  2973. height:36px;
  2974. }
  2975. #u35316 {
  2976. border-width:0px;
  2977. position:absolute;
  2978. left:404px;
  2979. top:184px;
  2980. width:215px;
  2981. height:36px;
  2982. display:flex;
  2983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2984. font-weight:400;
  2985. font-style:normal;
  2986. font-size:12px;
  2987. }
  2988. #u35316 .text {
  2989. position:absolute;
  2990. align-self:center;
  2991. padding:2px 2px 2px 0px;
  2992. box-sizing:border-box;
  2993. width:100%;
  2994. }
  2995. #u35316_text {
  2996. border-width:0px;
  2997. word-wrap:break-word;
  2998. text-transform:none;
  2999. visibility:hidden;
  3000. }
  3001. #u35317_img {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:0px;
  3005. top:0px;
  3006. width:189px;
  3007. height:36px;
  3008. }
  3009. #u35317 {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:619px;
  3013. top:184px;
  3014. width:189px;
  3015. height:36px;
  3016. display:flex;
  3017. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3018. font-weight:400;
  3019. font-style:normal;
  3020. font-size:12px;
  3021. }
  3022. #u35317 .text {
  3023. position:absolute;
  3024. align-self:center;
  3025. padding:2px 2px 2px 0px;
  3026. box-sizing:border-box;
  3027. width:100%;
  3028. }
  3029. #u35317_text {
  3030. border-width:0px;
  3031. word-wrap:break-word;
  3032. text-transform:none;
  3033. visibility:hidden;
  3034. }
  3035. #u35318_img {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:211px;
  3041. height:36px;
  3042. }
  3043. #u35318 {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:808px;
  3047. top:184px;
  3048. width:211px;
  3049. height:36px;
  3050. display:flex;
  3051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3052. font-weight:400;
  3053. font-style:normal;
  3054. font-size:12px;
  3055. color:#1890FF;
  3056. }
  3057. #u35318 .text {
  3058. position:absolute;
  3059. align-self:center;
  3060. padding:2px 2px 2px 0px;
  3061. box-sizing:border-box;
  3062. width:100%;
  3063. }
  3064. #u35318_text {
  3065. border-width:0px;
  3066. word-wrap:break-word;
  3067. text-transform:none;
  3068. visibility:hidden;
  3069. }
  3070. #u35319_img {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:0px;
  3074. top:0px;
  3075. width:189px;
  3076. height:35px;
  3077. }
  3078. #u35319 {
  3079. border-width:0px;
  3080. position:absolute;
  3081. left:0px;
  3082. top:220px;
  3083. width:189px;
  3084. height:35px;
  3085. display:flex;
  3086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3087. font-weight:400;
  3088. font-style:normal;
  3089. font-size:12px;
  3090. }
  3091. #u35319 .text {
  3092. position:absolute;
  3093. align-self:center;
  3094. padding:2px 2px 2px 0px;
  3095. box-sizing:border-box;
  3096. width:100%;
  3097. }
  3098. #u35319_text {
  3099. border-width:0px;
  3100. word-wrap:break-word;
  3101. text-transform:none;
  3102. visibility:hidden;
  3103. }
  3104. #u35320_img {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:0px;
  3108. top:0px;
  3109. width:215px;
  3110. height:35px;
  3111. }
  3112. #u35320 {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:189px;
  3116. top:220px;
  3117. width:215px;
  3118. height:35px;
  3119. display:flex;
  3120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3121. font-weight:400;
  3122. font-style:normal;
  3123. font-size:12px;
  3124. }
  3125. #u35320 .text {
  3126. position:absolute;
  3127. align-self:center;
  3128. padding:2px 2px 2px 0px;
  3129. box-sizing:border-box;
  3130. width:100%;
  3131. }
  3132. #u35320_text {
  3133. border-width:0px;
  3134. word-wrap:break-word;
  3135. text-transform:none;
  3136. visibility:hidden;
  3137. }
  3138. #u35321_img {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:0px;
  3142. top:0px;
  3143. width:215px;
  3144. height:35px;
  3145. }
  3146. #u35321 {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:404px;
  3150. top:220px;
  3151. width:215px;
  3152. height:35px;
  3153. display:flex;
  3154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3155. font-weight:400;
  3156. font-style:normal;
  3157. font-size:12px;
  3158. }
  3159. #u35321 .text {
  3160. position:absolute;
  3161. align-self:center;
  3162. padding:2px 2px 2px 0px;
  3163. box-sizing:border-box;
  3164. width:100%;
  3165. }
  3166. #u35321_text {
  3167. border-width:0px;
  3168. word-wrap:break-word;
  3169. text-transform:none;
  3170. visibility:hidden;
  3171. }
  3172. #u35322_img {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:0px;
  3176. top:0px;
  3177. width:189px;
  3178. height:35px;
  3179. }
  3180. #u35322 {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:619px;
  3184. top:220px;
  3185. width:189px;
  3186. height:35px;
  3187. display:flex;
  3188. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3189. font-weight:400;
  3190. font-style:normal;
  3191. font-size:12px;
  3192. }
  3193. #u35322 .text {
  3194. position:absolute;
  3195. align-self:center;
  3196. padding:2px 2px 2px 0px;
  3197. box-sizing:border-box;
  3198. width:100%;
  3199. }
  3200. #u35322_text {
  3201. border-width:0px;
  3202. word-wrap:break-word;
  3203. text-transform:none;
  3204. visibility:hidden;
  3205. }
  3206. #u35323_img {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:0px;
  3210. top:0px;
  3211. width:211px;
  3212. height:35px;
  3213. }
  3214. #u35323 {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:808px;
  3218. top:220px;
  3219. width:211px;
  3220. height:35px;
  3221. display:flex;
  3222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3223. font-weight:400;
  3224. font-style:normal;
  3225. font-size:12px;
  3226. color:#1890FF;
  3227. }
  3228. #u35323 .text {
  3229. position:absolute;
  3230. align-self:center;
  3231. padding:2px 2px 2px 0px;
  3232. box-sizing:border-box;
  3233. width:100%;
  3234. }
  3235. #u35323_text {
  3236. border-width:0px;
  3237. word-wrap:break-word;
  3238. text-transform:none;
  3239. visibility:hidden;
  3240. }
  3241. #u35324_img {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:0px;
  3245. top:0px;
  3246. width:189px;
  3247. height:35px;
  3248. }
  3249. #u35324 {
  3250. border-width:0px;
  3251. position:absolute;
  3252. left:0px;
  3253. top:255px;
  3254. width:189px;
  3255. height:35px;
  3256. display:flex;
  3257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3258. font-weight:400;
  3259. font-style:normal;
  3260. font-size:12px;
  3261. }
  3262. #u35324 .text {
  3263. position:absolute;
  3264. align-self:center;
  3265. padding:2px 2px 2px 0px;
  3266. box-sizing:border-box;
  3267. width:100%;
  3268. }
  3269. #u35324_text {
  3270. border-width:0px;
  3271. word-wrap:break-word;
  3272. text-transform:none;
  3273. visibility:hidden;
  3274. }
  3275. #u35325_img {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:0px;
  3279. top:0px;
  3280. width:215px;
  3281. height:35px;
  3282. }
  3283. #u35325 {
  3284. border-width:0px;
  3285. position:absolute;
  3286. left:189px;
  3287. top:255px;
  3288. width:215px;
  3289. height:35px;
  3290. display:flex;
  3291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3292. font-weight:400;
  3293. font-style:normal;
  3294. font-size:12px;
  3295. }
  3296. #u35325 .text {
  3297. position:absolute;
  3298. align-self:center;
  3299. padding:2px 2px 2px 0px;
  3300. box-sizing:border-box;
  3301. width:100%;
  3302. }
  3303. #u35325_text {
  3304. border-width:0px;
  3305. word-wrap:break-word;
  3306. text-transform:none;
  3307. visibility:hidden;
  3308. }
  3309. #u35326_img {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:0px;
  3313. top:0px;
  3314. width:215px;
  3315. height:35px;
  3316. }
  3317. #u35326 {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:404px;
  3321. top:255px;
  3322. width:215px;
  3323. height:35px;
  3324. display:flex;
  3325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3326. font-weight:400;
  3327. font-style:normal;
  3328. font-size:12px;
  3329. }
  3330. #u35326 .text {
  3331. position:absolute;
  3332. align-self:center;
  3333. padding:2px 2px 2px 0px;
  3334. box-sizing:border-box;
  3335. width:100%;
  3336. }
  3337. #u35326_text {
  3338. border-width:0px;
  3339. word-wrap:break-word;
  3340. text-transform:none;
  3341. visibility:hidden;
  3342. }
  3343. #u35327_img {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:0px;
  3347. top:0px;
  3348. width:189px;
  3349. height:35px;
  3350. }
  3351. #u35327 {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:619px;
  3355. top:255px;
  3356. width:189px;
  3357. height:35px;
  3358. display:flex;
  3359. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3360. font-weight:400;
  3361. font-style:normal;
  3362. font-size:12px;
  3363. }
  3364. #u35327 .text {
  3365. position:absolute;
  3366. align-self:center;
  3367. padding:2px 2px 2px 0px;
  3368. box-sizing:border-box;
  3369. width:100%;
  3370. }
  3371. #u35327_text {
  3372. border-width:0px;
  3373. word-wrap:break-word;
  3374. text-transform:none;
  3375. visibility:hidden;
  3376. }
  3377. #u35328_img {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:0px;
  3381. top:0px;
  3382. width:211px;
  3383. height:35px;
  3384. }
  3385. #u35328 {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:808px;
  3389. top:255px;
  3390. width:211px;
  3391. height:35px;
  3392. display:flex;
  3393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3394. font-weight:400;
  3395. font-style:normal;
  3396. font-size:12px;
  3397. color:#1890FF;
  3398. }
  3399. #u35328 .text {
  3400. position:absolute;
  3401. align-self:center;
  3402. padding:2px 2px 2px 0px;
  3403. box-sizing:border-box;
  3404. width:100%;
  3405. }
  3406. #u35328_text {
  3407. border-width:0px;
  3408. word-wrap:break-word;
  3409. text-transform:none;
  3410. visibility:hidden;
  3411. }
  3412. #u35329_img {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:0px;
  3416. top:0px;
  3417. width:189px;
  3418. height:35px;
  3419. }
  3420. #u35329 {
  3421. border-width:0px;
  3422. position:absolute;
  3423. left:0px;
  3424. top:290px;
  3425. width:189px;
  3426. height:35px;
  3427. display:flex;
  3428. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3429. font-weight:400;
  3430. font-style:normal;
  3431. font-size:12px;
  3432. color:#606266;
  3433. }
  3434. #u35329 .text {
  3435. position:absolute;
  3436. align-self:center;
  3437. padding:2px 2px 2px 0px;
  3438. box-sizing:border-box;
  3439. width:100%;
  3440. }
  3441. #u35329_text {
  3442. border-width:0px;
  3443. word-wrap:break-word;
  3444. text-transform:none;
  3445. visibility:hidden;
  3446. }
  3447. #u35330_img {
  3448. border-width:0px;
  3449. position:absolute;
  3450. left:0px;
  3451. top:0px;
  3452. width:215px;
  3453. height:35px;
  3454. }
  3455. #u35330 {
  3456. border-width:0px;
  3457. position:absolute;
  3458. left:189px;
  3459. top:290px;
  3460. width:215px;
  3461. height:35px;
  3462. display:flex;
  3463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3464. font-weight:400;
  3465. font-style:normal;
  3466. font-size:12px;
  3467. }
  3468. #u35330 .text {
  3469. position:absolute;
  3470. align-self:center;
  3471. padding:2px 2px 2px 0px;
  3472. box-sizing:border-box;
  3473. width:100%;
  3474. }
  3475. #u35330_text {
  3476. border-width:0px;
  3477. word-wrap:break-word;
  3478. text-transform:none;
  3479. visibility:hidden;
  3480. }
  3481. #u35331_img {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:0px;
  3485. top:0px;
  3486. width:215px;
  3487. height:35px;
  3488. }
  3489. #u35331 {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:404px;
  3493. top:290px;
  3494. width:215px;
  3495. height:35px;
  3496. display:flex;
  3497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3498. font-weight:400;
  3499. font-style:normal;
  3500. font-size:12px;
  3501. }
  3502. #u35331 .text {
  3503. position:absolute;
  3504. align-self:center;
  3505. padding:2px 2px 2px 0px;
  3506. box-sizing:border-box;
  3507. width:100%;
  3508. }
  3509. #u35331_text {
  3510. border-width:0px;
  3511. word-wrap:break-word;
  3512. text-transform:none;
  3513. visibility:hidden;
  3514. }
  3515. #u35332_img {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:0px;
  3519. top:0px;
  3520. width:189px;
  3521. height:35px;
  3522. }
  3523. #u35332 {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:619px;
  3527. top:290px;
  3528. width:189px;
  3529. height:35px;
  3530. display:flex;
  3531. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3532. font-weight:400;
  3533. font-style:normal;
  3534. font-size:12px;
  3535. color:#606266;
  3536. }
  3537. #u35332 .text {
  3538. position:absolute;
  3539. align-self:center;
  3540. padding:2px 2px 2px 0px;
  3541. box-sizing:border-box;
  3542. width:100%;
  3543. }
  3544. #u35332_text {
  3545. border-width:0px;
  3546. word-wrap:break-word;
  3547. text-transform:none;
  3548. visibility:hidden;
  3549. }
  3550. #u35333_img {
  3551. border-width:0px;
  3552. position:absolute;
  3553. left:0px;
  3554. top:0px;
  3555. width:211px;
  3556. height:35px;
  3557. }
  3558. #u35333 {
  3559. border-width:0px;
  3560. position:absolute;
  3561. left:808px;
  3562. top:290px;
  3563. width:211px;
  3564. height:35px;
  3565. display:flex;
  3566. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3567. font-weight:400;
  3568. font-style:normal;
  3569. font-size:12px;
  3570. color:#606266;
  3571. }
  3572. #u35333 .text {
  3573. position:absolute;
  3574. align-self:center;
  3575. padding:2px 2px 2px 0px;
  3576. box-sizing:border-box;
  3577. width:100%;
  3578. }
  3579. #u35333_text {
  3580. border-width:0px;
  3581. word-wrap:break-word;
  3582. text-transform:none;
  3583. visibility:hidden;
  3584. }
  3585. #u35334_img {
  3586. border-width:0px;
  3587. position:absolute;
  3588. left:0px;
  3589. top:0px;
  3590. width:189px;
  3591. height:35px;
  3592. }
  3593. #u35334 {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:0px;
  3597. top:325px;
  3598. width:189px;
  3599. height:35px;
  3600. display:flex;
  3601. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3602. font-weight:400;
  3603. font-style:normal;
  3604. font-size:12px;
  3605. color:#606266;
  3606. }
  3607. #u35334 .text {
  3608. position:absolute;
  3609. align-self:center;
  3610. padding:2px 2px 2px 0px;
  3611. box-sizing:border-box;
  3612. width:100%;
  3613. }
  3614. #u35334_text {
  3615. border-width:0px;
  3616. word-wrap:break-word;
  3617. text-transform:none;
  3618. visibility:hidden;
  3619. }
  3620. #u35335_img {
  3621. border-width:0px;
  3622. position:absolute;
  3623. left:0px;
  3624. top:0px;
  3625. width:215px;
  3626. height:35px;
  3627. }
  3628. #u35335 {
  3629. border-width:0px;
  3630. position:absolute;
  3631. left:189px;
  3632. top:325px;
  3633. width:215px;
  3634. height:35px;
  3635. display:flex;
  3636. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3637. font-weight:400;
  3638. font-style:normal;
  3639. font-size:12px;
  3640. color:#606266;
  3641. }
  3642. #u35335 .text {
  3643. position:absolute;
  3644. align-self:center;
  3645. padding:2px 2px 2px 0px;
  3646. box-sizing:border-box;
  3647. width:100%;
  3648. }
  3649. #u35335_text {
  3650. border-width:0px;
  3651. word-wrap:break-word;
  3652. text-transform:none;
  3653. visibility:hidden;
  3654. }
  3655. #u35336_img {
  3656. border-width:0px;
  3657. position:absolute;
  3658. left:0px;
  3659. top:0px;
  3660. width:215px;
  3661. height:35px;
  3662. }
  3663. #u35336 {
  3664. border-width:0px;
  3665. position:absolute;
  3666. left:404px;
  3667. top:325px;
  3668. width:215px;
  3669. height:35px;
  3670. display:flex;
  3671. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3672. font-weight:400;
  3673. font-style:normal;
  3674. font-size:12px;
  3675. color:#606266;
  3676. }
  3677. #u35336 .text {
  3678. position:absolute;
  3679. align-self:center;
  3680. padding:2px 2px 2px 0px;
  3681. box-sizing:border-box;
  3682. width:100%;
  3683. }
  3684. #u35336_text {
  3685. border-width:0px;
  3686. word-wrap:break-word;
  3687. text-transform:none;
  3688. visibility:hidden;
  3689. }
  3690. #u35337_img {
  3691. border-width:0px;
  3692. position:absolute;
  3693. left:0px;
  3694. top:0px;
  3695. width:189px;
  3696. height:35px;
  3697. }
  3698. #u35337 {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:619px;
  3702. top:325px;
  3703. width:189px;
  3704. height:35px;
  3705. display:flex;
  3706. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3707. font-weight:400;
  3708. font-style:normal;
  3709. font-size:12px;
  3710. color:#606266;
  3711. }
  3712. #u35337 .text {
  3713. position:absolute;
  3714. align-self:center;
  3715. padding:2px 2px 2px 0px;
  3716. box-sizing:border-box;
  3717. width:100%;
  3718. }
  3719. #u35337_text {
  3720. border-width:0px;
  3721. word-wrap:break-word;
  3722. text-transform:none;
  3723. visibility:hidden;
  3724. }
  3725. #u35338_img {
  3726. border-width:0px;
  3727. position:absolute;
  3728. left:0px;
  3729. top:0px;
  3730. width:211px;
  3731. height:35px;
  3732. }
  3733. #u35338 {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:808px;
  3737. top:325px;
  3738. width:211px;
  3739. height:35px;
  3740. display:flex;
  3741. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3742. font-weight:400;
  3743. font-style:normal;
  3744. font-size:12px;
  3745. color:#606266;
  3746. }
  3747. #u35338 .text {
  3748. position:absolute;
  3749. align-self:center;
  3750. padding:2px 2px 2px 0px;
  3751. box-sizing:border-box;
  3752. width:100%;
  3753. }
  3754. #u35338_text {
  3755. border-width:0px;
  3756. word-wrap:break-word;
  3757. text-transform:none;
  3758. visibility:hidden;
  3759. }
  3760. #u35339_img {
  3761. border-width:0px;
  3762. position:absolute;
  3763. left:0px;
  3764. top:0px;
  3765. width:189px;
  3766. height:35px;
  3767. }
  3768. #u35339 {
  3769. border-width:0px;
  3770. position:absolute;
  3771. left:0px;
  3772. top:360px;
  3773. width:189px;
  3774. height:35px;
  3775. display:flex;
  3776. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3777. font-weight:400;
  3778. font-style:normal;
  3779. font-size:12px;
  3780. color:#606266;
  3781. }
  3782. #u35339 .text {
  3783. position:absolute;
  3784. align-self:center;
  3785. padding:2px 2px 2px 0px;
  3786. box-sizing:border-box;
  3787. width:100%;
  3788. }
  3789. #u35339_text {
  3790. border-width:0px;
  3791. word-wrap:break-word;
  3792. text-transform:none;
  3793. visibility:hidden;
  3794. }
  3795. #u35340_img {
  3796. border-width:0px;
  3797. position:absolute;
  3798. left:0px;
  3799. top:0px;
  3800. width:215px;
  3801. height:35px;
  3802. }
  3803. #u35340 {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:189px;
  3807. top:360px;
  3808. width:215px;
  3809. height:35px;
  3810. display:flex;
  3811. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3812. font-weight:400;
  3813. font-style:normal;
  3814. font-size:12px;
  3815. color:#606266;
  3816. }
  3817. #u35340 .text {
  3818. position:absolute;
  3819. align-self:center;
  3820. padding:2px 2px 2px 0px;
  3821. box-sizing:border-box;
  3822. width:100%;
  3823. }
  3824. #u35340_text {
  3825. border-width:0px;
  3826. word-wrap:break-word;
  3827. text-transform:none;
  3828. visibility:hidden;
  3829. }
  3830. #u35341_img {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:0px;
  3834. top:0px;
  3835. width:215px;
  3836. height:35px;
  3837. }
  3838. #u35341 {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:404px;
  3842. top:360px;
  3843. width:215px;
  3844. height:35px;
  3845. display:flex;
  3846. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3847. font-weight:400;
  3848. font-style:normal;
  3849. font-size:12px;
  3850. color:#606266;
  3851. }
  3852. #u35341 .text {
  3853. position:absolute;
  3854. align-self:center;
  3855. padding:2px 2px 2px 0px;
  3856. box-sizing:border-box;
  3857. width:100%;
  3858. }
  3859. #u35341_text {
  3860. border-width:0px;
  3861. word-wrap:break-word;
  3862. text-transform:none;
  3863. visibility:hidden;
  3864. }
  3865. #u35342_img {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:0px;
  3869. top:0px;
  3870. width:189px;
  3871. height:35px;
  3872. }
  3873. #u35342 {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:619px;
  3877. top:360px;
  3878. width:189px;
  3879. height:35px;
  3880. display:flex;
  3881. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3882. font-weight:400;
  3883. font-style:normal;
  3884. font-size:12px;
  3885. color:#606266;
  3886. }
  3887. #u35342 .text {
  3888. position:absolute;
  3889. align-self:center;
  3890. padding:2px 2px 2px 0px;
  3891. box-sizing:border-box;
  3892. width:100%;
  3893. }
  3894. #u35342_text {
  3895. border-width:0px;
  3896. word-wrap:break-word;
  3897. text-transform:none;
  3898. visibility:hidden;
  3899. }
  3900. #u35343_img {
  3901. border-width:0px;
  3902. position:absolute;
  3903. left:0px;
  3904. top:0px;
  3905. width:211px;
  3906. height:35px;
  3907. }
  3908. #u35343 {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:808px;
  3912. top:360px;
  3913. width:211px;
  3914. height:35px;
  3915. display:flex;
  3916. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3917. font-weight:400;
  3918. font-style:normal;
  3919. font-size:12px;
  3920. color:#606266;
  3921. }
  3922. #u35343 .text {
  3923. position:absolute;
  3924. align-self:center;
  3925. padding:2px 2px 2px 0px;
  3926. box-sizing:border-box;
  3927. width:100%;
  3928. }
  3929. #u35343_text {
  3930. border-width:0px;
  3931. word-wrap:break-word;
  3932. text-transform:none;
  3933. visibility:hidden;
  3934. }
  3935. #u35344_img {
  3936. border-width:0px;
  3937. position:absolute;
  3938. left:0px;
  3939. top:0px;
  3940. width:189px;
  3941. height:35px;
  3942. }
  3943. #u35344 {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:0px;
  3947. top:395px;
  3948. width:189px;
  3949. height:35px;
  3950. display:flex;
  3951. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3952. font-weight:400;
  3953. font-style:normal;
  3954. font-size:12px;
  3955. color:#606266;
  3956. }
  3957. #u35344 .text {
  3958. position:absolute;
  3959. align-self:center;
  3960. padding:2px 2px 2px 0px;
  3961. box-sizing:border-box;
  3962. width:100%;
  3963. }
  3964. #u35344_text {
  3965. border-width:0px;
  3966. word-wrap:break-word;
  3967. text-transform:none;
  3968. visibility:hidden;
  3969. }
  3970. #u35345_img {
  3971. border-width:0px;
  3972. position:absolute;
  3973. left:0px;
  3974. top:0px;
  3975. width:215px;
  3976. height:35px;
  3977. }
  3978. #u35345 {
  3979. border-width:0px;
  3980. position:absolute;
  3981. left:189px;
  3982. top:395px;
  3983. width:215px;
  3984. height:35px;
  3985. display:flex;
  3986. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3987. font-weight:400;
  3988. font-style:normal;
  3989. font-size:12px;
  3990. color:#606266;
  3991. }
  3992. #u35345 .text {
  3993. position:absolute;
  3994. align-self:center;
  3995. padding:2px 2px 2px 0px;
  3996. box-sizing:border-box;
  3997. width:100%;
  3998. }
  3999. #u35345_text {
  4000. border-width:0px;
  4001. word-wrap:break-word;
  4002. text-transform:none;
  4003. visibility:hidden;
  4004. }
  4005. #u35346_img {
  4006. border-width:0px;
  4007. position:absolute;
  4008. left:0px;
  4009. top:0px;
  4010. width:215px;
  4011. height:35px;
  4012. }
  4013. #u35346 {
  4014. border-width:0px;
  4015. position:absolute;
  4016. left:404px;
  4017. top:395px;
  4018. width:215px;
  4019. height:35px;
  4020. display:flex;
  4021. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4022. font-weight:400;
  4023. font-style:normal;
  4024. font-size:12px;
  4025. color:#606266;
  4026. }
  4027. #u35346 .text {
  4028. position:absolute;
  4029. align-self:center;
  4030. padding:2px 2px 2px 0px;
  4031. box-sizing:border-box;
  4032. width:100%;
  4033. }
  4034. #u35346_text {
  4035. border-width:0px;
  4036. word-wrap:break-word;
  4037. text-transform:none;
  4038. visibility:hidden;
  4039. }
  4040. #u35347_img {
  4041. border-width:0px;
  4042. position:absolute;
  4043. left:0px;
  4044. top:0px;
  4045. width:189px;
  4046. height:35px;
  4047. }
  4048. #u35347 {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:619px;
  4052. top:395px;
  4053. width:189px;
  4054. height:35px;
  4055. display:flex;
  4056. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4057. font-weight:400;
  4058. font-style:normal;
  4059. font-size:12px;
  4060. color:#606266;
  4061. }
  4062. #u35347 .text {
  4063. position:absolute;
  4064. align-self:center;
  4065. padding:2px 2px 2px 0px;
  4066. box-sizing:border-box;
  4067. width:100%;
  4068. }
  4069. #u35347_text {
  4070. border-width:0px;
  4071. word-wrap:break-word;
  4072. text-transform:none;
  4073. visibility:hidden;
  4074. }
  4075. #u35348_img {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:0px;
  4079. top:0px;
  4080. width:211px;
  4081. height:35px;
  4082. }
  4083. #u35348 {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:808px;
  4087. top:395px;
  4088. width:211px;
  4089. height:35px;
  4090. display:flex;
  4091. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4092. font-weight:400;
  4093. font-style:normal;
  4094. font-size:12px;
  4095. color:#606266;
  4096. }
  4097. #u35348 .text {
  4098. position:absolute;
  4099. align-self:center;
  4100. padding:2px 2px 2px 0px;
  4101. box-sizing:border-box;
  4102. width:100%;
  4103. }
  4104. #u35348_text {
  4105. border-width:0px;
  4106. word-wrap:break-word;
  4107. text-transform:none;
  4108. visibility:hidden;
  4109. }
  4110. #u35349_img {
  4111. border-width:0px;
  4112. position:absolute;
  4113. left:0px;
  4114. top:0px;
  4115. width:189px;
  4116. height:35px;
  4117. }
  4118. #u35349 {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:0px;
  4122. top:430px;
  4123. width:189px;
  4124. height:35px;
  4125. display:flex;
  4126. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4127. font-weight:400;
  4128. font-style:normal;
  4129. font-size:12px;
  4130. color:#606266;
  4131. }
  4132. #u35349 .text {
  4133. position:absolute;
  4134. align-self:center;
  4135. padding:2px 2px 2px 0px;
  4136. box-sizing:border-box;
  4137. width:100%;
  4138. }
  4139. #u35349_text {
  4140. border-width:0px;
  4141. word-wrap:break-word;
  4142. text-transform:none;
  4143. visibility:hidden;
  4144. }
  4145. #u35350_img {
  4146. border-width:0px;
  4147. position:absolute;
  4148. left:0px;
  4149. top:0px;
  4150. width:215px;
  4151. height:35px;
  4152. }
  4153. #u35350 {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:189px;
  4157. top:430px;
  4158. width:215px;
  4159. height:35px;
  4160. display:flex;
  4161. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4162. font-weight:400;
  4163. font-style:normal;
  4164. font-size:12px;
  4165. color:#606266;
  4166. }
  4167. #u35350 .text {
  4168. position:absolute;
  4169. align-self:center;
  4170. padding:2px 2px 2px 0px;
  4171. box-sizing:border-box;
  4172. width:100%;
  4173. }
  4174. #u35350_text {
  4175. border-width:0px;
  4176. word-wrap:break-word;
  4177. text-transform:none;
  4178. visibility:hidden;
  4179. }
  4180. #u35351_img {
  4181. border-width:0px;
  4182. position:absolute;
  4183. left:0px;
  4184. top:0px;
  4185. width:215px;
  4186. height:35px;
  4187. }
  4188. #u35351 {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:404px;
  4192. top:430px;
  4193. width:215px;
  4194. height:35px;
  4195. display:flex;
  4196. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4197. font-weight:400;
  4198. font-style:normal;
  4199. font-size:12px;
  4200. color:#606266;
  4201. }
  4202. #u35351 .text {
  4203. position:absolute;
  4204. align-self:center;
  4205. padding:2px 2px 2px 0px;
  4206. box-sizing:border-box;
  4207. width:100%;
  4208. }
  4209. #u35351_text {
  4210. border-width:0px;
  4211. word-wrap:break-word;
  4212. text-transform:none;
  4213. visibility:hidden;
  4214. }
  4215. #u35352_img {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:0px;
  4219. top:0px;
  4220. width:189px;
  4221. height:35px;
  4222. }
  4223. #u35352 {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:619px;
  4227. top:430px;
  4228. width:189px;
  4229. height:35px;
  4230. display:flex;
  4231. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4232. font-weight:400;
  4233. font-style:normal;
  4234. font-size:12px;
  4235. color:#606266;
  4236. }
  4237. #u35352 .text {
  4238. position:absolute;
  4239. align-self:center;
  4240. padding:2px 2px 2px 0px;
  4241. box-sizing:border-box;
  4242. width:100%;
  4243. }
  4244. #u35352_text {
  4245. border-width:0px;
  4246. word-wrap:break-word;
  4247. text-transform:none;
  4248. visibility:hidden;
  4249. }
  4250. #u35353_img {
  4251. border-width:0px;
  4252. position:absolute;
  4253. left:0px;
  4254. top:0px;
  4255. width:211px;
  4256. height:35px;
  4257. }
  4258. #u35353 {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:808px;
  4262. top:430px;
  4263. width:211px;
  4264. height:35px;
  4265. display:flex;
  4266. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4267. font-weight:400;
  4268. font-style:normal;
  4269. font-size:12px;
  4270. color:#606266;
  4271. }
  4272. #u35353 .text {
  4273. position:absolute;
  4274. align-self:center;
  4275. padding:2px 2px 2px 0px;
  4276. box-sizing:border-box;
  4277. width:100%;
  4278. }
  4279. #u35353_text {
  4280. border-width:0px;
  4281. word-wrap:break-word;
  4282. text-transform:none;
  4283. visibility:hidden;
  4284. }
  4285. #u35354_div {
  4286. border-width:0px;
  4287. position:absolute;
  4288. left:0px;
  4289. top:0px;
  4290. width:59px;
  4291. height:30px;
  4292. background:inherit;
  4293. background-color:rgba(41, 143, 255, 1);
  4294. border:none;
  4295. border-radius:4px;
  4296. -moz-box-shadow:none;
  4297. -webkit-box-shadow:none;
  4298. box-shadow:none;
  4299. font-family:'Microsoft YaHei', sans-serif;
  4300. font-weight:400;
  4301. font-style:normal;
  4302. font-size:14px;
  4303. color:#FFFFFF;
  4304. }
  4305. #u35354 {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:1006px;
  4309. top:192px;
  4310. width:59px;
  4311. height:30px;
  4312. display:flex;
  4313. font-family:'Microsoft YaHei', sans-serif;
  4314. font-weight:400;
  4315. font-style:normal;
  4316. font-size:14px;
  4317. color:#FFFFFF;
  4318. }
  4319. #u35354 .text {
  4320. position:absolute;
  4321. align-self:center;
  4322. padding:5px 15px 5px 15px;
  4323. box-sizing:border-box;
  4324. width:100%;
  4325. }
  4326. #u35354_text {
  4327. border-width:0px;
  4328. white-space:nowrap;
  4329. text-transform:none;
  4330. }
  4331. #u35355_div {
  4332. border-width:0px;
  4333. position:absolute;
  4334. left:0px;
  4335. top:0px;
  4336. width:55px;
  4337. height:30px;
  4338. background:inherit;
  4339. background-color:rgba(255, 255, 255, 1);
  4340. box-sizing:border-box;
  4341. border-width:1px;
  4342. border-style:solid;
  4343. border-color:rgba(170, 170, 170, 1);
  4344. border-radius:4px;
  4345. -moz-box-shadow:none;
  4346. -webkit-box-shadow:none;
  4347. box-shadow:none;
  4348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4349. font-weight:400;
  4350. font-style:normal;
  4351. font-size:12px;
  4352. color:#555555;
  4353. }
  4354. #u35355 {
  4355. border-width:0px;
  4356. position:absolute;
  4357. left:1075px;
  4358. top:192px;
  4359. width:55px;
  4360. height:30px;
  4361. display:flex;
  4362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4363. font-weight:400;
  4364. font-style:normal;
  4365. font-size:12px;
  4366. color:#555555;
  4367. }
  4368. #u35355 .text {
  4369. position:absolute;
  4370. align-self:center;
  4371. padding:5px 15px 5px 15px;
  4372. box-sizing:border-box;
  4373. width:100%;
  4374. }
  4375. #u35355_text {
  4376. border-width:0px;
  4377. white-space:nowrap;
  4378. text-transform:none;
  4379. }
  4380. #u35356_div {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:0px;
  4384. top:0px;
  4385. width:80px;
  4386. height:30px;
  4387. background:inherit;
  4388. background-color:rgba(24, 144, 255, 1);
  4389. border:none;
  4390. border-radius:4px;
  4391. -moz-box-shadow:none;
  4392. -webkit-box-shadow:none;
  4393. box-shadow:none;
  4394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4395. font-weight:400;
  4396. font-style:normal;
  4397. font-size:12px;
  4398. color:#FFFFFF;
  4399. }
  4400. #u35356 {
  4401. border-width:0px;
  4402. position:absolute;
  4403. left:416px;
  4404. top:180px;
  4405. width:80px;
  4406. height:30px;
  4407. display:flex;
  4408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4409. font-weight:400;
  4410. font-style:normal;
  4411. font-size:12px;
  4412. color:#FFFFFF;
  4413. }
  4414. #u35356 .text {
  4415. position:absolute;
  4416. align-self:center;
  4417. padding:5px 15px 5px 15px;
  4418. box-sizing:border-box;
  4419. width:100%;
  4420. }
  4421. #u35356_text {
  4422. border-width:0px;
  4423. word-wrap:break-word;
  4424. text-transform:none;
  4425. }
  4426. #u35357 {
  4427. border-width:0px;
  4428. position:absolute;
  4429. left:0px;
  4430. top:0px;
  4431. width:0px;
  4432. height:0px;
  4433. }
  4434. #u35358_div {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:0px;
  4438. top:0px;
  4439. width:140px;
  4440. height:30px;
  4441. background:inherit;
  4442. background-color:rgba(255, 255, 255, 1);
  4443. box-sizing:border-box;
  4444. border-width:1px;
  4445. border-style:solid;
  4446. border-color:rgba(215, 215, 215, 1);
  4447. border-radius:4px;
  4448. -moz-box-shadow:none;
  4449. -webkit-box-shadow:none;
  4450. box-shadow:none;
  4451. font-size:11px;
  4452. }
  4453. #u35358 {
  4454. border-width:0px;
  4455. position:absolute;
  4456. left:846px;
  4457. top:192px;
  4458. width:140px;
  4459. height:30px;
  4460. display:flex;
  4461. font-size:11px;
  4462. }
  4463. #u35358 .text {
  4464. position:absolute;
  4465. align-self:center;
  4466. padding:2px 2px 2px 2px;
  4467. box-sizing:border-box;
  4468. width:100%;
  4469. }
  4470. #u35358_text {
  4471. border-width:0px;
  4472. word-wrap:break-word;
  4473. text-transform:none;
  4474. visibility:hidden;
  4475. }
  4476. #u35359_input {
  4477. position:absolute;
  4478. left:0px;
  4479. top:0px;
  4480. width:120px;
  4481. height:23px;
  4482. padding:2px 2px 2px 2px;
  4483. font-family:'ArialMT', 'Arial', sans-serif;
  4484. font-weight:400;
  4485. font-style:normal;
  4486. font-size:11px;
  4487. letter-spacing:normal;
  4488. color:#AAAAAA;
  4489. vertical-align:none;
  4490. text-align:left;
  4491. text-transform:none;
  4492. background-color:transparent;
  4493. border-color:transparent;
  4494. }
  4495. #u35359_input.disabled {
  4496. position:absolute;
  4497. left:0px;
  4498. top:0px;
  4499. width:120px;
  4500. height:23px;
  4501. padding:2px 2px 2px 2px;
  4502. font-family:'ArialMT', 'Arial', sans-serif;
  4503. font-weight:400;
  4504. font-style:normal;
  4505. font-size:11px;
  4506. letter-spacing:normal;
  4507. color:#AAAAAA;
  4508. vertical-align:none;
  4509. text-align:left;
  4510. text-transform:none;
  4511. background-color:transparent;
  4512. border-color:transparent;
  4513. }
  4514. #u35359_div {
  4515. border-width:0px;
  4516. position:absolute;
  4517. left:0px;
  4518. top:0px;
  4519. width:120px;
  4520. height:23px;
  4521. background:inherit;
  4522. background-color:rgba(255, 255, 255, 1);
  4523. border:none;
  4524. border-radius:0px;
  4525. -moz-box-shadow:none;
  4526. -webkit-box-shadow:none;
  4527. box-shadow:none;
  4528. font-size:11px;
  4529. color:#AAAAAA;
  4530. }
  4531. #u35359 {
  4532. border-width:0px;
  4533. position:absolute;
  4534. left:853px;
  4535. top:194px;
  4536. width:120px;
  4537. height:23px;
  4538. display:flex;
  4539. font-size:11px;
  4540. color:#AAAAAA;
  4541. }
  4542. #u35359 .text {
  4543. position:absolute;
  4544. align-self:flex-start;
  4545. padding:2px 2px 2px 2px;
  4546. box-sizing:border-box;
  4547. width:100%;
  4548. }
  4549. #u35359_div.disabled {
  4550. border-width:0px;
  4551. position:absolute;
  4552. left:0px;
  4553. top:0px;
  4554. width:120px;
  4555. height:23px;
  4556. background:inherit;
  4557. background-color:rgba(240, 240, 240, 1);
  4558. border:none;
  4559. border-radius:0px;
  4560. -moz-box-shadow:none;
  4561. -webkit-box-shadow:none;
  4562. box-shadow:none;
  4563. font-size:11px;
  4564. color:#AAAAAA;
  4565. }
  4566. #u35359.disabled {
  4567. }
  4568. .u35359_input_option {
  4569. font-size:11px;
  4570. }
  4571. #u35360_div {
  4572. border-width:0px;
  4573. position:absolute;
  4574. left:0px;
  4575. top:0px;
  4576. width:73px;
  4577. height:50px;
  4578. background:inherit;
  4579. background-color:rgba(255, 255, 255, 0);
  4580. border:none;
  4581. border-left:0px;
  4582. border-top:0px;
  4583. border-right:0px;
  4584. border-radius:0px;
  4585. border-bottom-right-radius:0px;
  4586. border-bottom-left-radius:0px;
  4587. -moz-box-shadow:none;
  4588. -webkit-box-shadow:none;
  4589. box-shadow:none;
  4590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4591. font-weight:400;
  4592. font-style:normal;
  4593. font-size:18px;
  4594. }
  4595. #u35360 {
  4596. border-width:0px;
  4597. position:absolute;
  4598. left:227px;
  4599. top:80px;
  4600. width:73px;
  4601. height:50px;
  4602. display:flex;
  4603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4604. font-weight:400;
  4605. font-style:normal;
  4606. font-size:18px;
  4607. }
  4608. #u35360 .text {
  4609. position:absolute;
  4610. align-self:center;
  4611. padding:0px 0px 0px 0px;
  4612. box-sizing:border-box;
  4613. width:100%;
  4614. }
  4615. #u35360_text {
  4616. border-width:0px;
  4617. white-space:nowrap;
  4618. text-transform:none;
  4619. }
  4620. #u35361 {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:0px;
  4624. top:0px;
  4625. width:0px;
  4626. height:0px;
  4627. }
  4628. #u35362_div {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:0px;
  4632. top:0px;
  4633. width:140px;
  4634. height:30px;
  4635. background:inherit;
  4636. background-color:rgba(255, 255, 255, 1);
  4637. box-sizing:border-box;
  4638. border-width:1px;
  4639. border-style:solid;
  4640. border-color:rgba(201, 201, 201, 1);
  4641. border-radius:4px;
  4642. -moz-box-shadow:none;
  4643. -webkit-box-shadow:none;
  4644. box-shadow:none;
  4645. font-family:'Microsoft YaHei', sans-serif;
  4646. font-weight:400;
  4647. font-style:normal;
  4648. font-size:14px;
  4649. color:#CCCCCC;
  4650. text-align:left;
  4651. }
  4652. #u35362 {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:546px;
  4656. top:192px;
  4657. width:140px;
  4658. height:30px;
  4659. display:flex;
  4660. font-family:'Microsoft YaHei', sans-serif;
  4661. font-weight:400;
  4662. font-style:normal;
  4663. font-size:14px;
  4664. color:#CCCCCC;
  4665. text-align:left;
  4666. }
  4667. #u35362 .text {
  4668. position:absolute;
  4669. align-self:center;
  4670. padding:2px 8px 2px 8px;
  4671. box-sizing:border-box;
  4672. width:100%;
  4673. }
  4674. #u35362_text {
  4675. border-width:0px;
  4676. word-wrap:break-word;
  4677. text-transform:none;
  4678. visibility:hidden;
  4679. }
  4680. #u35363_input {
  4681. position:absolute;
  4682. left:0px;
  4683. top:0px;
  4684. width:127px;
  4685. height:25px;
  4686. padding:2px 2px 2px 2px;
  4687. font-family:'Microsoft YaHei', sans-serif;
  4688. font-weight:400;
  4689. font-style:normal;
  4690. font-size:10px;
  4691. letter-spacing:normal;
  4692. color:#000000;
  4693. vertical-align:none;
  4694. text-align:left;
  4695. text-transform:none;
  4696. background-color:transparent;
  4697. border-color:transparent;
  4698. }
  4699. #u35363_input.disabled {
  4700. position:absolute;
  4701. left:0px;
  4702. top:0px;
  4703. width:127px;
  4704. height:25px;
  4705. padding:2px 2px 2px 2px;
  4706. font-family:'Microsoft YaHei', sans-serif;
  4707. font-weight:400;
  4708. font-style:normal;
  4709. font-size:10px;
  4710. letter-spacing:normal;
  4711. color:#000000;
  4712. vertical-align:none;
  4713. text-align:left;
  4714. text-transform:none;
  4715. background-color:transparent;
  4716. border-color:transparent;
  4717. }
  4718. #u35363_div {
  4719. border-width:0px;
  4720. position:absolute;
  4721. left:0px;
  4722. top:0px;
  4723. width:127px;
  4724. height:25px;
  4725. background:inherit;
  4726. background-color:rgba(255, 255, 255, 1);
  4727. border:none;
  4728. border-radius:0px;
  4729. -moz-box-shadow:none;
  4730. -webkit-box-shadow:none;
  4731. box-shadow:none;
  4732. font-family:'Microsoft YaHei', sans-serif;
  4733. font-weight:400;
  4734. font-style:normal;
  4735. font-size:10px;
  4736. }
  4737. #u35363 {
  4738. border-width:0px;
  4739. position:absolute;
  4740. left:554px;
  4741. top:193px;
  4742. width:127px;
  4743. height:25px;
  4744. display:flex;
  4745. font-family:'Microsoft YaHei', sans-serif;
  4746. font-weight:400;
  4747. font-style:normal;
  4748. font-size:10px;
  4749. }
  4750. #u35363 .text {
  4751. position:absolute;
  4752. align-self:center;
  4753. padding:2px 2px 2px 2px;
  4754. box-sizing:border-box;
  4755. width:100%;
  4756. }
  4757. #u35363_div.disabled {
  4758. border-width:0px;
  4759. position:absolute;
  4760. left:0px;
  4761. top:0px;
  4762. width:127px;
  4763. height:25px;
  4764. background:inherit;
  4765. background-color:rgba(240, 240, 240, 1);
  4766. border:none;
  4767. border-radius:0px;
  4768. -moz-box-shadow:none;
  4769. -webkit-box-shadow:none;
  4770. box-shadow:none;
  4771. font-family:'Microsoft YaHei', sans-serif;
  4772. font-weight:400;
  4773. font-style:normal;
  4774. font-size:10px;
  4775. }
  4776. #u35363.disabled {
  4777. }
  4778. #u35364 {
  4779. border-width:0px;
  4780. position:absolute;
  4781. left:0px;
  4782. top:0px;
  4783. width:0px;
  4784. height:0px;
  4785. }
  4786. #u35365_div {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:0px;
  4790. top:0px;
  4791. width:100px;
  4792. height:100px;
  4793. background:inherit;
  4794. background-color:rgba(255, 255, 255, 1);
  4795. border:none;
  4796. border-radius:4px;
  4797. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4798. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4799. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4800. }
  4801. #u35365 {
  4802. border-width:0px;
  4803. position:absolute;
  4804. left:1419px;
  4805. top:351px;
  4806. width:100px;
  4807. height:100px;
  4808. display:flex;
  4809. }
  4810. #u35365 .text {
  4811. position:absolute;
  4812. align-self:center;
  4813. padding:2px 2px 2px 2px;
  4814. box-sizing:border-box;
  4815. width:100%;
  4816. }
  4817. #u35365_text {
  4818. border-width:0px;
  4819. word-wrap:break-word;
  4820. text-transform:none;
  4821. visibility:hidden;
  4822. }
  4823. #u35366_div {
  4824. border-width:0px;
  4825. position:absolute;
  4826. left:0px;
  4827. top:0px;
  4828. width:83px;
  4829. height:40px;
  4830. background:inherit;
  4831. background-color:rgba(255, 255, 255, 1);
  4832. box-sizing:border-box;
  4833. border-width:1px;
  4834. border-style:solid;
  4835. border-color:rgba(242, 242, 242, 1);
  4836. border-left:0px;
  4837. border-top:0px;
  4838. border-right:0px;
  4839. border-radius:4px;
  4840. border-bottom-right-radius:0px;
  4841. border-bottom-left-radius:0px;
  4842. -moz-box-shadow:none;
  4843. -webkit-box-shadow:none;
  4844. box-shadow:none;
  4845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4846. font-weight:400;
  4847. font-style:normal;
  4848. font-size:14px;
  4849. }
  4850. #u35366 {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:1427px;
  4854. top:362px;
  4855. width:83px;
  4856. height:40px;
  4857. display:flex;
  4858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4859. font-weight:400;
  4860. font-style:normal;
  4861. font-size:14px;
  4862. }
  4863. #u35366 .text {
  4864. position:absolute;
  4865. align-self:center;
  4866. padding:5px 0px 5px 0px;
  4867. box-sizing:border-box;
  4868. width:100%;
  4869. }
  4870. #u35366_text {
  4871. border-width:0px;
  4872. word-wrap:break-word;
  4873. text-transform:none;
  4874. }
  4875. #u35367_div {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:0px;
  4879. top:0px;
  4880. width:83px;
  4881. height:40px;
  4882. background:inherit;
  4883. background-color:rgba(255, 255, 255, 1);
  4884. border:none;
  4885. border-left:0px;
  4886. border-top:0px;
  4887. border-right:0px;
  4888. border-radius:4px;
  4889. border-bottom-right-radius:0px;
  4890. border-bottom-left-radius:0px;
  4891. -moz-box-shadow:none;
  4892. -webkit-box-shadow:none;
  4893. box-shadow:none;
  4894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4895. font-weight:400;
  4896. font-style:normal;
  4897. font-size:14px;
  4898. }
  4899. #u35367 {
  4900. border-width:0px;
  4901. position:absolute;
  4902. left:1427px;
  4903. top:402px;
  4904. width:83px;
  4905. height:40px;
  4906. display:flex;
  4907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4908. font-weight:400;
  4909. font-style:normal;
  4910. font-size:14px;
  4911. }
  4912. #u35367 .text {
  4913. position:absolute;
  4914. align-self:center;
  4915. padding:5px 0px 5px 0px;
  4916. box-sizing:border-box;
  4917. width:100%;
  4918. }
  4919. #u35367_text {
  4920. border-width:0px;
  4921. word-wrap:break-word;
  4922. text-transform:none;
  4923. }
  4924. #u35368_img {
  4925. border-width:0px;
  4926. position:absolute;
  4927. left:0px;
  4928. top:0px;
  4929. width:11px;
  4930. height:11px;
  4931. }
  4932. #u35368 {
  4933. border-width:0px;
  4934. position:absolute;
  4935. left:955px;
  4936. top:234px;
  4937. width:11px;
  4938. height:11px;
  4939. display:flex;
  4940. color:#FFFFFF;
  4941. }
  4942. #u35368 .text {
  4943. position:absolute;
  4944. align-self:center;
  4945. padding:2px 2px 2px 2px;
  4946. box-sizing:border-box;
  4947. width:100%;
  4948. }
  4949. #u35368_text {
  4950. border-width:0px;
  4951. word-wrap:break-word;
  4952. text-transform:none;
  4953. visibility:hidden;
  4954. }
  4955. #u35369_div {
  4956. border-width:0px;
  4957. position:absolute;
  4958. left:0px;
  4959. top:0px;
  4960. width:79px;
  4961. height:30px;
  4962. background:inherit;
  4963. background-color:rgba(25, 140, 251, 1);
  4964. border:none;
  4965. border-radius:4px;
  4966. -moz-box-shadow:none;
  4967. -webkit-box-shadow:none;
  4968. box-shadow:none;
  4969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4970. font-weight:400;
  4971. font-style:normal;
  4972. font-size:12px;
  4973. color:#FFFFFF;
  4974. }
  4975. #u35369 {
  4976. border-width:0px;
  4977. position:absolute;
  4978. left:546px;
  4979. top:242px;
  4980. width:79px;
  4981. height:30px;
  4982. display:flex;
  4983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4984. font-weight:400;
  4985. font-style:normal;
  4986. font-size:12px;
  4987. color:#FFFFFF;
  4988. }
  4989. #u35369 .text {
  4990. position:absolute;
  4991. align-self:center;
  4992. padding:5px 15px 5px 15px;
  4993. box-sizing:border-box;
  4994. width:100%;
  4995. }
  4996. #u35369_text {
  4997. border-width:0px;
  4998. white-space:nowrap;
  4999. text-transform:none;
  5000. }
  5001. #u35370_div {
  5002. border-width:0px;
  5003. position:absolute;
  5004. left:0px;
  5005. top:0px;
  5006. width:300px;
  5007. height:1080px;
  5008. background:inherit;
  5009. background-color:rgba(242, 242, 242, 1);
  5010. border:none;
  5011. border-radius:4px;
  5012. -moz-box-shadow:none;
  5013. -webkit-box-shadow:none;
  5014. box-shadow:none;
  5015. }
  5016. #u35370 {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:226px;
  5020. top:132px;
  5021. width:300px;
  5022. height:1080px;
  5023. display:flex;
  5024. }
  5025. #u35370 .text {
  5026. position:absolute;
  5027. align-self:center;
  5028. padding:2px 2px 2px 2px;
  5029. box-sizing:border-box;
  5030. width:100%;
  5031. }
  5032. #u35370_text {
  5033. border-width:0px;
  5034. word-wrap:break-word;
  5035. text-transform:none;
  5036. visibility:hidden;
  5037. }
  5038. #u35371_div {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:0px;
  5042. top:0px;
  5043. width:37px;
  5044. height:50px;
  5045. background:inherit;
  5046. background-color:rgba(255, 255, 255, 0);
  5047. border:none;
  5048. border-left:0px;
  5049. border-top:0px;
  5050. border-right:0px;
  5051. border-radius:0px;
  5052. border-bottom-right-radius:0px;
  5053. border-bottom-left-radius:0px;
  5054. -moz-box-shadow:none;
  5055. -webkit-box-shadow:none;
  5056. box-shadow:none;
  5057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5058. font-weight:400;
  5059. font-style:normal;
  5060. font-size:18px;
  5061. color:#000000;
  5062. line-height:40px;
  5063. }
  5064. #u35371 {
  5065. border-width:0px;
  5066. position:absolute;
  5067. left:546px;
  5068. top:132px;
  5069. width:37px;
  5070. height:50px;
  5071. display:flex;
  5072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5073. font-weight:400;
  5074. font-style:normal;
  5075. font-size:18px;
  5076. color:#000000;
  5077. line-height:40px;
  5078. }
  5079. #u35371 .text {
  5080. position:absolute;
  5081. align-self:center;
  5082. padding:0px 0px 0px 0px;
  5083. box-sizing:border-box;
  5084. width:100%;
  5085. }
  5086. #u35371_text {
  5087. border-width:0px;
  5088. white-space:nowrap;
  5089. text-transform:none;
  5090. }
  5091. #u35372 {
  5092. border-width:0px;
  5093. position:absolute;
  5094. left:250px;
  5095. top:157px;
  5096. width:117px;
  5097. height:200px;
  5098. }
  5099. #u35372_children {
  5100. border-width:0px;
  5101. position:absolute;
  5102. left:0px;
  5103. top:0px;
  5104. width:0px;
  5105. height:0px;
  5106. }
  5107. #u35373 {
  5108. border-width:0px;
  5109. position:absolute;
  5110. left:0px;
  5111. top:0px;
  5112. width:54px;
  5113. height:20px;
  5114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5115. font-weight:400;
  5116. font-style:normal;
  5117. color:#298FFF;
  5118. }
  5119. #u35374_img {
  5120. border-width:0px;
  5121. position:absolute;
  5122. left:0px;
  5123. top:0px;
  5124. width:9px;
  5125. height:9px;
  5126. }
  5127. #u35374 {
  5128. border-width:0px;
  5129. position:absolute;
  5130. left:6px;
  5131. top:6px;
  5132. width:9px;
  5133. height:9px;
  5134. display:flex;
  5135. }
  5136. #u35374 .text {
  5137. position:absolute;
  5138. align-self:center;
  5139. padding:2px 2px 2px 2px;
  5140. box-sizing:border-box;
  5141. width:100%;
  5142. }
  5143. #u35374_img.selected {
  5144. }
  5145. #u35374.selected {
  5146. }
  5147. #u35374_text {
  5148. border-width:0px;
  5149. word-wrap:break-word;
  5150. text-transform:none;
  5151. visibility:hidden;
  5152. }
  5153. #u35375_div {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:0px;
  5157. top:0px;
  5158. width:32px;
  5159. height:20px;
  5160. background:inherit;
  5161. background-color:rgba(255, 255, 255, 0);
  5162. border:none;
  5163. border-radius:0px;
  5164. -moz-box-shadow:none;
  5165. -webkit-box-shadow:none;
  5166. box-shadow:none;
  5167. }
  5168. #u35375 {
  5169. border-width:0px;
  5170. position:absolute;
  5171. left:22px;
  5172. top:0px;
  5173. width:32px;
  5174. height:20px;
  5175. display:flex;
  5176. }
  5177. #u35375 .text {
  5178. position:absolute;
  5179. align-self:center;
  5180. padding:2px 2px 2px 3px;
  5181. box-sizing:border-box;
  5182. width:100%;
  5183. }
  5184. #u35375_text {
  5185. border-width:0px;
  5186. white-space:nowrap;
  5187. text-transform:none;
  5188. }
  5189. #u35373_children {
  5190. border-width:0px;
  5191. position:absolute;
  5192. left:0px;
  5193. top:0px;
  5194. width:0px;
  5195. height:0px;
  5196. }
  5197. #u35376 {
  5198. border-width:0px;
  5199. position:absolute;
  5200. left:20px;
  5201. top:20px;
  5202. width:67px;
  5203. height:20px;
  5204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5205. font-weight:400;
  5206. font-style:normal;
  5207. }
  5208. #u35377_div {
  5209. border-width:0px;
  5210. position:absolute;
  5211. left:0px;
  5212. top:0px;
  5213. width:45px;
  5214. height:20px;
  5215. background:inherit;
  5216. background-color:rgba(255, 255, 255, 0);
  5217. border:none;
  5218. border-radius:0px;
  5219. -moz-box-shadow:none;
  5220. -webkit-box-shadow:none;
  5221. box-shadow:none;
  5222. }
  5223. #u35377 {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:22px;
  5227. top:0px;
  5228. width:45px;
  5229. height:20px;
  5230. display:flex;
  5231. }
  5232. #u35377 .text {
  5233. position:absolute;
  5234. align-self:center;
  5235. padding:2px 2px 2px 3px;
  5236. box-sizing:border-box;
  5237. width:100%;
  5238. }
  5239. #u35377_text {
  5240. border-width:0px;
  5241. white-space:nowrap;
  5242. text-transform:none;
  5243. }
  5244. #u35378 {
  5245. border-width:0px;
  5246. position:absolute;
  5247. left:20px;
  5248. top:40px;
  5249. width:67px;
  5250. height:20px;
  5251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5252. font-weight:400;
  5253. font-style:normal;
  5254. }
  5255. #u35379_div {
  5256. border-width:0px;
  5257. position:absolute;
  5258. left:0px;
  5259. top:0px;
  5260. width:45px;
  5261. height:20px;
  5262. background:inherit;
  5263. background-color:rgba(255, 255, 255, 0);
  5264. border:none;
  5265. border-radius:0px;
  5266. -moz-box-shadow:none;
  5267. -webkit-box-shadow:none;
  5268. box-shadow:none;
  5269. }
  5270. #u35379 {
  5271. border-width:0px;
  5272. position:absolute;
  5273. left:22px;
  5274. top:0px;
  5275. width:45px;
  5276. height:20px;
  5277. display:flex;
  5278. }
  5279. #u35379 .text {
  5280. position:absolute;
  5281. align-self:center;
  5282. padding:2px 2px 2px 3px;
  5283. box-sizing:border-box;
  5284. width:100%;
  5285. }
  5286. #u35379_text {
  5287. border-width:0px;
  5288. white-space:nowrap;
  5289. text-transform:none;
  5290. }
  5291. #u35380 {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:20px;
  5295. top:60px;
  5296. width:67px;
  5297. height:20px;
  5298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5299. font-weight:400;
  5300. font-style:normal;
  5301. }
  5302. #u35381_div {
  5303. border-width:0px;
  5304. position:absolute;
  5305. left:0px;
  5306. top:0px;
  5307. width:45px;
  5308. height:20px;
  5309. background:inherit;
  5310. background-color:rgba(255, 255, 255, 0);
  5311. border:none;
  5312. border-radius:0px;
  5313. -moz-box-shadow:none;
  5314. -webkit-box-shadow:none;
  5315. box-shadow:none;
  5316. }
  5317. #u35381 {
  5318. border-width:0px;
  5319. position:absolute;
  5320. left:22px;
  5321. top:0px;
  5322. width:45px;
  5323. height:20px;
  5324. display:flex;
  5325. }
  5326. #u35381 .text {
  5327. position:absolute;
  5328. align-self:center;
  5329. padding:2px 2px 2px 3px;
  5330. box-sizing:border-box;
  5331. width:100%;
  5332. }
  5333. #u35381_text {
  5334. border-width:0px;
  5335. white-space:nowrap;
  5336. text-transform:none;
  5337. }
  5338. #u35382 {
  5339. border-width:0px;
  5340. position:absolute;
  5341. left:0px;
  5342. top:80px;
  5343. width:54px;
  5344. height:20px;
  5345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5346. font-weight:400;
  5347. font-style:normal;
  5348. }
  5349. #u35383_img {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:0px;
  5353. top:0px;
  5354. width:9px;
  5355. height:9px;
  5356. }
  5357. #u35383 {
  5358. border-width:0px;
  5359. position:absolute;
  5360. left:6px;
  5361. top:6px;
  5362. width:9px;
  5363. height:9px;
  5364. display:flex;
  5365. }
  5366. #u35383 .text {
  5367. position:absolute;
  5368. align-self:center;
  5369. padding:2px 2px 2px 2px;
  5370. box-sizing:border-box;
  5371. width:100%;
  5372. }
  5373. #u35383_img.selected {
  5374. }
  5375. #u35383.selected {
  5376. }
  5377. #u35383_text {
  5378. border-width:0px;
  5379. word-wrap:break-word;
  5380. text-transform:none;
  5381. visibility:hidden;
  5382. }
  5383. #u35384_div {
  5384. border-width:0px;
  5385. position:absolute;
  5386. left:0px;
  5387. top:0px;
  5388. width:32px;
  5389. height:20px;
  5390. background:inherit;
  5391. background-color:rgba(255, 255, 255, 0);
  5392. border:none;
  5393. border-radius:0px;
  5394. -moz-box-shadow:none;
  5395. -webkit-box-shadow:none;
  5396. box-shadow:none;
  5397. }
  5398. #u35384 {
  5399. border-width:0px;
  5400. position:absolute;
  5401. left:22px;
  5402. top:0px;
  5403. width:32px;
  5404. height:20px;
  5405. display:flex;
  5406. }
  5407. #u35384 .text {
  5408. position:absolute;
  5409. align-self:center;
  5410. padding:2px 2px 2px 3px;
  5411. box-sizing:border-box;
  5412. width:100%;
  5413. }
  5414. #u35384_text {
  5415. border-width:0px;
  5416. white-space:nowrap;
  5417. text-transform:none;
  5418. }
  5419. #u35382_children {
  5420. border-width:0px;
  5421. position:absolute;
  5422. left:0px;
  5423. top:0px;
  5424. width:0px;
  5425. height:0px;
  5426. }
  5427. #u35385 {
  5428. border-width:0px;
  5429. position:absolute;
  5430. left:20px;
  5431. top:20px;
  5432. width:93px;
  5433. height:20px;
  5434. }
  5435. #u35386_div {
  5436. border-width:0px;
  5437. position:absolute;
  5438. left:0px;
  5439. top:0px;
  5440. width:71px;
  5441. height:20px;
  5442. background:inherit;
  5443. background-color:rgba(255, 255, 255, 0);
  5444. border:none;
  5445. border-radius:0px;
  5446. -moz-box-shadow:none;
  5447. -webkit-box-shadow:none;
  5448. box-shadow:none;
  5449. }
  5450. #u35386 {
  5451. border-width:0px;
  5452. position:absolute;
  5453. left:22px;
  5454. top:0px;
  5455. width:71px;
  5456. height:20px;
  5457. display:flex;
  5458. }
  5459. #u35386 .text {
  5460. position:absolute;
  5461. align-self:center;
  5462. padding:2px 2px 2px 3px;
  5463. box-sizing:border-box;
  5464. width:100%;
  5465. }
  5466. #u35386_text {
  5467. border-width:0px;
  5468. white-space:nowrap;
  5469. text-transform:none;
  5470. }
  5471. #u35387 {
  5472. border-width:0px;
  5473. position:absolute;
  5474. left:20px;
  5475. top:40px;
  5476. width:93px;
  5477. height:20px;
  5478. }
  5479. #u35388_div {
  5480. border-width:0px;
  5481. position:absolute;
  5482. left:0px;
  5483. top:0px;
  5484. width:71px;
  5485. height:20px;
  5486. background:inherit;
  5487. background-color:rgba(255, 255, 255, 0);
  5488. border:none;
  5489. border-radius:0px;
  5490. -moz-box-shadow:none;
  5491. -webkit-box-shadow:none;
  5492. box-shadow:none;
  5493. }
  5494. #u35388 {
  5495. border-width:0px;
  5496. position:absolute;
  5497. left:22px;
  5498. top:0px;
  5499. width:71px;
  5500. height:20px;
  5501. display:flex;
  5502. }
  5503. #u35388 .text {
  5504. position:absolute;
  5505. align-self:center;
  5506. padding:2px 2px 2px 3px;
  5507. box-sizing:border-box;
  5508. width:100%;
  5509. }
  5510. #u35388_text {
  5511. border-width:0px;
  5512. white-space:nowrap;
  5513. text-transform:none;
  5514. }
  5515. #u35389 {
  5516. border-width:0px;
  5517. position:absolute;
  5518. left:0px;
  5519. top:140px;
  5520. width:54px;
  5521. height:20px;
  5522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5523. font-weight:400;
  5524. font-style:normal;
  5525. }
  5526. #u35390_img {
  5527. border-width:0px;
  5528. position:absolute;
  5529. left:0px;
  5530. top:0px;
  5531. width:9px;
  5532. height:9px;
  5533. }
  5534. #u35390 {
  5535. border-width:0px;
  5536. position:absolute;
  5537. left:6px;
  5538. top:6px;
  5539. width:9px;
  5540. height:9px;
  5541. display:flex;
  5542. }
  5543. #u35390 .text {
  5544. position:absolute;
  5545. align-self:center;
  5546. padding:2px 2px 2px 2px;
  5547. box-sizing:border-box;
  5548. width:100%;
  5549. }
  5550. #u35390_img.selected {
  5551. }
  5552. #u35390.selected {
  5553. }
  5554. #u35390_text {
  5555. border-width:0px;
  5556. word-wrap:break-word;
  5557. text-transform:none;
  5558. visibility:hidden;
  5559. }
  5560. #u35391_div {
  5561. border-width:0px;
  5562. position:absolute;
  5563. left:0px;
  5564. top:0px;
  5565. width:32px;
  5566. height:20px;
  5567. background:inherit;
  5568. background-color:rgba(255, 255, 255, 0);
  5569. border:none;
  5570. border-radius:0px;
  5571. -moz-box-shadow:none;
  5572. -webkit-box-shadow:none;
  5573. box-shadow:none;
  5574. }
  5575. #u35391 {
  5576. border-width:0px;
  5577. position:absolute;
  5578. left:22px;
  5579. top:0px;
  5580. width:32px;
  5581. height:20px;
  5582. display:flex;
  5583. }
  5584. #u35391 .text {
  5585. position:absolute;
  5586. align-self:center;
  5587. padding:2px 2px 2px 3px;
  5588. box-sizing:border-box;
  5589. width:100%;
  5590. }
  5591. #u35391_text {
  5592. border-width:0px;
  5593. white-space:nowrap;
  5594. text-transform:none;
  5595. }
  5596. #u35389_children {
  5597. border-width:0px;
  5598. position:absolute;
  5599. left:0px;
  5600. top:0px;
  5601. width:0px;
  5602. height:0px;
  5603. }
  5604. #u35392 {
  5605. border-width:0px;
  5606. position:absolute;
  5607. left:20px;
  5608. top:20px;
  5609. width:97px;
  5610. height:20px;
  5611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5612. font-weight:400;
  5613. font-style:normal;
  5614. }
  5615. #u35393_div {
  5616. border-width:0px;
  5617. position:absolute;
  5618. left:0px;
  5619. top:0px;
  5620. width:75px;
  5621. height:20px;
  5622. background:inherit;
  5623. background-color:rgba(255, 255, 255, 0);
  5624. border:none;
  5625. border-radius:0px;
  5626. -moz-box-shadow:none;
  5627. -webkit-box-shadow:none;
  5628. box-shadow:none;
  5629. }
  5630. #u35393 {
  5631. border-width:0px;
  5632. position:absolute;
  5633. left:22px;
  5634. top:0px;
  5635. width:75px;
  5636. height:20px;
  5637. display:flex;
  5638. }
  5639. #u35393 .text {
  5640. position:absolute;
  5641. align-self:center;
  5642. padding:2px 2px 2px 3px;
  5643. box-sizing:border-box;
  5644. width:100%;
  5645. }
  5646. #u35393_text {
  5647. border-width:0px;
  5648. white-space:nowrap;
  5649. text-transform:none;
  5650. }
  5651. #u35394 {
  5652. border-width:0px;
  5653. position:absolute;
  5654. left:20px;
  5655. top:40px;
  5656. width:97px;
  5657. height:20px;
  5658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5659. font-weight:400;
  5660. font-style:normal;
  5661. }
  5662. #u35395_div {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:0px;
  5666. top:0px;
  5667. width:75px;
  5668. height:20px;
  5669. background:inherit;
  5670. background-color:rgba(255, 255, 255, 0);
  5671. border:none;
  5672. border-radius:0px;
  5673. -moz-box-shadow:none;
  5674. -webkit-box-shadow:none;
  5675. box-shadow:none;
  5676. }
  5677. #u35395 {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:22px;
  5681. top:0px;
  5682. width:75px;
  5683. height:20px;
  5684. display:flex;
  5685. }
  5686. #u35395 .text {
  5687. position:absolute;
  5688. align-self:center;
  5689. padding:2px 2px 2px 3px;
  5690. box-sizing:border-box;
  5691. width:100%;
  5692. }
  5693. #u35395_text {
  5694. border-width:0px;
  5695. white-space:nowrap;
  5696. text-transform:none;
  5697. }
  5698. #u35396 {
  5699. border-width:0px;
  5700. position:absolute;
  5701. left:0px;
  5702. top:0px;
  5703. width:0px;
  5704. height:0px;
  5705. }
  5706. #u35397_div {
  5707. border-width:0px;
  5708. position:absolute;
  5709. left:0px;
  5710. top:0px;
  5711. width:140px;
  5712. height:30px;
  5713. background:inherit;
  5714. background-color:rgba(255, 255, 255, 1);
  5715. box-sizing:border-box;
  5716. border-width:1px;
  5717. border-style:solid;
  5718. border-color:rgba(201, 201, 201, 1);
  5719. border-radius:4px;
  5720. -moz-box-shadow:none;
  5721. -webkit-box-shadow:none;
  5722. box-shadow:none;
  5723. font-family:'Microsoft YaHei', sans-serif;
  5724. font-weight:400;
  5725. font-style:normal;
  5726. font-size:14px;
  5727. color:#CCCCCC;
  5728. text-align:left;
  5729. }
  5730. #u35397 {
  5731. border-width:0px;
  5732. position:absolute;
  5733. left:696px;
  5734. top:192px;
  5735. width:140px;
  5736. height:30px;
  5737. display:flex;
  5738. font-family:'Microsoft YaHei', sans-serif;
  5739. font-weight:400;
  5740. font-style:normal;
  5741. font-size:14px;
  5742. color:#CCCCCC;
  5743. text-align:left;
  5744. }
  5745. #u35397 .text {
  5746. position:absolute;
  5747. align-self:center;
  5748. padding:2px 8px 2px 8px;
  5749. box-sizing:border-box;
  5750. width:100%;
  5751. }
  5752. #u35397_text {
  5753. border-width:0px;
  5754. word-wrap:break-word;
  5755. text-transform:none;
  5756. visibility:hidden;
  5757. }
  5758. #u35398_input {
  5759. position:absolute;
  5760. left:0px;
  5761. top:0px;
  5762. width:127px;
  5763. height:25px;
  5764. padding:2px 2px 2px 2px;
  5765. font-family:'Microsoft YaHei', sans-serif;
  5766. font-weight:400;
  5767. font-style:normal;
  5768. font-size:10px;
  5769. letter-spacing:normal;
  5770. color:#000000;
  5771. vertical-align:none;
  5772. text-align:left;
  5773. text-transform:none;
  5774. background-color:transparent;
  5775. border-color:transparent;
  5776. }
  5777. #u35398_input.disabled {
  5778. position:absolute;
  5779. left:0px;
  5780. top:0px;
  5781. width:127px;
  5782. height:25px;
  5783. padding:2px 2px 2px 2px;
  5784. font-family:'Microsoft YaHei', sans-serif;
  5785. font-weight:400;
  5786. font-style:normal;
  5787. font-size:10px;
  5788. letter-spacing:normal;
  5789. color:#000000;
  5790. vertical-align:none;
  5791. text-align:left;
  5792. text-transform:none;
  5793. background-color:transparent;
  5794. border-color:transparent;
  5795. }
  5796. #u35398_div {
  5797. border-width:0px;
  5798. position:absolute;
  5799. left:0px;
  5800. top:0px;
  5801. width:127px;
  5802. height:25px;
  5803. background:inherit;
  5804. background-color:rgba(255, 255, 255, 1);
  5805. border:none;
  5806. border-radius:0px;
  5807. -moz-box-shadow:none;
  5808. -webkit-box-shadow:none;
  5809. box-shadow:none;
  5810. font-family:'Microsoft YaHei', sans-serif;
  5811. font-weight:400;
  5812. font-style:normal;
  5813. font-size:10px;
  5814. }
  5815. #u35398 {
  5816. border-width:0px;
  5817. position:absolute;
  5818. left:704px;
  5819. top:193px;
  5820. width:127px;
  5821. height:25px;
  5822. display:flex;
  5823. font-family:'Microsoft YaHei', sans-serif;
  5824. font-weight:400;
  5825. font-style:normal;
  5826. font-size:10px;
  5827. }
  5828. #u35398 .text {
  5829. position:absolute;
  5830. align-self:center;
  5831. padding:2px 2px 2px 2px;
  5832. box-sizing:border-box;
  5833. width:100%;
  5834. }
  5835. #u35398_div.disabled {
  5836. border-width:0px;
  5837. position:absolute;
  5838. left:0px;
  5839. top:0px;
  5840. width:127px;
  5841. height:25px;
  5842. background:inherit;
  5843. background-color:rgba(240, 240, 240, 1);
  5844. border:none;
  5845. border-radius:0px;
  5846. -moz-box-shadow:none;
  5847. -webkit-box-shadow:none;
  5848. box-shadow:none;
  5849. font-family:'Microsoft YaHei', sans-serif;
  5850. font-weight:400;
  5851. font-style:normal;
  5852. font-size:10px;
  5853. }
  5854. #u35398.disabled {
  5855. }
  5856. #u35399_div {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:0px;
  5860. top:0px;
  5861. width:79px;
  5862. height:30px;
  5863. background:inherit;
  5864. background-color:rgba(255, 255, 255, 1);
  5865. box-sizing:border-box;
  5866. border-width:1px;
  5867. border-style:solid;
  5868. border-color:rgba(170, 170, 170, 1);
  5869. border-radius:4px;
  5870. -moz-box-shadow:none;
  5871. -webkit-box-shadow:none;
  5872. box-shadow:none;
  5873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5874. font-weight:400;
  5875. font-style:normal;
  5876. font-size:12px;
  5877. color:#555555;
  5878. }
  5879. #u35399 {
  5880. border-width:0px;
  5881. position:absolute;
  5882. left:635px;
  5883. top:242px;
  5884. width:79px;
  5885. height:30px;
  5886. display:flex;
  5887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5888. font-weight:400;
  5889. font-style:normal;
  5890. font-size:12px;
  5891. color:#555555;
  5892. }
  5893. #u35399 .text {
  5894. position:absolute;
  5895. align-self:center;
  5896. padding:5px 15px 5px 15px;
  5897. box-sizing:border-box;
  5898. width:100%;
  5899. }
  5900. #u35399_text {
  5901. border-width:0px;
  5902. white-space:nowrap;
  5903. text-transform:none;
  5904. }
  5905. #u35400_div {
  5906. border-width:0px;
  5907. position:absolute;
  5908. left:0px;
  5909. top:0px;
  5910. width:79px;
  5911. height:30px;
  5912. background:inherit;
  5913. background-color:rgba(255, 255, 255, 1);
  5914. box-sizing:border-box;
  5915. border-width:1px;
  5916. border-style:solid;
  5917. border-color:rgba(170, 170, 170, 1);
  5918. border-radius:4px;
  5919. -moz-box-shadow:none;
  5920. -webkit-box-shadow:none;
  5921. box-shadow:none;
  5922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5923. font-weight:400;
  5924. font-style:normal;
  5925. font-size:12px;
  5926. color:#555555;
  5927. }
  5928. #u35400 {
  5929. border-width:0px;
  5930. position:absolute;
  5931. left:724px;
  5932. top:242px;
  5933. width:79px;
  5934. height:30px;
  5935. display:flex;
  5936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5937. font-weight:400;
  5938. font-style:normal;
  5939. font-size:12px;
  5940. color:#555555;
  5941. }
  5942. #u35400 .text {
  5943. position:absolute;
  5944. align-self:center;
  5945. padding:5px 15px 5px 15px;
  5946. box-sizing:border-box;
  5947. width:100%;
  5948. }
  5949. #u35400_text {
  5950. border-width:0px;
  5951. white-space:nowrap;
  5952. text-transform:none;
  5953. }
  5954. #u35401 {
  5955. border-width:0px;
  5956. position:absolute;
  5957. left:0px;
  5958. top:0px;
  5959. width:0px;
  5960. height:0px;
  5961. }
  5962. #u35402_div {
  5963. border-width:0px;
  5964. position:absolute;
  5965. left:0px;
  5966. top:0px;
  5967. width:500px;
  5968. height:514px;
  5969. background:inherit;
  5970. background-color:rgba(255, 255, 255, 1);
  5971. box-sizing:border-box;
  5972. border-width:1px;
  5973. border-style:solid;
  5974. border-color:rgba(215, 215, 215, 1);
  5975. border-radius:0px;
  5976. -moz-box-shadow:none;
  5977. -webkit-box-shadow:none;
  5978. box-shadow:none;
  5979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5980. font-weight:400;
  5981. font-style:normal;
  5982. font-size:14px;
  5983. color:#AAAAAA;
  5984. text-align:center;
  5985. line-height:30px;
  5986. }
  5987. #u35402 {
  5988. border-width:0px;
  5989. position:absolute;
  5990. left:739px;
  5991. top:549px;
  5992. width:500px;
  5993. height:514px;
  5994. display:flex;
  5995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5996. font-weight:400;
  5997. font-style:normal;
  5998. font-size:14px;
  5999. color:#AAAAAA;
  6000. text-align:center;
  6001. line-height:30px;
  6002. }
  6003. #u35402 .text {
  6004. position:absolute;
  6005. align-self:center;
  6006. padding:5px 10px 5px 10px;
  6007. box-sizing:border-box;
  6008. width:100%;
  6009. }
  6010. #u35402_text {
  6011. border-width:0px;
  6012. word-wrap:break-word;
  6013. text-transform:none;
  6014. visibility:hidden;
  6015. }
  6016. #u35403_div {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:0px;
  6020. top:0px;
  6021. width:83px;
  6022. height:35px;
  6023. background:inherit;
  6024. background-color:rgba(255, 255, 255, 0);
  6025. border:none;
  6026. border-top:0px;
  6027. border-right:0px;
  6028. border-bottom:0px;
  6029. border-radius:0px;
  6030. border-top-left-radius:0px;
  6031. border-bottom-left-radius:0px;
  6032. -moz-box-shadow:none;
  6033. -webkit-box-shadow:none;
  6034. box-shadow:none;
  6035. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6036. font-weight:500;
  6037. font-style:normal;
  6038. font-size:18px;
  6039. }
  6040. #u35403 {
  6041. border-width:0px;
  6042. position:absolute;
  6043. left:759px;
  6044. top:567px;
  6045. width:83px;
  6046. height:35px;
  6047. display:flex;
  6048. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6049. font-weight:500;
  6050. font-style:normal;
  6051. font-size:18px;
  6052. }
  6053. #u35403 .text {
  6054. position:absolute;
  6055. align-self:center;
  6056. padding:5px 10px 5px 0px;
  6057. box-sizing:border-box;
  6058. width:100%;
  6059. }
  6060. #u35403_text {
  6061. border-width:0px;
  6062. white-space:nowrap;
  6063. text-transform:none;
  6064. }
  6065. #u35404 {
  6066. border-width:0px;
  6067. position:absolute;
  6068. left:0px;
  6069. top:0px;
  6070. width:0px;
  6071. height:0px;
  6072. }
  6073. #u35405_div {
  6074. border-width:0px;
  6075. position:absolute;
  6076. left:0px;
  6077. top:0px;
  6078. width:500px;
  6079. height:60px;
  6080. background:inherit;
  6081. background-color:rgba(255, 255, 255, 1);
  6082. box-sizing:border-box;
  6083. border-width:1px;
  6084. border-style:solid;
  6085. border-color:rgba(215, 215, 215, 1);
  6086. border-radius:0px;
  6087. -moz-box-shadow:none;
  6088. -webkit-box-shadow:none;
  6089. box-shadow:none;
  6090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6091. font-weight:400;
  6092. font-style:normal;
  6093. font-size:14px;
  6094. color:#AAAAAA;
  6095. text-align:center;
  6096. line-height:30px;
  6097. }
  6098. #u35405 {
  6099. border-width:0px;
  6100. position:absolute;
  6101. left:739px;
  6102. top:1003px;
  6103. width:500px;
  6104. height:60px;
  6105. display:flex;
  6106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6107. font-weight:400;
  6108. font-style:normal;
  6109. font-size:14px;
  6110. color:#AAAAAA;
  6111. text-align:center;
  6112. line-height:30px;
  6113. }
  6114. #u35405 .text {
  6115. position:absolute;
  6116. align-self:center;
  6117. padding:5px 10px 5px 10px;
  6118. box-sizing:border-box;
  6119. width:100%;
  6120. }
  6121. #u35405_text {
  6122. border-width:0px;
  6123. word-wrap:break-word;
  6124. text-transform:none;
  6125. visibility:hidden;
  6126. }
  6127. #u35406_div {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:0px;
  6131. top:0px;
  6132. width:60px;
  6133. height:30px;
  6134. background:inherit;
  6135. background-color:rgba(24, 144, 255, 1);
  6136. border:none;
  6137. border-radius:4px;
  6138. -moz-box-shadow:none;
  6139. -webkit-box-shadow:none;
  6140. box-shadow:none;
  6141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6142. font-weight:400;
  6143. font-style:normal;
  6144. font-size:14px;
  6145. color:#FFFFFF;
  6146. }
  6147. #u35406 {
  6148. border-width:0px;
  6149. position:absolute;
  6150. left:1159px;
  6151. top:1018px;
  6152. width:60px;
  6153. height:30px;
  6154. display:flex;
  6155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6156. font-weight:400;
  6157. font-style:normal;
  6158. font-size:14px;
  6159. color:#FFFFFF;
  6160. }
  6161. #u35406 .text {
  6162. position:absolute;
  6163. align-self:center;
  6164. padding:2px 2px 2px 2px;
  6165. box-sizing:border-box;
  6166. width:100%;
  6167. }
  6168. #u35406_text {
  6169. border-width:0px;
  6170. word-wrap:break-word;
  6171. text-transform:none;
  6172. }
  6173. #u35407_div {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:0px;
  6177. top:0px;
  6178. width:60px;
  6179. height:30px;
  6180. background:inherit;
  6181. background-color:rgba(255, 255, 255, 1);
  6182. box-sizing:border-box;
  6183. border-width:1px;
  6184. border-style:solid;
  6185. border-color:rgba(170, 170, 170, 1);
  6186. border-radius:4px;
  6187. -moz-box-shadow:none;
  6188. -webkit-box-shadow:none;
  6189. box-shadow:none;
  6190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6191. font-weight:400;
  6192. font-style:normal;
  6193. font-size:14px;
  6194. }
  6195. #u35407 {
  6196. border-width:0px;
  6197. position:absolute;
  6198. left:1089px;
  6199. top:1018px;
  6200. width:60px;
  6201. height:30px;
  6202. display:flex;
  6203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6204. font-weight:400;
  6205. font-style:normal;
  6206. font-size:14px;
  6207. }
  6208. #u35407 .text {
  6209. position:absolute;
  6210. align-self:center;
  6211. padding:2px 2px 2px 2px;
  6212. box-sizing:border-box;
  6213. width:100%;
  6214. }
  6215. #u35407_text {
  6216. border-width:0px;
  6217. word-wrap:break-word;
  6218. text-transform:none;
  6219. }
  6220. #u35408_div {
  6221. border-width:0px;
  6222. position:absolute;
  6223. left:0px;
  6224. top:0px;
  6225. width:440px;
  6226. height:40px;
  6227. background:inherit;
  6228. background-color:rgba(255, 255, 128, 0.2);
  6229. border:none;
  6230. border-top:0px;
  6231. border-right:0px;
  6232. border-bottom:0px;
  6233. border-radius:0px;
  6234. border-top-left-radius:0px;
  6235. border-bottom-left-radius:0px;
  6236. -moz-box-shadow:none;
  6237. -webkit-box-shadow:none;
  6238. box-shadow:none;
  6239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6240. font-weight:400;
  6241. font-style:normal;
  6242. font-size:14px;
  6243. color:#F59A23;
  6244. }
  6245. #u35408 {
  6246. border-width:0px;
  6247. position:absolute;
  6248. left:785px;
  6249. top:625px;
  6250. width:440px;
  6251. height:40px;
  6252. display:flex;
  6253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6254. font-weight:400;
  6255. font-style:normal;
  6256. font-size:14px;
  6257. color:#F59A23;
  6258. }
  6259. #u35408 .text {
  6260. position:absolute;
  6261. align-self:center;
  6262. padding:5px 10px 5px 20px;
  6263. box-sizing:border-box;
  6264. width:100%;
  6265. }
  6266. #u35408_text {
  6267. border-width:0px;
  6268. word-wrap:break-word;
  6269. text-transform:none;
  6270. }
  6271. #u35409 {
  6272. border-width:0px;
  6273. position:absolute;
  6274. left:801px;
  6275. top:695px;
  6276. width:117px;
  6277. height:200px;
  6278. }
  6279. #u35409_children {
  6280. border-width:0px;
  6281. position:absolute;
  6282. left:0px;
  6283. top:0px;
  6284. width:0px;
  6285. height:0px;
  6286. }
  6287. #u35410 {
  6288. border-width:0px;
  6289. position:absolute;
  6290. left:0px;
  6291. top:0px;
  6292. width:54px;
  6293. height:20px;
  6294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6295. font-weight:400;
  6296. font-style:normal;
  6297. color:#298FFF;
  6298. }
  6299. #u35411_img {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:0px;
  6303. top:0px;
  6304. width:9px;
  6305. height:9px;
  6306. }
  6307. #u35411 {
  6308. border-width:0px;
  6309. position:absolute;
  6310. left:6px;
  6311. top:6px;
  6312. width:9px;
  6313. height:9px;
  6314. display:flex;
  6315. }
  6316. #u35411 .text {
  6317. position:absolute;
  6318. align-self:center;
  6319. padding:2px 2px 2px 2px;
  6320. box-sizing:border-box;
  6321. width:100%;
  6322. }
  6323. #u35411_img.selected {
  6324. }
  6325. #u35411.selected {
  6326. }
  6327. #u35411_text {
  6328. border-width:0px;
  6329. word-wrap:break-word;
  6330. text-transform:none;
  6331. visibility:hidden;
  6332. }
  6333. #u35412_div {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:0px;
  6337. top:0px;
  6338. width:32px;
  6339. height:20px;
  6340. background:inherit;
  6341. background-color:rgba(255, 255, 255, 0);
  6342. border:none;
  6343. border-radius:0px;
  6344. -moz-box-shadow:none;
  6345. -webkit-box-shadow:none;
  6346. box-shadow:none;
  6347. }
  6348. #u35412 {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:22px;
  6352. top:0px;
  6353. width:32px;
  6354. height:20px;
  6355. display:flex;
  6356. }
  6357. #u35412 .text {
  6358. position:absolute;
  6359. align-self:center;
  6360. padding:2px 2px 2px 3px;
  6361. box-sizing:border-box;
  6362. width:100%;
  6363. }
  6364. #u35412_text {
  6365. border-width:0px;
  6366. white-space:nowrap;
  6367. text-transform:none;
  6368. }
  6369. #u35410_children {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:0px;
  6373. top:0px;
  6374. width:0px;
  6375. height:0px;
  6376. }
  6377. #u35413 {
  6378. border-width:0px;
  6379. position:absolute;
  6380. left:20px;
  6381. top:20px;
  6382. width:67px;
  6383. height:20px;
  6384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6385. font-weight:400;
  6386. font-style:normal;
  6387. }
  6388. #u35414_div {
  6389. border-width:0px;
  6390. position:absolute;
  6391. left:0px;
  6392. top:0px;
  6393. width:45px;
  6394. height:20px;
  6395. background:inherit;
  6396. background-color:rgba(255, 255, 255, 0);
  6397. border:none;
  6398. border-radius:0px;
  6399. -moz-box-shadow:none;
  6400. -webkit-box-shadow:none;
  6401. box-shadow:none;
  6402. }
  6403. #u35414 {
  6404. border-width:0px;
  6405. position:absolute;
  6406. left:22px;
  6407. top:0px;
  6408. width:45px;
  6409. height:20px;
  6410. display:flex;
  6411. }
  6412. #u35414 .text {
  6413. position:absolute;
  6414. align-self:center;
  6415. padding:2px 2px 2px 3px;
  6416. box-sizing:border-box;
  6417. width:100%;
  6418. }
  6419. #u35414_text {
  6420. border-width:0px;
  6421. white-space:nowrap;
  6422. text-transform:none;
  6423. }
  6424. #u35415 {
  6425. border-width:0px;
  6426. position:absolute;
  6427. left:20px;
  6428. top:40px;
  6429. width:67px;
  6430. height:20px;
  6431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6432. font-weight:400;
  6433. font-style:normal;
  6434. }
  6435. #u35416_div {
  6436. border-width:0px;
  6437. position:absolute;
  6438. left:0px;
  6439. top:0px;
  6440. width:45px;
  6441. height:20px;
  6442. background:inherit;
  6443. background-color:rgba(255, 255, 255, 0);
  6444. border:none;
  6445. border-radius:0px;
  6446. -moz-box-shadow:none;
  6447. -webkit-box-shadow:none;
  6448. box-shadow:none;
  6449. }
  6450. #u35416 {
  6451. border-width:0px;
  6452. position:absolute;
  6453. left:22px;
  6454. top:0px;
  6455. width:45px;
  6456. height:20px;
  6457. display:flex;
  6458. }
  6459. #u35416 .text {
  6460. position:absolute;
  6461. align-self:center;
  6462. padding:2px 2px 2px 3px;
  6463. box-sizing:border-box;
  6464. width:100%;
  6465. }
  6466. #u35416_text {
  6467. border-width:0px;
  6468. white-space:nowrap;
  6469. text-transform:none;
  6470. }
  6471. #u35417 {
  6472. border-width:0px;
  6473. position:absolute;
  6474. left:20px;
  6475. top:60px;
  6476. width:67px;
  6477. height:20px;
  6478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6479. font-weight:400;
  6480. font-style:normal;
  6481. }
  6482. #u35418_div {
  6483. border-width:0px;
  6484. position:absolute;
  6485. left:0px;
  6486. top:0px;
  6487. width:45px;
  6488. height:20px;
  6489. background:inherit;
  6490. background-color:rgba(255, 255, 255, 0);
  6491. border:none;
  6492. border-radius:0px;
  6493. -moz-box-shadow:none;
  6494. -webkit-box-shadow:none;
  6495. box-shadow:none;
  6496. }
  6497. #u35418 {
  6498. border-width:0px;
  6499. position:absolute;
  6500. left:22px;
  6501. top:0px;
  6502. width:45px;
  6503. height:20px;
  6504. display:flex;
  6505. }
  6506. #u35418 .text {
  6507. position:absolute;
  6508. align-self:center;
  6509. padding:2px 2px 2px 3px;
  6510. box-sizing:border-box;
  6511. width:100%;
  6512. }
  6513. #u35418_text {
  6514. border-width:0px;
  6515. white-space:nowrap;
  6516. text-transform:none;
  6517. }
  6518. #u35419 {
  6519. border-width:0px;
  6520. position:absolute;
  6521. left:0px;
  6522. top:80px;
  6523. width:54px;
  6524. height:20px;
  6525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6526. font-weight:400;
  6527. font-style:normal;
  6528. }
  6529. #u35420_img {
  6530. border-width:0px;
  6531. position:absolute;
  6532. left:0px;
  6533. top:0px;
  6534. width:9px;
  6535. height:9px;
  6536. }
  6537. #u35420 {
  6538. border-width:0px;
  6539. position:absolute;
  6540. left:6px;
  6541. top:6px;
  6542. width:9px;
  6543. height:9px;
  6544. display:flex;
  6545. }
  6546. #u35420 .text {
  6547. position:absolute;
  6548. align-self:center;
  6549. padding:2px 2px 2px 2px;
  6550. box-sizing:border-box;
  6551. width:100%;
  6552. }
  6553. #u35420_img.selected {
  6554. }
  6555. #u35420.selected {
  6556. }
  6557. #u35420_text {
  6558. border-width:0px;
  6559. word-wrap:break-word;
  6560. text-transform:none;
  6561. visibility:hidden;
  6562. }
  6563. #u35421_div {
  6564. border-width:0px;
  6565. position:absolute;
  6566. left:0px;
  6567. top:0px;
  6568. width:32px;
  6569. height:20px;
  6570. background:inherit;
  6571. background-color:rgba(255, 255, 255, 0);
  6572. border:none;
  6573. border-radius:0px;
  6574. -moz-box-shadow:none;
  6575. -webkit-box-shadow:none;
  6576. box-shadow:none;
  6577. }
  6578. #u35421 {
  6579. border-width:0px;
  6580. position:absolute;
  6581. left:22px;
  6582. top:0px;
  6583. width:32px;
  6584. height:20px;
  6585. display:flex;
  6586. }
  6587. #u35421 .text {
  6588. position:absolute;
  6589. align-self:center;
  6590. padding:2px 2px 2px 3px;
  6591. box-sizing:border-box;
  6592. width:100%;
  6593. }
  6594. #u35421_text {
  6595. border-width:0px;
  6596. white-space:nowrap;
  6597. text-transform:none;
  6598. }
  6599. #u35419_children {
  6600. border-width:0px;
  6601. position:absolute;
  6602. left:0px;
  6603. top:0px;
  6604. width:0px;
  6605. height:0px;
  6606. }
  6607. #u35422 {
  6608. border-width:0px;
  6609. position:absolute;
  6610. left:20px;
  6611. top:20px;
  6612. width:93px;
  6613. height:20px;
  6614. }
  6615. #u35423_div {
  6616. border-width:0px;
  6617. position:absolute;
  6618. left:0px;
  6619. top:0px;
  6620. width:71px;
  6621. height:20px;
  6622. background:inherit;
  6623. background-color:rgba(255, 255, 255, 0);
  6624. border:none;
  6625. border-radius:0px;
  6626. -moz-box-shadow:none;
  6627. -webkit-box-shadow:none;
  6628. box-shadow:none;
  6629. }
  6630. #u35423 {
  6631. border-width:0px;
  6632. position:absolute;
  6633. left:22px;
  6634. top:0px;
  6635. width:71px;
  6636. height:20px;
  6637. display:flex;
  6638. }
  6639. #u35423 .text {
  6640. position:absolute;
  6641. align-self:center;
  6642. padding:2px 2px 2px 3px;
  6643. box-sizing:border-box;
  6644. width:100%;
  6645. }
  6646. #u35423_text {
  6647. border-width:0px;
  6648. white-space:nowrap;
  6649. text-transform:none;
  6650. }
  6651. #u35424 {
  6652. border-width:0px;
  6653. position:absolute;
  6654. left:20px;
  6655. top:40px;
  6656. width:93px;
  6657. height:20px;
  6658. }
  6659. #u35425_div {
  6660. border-width:0px;
  6661. position:absolute;
  6662. left:0px;
  6663. top:0px;
  6664. width:71px;
  6665. height:20px;
  6666. background:inherit;
  6667. background-color:rgba(255, 255, 255, 0);
  6668. border:none;
  6669. border-radius:0px;
  6670. -moz-box-shadow:none;
  6671. -webkit-box-shadow:none;
  6672. box-shadow:none;
  6673. }
  6674. #u35425 {
  6675. border-width:0px;
  6676. position:absolute;
  6677. left:22px;
  6678. top:0px;
  6679. width:71px;
  6680. height:20px;
  6681. display:flex;
  6682. }
  6683. #u35425 .text {
  6684. position:absolute;
  6685. align-self:center;
  6686. padding:2px 2px 2px 3px;
  6687. box-sizing:border-box;
  6688. width:100%;
  6689. }
  6690. #u35425_text {
  6691. border-width:0px;
  6692. white-space:nowrap;
  6693. text-transform:none;
  6694. }
  6695. #u35426 {
  6696. border-width:0px;
  6697. position:absolute;
  6698. left:0px;
  6699. top:140px;
  6700. width:54px;
  6701. height:20px;
  6702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6703. font-weight:400;
  6704. font-style:normal;
  6705. }
  6706. #u35427_img {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:0px;
  6710. top:0px;
  6711. width:9px;
  6712. height:9px;
  6713. }
  6714. #u35427 {
  6715. border-width:0px;
  6716. position:absolute;
  6717. left:6px;
  6718. top:6px;
  6719. width:9px;
  6720. height:9px;
  6721. display:flex;
  6722. }
  6723. #u35427 .text {
  6724. position:absolute;
  6725. align-self:center;
  6726. padding:2px 2px 2px 2px;
  6727. box-sizing:border-box;
  6728. width:100%;
  6729. }
  6730. #u35427_img.selected {
  6731. }
  6732. #u35427.selected {
  6733. }
  6734. #u35427_text {
  6735. border-width:0px;
  6736. word-wrap:break-word;
  6737. text-transform:none;
  6738. visibility:hidden;
  6739. }
  6740. #u35428_div {
  6741. border-width:0px;
  6742. position:absolute;
  6743. left:0px;
  6744. top:0px;
  6745. width:32px;
  6746. height:20px;
  6747. background:inherit;
  6748. background-color:rgba(255, 255, 255, 0);
  6749. border:none;
  6750. border-radius:0px;
  6751. -moz-box-shadow:none;
  6752. -webkit-box-shadow:none;
  6753. box-shadow:none;
  6754. }
  6755. #u35428 {
  6756. border-width:0px;
  6757. position:absolute;
  6758. left:22px;
  6759. top:0px;
  6760. width:32px;
  6761. height:20px;
  6762. display:flex;
  6763. }
  6764. #u35428 .text {
  6765. position:absolute;
  6766. align-self:center;
  6767. padding:2px 2px 2px 3px;
  6768. box-sizing:border-box;
  6769. width:100%;
  6770. }
  6771. #u35428_text {
  6772. border-width:0px;
  6773. white-space:nowrap;
  6774. text-transform:none;
  6775. }
  6776. #u35426_children {
  6777. border-width:0px;
  6778. position:absolute;
  6779. left:0px;
  6780. top:0px;
  6781. width:0px;
  6782. height:0px;
  6783. }
  6784. #u35429 {
  6785. border-width:0px;
  6786. position:absolute;
  6787. left:20px;
  6788. top:20px;
  6789. width:97px;
  6790. height:20px;
  6791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6792. font-weight:400;
  6793. font-style:normal;
  6794. }
  6795. #u35430_div {
  6796. border-width:0px;
  6797. position:absolute;
  6798. left:0px;
  6799. top:0px;
  6800. width:75px;
  6801. height:20px;
  6802. background:inherit;
  6803. background-color:rgba(255, 255, 255, 0);
  6804. border:none;
  6805. border-radius:0px;
  6806. -moz-box-shadow:none;
  6807. -webkit-box-shadow:none;
  6808. box-shadow:none;
  6809. }
  6810. #u35430 {
  6811. border-width:0px;
  6812. position:absolute;
  6813. left:22px;
  6814. top:0px;
  6815. width:75px;
  6816. height:20px;
  6817. display:flex;
  6818. }
  6819. #u35430 .text {
  6820. position:absolute;
  6821. align-self:center;
  6822. padding:2px 2px 2px 3px;
  6823. box-sizing:border-box;
  6824. width:100%;
  6825. }
  6826. #u35430_text {
  6827. border-width:0px;
  6828. white-space:nowrap;
  6829. text-transform:none;
  6830. }
  6831. #u35431 {
  6832. border-width:0px;
  6833. position:absolute;
  6834. left:20px;
  6835. top:40px;
  6836. width:97px;
  6837. height:20px;
  6838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6839. font-weight:400;
  6840. font-style:normal;
  6841. }
  6842. #u35432_div {
  6843. border-width:0px;
  6844. position:absolute;
  6845. left:0px;
  6846. top:0px;
  6847. width:75px;
  6848. height:20px;
  6849. background:inherit;
  6850. background-color:rgba(255, 255, 255, 0);
  6851. border:none;
  6852. border-radius:0px;
  6853. -moz-box-shadow:none;
  6854. -webkit-box-shadow:none;
  6855. box-shadow:none;
  6856. }
  6857. #u35432 {
  6858. border-width:0px;
  6859. position:absolute;
  6860. left:22px;
  6861. top:0px;
  6862. width:75px;
  6863. height:20px;
  6864. display:flex;
  6865. }
  6866. #u35432 .text {
  6867. position:absolute;
  6868. align-self:center;
  6869. padding:2px 2px 2px 3px;
  6870. box-sizing:border-box;
  6871. width:100%;
  6872. }
  6873. #u35432_text {
  6874. border-width:0px;
  6875. white-space:nowrap;
  6876. text-transform:none;
  6877. }
  6878. #u35433_img {
  6879. border-width:0px;
  6880. position:absolute;
  6881. left:0px;
  6882. top:0px;
  6883. width:10px;
  6884. height:8px;
  6885. }
  6886. #u35433 {
  6887. border-width:0px;
  6888. position:absolute;
  6889. left:1190px;
  6890. top:700px;
  6891. width:10px;
  6892. height:8px;
  6893. display:flex;
  6894. }
  6895. #u35433 .text {
  6896. position:absolute;
  6897. align-self:center;
  6898. padding:2px 2px 2px 2px;
  6899. box-sizing:border-box;
  6900. width:100%;
  6901. }
  6902. #u35433_text {
  6903. border-width:0px;
  6904. word-wrap:break-word;
  6905. text-transform:none;
  6906. visibility:hidden;
  6907. }
  6908. #u35434_img {
  6909. border-width:0px;
  6910. position:absolute;
  6911. left:0px;
  6912. top:0px;
  6913. width:10px;
  6914. height:8px;
  6915. }
  6916. #u35434 {
  6917. border-width:0px;
  6918. position:absolute;
  6919. left:1190px;
  6920. top:720px;
  6921. width:10px;
  6922. height:8px;
  6923. display:flex;
  6924. }
  6925. #u35434 .text {
  6926. position:absolute;
  6927. align-self:center;
  6928. padding:2px 2px 2px 2px;
  6929. box-sizing:border-box;
  6930. width:100%;
  6931. }
  6932. #u35434_text {
  6933. border-width:0px;
  6934. word-wrap:break-word;
  6935. text-transform:none;
  6936. visibility:hidden;
  6937. }
  6938. #u35435_img {
  6939. border-width:0px;
  6940. position:absolute;
  6941. left:0px;
  6942. top:0px;
  6943. width:10px;
  6944. height:8px;
  6945. }
  6946. #u35435 {
  6947. border-width:0px;
  6948. position:absolute;
  6949. left:1190px;
  6950. top:740px;
  6951. width:10px;
  6952. height:8px;
  6953. display:flex;
  6954. }
  6955. #u35435 .text {
  6956. position:absolute;
  6957. align-self:center;
  6958. padding:2px 2px 2px 2px;
  6959. box-sizing:border-box;
  6960. width:100%;
  6961. }
  6962. #u35435_text {
  6963. border-width:0px;
  6964. word-wrap:break-word;
  6965. text-transform:none;
  6966. visibility:hidden;
  6967. }
  6968. #u35436_img {
  6969. border-width:0px;
  6970. position:absolute;
  6971. left:0px;
  6972. top:0px;
  6973. width:10px;
  6974. height:8px;
  6975. }
  6976. #u35436 {
  6977. border-width:0px;
  6978. position:absolute;
  6979. left:1190px;
  6980. top:760px;
  6981. width:10px;
  6982. height:8px;
  6983. display:flex;
  6984. }
  6985. #u35436 .text {
  6986. position:absolute;
  6987. align-self:center;
  6988. padding:2px 2px 2px 2px;
  6989. box-sizing:border-box;
  6990. width:100%;
  6991. }
  6992. #u35436_text {
  6993. border-width:0px;
  6994. word-wrap:break-word;
  6995. text-transform:none;
  6996. visibility:hidden;
  6997. }
  6998. #u35437_img {
  6999. border-width:0px;
  7000. position:absolute;
  7001. left:0px;
  7002. top:0px;
  7003. width:10px;
  7004. height:8px;
  7005. }
  7006. #u35437 {
  7007. border-width:0px;
  7008. position:absolute;
  7009. left:1190px;
  7010. top:781px;
  7011. width:10px;
  7012. height:8px;
  7013. display:flex;
  7014. }
  7015. #u35437 .text {
  7016. position:absolute;
  7017. align-self:center;
  7018. padding:2px 2px 2px 2px;
  7019. box-sizing:border-box;
  7020. width:100%;
  7021. }
  7022. #u35437_text {
  7023. border-width:0px;
  7024. word-wrap:break-word;
  7025. text-transform:none;
  7026. visibility:hidden;
  7027. }
  7028. #u35438_img {
  7029. border-width:0px;
  7030. position:absolute;
  7031. left:0px;
  7032. top:0px;
  7033. width:10px;
  7034. height:8px;
  7035. }
  7036. #u35438 {
  7037. border-width:0px;
  7038. position:absolute;
  7039. left:1190px;
  7040. top:801px;
  7041. width:10px;
  7042. height:8px;
  7043. display:flex;
  7044. }
  7045. #u35438 .text {
  7046. position:absolute;
  7047. align-self:center;
  7048. padding:2px 2px 2px 2px;
  7049. box-sizing:border-box;
  7050. width:100%;
  7051. }
  7052. #u35438_text {
  7053. border-width:0px;
  7054. word-wrap:break-word;
  7055. text-transform:none;
  7056. visibility:hidden;
  7057. }
  7058. #u35439_img {
  7059. border-width:0px;
  7060. position:absolute;
  7061. left:0px;
  7062. top:0px;
  7063. width:10px;
  7064. height:8px;
  7065. }
  7066. #u35439 {
  7067. border-width:0px;
  7068. position:absolute;
  7069. left:1190px;
  7070. top:821px;
  7071. width:10px;
  7072. height:8px;
  7073. display:flex;
  7074. }
  7075. #u35439 .text {
  7076. position:absolute;
  7077. align-self:center;
  7078. padding:2px 2px 2px 2px;
  7079. box-sizing:border-box;
  7080. width:100%;
  7081. }
  7082. #u35439_text {
  7083. border-width:0px;
  7084. word-wrap:break-word;
  7085. text-transform:none;
  7086. visibility:hidden;
  7087. }
  7088. #u35440_img {
  7089. border-width:0px;
  7090. position:absolute;
  7091. left:0px;
  7092. top:0px;
  7093. width:10px;
  7094. height:8px;
  7095. }
  7096. #u35440 {
  7097. border-width:0px;
  7098. position:absolute;
  7099. left:1190px;
  7100. top:841px;
  7101. width:10px;
  7102. height:8px;
  7103. display:flex;
  7104. }
  7105. #u35440 .text {
  7106. position:absolute;
  7107. align-self:center;
  7108. padding:2px 2px 2px 2px;
  7109. box-sizing:border-box;
  7110. width:100%;
  7111. }
  7112. #u35440_text {
  7113. border-width:0px;
  7114. word-wrap:break-word;
  7115. text-transform:none;
  7116. visibility:hidden;
  7117. }
  7118. #u35441_img {
  7119. border-width:0px;
  7120. position:absolute;
  7121. left:0px;
  7122. top:0px;
  7123. width:10px;
  7124. height:8px;
  7125. }
  7126. #u35441 {
  7127. border-width:0px;
  7128. position:absolute;
  7129. left:1190px;
  7130. top:861px;
  7131. width:10px;
  7132. height:8px;
  7133. display:flex;
  7134. }
  7135. #u35441 .text {
  7136. position:absolute;
  7137. align-self:center;
  7138. padding:2px 2px 2px 2px;
  7139. box-sizing:border-box;
  7140. width:100%;
  7141. }
  7142. #u35441_text {
  7143. border-width:0px;
  7144. word-wrap:break-word;
  7145. text-transform:none;
  7146. visibility:hidden;
  7147. }
  7148. #u35442_img {
  7149. border-width:0px;
  7150. position:absolute;
  7151. left:0px;
  7152. top:0px;
  7153. width:10px;
  7154. height:8px;
  7155. }
  7156. #u35442 {
  7157. border-width:0px;
  7158. position:absolute;
  7159. left:1190px;
  7160. top:881px;
  7161. width:10px;
  7162. height:8px;
  7163. display:flex;
  7164. }
  7165. #u35442 .text {
  7166. position:absolute;
  7167. align-self:center;
  7168. padding:2px 2px 2px 2px;
  7169. box-sizing:border-box;
  7170. width:100%;
  7171. }
  7172. #u35442_text {
  7173. border-width:0px;
  7174. word-wrap:break-word;
  7175. text-transform:none;
  7176. visibility:hidden;
  7177. }
  7178. #u35443_div {
  7179. border-width:0px;
  7180. position:absolute;
  7181. left:0px;
  7182. top:0px;
  7183. width:21px;
  7184. height:35px;
  7185. background:inherit;
  7186. background-color:rgba(255, 255, 255, 0);
  7187. border:none;
  7188. border-top:0px;
  7189. border-right:0px;
  7190. border-bottom:0px;
  7191. border-radius:0px;
  7192. border-top-left-radius:0px;
  7193. border-bottom-left-radius:0px;
  7194. -moz-box-shadow:none;
  7195. -webkit-box-shadow:none;
  7196. box-shadow:none;
  7197. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7198. font-weight:500;
  7199. font-style:normal;
  7200. font-size:18px;
  7201. }
  7202. #u35443 {
  7203. border-width:0px;
  7204. position:absolute;
  7205. left:1218px;
  7206. top:549px;
  7207. width:21px;
  7208. height:35px;
  7209. display:flex;
  7210. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7211. font-weight:500;
  7212. font-style:normal;
  7213. font-size:18px;
  7214. }
  7215. #u35443 .text {
  7216. position:absolute;
  7217. align-self:center;
  7218. padding:5px 10px 5px 0px;
  7219. box-sizing:border-box;
  7220. width:100%;
  7221. }
  7222. #u35443_text {
  7223. border-width:0px;
  7224. white-space:nowrap;
  7225. text-transform:none;
  7226. }