styles.css 113 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3237px;
  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. #u35468 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u35470 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:0px;
  33. height:0px;
  34. }
  35. #u35471_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. #u35471 {
  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. #u35471 .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. #u35471_text {
  71. border-width:0px;
  72. white-space:nowrap;
  73. text-transform:none;
  74. }
  75. #u35472_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. #u35472 {
  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. #u35472 .text {
  102. position:absolute;
  103. align-self:center;
  104. padding:2px 2px 2px 2px;
  105. box-sizing:border-box;
  106. width:100%;
  107. }
  108. #u35472_text {
  109. border-width:0px;
  110. word-wrap:break-word;
  111. text-transform:none;
  112. visibility:hidden;
  113. }
  114. #u35473 {
  115. border-width:0px;
  116. position:absolute;
  117. left:0px;
  118. top:0px;
  119. width:0px;
  120. height:0px;
  121. }
  122. #u35474_img {
  123. border-width:0px;
  124. position:absolute;
  125. left:0px;
  126. top:0px;
  127. width:31px;
  128. height:31px;
  129. }
  130. #u35474 {
  131. border-width:0px;
  132. position:absolute;
  133. left:19px;
  134. top:10px;
  135. width:31px;
  136. height:31px;
  137. display:flex;
  138. }
  139. #u35474 .text {
  140. position:absolute;
  141. align-self:center;
  142. padding:2px 2px 2px 2px;
  143. box-sizing:border-box;
  144. width:100%;
  145. }
  146. #u35474_text {
  147. border-width:0px;
  148. word-wrap:break-word;
  149. text-transform:none;
  150. }
  151. #u35475_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. #u35475 {
  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. #u35475 .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. #u35475_text {
  193. border-width:0px;
  194. white-space:nowrap;
  195. text-transform:none;
  196. }
  197. #u35476_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. #u35476 {
  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. #u35476 .text {
  224. position:absolute;
  225. align-self:center;
  226. padding:2px 2px 2px 2px;
  227. box-sizing:border-box;
  228. width:100%;
  229. }
  230. #u35476_text {
  231. border-width:0px;
  232. word-wrap:break-word;
  233. text-transform:none;
  234. visibility:hidden;
  235. }
  236. #u35477_img {
  237. border-width:0px;
  238. position:absolute;
  239. left:0px;
  240. top:0px;
  241. width:15px;
  242. height:15px;
  243. }
  244. #u35477 {
  245. border-width:0px;
  246. position:absolute;
  247. left:1523px;
  248. top:18px;
  249. width:15px;
  250. height:15px;
  251. display:flex;
  252. }
  253. #u35477 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u35477_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u35478_img {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:15px;
  272. height:15px;
  273. }
  274. #u35478 {
  275. border-width:0px;
  276. position:absolute;
  277. left:1493px;
  278. top:18px;
  279. width:15px;
  280. height:15px;
  281. display:flex;
  282. }
  283. #u35478 .text {
  284. position:absolute;
  285. align-self:center;
  286. padding:2px 2px 2px 2px;
  287. box-sizing:border-box;
  288. width:100%;
  289. }
  290. #u35478_text {
  291. border-width:0px;
  292. word-wrap:break-word;
  293. text-transform:none;
  294. visibility:hidden;
  295. }
  296. #u35479 {
  297. border-width:0px;
  298. position:absolute;
  299. left:0px;
  300. top:0px;
  301. width:0px;
  302. height:0px;
  303. }
  304. #u35480_img {
  305. border-width:0px;
  306. position:absolute;
  307. left:0px;
  308. top:0px;
  309. width:14px;
  310. height:14px;
  311. }
  312. #u35480 {
  313. border-width:0px;
  314. position:absolute;
  315. left:1553px;
  316. top:18px;
  317. width:14px;
  318. height:14px;
  319. display:flex;
  320. }
  321. #u35480 .text {
  322. position:absolute;
  323. align-self:center;
  324. padding:2px 2px 2px 2px;
  325. box-sizing:border-box;
  326. width:100%;
  327. }
  328. #u35480_text {
  329. border-width:0px;
  330. word-wrap:break-word;
  331. text-transform:none;
  332. visibility:hidden;
  333. }
  334. #u35481_img {
  335. border-width:0px;
  336. position:absolute;
  337. left:0px;
  338. top:0px;
  339. width:8px;
  340. height:5px;
  341. }
  342. #u35481 {
  343. border-width:0px;
  344. position:absolute;
  345. left:1572px;
  346. top:23px;
  347. width:8px;
  348. height:5px;
  349. display:flex;
  350. }
  351. #u35481 .text {
  352. position:absolute;
  353. align-self:center;
  354. padding:2px 2px 2px 2px;
  355. box-sizing:border-box;
  356. width:100%;
  357. }
  358. #u35481_text {
  359. border-width:0px;
  360. word-wrap:break-word;
  361. text-transform:none;
  362. visibility:hidden;
  363. }
  364. #u35482_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. #u35482 {
  380. border-width:0px;
  381. position:absolute;
  382. left:198px;
  383. top:47px;
  384. width:1402px;
  385. height:1200px;
  386. display:flex;
  387. }
  388. #u35482 .text {
  389. position:absolute;
  390. align-self:center;
  391. padding:2px 2px 2px 2px;
  392. box-sizing:border-box;
  393. width:100%;
  394. }
  395. #u35482_text {
  396. border-width:0px;
  397. word-wrap:break-word;
  398. text-transform:none;
  399. visibility:hidden;
  400. }
  401. #u35483 {
  402. border-width:0px;
  403. position:absolute;
  404. left:35px;
  405. top:81px;
  406. width:118px;
  407. height:220px;
  408. }
  409. #u35483_children {
  410. border-width:0px;
  411. position:absolute;
  412. left:0px;
  413. top:0px;
  414. width:0px;
  415. height:0px;
  416. }
  417. #u35484 {
  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. #u35485_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. #u35485 {
  446. border-width:0px;
  447. position:absolute;
  448. left:22px;
  449. top:0px;
  450. width:76px;
  451. height:20px;
  452. display:flex;
  453. }
  454. #u35485 .text {
  455. position:absolute;
  456. align-self:center;
  457. padding:2px 2px 2px 3px;
  458. box-sizing:border-box;
  459. width:100%;
  460. }
  461. #u35485_text {
  462. border-width:0px;
  463. white-space:nowrap;
  464. text-transform:none;
  465. }
  466. #u35486 {
  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. #u35487_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:9px;
  485. height:9px;
  486. }
  487. #u35487 {
  488. border-width:0px;
  489. position:absolute;
  490. left:6px;
  491. top:6px;
  492. width:9px;
  493. height:9px;
  494. display:flex;
  495. }
  496. #u35487 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u35487_img.selected {
  504. }
  505. #u35487.selected {
  506. }
  507. #u35487_text {
  508. border-width:0px;
  509. word-wrap:break-word;
  510. text-transform:none;
  511. visibility:hidden;
  512. }
  513. #u35488_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. #u35488 {
  529. border-width:0px;
  530. position:absolute;
  531. left:22px;
  532. top:0px;
  533. width:62px;
  534. height:20px;
  535. display:flex;
  536. }
  537. #u35488 .text {
  538. position:absolute;
  539. align-self:center;
  540. padding:2px 2px 2px 3px;
  541. box-sizing:border-box;
  542. width:100%;
  543. }
  544. #u35488_text {
  545. border-width:0px;
  546. white-space:nowrap;
  547. text-transform:none;
  548. }
  549. #u35486_children {
  550. border-width:0px;
  551. position:absolute;
  552. left:0px;
  553. top:0px;
  554. width:0px;
  555. height:0px;
  556. }
  557. #u35489 {
  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. #u35490_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. #u35490 {
  586. border-width:0px;
  587. position:absolute;
  588. left:22px;
  589. top:0px;
  590. width:76px;
  591. height:20px;
  592. display:flex;
  593. }
  594. #u35490 .text {
  595. position:absolute;
  596. align-self:center;
  597. padding:2px 2px 2px 3px;
  598. box-sizing:border-box;
  599. width:100%;
  600. }
  601. #u35490_text {
  602. border-width:0px;
  603. white-space:nowrap;
  604. text-transform:none;
  605. }
  606. #u35491 {
  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. #u35492_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. #u35492 {
  635. border-width:0px;
  636. position:absolute;
  637. left:22px;
  638. top:0px;
  639. width:76px;
  640. height:20px;
  641. display:flex;
  642. }
  643. #u35492 .text {
  644. position:absolute;
  645. align-self:center;
  646. padding:2px 2px 2px 3px;
  647. box-sizing:border-box;
  648. width:100%;
  649. }
  650. #u35492_text {
  651. border-width:0px;
  652. white-space:nowrap;
  653. text-transform:none;
  654. }
  655. #u35493 {
  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. #u35494_img {
  669. border-width:0px;
  670. position:absolute;
  671. left:0px;
  672. top:0px;
  673. width:9px;
  674. height:9px;
  675. }
  676. #u35494 {
  677. border-width:0px;
  678. position:absolute;
  679. left:6px;
  680. top:6px;
  681. width:9px;
  682. height:9px;
  683. display:flex;
  684. }
  685. #u35494 .text {
  686. position:absolute;
  687. align-self:center;
  688. padding:2px 2px 2px 2px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u35494_img.selected {
  693. }
  694. #u35494.selected {
  695. }
  696. #u35494_text {
  697. border-width:0px;
  698. word-wrap:break-word;
  699. text-transform:none;
  700. visibility:hidden;
  701. }
  702. #u35495_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. #u35495 {
  718. border-width:0px;
  719. position:absolute;
  720. left:22px;
  721. top:0px;
  722. width:62px;
  723. height:20px;
  724. display:flex;
  725. }
  726. #u35495 .text {
  727. position:absolute;
  728. align-self:center;
  729. padding:2px 2px 2px 3px;
  730. box-sizing:border-box;
  731. width:100%;
  732. }
  733. #u35495_text {
  734. border-width:0px;
  735. white-space:nowrap;
  736. text-transform:none;
  737. }
  738. #u35493_children {
  739. border-width:0px;
  740. position:absolute;
  741. left:0px;
  742. top:0px;
  743. width:0px;
  744. height:0px;
  745. }
  746. #u35496 {
  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. #u35497_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. #u35497 {
  775. border-width:0px;
  776. position:absolute;
  777. left:22px;
  778. top:0px;
  779. width:76px;
  780. height:20px;
  781. display:flex;
  782. }
  783. #u35497 .text {
  784. position:absolute;
  785. align-self:center;
  786. padding:2px 2px 2px 3px;
  787. box-sizing:border-box;
  788. width:100%;
  789. }
  790. #u35497_text {
  791. border-width:0px;
  792. white-space:nowrap;
  793. text-transform:none;
  794. }
  795. #u35498 {
  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. #u35499_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. #u35499 {
  824. border-width:0px;
  825. position:absolute;
  826. left:22px;
  827. top:0px;
  828. width:76px;
  829. height:20px;
  830. display:flex;
  831. }
  832. #u35499 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 3px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u35499_text {
  840. border-width:0px;
  841. white-space:nowrap;
  842. text-transform:none;
  843. }
  844. #u35500 {
  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. #u35501_img {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:9px;
  863. height:9px;
  864. }
  865. #u35501 {
  866. border-width:0px;
  867. position:absolute;
  868. left:6px;
  869. top:6px;
  870. width:9px;
  871. height:9px;
  872. display:flex;
  873. }
  874. #u35501 .text {
  875. position:absolute;
  876. align-self:center;
  877. padding:2px 2px 2px 2px;
  878. box-sizing:border-box;
  879. width:100%;
  880. }
  881. #u35501_img.selected {
  882. }
  883. #u35501.selected {
  884. }
  885. #u35501_text {
  886. border-width:0px;
  887. word-wrap:break-word;
  888. text-transform:none;
  889. visibility:hidden;
  890. }
  891. #u35502_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. #u35502 {
  907. border-width:0px;
  908. position:absolute;
  909. left:22px;
  910. top:0px;
  911. width:62px;
  912. height:20px;
  913. display:flex;
  914. }
  915. #u35502 .text {
  916. position:absolute;
  917. align-self:center;
  918. padding:2px 2px 2px 3px;
  919. box-sizing:border-box;
  920. width:100%;
  921. }
  922. #u35502_text {
  923. border-width:0px;
  924. white-space:nowrap;
  925. text-transform:none;
  926. }
  927. #u35500_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. #u35503 {
  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. #u35504_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. #u35504 {
  965. border-width:0px;
  966. position:absolute;
  967. left:22px;
  968. top:0px;
  969. width:62px;
  970. height:20px;
  971. display:flex;
  972. }
  973. #u35504 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 3px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u35504_text {
  981. border-width:0px;
  982. white-space:nowrap;
  983. text-transform:none;
  984. }
  985. #u35505 {
  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. #u35506_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. #u35506 {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:22px;
  1017. top:0px;
  1018. width:62px;
  1019. height:20px;
  1020. display:flex;
  1021. }
  1022. #u35506 .text {
  1023. position:absolute;
  1024. align-self:center;
  1025. padding:2px 2px 2px 3px;
  1026. box-sizing:border-box;
  1027. width:100%;
  1028. }
  1029. #u35506_text {
  1030. border-width:0px;
  1031. white-space:nowrap;
  1032. text-transform:none;
  1033. }
  1034. #u35507 {
  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. #u35508_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. #u35508 {
  1063. border-width:0px;
  1064. position:absolute;
  1065. left:22px;
  1066. top:0px;
  1067. width:62px;
  1068. height:20px;
  1069. display:flex;
  1070. }
  1071. #u35508 .text {
  1072. position:absolute;
  1073. align-self:center;
  1074. padding:2px 2px 2px 3px;
  1075. box-sizing:border-box;
  1076. width:100%;
  1077. }
  1078. #u35508_text {
  1079. border-width:0px;
  1080. white-space:nowrap;
  1081. text-transform:none;
  1082. }
  1083. #u35509 {
  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. #u35510_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. #u35510 {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:22px;
  1115. top:0px;
  1116. width:62px;
  1117. height:20px;
  1118. display:flex;
  1119. }
  1120. #u35510 .text {
  1121. position:absolute;
  1122. align-self:center;
  1123. padding:2px 2px 2px 3px;
  1124. box-sizing:border-box;
  1125. width:100%;
  1126. }
  1127. #u35510_text {
  1128. border-width:0px;
  1129. white-space:nowrap;
  1130. text-transform:none;
  1131. }
  1132. #u35511 {
  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. #u35512_img {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:0px;
  1149. top:0px;
  1150. width:9px;
  1151. height:9px;
  1152. }
  1153. #u35512 {
  1154. border-width:0px;
  1155. position:absolute;
  1156. left:6px;
  1157. top:6px;
  1158. width:9px;
  1159. height:9px;
  1160. display:flex;
  1161. }
  1162. #u35512 .text {
  1163. position:absolute;
  1164. align-self:center;
  1165. padding:2px 2px 2px 2px;
  1166. box-sizing:border-box;
  1167. width:100%;
  1168. }
  1169. #u35512_img.selected {
  1170. }
  1171. #u35512.selected {
  1172. }
  1173. #u35512_text {
  1174. border-width:0px;
  1175. word-wrap:break-word;
  1176. text-transform:none;
  1177. visibility:hidden;
  1178. }
  1179. #u35513_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. #u35513 {
  1195. border-width:0px;
  1196. position:absolute;
  1197. left:22px;
  1198. top:0px;
  1199. width:76px;
  1200. height:20px;
  1201. display:flex;
  1202. }
  1203. #u35513 .text {
  1204. position:absolute;
  1205. align-self:center;
  1206. padding:2px 2px 2px 3px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u35513_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u35511_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. #u35514 {
  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. #u35515_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. #u35515 {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:22px;
  1256. top:0px;
  1257. width:76px;
  1258. height:20px;
  1259. display:flex;
  1260. }
  1261. #u35515 .text {
  1262. position:absolute;
  1263. align-self:center;
  1264. padding:2px 2px 2px 3px;
  1265. box-sizing:border-box;
  1266. width:100%;
  1267. }
  1268. #u35515_text {
  1269. border-width:0px;
  1270. white-space:nowrap;
  1271. text-transform:none;
  1272. }
  1273. #u35516 {
  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. #u35517_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. #u35517 {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:22px;
  1305. top:0px;
  1306. width:76px;
  1307. height:20px;
  1308. display:flex;
  1309. }
  1310. #u35517 .text {
  1311. position:absolute;
  1312. align-self:center;
  1313. padding:2px 2px 2px 3px;
  1314. box-sizing:border-box;
  1315. width:100%;
  1316. }
  1317. #u35517_text {
  1318. border-width:0px;
  1319. white-space:nowrap;
  1320. text-transform:none;
  1321. }
  1322. #u35518 {
  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. #u35519_img {
  1336. border-width:0px;
  1337. position:absolute;
  1338. left:0px;
  1339. top:0px;
  1340. width:9px;
  1341. height:9px;
  1342. }
  1343. #u35519 {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:6px;
  1347. top:6px;
  1348. width:9px;
  1349. height:9px;
  1350. display:flex;
  1351. }
  1352. #u35519 .text {
  1353. position:absolute;
  1354. align-self:center;
  1355. padding:2px 2px 2px 2px;
  1356. box-sizing:border-box;
  1357. width:100%;
  1358. }
  1359. #u35519_img.selected {
  1360. }
  1361. #u35519.selected {
  1362. }
  1363. #u35519_text {
  1364. border-width:0px;
  1365. word-wrap:break-word;
  1366. text-transform:none;
  1367. visibility:hidden;
  1368. }
  1369. #u35520_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. #u35520 {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:22px;
  1388. top:0px;
  1389. width:62px;
  1390. height:20px;
  1391. display:flex;
  1392. }
  1393. #u35520 .text {
  1394. position:absolute;
  1395. align-self:center;
  1396. padding:2px 2px 2px 3px;
  1397. box-sizing:border-box;
  1398. width:100%;
  1399. }
  1400. #u35520_text {
  1401. border-width:0px;
  1402. white-space:nowrap;
  1403. text-transform:none;
  1404. }
  1405. #u35518_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. #u35521 {
  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. #u35522_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. #u35522 {
  1443. border-width:0px;
  1444. position:absolute;
  1445. left:22px;
  1446. top:0px;
  1447. width:76px;
  1448. height:20px;
  1449. display:flex;
  1450. }
  1451. #u35522 .text {
  1452. position:absolute;
  1453. align-self:center;
  1454. padding:2px 2px 2px 3px;
  1455. box-sizing:border-box;
  1456. width:100%;
  1457. }
  1458. #u35522_text {
  1459. border-width:0px;
  1460. white-space:nowrap;
  1461. text-transform:none;
  1462. }
  1463. #u35523 {
  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. #u35524_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. #u35524 {
  1492. border-width:0px;
  1493. position:absolute;
  1494. left:22px;
  1495. top:0px;
  1496. width:62px;
  1497. height:20px;
  1498. display:flex;
  1499. }
  1500. #u35524 .text {
  1501. position:absolute;
  1502. align-self:center;
  1503. padding:2px 2px 2px 3px;
  1504. box-sizing:border-box;
  1505. width:100%;
  1506. }
  1507. #u35524_text {
  1508. border-width:0px;
  1509. white-space:nowrap;
  1510. text-transform:none;
  1511. }
  1512. #u35525 {
  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. #u35526_img {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:0px;
  1529. top:0px;
  1530. width:9px;
  1531. height:9px;
  1532. }
  1533. #u35526 {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:6px;
  1537. top:6px;
  1538. width:9px;
  1539. height:9px;
  1540. display:flex;
  1541. }
  1542. #u35526 .text {
  1543. position:absolute;
  1544. align-self:center;
  1545. padding:2px 2px 2px 2px;
  1546. box-sizing:border-box;
  1547. width:100%;
  1548. }
  1549. #u35526_img.selected {
  1550. }
  1551. #u35526.selected {
  1552. }
  1553. #u35526_text {
  1554. border-width:0px;
  1555. word-wrap:break-word;
  1556. text-transform:none;
  1557. visibility:hidden;
  1558. }
  1559. #u35527_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. #u35527 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:22px;
  1578. top:0px;
  1579. width:62px;
  1580. height:20px;
  1581. display:flex;
  1582. }
  1583. #u35527 .text {
  1584. position:absolute;
  1585. align-self:center;
  1586. padding:2px 2px 2px 3px;
  1587. box-sizing:border-box;
  1588. width:100%;
  1589. }
  1590. #u35527_text {
  1591. border-width:0px;
  1592. white-space:nowrap;
  1593. text-transform:none;
  1594. }
  1595. #u35525_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. #u35528 {
  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. #u35529_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. #u35529 {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:22px;
  1636. top:0px;
  1637. width:62px;
  1638. height:20px;
  1639. display:flex;
  1640. }
  1641. #u35529 .text {
  1642. position:absolute;
  1643. align-self:center;
  1644. padding:2px 2px 2px 3px;
  1645. box-sizing:border-box;
  1646. width:100%;
  1647. }
  1648. #u35529_text {
  1649. border-width:0px;
  1650. white-space:nowrap;
  1651. text-transform:none;
  1652. }
  1653. #u35530 {
  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. #u35531_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. #u35531 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:22px;
  1685. top:0px;
  1686. width:62px;
  1687. height:20px;
  1688. display:flex;
  1689. }
  1690. #u35531 .text {
  1691. position:absolute;
  1692. align-self:center;
  1693. padding:2px 2px 2px 3px;
  1694. box-sizing:border-box;
  1695. width:100%;
  1696. }
  1697. #u35531_text {
  1698. border-width:0px;
  1699. white-space:nowrap;
  1700. text-transform:none;
  1701. }
  1702. #u35532 {
  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. #u35533_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. #u35533 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:22px;
  1734. top:0px;
  1735. width:62px;
  1736. height:20px;
  1737. display:flex;
  1738. }
  1739. #u35533 .text {
  1740. position:absolute;
  1741. align-self:center;
  1742. padding:2px 2px 2px 3px;
  1743. box-sizing:border-box;
  1744. width:100%;
  1745. }
  1746. #u35533_text {
  1747. border-width:0px;
  1748. white-space:nowrap;
  1749. text-transform:none;
  1750. }
  1751. #u35534 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:0px;
  1757. height:0px;
  1758. }
  1759. #u35535_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. #u35535_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. #u35535_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. #u35535 {
  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. #u35535 .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. #u35535_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. #u35535.disabled {
  1850. }
  1851. .u35535_input_option {
  1852. font-size:14px;
  1853. }
  1854. #u35536_img {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:0px;
  1858. top:0px;
  1859. width:22px;
  1860. height:22px;
  1861. }
  1862. #u35536 {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:216px;
  1866. top:15px;
  1867. width:22px;
  1868. height:22px;
  1869. display:flex;
  1870. }
  1871. #u35536 .text {
  1872. position:absolute;
  1873. align-self:center;
  1874. padding:2px 2px 2px 2px;
  1875. box-sizing:border-box;
  1876. width:100%;
  1877. }
  1878. #u35536_text {
  1879. border-width:0px;
  1880. word-wrap:break-word;
  1881. text-transform:none;
  1882. visibility:hidden;
  1883. }
  1884. #u35537_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. #u35537 {
  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. #u35537 .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. #u35537_text {
  1926. border-width:0px;
  1927. white-space:nowrap;
  1928. text-transform:none;
  1929. }
  1930. #u35538_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. #u35538 {
  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. #u35538 .text {
  1965. position:absolute;
  1966. align-self:center;
  1967. padding:0px 0px 0px 0px;
  1968. box-sizing:border-box;
  1969. width:100%;
  1970. }
  1971. #u35538_text {
  1972. border-width:0px;
  1973. word-wrap:break-word;
  1974. text-transform:none;
  1975. }
  1976. #u35539_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. #u35539 {
  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. #u35539 .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. #u35539_text {
  2016. border-width:0px;
  2017. white-space:nowrap;
  2018. text-transform:none;
  2019. }
  2020. #u35540_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. #u35540 {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:208px;
  2039. top:80px;
  2040. width:1381px;
  2041. height:1154px;
  2042. display:flex;
  2043. }
  2044. #u35540 .text {
  2045. position:absolute;
  2046. align-self:center;
  2047. padding:2px 2px 2px 2px;
  2048. box-sizing:border-box;
  2049. width:100%;
  2050. }
  2051. #u35540_text {
  2052. border-width:0px;
  2053. word-wrap:break-word;
  2054. text-transform:none;
  2055. visibility:hidden;
  2056. }
  2057. #u35541_img {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:0px;
  2061. top:0px;
  2062. width:11px;
  2063. height:11px;
  2064. }
  2065. #u35541 {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:955px;
  2069. top:234px;
  2070. width:11px;
  2071. height:11px;
  2072. display:flex;
  2073. color:#FFFFFF;
  2074. }
  2075. #u35541 .text {
  2076. position:absolute;
  2077. align-self:center;
  2078. padding:2px 2px 2px 2px;
  2079. box-sizing:border-box;
  2080. width:100%;
  2081. }
  2082. #u35541_text {
  2083. border-width:0px;
  2084. word-wrap:break-word;
  2085. text-transform:none;
  2086. visibility:hidden;
  2087. }
  2088. #u35542_div {
  2089. border-width:0px;
  2090. position:absolute;
  2091. left:0px;
  2092. top:0px;
  2093. width:300px;
  2094. height:570px;
  2095. background:inherit;
  2096. background-color:rgba(242, 242, 242, 1);
  2097. border:none;
  2098. border-radius:4px;
  2099. -moz-box-shadow:none;
  2100. -webkit-box-shadow:none;
  2101. box-shadow:none;
  2102. }
  2103. #u35542 {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:227px;
  2107. top:235px;
  2108. width:300px;
  2109. height:570px;
  2110. display:flex;
  2111. }
  2112. #u35542 .text {
  2113. position:absolute;
  2114. align-self:center;
  2115. padding:2px 2px 2px 2px;
  2116. box-sizing:border-box;
  2117. width:100%;
  2118. }
  2119. #u35542_text {
  2120. border-width:0px;
  2121. word-wrap:break-word;
  2122. text-transform:none;
  2123. visibility:hidden;
  2124. }
  2125. #u35543_div {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:0px;
  2129. top:0px;
  2130. width:109px;
  2131. height:50px;
  2132. background:inherit;
  2133. background-color:rgba(255, 255, 255, 0);
  2134. border:none;
  2135. border-left:0px;
  2136. border-top:0px;
  2137. border-right:0px;
  2138. border-radius:0px;
  2139. border-bottom-right-radius:0px;
  2140. border-bottom-left-radius:0px;
  2141. -moz-box-shadow:none;
  2142. -webkit-box-shadow:none;
  2143. box-shadow:none;
  2144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2145. font-weight:400;
  2146. font-style:normal;
  2147. font-size:18px;
  2148. }
  2149. #u35543 {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:227px;
  2153. top:80px;
  2154. width:109px;
  2155. height:50px;
  2156. display:flex;
  2157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2158. font-weight:400;
  2159. font-style:normal;
  2160. font-size:18px;
  2161. }
  2162. #u35543 .text {
  2163. position:absolute;
  2164. align-self:center;
  2165. padding:0px 0px 0px 0px;
  2166. box-sizing:border-box;
  2167. width:100%;
  2168. }
  2169. #u35543_text {
  2170. border-width:0px;
  2171. white-space:nowrap;
  2172. text-transform:none;
  2173. }
  2174. #u35544_div {
  2175. border-width:0px;
  2176. position:absolute;
  2177. left:0px;
  2178. top:0px;
  2179. width:71px;
  2180. height:50px;
  2181. background:inherit;
  2182. background-color:rgba(255, 255, 255, 0);
  2183. border:none;
  2184. border-left:0px;
  2185. border-top:0px;
  2186. border-right:0px;
  2187. border-radius:0px;
  2188. border-bottom-right-radius:0px;
  2189. border-bottom-left-radius:0px;
  2190. -moz-box-shadow:none;
  2191. -webkit-box-shadow:none;
  2192. box-shadow:none;
  2193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2194. font-weight:400;
  2195. font-style:normal;
  2196. font-size:14px;
  2197. color:#000000;
  2198. line-height:40px;
  2199. }
  2200. #u35544 {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:227px;
  2204. top:150px;
  2205. width:71px;
  2206. height:50px;
  2207. display:flex;
  2208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2209. font-weight:400;
  2210. font-style:normal;
  2211. font-size:14px;
  2212. color:#000000;
  2213. line-height:40px;
  2214. }
  2215. #u35544 .text {
  2216. position:absolute;
  2217. align-self:center;
  2218. padding:0px 0px 0px 0px;
  2219. box-sizing:border-box;
  2220. width:100%;
  2221. }
  2222. #u35544_text {
  2223. border-width:0px;
  2224. white-space:nowrap;
  2225. text-transform:none;
  2226. }
  2227. #u35545_div {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:0px;
  2231. top:0px;
  2232. width:670px;
  2233. height:60px;
  2234. background:inherit;
  2235. background-color:rgba(255, 255, 255, 0);
  2236. border:none;
  2237. border-left:0px;
  2238. border-top:0px;
  2239. border-right:0px;
  2240. border-radius:0px;
  2241. border-bottom-right-radius:0px;
  2242. border-bottom-left-radius:0px;
  2243. -moz-box-shadow:none;
  2244. -webkit-box-shadow:none;
  2245. box-shadow:none;
  2246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2247. font-weight:400;
  2248. font-style:normal;
  2249. font-size:14px;
  2250. color:#000000;
  2251. line-height:30px;
  2252. }
  2253. #u35545 {
  2254. border-width:0px;
  2255. position:absolute;
  2256. left:298px;
  2257. top:160px;
  2258. width:670px;
  2259. height:60px;
  2260. display:flex;
  2261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2262. font-weight:400;
  2263. font-style:normal;
  2264. font-size:14px;
  2265. color:#000000;
  2266. line-height:30px;
  2267. }
  2268. #u35545 .text {
  2269. position:absolute;
  2270. align-self:center;
  2271. padding:0px 0px 0px 0px;
  2272. box-sizing:border-box;
  2273. width:100%;
  2274. }
  2275. #u35545_text {
  2276. border-width:0px;
  2277. white-space:nowrap;
  2278. text-transform:none;
  2279. }
  2280. #u35546_div {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:0px;
  2284. top:0px;
  2285. width:73px;
  2286. height:30px;
  2287. background:inherit;
  2288. background-color:rgba(255, 255, 255, 0);
  2289. border:none;
  2290. border-left:0px;
  2291. border-top:0px;
  2292. border-right:0px;
  2293. border-radius:0px;
  2294. border-bottom-right-radius:0px;
  2295. border-bottom-left-radius:0px;
  2296. -moz-box-shadow:none;
  2297. -webkit-box-shadow:none;
  2298. box-shadow:none;
  2299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2300. font-weight:400;
  2301. font-style:normal;
  2302. font-size:18px;
  2303. color:#000000;
  2304. line-height:30px;
  2305. }
  2306. #u35546 {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:245px;
  2310. top:255px;
  2311. width:73px;
  2312. height:30px;
  2313. display:flex;
  2314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2315. font-weight:400;
  2316. font-style:normal;
  2317. font-size:18px;
  2318. color:#000000;
  2319. line-height:30px;
  2320. }
  2321. #u35546 .text {
  2322. position:absolute;
  2323. align-self:center;
  2324. padding:0px 0px 0px 0px;
  2325. box-sizing:border-box;
  2326. width:100%;
  2327. }
  2328. #u35546_text {
  2329. border-width:0px;
  2330. white-space:nowrap;
  2331. text-transform:none;
  2332. }
  2333. #u35547_div {
  2334. border-width:0px;
  2335. position:absolute;
  2336. left:0px;
  2337. top:0px;
  2338. width:258px;
  2339. height:30px;
  2340. background:inherit;
  2341. background-color:rgba(255, 255, 255, 1);
  2342. box-sizing:border-box;
  2343. border-width:1px;
  2344. border-style:solid;
  2345. border-color:rgba(170, 170, 170, 1);
  2346. border-radius:4px;
  2347. -moz-box-shadow:none;
  2348. -webkit-box-shadow:none;
  2349. box-shadow:none;
  2350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2351. font-weight:400;
  2352. font-style:normal;
  2353. font-size:12px;
  2354. color:#555555;
  2355. }
  2356. #u35547 {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:245px;
  2360. top:305px;
  2361. width:258px;
  2362. height:30px;
  2363. display:flex;
  2364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2365. font-weight:400;
  2366. font-style:normal;
  2367. font-size:12px;
  2368. color:#555555;
  2369. }
  2370. #u35547 .text {
  2371. position:absolute;
  2372. align-self:center;
  2373. padding:5px 15px 5px 15px;
  2374. box-sizing:border-box;
  2375. width:100%;
  2376. }
  2377. #u35547_text {
  2378. border-width:0px;
  2379. word-wrap:break-word;
  2380. text-transform:none;
  2381. }
  2382. #u35548_div {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:0px;
  2386. top:0px;
  2387. width:258px;
  2388. height:30px;
  2389. background:inherit;
  2390. background-color:rgba(255, 255, 255, 1);
  2391. box-sizing:border-box;
  2392. border-width:1px;
  2393. border-style:solid;
  2394. border-color:rgba(170, 170, 170, 1);
  2395. border-radius:4px;
  2396. -moz-box-shadow:none;
  2397. -webkit-box-shadow:none;
  2398. box-shadow:none;
  2399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2400. font-weight:400;
  2401. font-style:normal;
  2402. font-size:12px;
  2403. color:#555555;
  2404. }
  2405. #u35548 {
  2406. border-width:0px;
  2407. position:absolute;
  2408. left:245px;
  2409. top:505px;
  2410. width:258px;
  2411. height:30px;
  2412. display:flex;
  2413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2414. font-weight:400;
  2415. font-style:normal;
  2416. font-size:12px;
  2417. color:#555555;
  2418. }
  2419. #u35548 .text {
  2420. position:absolute;
  2421. align-self:center;
  2422. padding:5px 15px 5px 15px;
  2423. box-sizing:border-box;
  2424. width:100%;
  2425. }
  2426. #u35548_text {
  2427. border-width:0px;
  2428. word-wrap:break-word;
  2429. text-transform:none;
  2430. }
  2431. #u35549_div {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:0px;
  2435. top:0px;
  2436. width:258px;
  2437. height:30px;
  2438. background:inherit;
  2439. background-color:rgba(255, 255, 255, 1);
  2440. box-sizing:border-box;
  2441. border-width:1px;
  2442. border-style:solid;
  2443. border-color:rgba(170, 170, 170, 1);
  2444. border-radius:4px;
  2445. -moz-box-shadow:none;
  2446. -webkit-box-shadow:none;
  2447. box-shadow:none;
  2448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2449. font-weight:400;
  2450. font-style:normal;
  2451. font-size:12px;
  2452. color:#555555;
  2453. }
  2454. #u35549 {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:245px;
  2458. top:355px;
  2459. width:258px;
  2460. height:30px;
  2461. display:flex;
  2462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2463. font-weight:400;
  2464. font-style:normal;
  2465. font-size:12px;
  2466. color:#555555;
  2467. }
  2468. #u35549 .text {
  2469. position:absolute;
  2470. align-self:center;
  2471. padding:5px 15px 5px 15px;
  2472. box-sizing:border-box;
  2473. width:100%;
  2474. }
  2475. #u35549_text {
  2476. border-width:0px;
  2477. word-wrap:break-word;
  2478. text-transform:none;
  2479. }
  2480. #u35550_div {
  2481. border-width:0px;
  2482. position:absolute;
  2483. left:0px;
  2484. top:0px;
  2485. width:258px;
  2486. height:30px;
  2487. background:inherit;
  2488. background-color:rgba(255, 255, 255, 1);
  2489. box-sizing:border-box;
  2490. border-width:1px;
  2491. border-style:solid;
  2492. border-color:rgba(170, 170, 170, 1);
  2493. border-radius:4px;
  2494. -moz-box-shadow:none;
  2495. -webkit-box-shadow:none;
  2496. box-shadow:none;
  2497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2498. font-weight:400;
  2499. font-style:normal;
  2500. font-size:12px;
  2501. color:#555555;
  2502. }
  2503. #u35550 {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:245px;
  2507. top:405px;
  2508. width:258px;
  2509. height:30px;
  2510. display:flex;
  2511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2512. font-weight:400;
  2513. font-style:normal;
  2514. font-size:12px;
  2515. color:#555555;
  2516. }
  2517. #u35550 .text {
  2518. position:absolute;
  2519. align-self:center;
  2520. padding:5px 15px 5px 15px;
  2521. box-sizing:border-box;
  2522. width:100%;
  2523. }
  2524. #u35550_text {
  2525. border-width:0px;
  2526. word-wrap:break-word;
  2527. text-transform:none;
  2528. }
  2529. #u35551_div {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:0px;
  2533. top:0px;
  2534. width:258px;
  2535. height:30px;
  2536. background:inherit;
  2537. background-color:rgba(255, 255, 255, 1);
  2538. box-sizing:border-box;
  2539. border-width:1px;
  2540. border-style:solid;
  2541. border-color:rgba(170, 170, 170, 1);
  2542. border-radius:4px;
  2543. -moz-box-shadow:none;
  2544. -webkit-box-shadow:none;
  2545. box-shadow:none;
  2546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2547. font-weight:400;
  2548. font-style:normal;
  2549. font-size:12px;
  2550. color:#555555;
  2551. }
  2552. #u35551 {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:245px;
  2556. top:555px;
  2557. width:258px;
  2558. height:30px;
  2559. display:flex;
  2560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2561. font-weight:400;
  2562. font-style:normal;
  2563. font-size:12px;
  2564. color:#555555;
  2565. }
  2566. #u35551 .text {
  2567. position:absolute;
  2568. align-self:center;
  2569. padding:5px 15px 5px 15px;
  2570. box-sizing:border-box;
  2571. width:100%;
  2572. }
  2573. #u35551_text {
  2574. border-width:0px;
  2575. word-wrap:break-word;
  2576. text-transform:none;
  2577. }
  2578. #u35552_div {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:0px;
  2582. top:0px;
  2583. width:258px;
  2584. height:30px;
  2585. background:inherit;
  2586. background-color:rgba(255, 255, 255, 1);
  2587. box-sizing:border-box;
  2588. border-width:1px;
  2589. border-style:solid;
  2590. border-color:rgba(170, 170, 170, 1);
  2591. border-radius:4px;
  2592. -moz-box-shadow:none;
  2593. -webkit-box-shadow:none;
  2594. box-shadow:none;
  2595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2596. font-weight:400;
  2597. font-style:normal;
  2598. font-size:12px;
  2599. color:#555555;
  2600. }
  2601. #u35552 {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:245px;
  2605. top:605px;
  2606. width:258px;
  2607. height:30px;
  2608. display:flex;
  2609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2610. font-weight:400;
  2611. font-style:normal;
  2612. font-size:12px;
  2613. color:#555555;
  2614. }
  2615. #u35552 .text {
  2616. position:absolute;
  2617. align-self:center;
  2618. padding:5px 15px 5px 15px;
  2619. box-sizing:border-box;
  2620. width:100%;
  2621. }
  2622. #u35552_text {
  2623. border-width:0px;
  2624. word-wrap:break-word;
  2625. text-transform:none;
  2626. }
  2627. #u35553_div {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:0px;
  2631. top:0px;
  2632. width:258px;
  2633. height:30px;
  2634. background:inherit;
  2635. background-color:rgba(255, 255, 255, 1);
  2636. box-sizing:border-box;
  2637. border-width:1px;
  2638. border-style:solid;
  2639. border-color:rgba(170, 170, 170, 1);
  2640. border-radius:4px;
  2641. -moz-box-shadow:none;
  2642. -webkit-box-shadow:none;
  2643. box-shadow:none;
  2644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2645. font-weight:400;
  2646. font-style:normal;
  2647. font-size:12px;
  2648. color:#555555;
  2649. }
  2650. #u35553 {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:245px;
  2654. top:455px;
  2655. width:258px;
  2656. height:30px;
  2657. display:flex;
  2658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2659. font-weight:400;
  2660. font-style:normal;
  2661. font-size:12px;
  2662. color:#555555;
  2663. }
  2664. #u35553 .text {
  2665. position:absolute;
  2666. align-self:center;
  2667. padding:5px 15px 5px 15px;
  2668. box-sizing:border-box;
  2669. width:100%;
  2670. }
  2671. #u35553_text {
  2672. border-width:0px;
  2673. word-wrap:break-word;
  2674. text-transform:none;
  2675. }
  2676. #u35554_div {
  2677. border-width:0px;
  2678. position:absolute;
  2679. left:0px;
  2680. top:0px;
  2681. width:258px;
  2682. height:30px;
  2683. background:inherit;
  2684. background-color:rgba(255, 255, 255, 1);
  2685. box-sizing:border-box;
  2686. border-width:1px;
  2687. border-style:solid;
  2688. border-color:rgba(170, 170, 170, 1);
  2689. border-radius:4px;
  2690. -moz-box-shadow:none;
  2691. -webkit-box-shadow:none;
  2692. box-shadow:none;
  2693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2694. font-weight:400;
  2695. font-style:normal;
  2696. font-size:12px;
  2697. color:#555555;
  2698. }
  2699. #u35554 {
  2700. border-width:0px;
  2701. position:absolute;
  2702. left:246px;
  2703. top:655px;
  2704. width:258px;
  2705. height:30px;
  2706. display:flex;
  2707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2708. font-weight:400;
  2709. font-style:normal;
  2710. font-size:12px;
  2711. color:#555555;
  2712. }
  2713. #u35554 .text {
  2714. position:absolute;
  2715. align-self:center;
  2716. padding:5px 15px 5px 15px;
  2717. box-sizing:border-box;
  2718. width:100%;
  2719. }
  2720. #u35554_text {
  2721. border-width:0px;
  2722. word-wrap:break-word;
  2723. text-transform:none;
  2724. }
  2725. #u35555_div {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:0px;
  2729. top:0px;
  2730. width:964px;
  2731. height:570px;
  2732. background:inherit;
  2733. background-color:rgba(242, 242, 242, 1);
  2734. border:none;
  2735. border-radius:4px;
  2736. -moz-box-shadow:none;
  2737. -webkit-box-shadow:none;
  2738. box-shadow:none;
  2739. }
  2740. #u35555 {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:599px;
  2744. top:235px;
  2745. width:964px;
  2746. height:570px;
  2747. display:flex;
  2748. }
  2749. #u35555 .text {
  2750. position:absolute;
  2751. align-self:center;
  2752. padding:2px 2px 2px 2px;
  2753. box-sizing:border-box;
  2754. width:100%;
  2755. }
  2756. #u35555_text {
  2757. border-width:0px;
  2758. word-wrap:break-word;
  2759. text-transform:none;
  2760. visibility:hidden;
  2761. }
  2762. #u35556_div {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:0px;
  2766. top:0px;
  2767. width:73px;
  2768. height:30px;
  2769. background:inherit;
  2770. background-color:rgba(255, 255, 255, 0);
  2771. border:none;
  2772. border-left:0px;
  2773. border-top:0px;
  2774. border-right:0px;
  2775. border-radius:0px;
  2776. border-bottom-right-radius:0px;
  2777. border-bottom-left-radius:0px;
  2778. -moz-box-shadow:none;
  2779. -webkit-box-shadow:none;
  2780. box-shadow:none;
  2781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2782. font-weight:400;
  2783. font-style:normal;
  2784. font-size:18px;
  2785. color:#000000;
  2786. line-height:30px;
  2787. }
  2788. #u35556 {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:617px;
  2792. top:255px;
  2793. width:73px;
  2794. height:30px;
  2795. display:flex;
  2796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2797. font-weight:400;
  2798. font-style:normal;
  2799. font-size:18px;
  2800. color:#000000;
  2801. line-height:30px;
  2802. }
  2803. #u35556 .text {
  2804. position:absolute;
  2805. align-self:center;
  2806. padding:0px 0px 0px 0px;
  2807. box-sizing:border-box;
  2808. width:100%;
  2809. }
  2810. #u35556_text {
  2811. border-width:0px;
  2812. white-space:nowrap;
  2813. text-transform:none;
  2814. }
  2815. #u35557 {
  2816. border-width:0px;
  2817. position:absolute;
  2818. left:617px;
  2819. top:304px;
  2820. width:900px;
  2821. height:30px;
  2822. }
  2823. #u35558_img {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:0px;
  2827. top:0px;
  2828. width:300px;
  2829. height:30px;
  2830. }
  2831. #u35558 {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:0px;
  2835. top:0px;
  2836. width:300px;
  2837. height:30px;
  2838. display:flex;
  2839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2840. font-weight:400;
  2841. font-style:normal;
  2842. color:#FFFFFF;
  2843. }
  2844. #u35558 .text {
  2845. position:absolute;
  2846. align-self:center;
  2847. padding:2px 2px 2px 2px;
  2848. box-sizing:border-box;
  2849. width:100%;
  2850. }
  2851. #u35558_text {
  2852. border-width:0px;
  2853. word-wrap:break-word;
  2854. text-transform:none;
  2855. }
  2856. #u35559_img {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:0px;
  2860. top:0px;
  2861. width:600px;
  2862. height:30px;
  2863. }
  2864. #u35559 {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:300px;
  2868. top:0px;
  2869. width:600px;
  2870. height:30px;
  2871. display:flex;
  2872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2873. font-weight:400;
  2874. font-style:normal;
  2875. color:#FFFFFF;
  2876. }
  2877. #u35559 .text {
  2878. position:absolute;
  2879. align-self:center;
  2880. padding:2px 2px 2px 2px;
  2881. box-sizing:border-box;
  2882. width:100%;
  2883. }
  2884. #u35559_text {
  2885. border-width:0px;
  2886. word-wrap:break-word;
  2887. text-transform:none;
  2888. }
  2889. #u35560_div {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:0px;
  2893. top:0px;
  2894. width:260px;
  2895. height:50px;
  2896. background:inherit;
  2897. background-color:rgba(255, 255, 255, 0);
  2898. box-sizing:border-box;
  2899. border-width:1px;
  2900. border-style:solid;
  2901. border-color:rgba(215, 215, 215, 1);
  2902. border-radius:6px;
  2903. -moz-box-shadow:none;
  2904. -webkit-box-shadow:none;
  2905. box-shadow:none;
  2906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2907. font-weight:400;
  2908. font-style:normal;
  2909. font-size:14px;
  2910. color:#000000;
  2911. line-height:30px;
  2912. }
  2913. #u35560 {
  2914. border-width:0px;
  2915. position:absolute;
  2916. left:633px;
  2917. top:345px;
  2918. width:260px;
  2919. height:50px;
  2920. display:flex;
  2921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2922. font-weight:400;
  2923. font-style:normal;
  2924. font-size:14px;
  2925. color:#000000;
  2926. line-height:30px;
  2927. }
  2928. #u35560 .text {
  2929. position:absolute;
  2930. align-self:center;
  2931. padding:0px 0px 0px 40px;
  2932. box-sizing:border-box;
  2933. width:100%;
  2934. }
  2935. #u35560_text {
  2936. border-width:0px;
  2937. word-wrap:break-word;
  2938. text-transform:none;
  2939. }
  2940. #u35561 {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:0px;
  2944. top:0px;
  2945. width:0px;
  2946. height:0px;
  2947. }
  2948. #u35562_div {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:0px;
  2952. top:0px;
  2953. width:260px;
  2954. height:50px;
  2955. background:inherit;
  2956. background-color:rgba(255, 255, 255, 0);
  2957. border:none;
  2958. border-left:0px;
  2959. border-top:0px;
  2960. border-right:0px;
  2961. border-radius:0px;
  2962. border-bottom-right-radius:0px;
  2963. border-bottom-left-radius:0px;
  2964. -moz-box-shadow:none;
  2965. -webkit-box-shadow:none;
  2966. box-shadow:none;
  2967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2968. font-weight:400;
  2969. font-style:normal;
  2970. font-size:14px;
  2971. color:#000000;
  2972. line-height:30px;
  2973. }
  2974. #u35562 {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:633px;
  2978. top:405px;
  2979. width:260px;
  2980. height:50px;
  2981. display:flex;
  2982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2983. font-weight:400;
  2984. font-style:normal;
  2985. font-size:14px;
  2986. color:#000000;
  2987. line-height:30px;
  2988. }
  2989. #u35562 .text {
  2990. position:absolute;
  2991. align-self:center;
  2992. padding:0px 0px 0px 40px;
  2993. box-sizing:border-box;
  2994. width:100%;
  2995. }
  2996. #u35562_text {
  2997. border-width:0px;
  2998. word-wrap:break-word;
  2999. text-transform:none;
  3000. }
  3001. #u35563_img {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:0px;
  3005. top:0px;
  3006. width:9px;
  3007. height:9px;
  3008. }
  3009. #u35563 {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:723px;
  3013. top:425px;
  3014. width:9px;
  3015. height:9px;
  3016. display:flex;
  3017. }
  3018. #u35563 .text {
  3019. position:absolute;
  3020. align-self:center;
  3021. padding:2px 2px 2px 2px;
  3022. box-sizing:border-box;
  3023. width:100%;
  3024. }
  3025. #u35563_text {
  3026. border-width:0px;
  3027. word-wrap:break-word;
  3028. text-transform:none;
  3029. visibility:hidden;
  3030. }
  3031. #u35564 {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:0px;
  3035. top:0px;
  3036. width:0px;
  3037. height:0px;
  3038. }
  3039. #u35565_div {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:0px;
  3043. top:0px;
  3044. width:140px;
  3045. height:40px;
  3046. background:inherit;
  3047. background-color:rgba(255, 255, 255, 1);
  3048. box-sizing:border-box;
  3049. border-width:1px;
  3050. border-style:solid;
  3051. border-color:rgba(215, 215, 215, 1);
  3052. border-radius:4px;
  3053. -moz-box-shadow:none;
  3054. -webkit-box-shadow:none;
  3055. box-shadow:none;
  3056. font-size:11px;
  3057. }
  3058. #u35565 {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:941px;
  3062. top:350px;
  3063. width:140px;
  3064. height:40px;
  3065. display:flex;
  3066. font-size:11px;
  3067. }
  3068. #u35565 .text {
  3069. position:absolute;
  3070. align-self:center;
  3071. padding:2px 2px 2px 2px;
  3072. box-sizing:border-box;
  3073. width:100%;
  3074. }
  3075. #u35565_text {
  3076. border-width:0px;
  3077. word-wrap:break-word;
  3078. text-transform:none;
  3079. visibility:hidden;
  3080. }
  3081. #u35566_input {
  3082. position:absolute;
  3083. left:0px;
  3084. top:0px;
  3085. width:133px;
  3086. height:31px;
  3087. padding:2px 2px 2px 2px;
  3088. font-family:'ArialMT', 'Arial', sans-serif;
  3089. font-weight:400;
  3090. font-style:normal;
  3091. font-size:11px;
  3092. letter-spacing:normal;
  3093. color:#AAAAAA;
  3094. vertical-align:none;
  3095. text-align:left;
  3096. text-transform:none;
  3097. background-color:transparent;
  3098. border-color:transparent;
  3099. }
  3100. #u35566_input.disabled {
  3101. position:absolute;
  3102. left:0px;
  3103. top:0px;
  3104. width:133px;
  3105. height:31px;
  3106. padding:2px 2px 2px 2px;
  3107. font-family:'ArialMT', 'Arial', sans-serif;
  3108. font-weight:400;
  3109. font-style:normal;
  3110. font-size:11px;
  3111. letter-spacing:normal;
  3112. color:#AAAAAA;
  3113. vertical-align:none;
  3114. text-align:left;
  3115. text-transform:none;
  3116. background-color:transparent;
  3117. border-color:transparent;
  3118. }
  3119. #u35566_div {
  3120. border-width:0px;
  3121. position:absolute;
  3122. left:0px;
  3123. top:0px;
  3124. width:133px;
  3125. height:31px;
  3126. background:inherit;
  3127. background-color:rgba(255, 255, 255, 1);
  3128. border:none;
  3129. border-radius:0px;
  3130. -moz-box-shadow:none;
  3131. -webkit-box-shadow:none;
  3132. box-shadow:none;
  3133. font-size:11px;
  3134. color:#AAAAAA;
  3135. }
  3136. #u35566 {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:945px;
  3140. top:353px;
  3141. width:133px;
  3142. height:31px;
  3143. display:flex;
  3144. font-size:11px;
  3145. color:#AAAAAA;
  3146. }
  3147. #u35566 .text {
  3148. position:absolute;
  3149. align-self:flex-start;
  3150. padding:2px 2px 2px 2px;
  3151. box-sizing:border-box;
  3152. width:100%;
  3153. }
  3154. #u35566_div.disabled {
  3155. border-width:0px;
  3156. position:absolute;
  3157. left:0px;
  3158. top:0px;
  3159. width:133px;
  3160. height:31px;
  3161. background:inherit;
  3162. background-color:rgba(240, 240, 240, 1);
  3163. border:none;
  3164. border-radius:0px;
  3165. -moz-box-shadow:none;
  3166. -webkit-box-shadow:none;
  3167. box-shadow:none;
  3168. font-size:11px;
  3169. color:#AAAAAA;
  3170. }
  3171. #u35566.disabled {
  3172. }
  3173. .u35566_input_option {
  3174. font-size:11px;
  3175. }
  3176. #u35567 {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:0px;
  3180. top:0px;
  3181. width:0px;
  3182. height:0px;
  3183. }
  3184. #u35568_div {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:0px;
  3188. top:0px;
  3189. width:140px;
  3190. height:40px;
  3191. background:inherit;
  3192. background-color:rgba(255, 255, 255, 1);
  3193. box-sizing:border-box;
  3194. border-width:1px;
  3195. border-style:solid;
  3196. border-color:rgba(215, 215, 215, 1);
  3197. border-radius:4px;
  3198. -moz-box-shadow:none;
  3199. -webkit-box-shadow:none;
  3200. box-shadow:none;
  3201. font-size:11px;
  3202. }
  3203. #u35568 {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:941px;
  3207. top:405px;
  3208. width:140px;
  3209. height:40px;
  3210. display:flex;
  3211. font-size:11px;
  3212. }
  3213. #u35568 .text {
  3214. position:absolute;
  3215. align-self:center;
  3216. padding:2px 2px 2px 2px;
  3217. box-sizing:border-box;
  3218. width:100%;
  3219. }
  3220. #u35568_text {
  3221. border-width:0px;
  3222. word-wrap:break-word;
  3223. text-transform:none;
  3224. visibility:hidden;
  3225. }
  3226. #u35569_input {
  3227. position:absolute;
  3228. left:0px;
  3229. top:0px;
  3230. width:133px;
  3231. height:31px;
  3232. padding:2px 2px 2px 2px;
  3233. font-family:'ArialMT', 'Arial', sans-serif;
  3234. font-weight:400;
  3235. font-style:normal;
  3236. font-size:11px;
  3237. letter-spacing:normal;
  3238. color:#AAAAAA;
  3239. vertical-align:none;
  3240. text-align:left;
  3241. text-transform:none;
  3242. background-color:transparent;
  3243. border-color:transparent;
  3244. }
  3245. #u35569_input.disabled {
  3246. position:absolute;
  3247. left:0px;
  3248. top:0px;
  3249. width:133px;
  3250. height:31px;
  3251. padding:2px 2px 2px 2px;
  3252. font-family:'ArialMT', 'Arial', sans-serif;
  3253. font-weight:400;
  3254. font-style:normal;
  3255. font-size:11px;
  3256. letter-spacing:normal;
  3257. color:#AAAAAA;
  3258. vertical-align:none;
  3259. text-align:left;
  3260. text-transform:none;
  3261. background-color:transparent;
  3262. border-color:transparent;
  3263. }
  3264. #u35569_div {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:0px;
  3268. top:0px;
  3269. width:133px;
  3270. height:31px;
  3271. background:inherit;
  3272. background-color:rgba(255, 255, 255, 1);
  3273. border:none;
  3274. border-radius:0px;
  3275. -moz-box-shadow:none;
  3276. -webkit-box-shadow:none;
  3277. box-shadow:none;
  3278. font-size:11px;
  3279. color:#AAAAAA;
  3280. }
  3281. #u35569 {
  3282. border-width:0px;
  3283. position:absolute;
  3284. left:945px;
  3285. top:408px;
  3286. width:133px;
  3287. height:31px;
  3288. display:flex;
  3289. font-size:11px;
  3290. color:#AAAAAA;
  3291. }
  3292. #u35569 .text {
  3293. position:absolute;
  3294. align-self:flex-start;
  3295. padding:2px 2px 2px 2px;
  3296. box-sizing:border-box;
  3297. width:100%;
  3298. }
  3299. #u35569_div.disabled {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:0px;
  3303. top:0px;
  3304. width:133px;
  3305. height:31px;
  3306. background:inherit;
  3307. background-color:rgba(240, 240, 240, 1);
  3308. border:none;
  3309. border-radius:0px;
  3310. -moz-box-shadow:none;
  3311. -webkit-box-shadow:none;
  3312. box-shadow:none;
  3313. font-size:11px;
  3314. color:#AAAAAA;
  3315. }
  3316. #u35569.disabled {
  3317. }
  3318. .u35569_input_option {
  3319. font-size:11px;
  3320. }
  3321. #u35570 {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:0px;
  3325. top:0px;
  3326. width:0px;
  3327. height:0px;
  3328. }
  3329. #u35571_div {
  3330. border-width:0px;
  3331. position:absolute;
  3332. left:0px;
  3333. top:0px;
  3334. width:140px;
  3335. height:40px;
  3336. background:inherit;
  3337. background-color:rgba(255, 255, 255, 1);
  3338. box-sizing:border-box;
  3339. border-width:1px;
  3340. border-style:solid;
  3341. border-color:rgba(215, 215, 215, 1);
  3342. border-radius:4px;
  3343. -moz-box-shadow:none;
  3344. -webkit-box-shadow:none;
  3345. box-shadow:none;
  3346. font-size:11px;
  3347. }
  3348. #u35571 {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:1101px;
  3352. top:405px;
  3353. width:140px;
  3354. height:40px;
  3355. display:flex;
  3356. font-size:11px;
  3357. }
  3358. #u35571 .text {
  3359. position:absolute;
  3360. align-self:center;
  3361. padding:2px 2px 2px 2px;
  3362. box-sizing:border-box;
  3363. width:100%;
  3364. }
  3365. #u35571_text {
  3366. border-width:0px;
  3367. word-wrap:break-word;
  3368. text-transform:none;
  3369. visibility:hidden;
  3370. }
  3371. #u35572_input {
  3372. position:absolute;
  3373. left:0px;
  3374. top:0px;
  3375. width:133px;
  3376. height:31px;
  3377. padding:2px 2px 2px 2px;
  3378. font-family:'ArialMT', 'Arial', sans-serif;
  3379. font-weight:400;
  3380. font-style:normal;
  3381. font-size:11px;
  3382. letter-spacing:normal;
  3383. color:#AAAAAA;
  3384. vertical-align:none;
  3385. text-align:left;
  3386. text-transform:none;
  3387. background-color:transparent;
  3388. border-color:transparent;
  3389. }
  3390. #u35572_input.disabled {
  3391. position:absolute;
  3392. left:0px;
  3393. top:0px;
  3394. width:133px;
  3395. height:31px;
  3396. padding:2px 2px 2px 2px;
  3397. font-family:'ArialMT', 'Arial', sans-serif;
  3398. font-weight:400;
  3399. font-style:normal;
  3400. font-size:11px;
  3401. letter-spacing:normal;
  3402. color:#AAAAAA;
  3403. vertical-align:none;
  3404. text-align:left;
  3405. text-transform:none;
  3406. background-color:transparent;
  3407. border-color:transparent;
  3408. }
  3409. #u35572_div {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:0px;
  3413. top:0px;
  3414. width:133px;
  3415. height:31px;
  3416. background:inherit;
  3417. background-color:rgba(255, 255, 255, 1);
  3418. border:none;
  3419. border-radius:0px;
  3420. -moz-box-shadow:none;
  3421. -webkit-box-shadow:none;
  3422. box-shadow:none;
  3423. font-size:11px;
  3424. color:#AAAAAA;
  3425. }
  3426. #u35572 {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:1105px;
  3430. top:408px;
  3431. width:133px;
  3432. height:31px;
  3433. display:flex;
  3434. font-size:11px;
  3435. color:#AAAAAA;
  3436. }
  3437. #u35572 .text {
  3438. position:absolute;
  3439. align-self:flex-start;
  3440. padding:2px 2px 2px 2px;
  3441. box-sizing:border-box;
  3442. width:100%;
  3443. }
  3444. #u35572_div.disabled {
  3445. border-width:0px;
  3446. position:absolute;
  3447. left:0px;
  3448. top:0px;
  3449. width:133px;
  3450. height:31px;
  3451. background:inherit;
  3452. background-color:rgba(240, 240, 240, 1);
  3453. border:none;
  3454. border-radius:0px;
  3455. -moz-box-shadow:none;
  3456. -webkit-box-shadow:none;
  3457. box-shadow:none;
  3458. font-size:11px;
  3459. color:#AAAAAA;
  3460. }
  3461. #u35572.disabled {
  3462. }
  3463. .u35572_input_option {
  3464. font-size:11px;
  3465. }
  3466. #u35573 {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:0px;
  3470. top:0px;
  3471. width:0px;
  3472. height:0px;
  3473. }
  3474. #u35574_div {
  3475. border-width:0px;
  3476. position:absolute;
  3477. left:0px;
  3478. top:0px;
  3479. width:1340px;
  3480. height:60px;
  3481. background:inherit;
  3482. background-color:rgba(255, 255, 255, 1);
  3483. box-sizing:border-box;
  3484. border-width:1px;
  3485. border-style:solid;
  3486. border-color:rgba(215, 215, 215, 1);
  3487. border-radius:0px;
  3488. -moz-box-shadow:none;
  3489. -webkit-box-shadow:none;
  3490. box-shadow:none;
  3491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3492. font-weight:400;
  3493. font-style:normal;
  3494. font-size:14px;
  3495. color:#AAAAAA;
  3496. text-align:center;
  3497. line-height:30px;
  3498. }
  3499. #u35574 {
  3500. border-width:0px;
  3501. position:absolute;
  3502. left:227px;
  3503. top:1137px;
  3504. width:1340px;
  3505. height:60px;
  3506. display:flex;
  3507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3508. font-weight:400;
  3509. font-style:normal;
  3510. font-size:14px;
  3511. color:#AAAAAA;
  3512. text-align:center;
  3513. line-height:30px;
  3514. }
  3515. #u35574 .text {
  3516. position:absolute;
  3517. align-self:center;
  3518. padding:5px 10px 5px 10px;
  3519. box-sizing:border-box;
  3520. width:100%;
  3521. }
  3522. #u35574_text {
  3523. border-width:0px;
  3524. word-wrap:break-word;
  3525. text-transform:none;
  3526. visibility:hidden;
  3527. }
  3528. #u35575_div {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:0px;
  3532. top:0px;
  3533. width:60px;
  3534. height:30px;
  3535. background:inherit;
  3536. background-color:rgba(24, 144, 255, 1);
  3537. border:none;
  3538. border-radius:4px;
  3539. -moz-box-shadow:none;
  3540. -webkit-box-shadow:none;
  3541. box-shadow:none;
  3542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3543. font-weight:400;
  3544. font-style:normal;
  3545. font-size:14px;
  3546. color:#FFFFFF;
  3547. }
  3548. #u35575 {
  3549. border-width:0px;
  3550. position:absolute;
  3551. left:1487px;
  3552. top:1152px;
  3553. width:60px;
  3554. height:30px;
  3555. display:flex;
  3556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3557. font-weight:400;
  3558. font-style:normal;
  3559. font-size:14px;
  3560. color:#FFFFFF;
  3561. }
  3562. #u35575 .text {
  3563. position:absolute;
  3564. align-self:center;
  3565. padding:2px 2px 2px 2px;
  3566. box-sizing:border-box;
  3567. width:100%;
  3568. }
  3569. #u35575_text {
  3570. border-width:0px;
  3571. word-wrap:break-word;
  3572. text-transform:none;
  3573. }
  3574. #u35576_div {
  3575. border-width:0px;
  3576. position:absolute;
  3577. left:0px;
  3578. top:0px;
  3579. width:248px;
  3580. height:50px;
  3581. background:inherit;
  3582. background-color:rgba(255, 255, 255, 0);
  3583. border:none;
  3584. border-left:0px;
  3585. border-top:0px;
  3586. border-right:0px;
  3587. border-radius:0px;
  3588. border-bottom-right-radius:0px;
  3589. border-bottom-left-radius:0px;
  3590. -moz-box-shadow:none;
  3591. -webkit-box-shadow:none;
  3592. box-shadow:none;
  3593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3594. font-weight:400;
  3595. font-style:normal;
  3596. font-size:14px;
  3597. line-height:40px;
  3598. }
  3599. #u35576 {
  3600. border-width:0px;
  3601. position:absolute;
  3602. left:247px;
  3603. top:1142px;
  3604. width:248px;
  3605. height:50px;
  3606. display:flex;
  3607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3608. font-weight:400;
  3609. font-style:normal;
  3610. font-size:14px;
  3611. line-height:40px;
  3612. }
  3613. #u35576 .text {
  3614. position:absolute;
  3615. align-self:center;
  3616. padding:0px 0px 0px 0px;
  3617. box-sizing:border-box;
  3618. width:100%;
  3619. }
  3620. #u35576_text {
  3621. border-width:0px;
  3622. white-space:nowrap;
  3623. text-transform:none;
  3624. }
  3625. #u35577 {
  3626. border-width:0px;
  3627. position:absolute;
  3628. left:0px;
  3629. top:0px;
  3630. width:0px;
  3631. height:0px;
  3632. }
  3633. #u35578_div {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:0px;
  3637. top:0px;
  3638. width:455px;
  3639. height:160px;
  3640. background:inherit;
  3641. background-color:rgba(255, 255, 255, 1);
  3642. box-sizing:border-box;
  3643. border-width:1px;
  3644. border-style:solid;
  3645. border-color:rgba(204, 204, 204, 1);
  3646. border-radius:0px;
  3647. -moz-box-shadow:none;
  3648. -webkit-box-shadow:none;
  3649. box-shadow:none;
  3650. font-family:'Microsoft YaHei', sans-serif;
  3651. font-weight:400;
  3652. font-style:normal;
  3653. }
  3654. #u35578 {
  3655. border-width:0px;
  3656. position:absolute;
  3657. left:967px;
  3658. top:907px;
  3659. width:455px;
  3660. height:160px;
  3661. display:flex;
  3662. font-family:'Microsoft YaHei', sans-serif;
  3663. font-weight:400;
  3664. font-style:normal;
  3665. }
  3666. #u35578 .text {
  3667. position:absolute;
  3668. align-self:center;
  3669. padding:2px 2px 2px 2px;
  3670. box-sizing:border-box;
  3671. width:100%;
  3672. }
  3673. #u35578_text {
  3674. border-width:0px;
  3675. word-wrap:break-word;
  3676. text-transform:none;
  3677. visibility:hidden;
  3678. }
  3679. #u35579_div {
  3680. border-width:0px;
  3681. position:absolute;
  3682. left:0px;
  3683. top:0px;
  3684. width:73px;
  3685. height:21px;
  3686. background:inherit;
  3687. background-color:rgba(255, 255, 255, 0);
  3688. border:none;
  3689. border-radius:0px;
  3690. -moz-box-shadow:none;
  3691. -webkit-box-shadow:none;
  3692. box-shadow:none;
  3693. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  3694. font-weight:650;
  3695. font-style:normal;
  3696. font-size:18px;
  3697. color:#000000;
  3698. line-height:22px;
  3699. }
  3700. #u35579 {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:1027px;
  3704. top:942px;
  3705. width:73px;
  3706. height:21px;
  3707. display:flex;
  3708. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  3709. font-weight:650;
  3710. font-style:normal;
  3711. font-size:18px;
  3712. color:#000000;
  3713. line-height:22px;
  3714. }
  3715. #u35579 .text {
  3716. position:absolute;
  3717. align-self:flex-start;
  3718. padding:0px 0px 0px 0px;
  3719. box-sizing:border-box;
  3720. width:100%;
  3721. }
  3722. #u35579_text {
  3723. border-width:0px;
  3724. white-space:nowrap;
  3725. text-transform:none;
  3726. }
  3727. #u35580_div {
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:0px;
  3731. top:0px;
  3732. width:61px;
  3733. height:32px;
  3734. background:inherit;
  3735. background-color:rgba(24, 144, 255, 1);
  3736. border:none;
  3737. border-radius:4px;
  3738. -moz-box-shadow:none;
  3739. -webkit-box-shadow:none;
  3740. box-shadow:none;
  3741. font-family:'Microsoft YaHei', sans-serif;
  3742. font-weight:400;
  3743. font-style:normal;
  3744. font-size:14px;
  3745. color:#FFFFFF;
  3746. }
  3747. #u35580 {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:1328px;
  3751. top:1012px;
  3752. width:61px;
  3753. height:32px;
  3754. display:flex;
  3755. font-family:'Microsoft YaHei', sans-serif;
  3756. font-weight:400;
  3757. font-style:normal;
  3758. font-size:14px;
  3759. color:#FFFFFF;
  3760. }
  3761. #u35580 .text {
  3762. position:absolute;
  3763. align-self:center;
  3764. padding:2px 16px 2px 16px;
  3765. box-sizing:border-box;
  3766. width:100%;
  3767. }
  3768. #u35580_text {
  3769. border-width:0px;
  3770. white-space:nowrap;
  3771. text-transform:none;
  3772. }
  3773. #u35581_div {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:0px;
  3777. top:0px;
  3778. width:66px;
  3779. height:32px;
  3780. background:inherit;
  3781. background-color:rgba(255, 255, 255, 1);
  3782. box-sizing:border-box;
  3783. border-width:1px;
  3784. border-style:solid;
  3785. border-color:rgba(217, 217, 217, 1);
  3786. border-radius:4px;
  3787. -moz-box-shadow:none;
  3788. -webkit-box-shadow:none;
  3789. box-shadow:none;
  3790. font-family:'Microsoft YaHei', sans-serif;
  3791. font-weight:400;
  3792. font-style:normal;
  3793. font-size:14px;
  3794. color:rgba(0, 0, 0, 0.647058823529412);
  3795. line-height:21px;
  3796. }
  3797. #u35581 {
  3798. border-width:0px;
  3799. position:absolute;
  3800. left:1246px;
  3801. top:1012px;
  3802. width:66px;
  3803. height:32px;
  3804. display:flex;
  3805. font-family:'Microsoft YaHei', sans-serif;
  3806. font-weight:400;
  3807. font-style:normal;
  3808. font-size:14px;
  3809. color:rgba(0, 0, 0, 0.647058823529412);
  3810. line-height:21px;
  3811. }
  3812. #u35581 .text {
  3813. position:absolute;
  3814. align-self:center;
  3815. padding:2px 16px 2px 16px;
  3816. box-sizing:border-box;
  3817. width:100%;
  3818. }
  3819. #u35581_text {
  3820. border-width:0px;
  3821. white-space:nowrap;
  3822. text-transform:none;
  3823. }
  3824. #u35582_img {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:0px;
  3828. top:0px;
  3829. width:24px;
  3830. height:24px;
  3831. }
  3832. #u35582 {
  3833. border-width:0px;
  3834. position:absolute;
  3835. left:991px;
  3836. top:940px;
  3837. width:24px;
  3838. height:24px;
  3839. display:flex;
  3840. font-family:'Microsoft YaHei', sans-serif;
  3841. font-weight:400;
  3842. font-style:normal;
  3843. font-size:52px;
  3844. color:#FAAD14;
  3845. }
  3846. #u35582 .text {
  3847. position:absolute;
  3848. align-self:center;
  3849. padding:2px 2px 2px 2px;
  3850. box-sizing:border-box;
  3851. width:100%;
  3852. }
  3853. #u35582_text {
  3854. border-width:0px;
  3855. word-wrap:break-word;
  3856. text-transform:none;
  3857. visibility:hidden;
  3858. }
  3859. #u35583_div {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:0px;
  3863. top:0px;
  3864. width:206px;
  3865. height:22px;
  3866. background:inherit;
  3867. background-color:rgba(255, 255, 255, 0);
  3868. border:none;
  3869. border-radius:0px;
  3870. -moz-box-shadow:none;
  3871. -webkit-box-shadow:none;
  3872. box-shadow:none;
  3873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3874. font-weight:400;
  3875. font-style:normal;
  3876. font-size:12px;
  3877. color:#7F7F7F;
  3878. line-height:22px;
  3879. }
  3880. #u35583 {
  3881. border-width:0px;
  3882. position:absolute;
  3883. left:1027px;
  3884. top:974px;
  3885. width:206px;
  3886. height:22px;
  3887. display:flex;
  3888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3889. font-weight:400;
  3890. font-style:normal;
  3891. font-size:12px;
  3892. color:#7F7F7F;
  3893. line-height:22px;
  3894. }
  3895. #u35583 .text {
  3896. position:absolute;
  3897. align-self:flex-start;
  3898. padding:0px 0px 0px 0px;
  3899. box-sizing:border-box;
  3900. width:100%;
  3901. }
  3902. #u35583_text {
  3903. border-width:0px;
  3904. white-space:nowrap;
  3905. text-transform:none;
  3906. }
  3907. #u35584 {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:0px;
  3911. top:0px;
  3912. width:0px;
  3913. height:0px;
  3914. }
  3915. #u35586 {
  3916. border-width:0px;
  3917. position:absolute;
  3918. left:0px;
  3919. top:0px;
  3920. width:0px;
  3921. height:0px;
  3922. }
  3923. #u35587_div {
  3924. border-width:0px;
  3925. position:absolute;
  3926. left:0px;
  3927. top:0px;
  3928. width:129px;
  3929. height:22px;
  3930. background:inherit;
  3931. background-color:rgba(255, 255, 255, 0);
  3932. border:none;
  3933. border-radius:0px;
  3934. -moz-box-shadow:none;
  3935. -webkit-box-shadow:none;
  3936. box-shadow:none;
  3937. font-size:16px;
  3938. color:#FFFFFF;
  3939. }
  3940. #u35587 {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:1686px;
  3944. top:14px;
  3945. width:129px;
  3946. height:22px;
  3947. display:flex;
  3948. font-size:16px;
  3949. color:#FFFFFF;
  3950. }
  3951. #u35587 .text {
  3952. position:absolute;
  3953. align-self:flex-start;
  3954. padding:0px 0px 0px 0px;
  3955. box-sizing:border-box;
  3956. width:100%;
  3957. }
  3958. #u35587_text {
  3959. border-width:0px;
  3960. white-space:nowrap;
  3961. text-transform:none;
  3962. }
  3963. #u35588_div {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:0px;
  3967. top:0px;
  3968. width:1600px;
  3969. height:50px;
  3970. background:inherit;
  3971. background-color:rgba(30, 42, 68, 1);
  3972. border:none;
  3973. border-radius:0px;
  3974. -moz-box-shadow:none;
  3975. -webkit-box-shadow:none;
  3976. box-shadow:none;
  3977. color:#AFB3B6;
  3978. }
  3979. #u35588 {
  3980. border-width:0px;
  3981. position:absolute;
  3982. left:1637px;
  3983. top:0px;
  3984. width:1600px;
  3985. height:50px;
  3986. display:flex;
  3987. color:#AFB3B6;
  3988. }
  3989. #u35588 .text {
  3990. position:absolute;
  3991. align-self:center;
  3992. padding:2px 2px 2px 2px;
  3993. box-sizing:border-box;
  3994. width:100%;
  3995. }
  3996. #u35588_text {
  3997. border-width:0px;
  3998. word-wrap:break-word;
  3999. text-transform:none;
  4000. visibility:hidden;
  4001. }
  4002. #u35589 {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:0px;
  4006. top:0px;
  4007. width:0px;
  4008. height:0px;
  4009. }
  4010. #u35590_img {
  4011. border-width:0px;
  4012. position:absolute;
  4013. left:0px;
  4014. top:0px;
  4015. width:31px;
  4016. height:31px;
  4017. }
  4018. #u35590 {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:1656px;
  4022. top:10px;
  4023. width:31px;
  4024. height:31px;
  4025. display:flex;
  4026. }
  4027. #u35590 .text {
  4028. position:absolute;
  4029. align-self:center;
  4030. padding:2px 2px 2px 2px;
  4031. box-sizing:border-box;
  4032. width:100%;
  4033. }
  4034. #u35590_text {
  4035. border-width:0px;
  4036. word-wrap:break-word;
  4037. text-transform:none;
  4038. }
  4039. #u35591_div {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:0px;
  4043. top:0px;
  4044. width:129px;
  4045. height:22px;
  4046. background:inherit;
  4047. background-color:rgba(255, 255, 255, 0);
  4048. border:none;
  4049. border-radius:0px;
  4050. -moz-box-shadow:none;
  4051. -webkit-box-shadow:none;
  4052. box-shadow:none;
  4053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4054. font-weight:400;
  4055. font-style:normal;
  4056. font-size:16px;
  4057. color:#FFFFFF;
  4058. }
  4059. #u35591 {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:1699px;
  4063. top:14px;
  4064. width:129px;
  4065. height:22px;
  4066. display:flex;
  4067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4068. font-weight:400;
  4069. font-style:normal;
  4070. font-size:16px;
  4071. color:#FFFFFF;
  4072. }
  4073. #u35591 .text {
  4074. position:absolute;
  4075. align-self:flex-start;
  4076. padding:0px 0px 0px 0px;
  4077. box-sizing:border-box;
  4078. width:100%;
  4079. }
  4080. #u35591_text {
  4081. border-width:0px;
  4082. white-space:nowrap;
  4083. text-transform:none;
  4084. }
  4085. #u35592_div {
  4086. border-width:0px;
  4087. position:absolute;
  4088. left:0px;
  4089. top:0px;
  4090. width:200px;
  4091. height:1200px;
  4092. background:inherit;
  4093. background-color:rgba(30, 42, 68, 1);
  4094. border:none;
  4095. border-radius:0px;
  4096. -moz-box-shadow:none;
  4097. -webkit-box-shadow:none;
  4098. box-shadow:none;
  4099. color:#AFB3B6;
  4100. }
  4101. #u35592 {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:1637px;
  4105. top:47px;
  4106. width:200px;
  4107. height:1200px;
  4108. display:flex;
  4109. color:#AFB3B6;
  4110. }
  4111. #u35592 .text {
  4112. position:absolute;
  4113. align-self:center;
  4114. padding:2px 2px 2px 2px;
  4115. box-sizing:border-box;
  4116. width:100%;
  4117. }
  4118. #u35592_text {
  4119. border-width:0px;
  4120. word-wrap:break-word;
  4121. text-transform:none;
  4122. visibility:hidden;
  4123. }
  4124. #u35593_img {
  4125. border-width:0px;
  4126. position:absolute;
  4127. left:0px;
  4128. top:0px;
  4129. width:15px;
  4130. height:15px;
  4131. }
  4132. #u35593 {
  4133. border-width:0px;
  4134. position:absolute;
  4135. left:3160px;
  4136. top:18px;
  4137. width:15px;
  4138. height:15px;
  4139. display:flex;
  4140. }
  4141. #u35593 .text {
  4142. position:absolute;
  4143. align-self:center;
  4144. padding:2px 2px 2px 2px;
  4145. box-sizing:border-box;
  4146. width:100%;
  4147. }
  4148. #u35593_text {
  4149. border-width:0px;
  4150. word-wrap:break-word;
  4151. text-transform:none;
  4152. visibility:hidden;
  4153. }
  4154. #u35594_img {
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:0px;
  4158. top:0px;
  4159. width:15px;
  4160. height:15px;
  4161. }
  4162. #u35594 {
  4163. border-width:0px;
  4164. position:absolute;
  4165. left:3130px;
  4166. top:18px;
  4167. width:15px;
  4168. height:15px;
  4169. display:flex;
  4170. }
  4171. #u35594 .text {
  4172. position:absolute;
  4173. align-self:center;
  4174. padding:2px 2px 2px 2px;
  4175. box-sizing:border-box;
  4176. width:100%;
  4177. }
  4178. #u35594_text {
  4179. border-width:0px;
  4180. word-wrap:break-word;
  4181. text-transform:none;
  4182. visibility:hidden;
  4183. }
  4184. #u35595 {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:0px;
  4188. top:0px;
  4189. width:0px;
  4190. height:0px;
  4191. }
  4192. #u35596_img {
  4193. border-width:0px;
  4194. position:absolute;
  4195. left:0px;
  4196. top:0px;
  4197. width:14px;
  4198. height:14px;
  4199. }
  4200. #u35596 {
  4201. border-width:0px;
  4202. position:absolute;
  4203. left:3190px;
  4204. top:18px;
  4205. width:14px;
  4206. height:14px;
  4207. display:flex;
  4208. }
  4209. #u35596 .text {
  4210. position:absolute;
  4211. align-self:center;
  4212. padding:2px 2px 2px 2px;
  4213. box-sizing:border-box;
  4214. width:100%;
  4215. }
  4216. #u35596_text {
  4217. border-width:0px;
  4218. word-wrap:break-word;
  4219. text-transform:none;
  4220. visibility:hidden;
  4221. }
  4222. #u35597_img {
  4223. border-width:0px;
  4224. position:absolute;
  4225. left:0px;
  4226. top:0px;
  4227. width:8px;
  4228. height:5px;
  4229. }
  4230. #u35597 {
  4231. border-width:0px;
  4232. position:absolute;
  4233. left:3209px;
  4234. top:23px;
  4235. width:8px;
  4236. height:5px;
  4237. display:flex;
  4238. }
  4239. #u35597 .text {
  4240. position:absolute;
  4241. align-self:center;
  4242. padding:2px 2px 2px 2px;
  4243. box-sizing:border-box;
  4244. width:100%;
  4245. }
  4246. #u35597_text {
  4247. border-width:0px;
  4248. word-wrap:break-word;
  4249. text-transform:none;
  4250. visibility:hidden;
  4251. }
  4252. #u35598_div {
  4253. border-width:0px;
  4254. position:absolute;
  4255. left:0px;
  4256. top:0px;
  4257. width:1402px;
  4258. height:1200px;
  4259. background:inherit;
  4260. background-color:rgba(242, 242, 242, 1);
  4261. border:none;
  4262. border-radius:0px;
  4263. -moz-box-shadow:none;
  4264. -webkit-box-shadow:none;
  4265. box-shadow:none;
  4266. }
  4267. #u35598 {
  4268. border-width:0px;
  4269. position:absolute;
  4270. left:1835px;
  4271. top:47px;
  4272. width:1402px;
  4273. height:1200px;
  4274. display:flex;
  4275. }
  4276. #u35598 .text {
  4277. position:absolute;
  4278. align-self:center;
  4279. padding:2px 2px 2px 2px;
  4280. box-sizing:border-box;
  4281. width:100%;
  4282. }
  4283. #u35598_text {
  4284. border-width:0px;
  4285. word-wrap:break-word;
  4286. text-transform:none;
  4287. visibility:hidden;
  4288. }
  4289. #u35599 {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:1672px;
  4293. top:81px;
  4294. width:118px;
  4295. height:220px;
  4296. }
  4297. #u35599_children {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:0px;
  4301. top:0px;
  4302. width:0px;
  4303. height:0px;
  4304. }
  4305. #u35600 {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:98px;
  4311. height:20px;
  4312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4313. font-weight:400;
  4314. font-style:normal;
  4315. font-size:14px;
  4316. color:#FFFFFF;
  4317. }
  4318. #u35601_div {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:0px;
  4322. top:0px;
  4323. width:76px;
  4324. height:20px;
  4325. background:inherit;
  4326. background-color:rgba(255, 255, 255, 0);
  4327. border:none;
  4328. border-radius:0px;
  4329. -moz-box-shadow:none;
  4330. -webkit-box-shadow:none;
  4331. box-shadow:none;
  4332. }
  4333. #u35601 {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:22px;
  4337. top:0px;
  4338. width:76px;
  4339. height:20px;
  4340. display:flex;
  4341. }
  4342. #u35601 .text {
  4343. position:absolute;
  4344. align-self:center;
  4345. padding:2px 2px 2px 3px;
  4346. box-sizing:border-box;
  4347. width:100%;
  4348. }
  4349. #u35601_text {
  4350. border-width:0px;
  4351. white-space:nowrap;
  4352. text-transform:none;
  4353. }
  4354. #u35602 {
  4355. border-width:0px;
  4356. position:absolute;
  4357. left:0px;
  4358. top:20px;
  4359. width:84px;
  4360. height:20px;
  4361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4362. font-weight:400;
  4363. font-style:normal;
  4364. font-size:14px;
  4365. color:#FFFFFF;
  4366. }
  4367. #u35603_img {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:0px;
  4371. top:0px;
  4372. width:9px;
  4373. height:9px;
  4374. }
  4375. #u35603 {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:6px;
  4379. top:6px;
  4380. width:9px;
  4381. height:9px;
  4382. display:flex;
  4383. }
  4384. #u35603 .text {
  4385. position:absolute;
  4386. align-self:center;
  4387. padding:2px 2px 2px 2px;
  4388. box-sizing:border-box;
  4389. width:100%;
  4390. }
  4391. #u35603_img.selected {
  4392. }
  4393. #u35603.selected {
  4394. }
  4395. #u35603_text {
  4396. border-width:0px;
  4397. word-wrap:break-word;
  4398. text-transform:none;
  4399. visibility:hidden;
  4400. }
  4401. #u35604_div {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:0px;
  4405. top:0px;
  4406. width:62px;
  4407. height:20px;
  4408. background:inherit;
  4409. background-color:rgba(255, 255, 255, 0);
  4410. border:none;
  4411. border-radius:0px;
  4412. -moz-box-shadow:none;
  4413. -webkit-box-shadow:none;
  4414. box-shadow:none;
  4415. }
  4416. #u35604 {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:22px;
  4420. top:0px;
  4421. width:62px;
  4422. height:20px;
  4423. display:flex;
  4424. }
  4425. #u35604 .text {
  4426. position:absolute;
  4427. align-self:center;
  4428. padding:2px 2px 2px 3px;
  4429. box-sizing:border-box;
  4430. width:100%;
  4431. }
  4432. #u35604_text {
  4433. border-width:0px;
  4434. white-space:nowrap;
  4435. text-transform:none;
  4436. }
  4437. #u35602_children {
  4438. border-width:0px;
  4439. position:absolute;
  4440. left:0px;
  4441. top:0px;
  4442. width:0px;
  4443. height:0px;
  4444. }
  4445. #u35605 {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:20px;
  4449. top:20px;
  4450. width:98px;
  4451. height:20px;
  4452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4453. font-weight:400;
  4454. font-style:normal;
  4455. font-size:14px;
  4456. color:#FFFFFF;
  4457. }
  4458. #u35606_div {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:0px;
  4462. top:0px;
  4463. width:76px;
  4464. height:20px;
  4465. background:inherit;
  4466. background-color:rgba(255, 255, 255, 0);
  4467. border:none;
  4468. border-radius:0px;
  4469. -moz-box-shadow:none;
  4470. -webkit-box-shadow:none;
  4471. box-shadow:none;
  4472. }
  4473. #u35606 {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:22px;
  4477. top:0px;
  4478. width:76px;
  4479. height:20px;
  4480. display:flex;
  4481. }
  4482. #u35606 .text {
  4483. position:absolute;
  4484. align-self:center;
  4485. padding:2px 2px 2px 3px;
  4486. box-sizing:border-box;
  4487. width:100%;
  4488. }
  4489. #u35606_text {
  4490. border-width:0px;
  4491. white-space:nowrap;
  4492. text-transform:none;
  4493. }
  4494. #u35607 {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:20px;
  4498. top:40px;
  4499. width:98px;
  4500. height:20px;
  4501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4502. font-weight:400;
  4503. font-style:normal;
  4504. font-size:14px;
  4505. color:#FFFFFF;
  4506. }
  4507. #u35608_div {
  4508. border-width:0px;
  4509. position:absolute;
  4510. left:0px;
  4511. top:0px;
  4512. width:76px;
  4513. height:20px;
  4514. background:inherit;
  4515. background-color:rgba(255, 255, 255, 0);
  4516. border:none;
  4517. border-radius:0px;
  4518. -moz-box-shadow:none;
  4519. -webkit-box-shadow:none;
  4520. box-shadow:none;
  4521. }
  4522. #u35608 {
  4523. border-width:0px;
  4524. position:absolute;
  4525. left:22px;
  4526. top:0px;
  4527. width:76px;
  4528. height:20px;
  4529. display:flex;
  4530. }
  4531. #u35608 .text {
  4532. position:absolute;
  4533. align-self:center;
  4534. padding:2px 2px 2px 3px;
  4535. box-sizing:border-box;
  4536. width:100%;
  4537. }
  4538. #u35608_text {
  4539. border-width:0px;
  4540. white-space:nowrap;
  4541. text-transform:none;
  4542. }
  4543. #u35609 {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:0px;
  4547. top:80px;
  4548. width:84px;
  4549. height:20px;
  4550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4551. font-weight:400;
  4552. font-style:normal;
  4553. font-size:14px;
  4554. color:#FFFFFF;
  4555. }
  4556. #u35610_img {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:0px;
  4560. top:0px;
  4561. width:9px;
  4562. height:9px;
  4563. }
  4564. #u35610 {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:6px;
  4568. top:6px;
  4569. width:9px;
  4570. height:9px;
  4571. display:flex;
  4572. }
  4573. #u35610 .text {
  4574. position:absolute;
  4575. align-self:center;
  4576. padding:2px 2px 2px 2px;
  4577. box-sizing:border-box;
  4578. width:100%;
  4579. }
  4580. #u35610_img.selected {
  4581. }
  4582. #u35610.selected {
  4583. }
  4584. #u35610_text {
  4585. border-width:0px;
  4586. word-wrap:break-word;
  4587. text-transform:none;
  4588. visibility:hidden;
  4589. }
  4590. #u35611_div {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:0px;
  4594. top:0px;
  4595. width:62px;
  4596. height:20px;
  4597. background:inherit;
  4598. background-color:rgba(255, 255, 255, 0);
  4599. border:none;
  4600. border-radius:0px;
  4601. -moz-box-shadow:none;
  4602. -webkit-box-shadow:none;
  4603. box-shadow:none;
  4604. }
  4605. #u35611 {
  4606. border-width:0px;
  4607. position:absolute;
  4608. left:22px;
  4609. top:0px;
  4610. width:62px;
  4611. height:20px;
  4612. display:flex;
  4613. }
  4614. #u35611 .text {
  4615. position:absolute;
  4616. align-self:center;
  4617. padding:2px 2px 2px 3px;
  4618. box-sizing:border-box;
  4619. width:100%;
  4620. }
  4621. #u35611_text {
  4622. border-width:0px;
  4623. white-space:nowrap;
  4624. text-transform:none;
  4625. }
  4626. #u35609_children {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:0px;
  4630. top:0px;
  4631. width:0px;
  4632. height:0px;
  4633. }
  4634. #u35612 {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:20px;
  4638. top:20px;
  4639. width:98px;
  4640. height:20px;
  4641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4642. font-weight:400;
  4643. font-style:normal;
  4644. font-size:14px;
  4645. color:#FFFFFF;
  4646. }
  4647. #u35613_div {
  4648. border-width:0px;
  4649. position:absolute;
  4650. left:0px;
  4651. top:0px;
  4652. width:76px;
  4653. height:20px;
  4654. background:inherit;
  4655. background-color:rgba(255, 255, 255, 0);
  4656. border:none;
  4657. border-radius:0px;
  4658. -moz-box-shadow:none;
  4659. -webkit-box-shadow:none;
  4660. box-shadow:none;
  4661. }
  4662. #u35613 {
  4663. border-width:0px;
  4664. position:absolute;
  4665. left:22px;
  4666. top:0px;
  4667. width:76px;
  4668. height:20px;
  4669. display:flex;
  4670. }
  4671. #u35613 .text {
  4672. position:absolute;
  4673. align-self:center;
  4674. padding:2px 2px 2px 3px;
  4675. box-sizing:border-box;
  4676. width:100%;
  4677. }
  4678. #u35613_text {
  4679. border-width:0px;
  4680. white-space:nowrap;
  4681. text-transform:none;
  4682. }
  4683. #u35614 {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:20px;
  4687. top:40px;
  4688. width:98px;
  4689. height:20px;
  4690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4691. font-weight:400;
  4692. font-style:normal;
  4693. font-size:14px;
  4694. color:#FFFFFF;
  4695. }
  4696. #u35615_div {
  4697. border-width:0px;
  4698. position:absolute;
  4699. left:0px;
  4700. top:0px;
  4701. width:76px;
  4702. height:20px;
  4703. background:inherit;
  4704. background-color:rgba(255, 255, 255, 0);
  4705. border:none;
  4706. border-radius:0px;
  4707. -moz-box-shadow:none;
  4708. -webkit-box-shadow:none;
  4709. box-shadow:none;
  4710. }
  4711. #u35615 {
  4712. border-width:0px;
  4713. position:absolute;
  4714. left:22px;
  4715. top:0px;
  4716. width:76px;
  4717. height:20px;
  4718. display:flex;
  4719. }
  4720. #u35615 .text {
  4721. position:absolute;
  4722. align-self:center;
  4723. padding:2px 2px 2px 3px;
  4724. box-sizing:border-box;
  4725. width:100%;
  4726. }
  4727. #u35615_text {
  4728. border-width:0px;
  4729. white-space:nowrap;
  4730. text-transform:none;
  4731. }
  4732. #u35616 {
  4733. border-width:0px;
  4734. position:absolute;
  4735. left:0px;
  4736. top:140px;
  4737. width:84px;
  4738. height:20px;
  4739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4740. font-weight:400;
  4741. font-style:normal;
  4742. font-size:14px;
  4743. color:#FFFFFF;
  4744. }
  4745. #u35617_img {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:0px;
  4749. top:0px;
  4750. width:9px;
  4751. height:9px;
  4752. }
  4753. #u35617 {
  4754. border-width:0px;
  4755. position:absolute;
  4756. left:6px;
  4757. top:6px;
  4758. width:9px;
  4759. height:9px;
  4760. display:flex;
  4761. }
  4762. #u35617 .text {
  4763. position:absolute;
  4764. align-self:center;
  4765. padding:2px 2px 2px 2px;
  4766. box-sizing:border-box;
  4767. width:100%;
  4768. }
  4769. #u35617_img.selected {
  4770. }
  4771. #u35617.selected {
  4772. }
  4773. #u35617_text {
  4774. border-width:0px;
  4775. word-wrap:break-word;
  4776. text-transform:none;
  4777. visibility:hidden;
  4778. }
  4779. #u35618_div {
  4780. border-width:0px;
  4781. position:absolute;
  4782. left:0px;
  4783. top:0px;
  4784. width:62px;
  4785. height:20px;
  4786. background:inherit;
  4787. background-color:rgba(255, 255, 255, 0);
  4788. border:none;
  4789. border-radius:0px;
  4790. -moz-box-shadow:none;
  4791. -webkit-box-shadow:none;
  4792. box-shadow:none;
  4793. }
  4794. #u35618 {
  4795. border-width:0px;
  4796. position:absolute;
  4797. left:22px;
  4798. top:0px;
  4799. width:62px;
  4800. height:20px;
  4801. display:flex;
  4802. }
  4803. #u35618 .text {
  4804. position:absolute;
  4805. align-self:center;
  4806. padding:2px 2px 2px 3px;
  4807. box-sizing:border-box;
  4808. width:100%;
  4809. }
  4810. #u35618_text {
  4811. border-width:0px;
  4812. white-space:nowrap;
  4813. text-transform:none;
  4814. }
  4815. #u35616_children {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:0px;
  4819. top:0px;
  4820. width:0px;
  4821. height:0px;
  4822. visibility:hidden;
  4823. }
  4824. #u35619 {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:20px;
  4828. top:20px;
  4829. width:84px;
  4830. height:20px;
  4831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4832. font-weight:400;
  4833. font-style:normal;
  4834. font-size:14px;
  4835. color:#FFFFFF;
  4836. }
  4837. #u35620_div {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:0px;
  4841. top:0px;
  4842. width:62px;
  4843. height:20px;
  4844. background:inherit;
  4845. background-color:rgba(255, 255, 255, 0);
  4846. border:none;
  4847. border-radius:0px;
  4848. -moz-box-shadow:none;
  4849. -webkit-box-shadow:none;
  4850. box-shadow:none;
  4851. }
  4852. #u35620 {
  4853. border-width:0px;
  4854. position:absolute;
  4855. left:22px;
  4856. top:0px;
  4857. width:62px;
  4858. height:20px;
  4859. display:flex;
  4860. }
  4861. #u35620 .text {
  4862. position:absolute;
  4863. align-self:center;
  4864. padding:2px 2px 2px 3px;
  4865. box-sizing:border-box;
  4866. width:100%;
  4867. }
  4868. #u35620_text {
  4869. border-width:0px;
  4870. white-space:nowrap;
  4871. text-transform:none;
  4872. }
  4873. #u35621 {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:20px;
  4877. top:40px;
  4878. width:84px;
  4879. height:20px;
  4880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4881. font-weight:400;
  4882. font-style:normal;
  4883. font-size:14px;
  4884. color:#FFFFFF;
  4885. }
  4886. #u35622_div {
  4887. border-width:0px;
  4888. position:absolute;
  4889. left:0px;
  4890. top:0px;
  4891. width:62px;
  4892. height:20px;
  4893. background:inherit;
  4894. background-color:rgba(255, 255, 255, 0);
  4895. border:none;
  4896. border-radius:0px;
  4897. -moz-box-shadow:none;
  4898. -webkit-box-shadow:none;
  4899. box-shadow:none;
  4900. }
  4901. #u35622 {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:22px;
  4905. top:0px;
  4906. width:62px;
  4907. height:20px;
  4908. display:flex;
  4909. }
  4910. #u35622 .text {
  4911. position:absolute;
  4912. align-self:center;
  4913. padding:2px 2px 2px 3px;
  4914. box-sizing:border-box;
  4915. width:100%;
  4916. }
  4917. #u35622_text {
  4918. border-width:0px;
  4919. white-space:nowrap;
  4920. text-transform:none;
  4921. }
  4922. #u35623 {
  4923. border-width:0px;
  4924. position:absolute;
  4925. left:20px;
  4926. top:60px;
  4927. width:84px;
  4928. height:20px;
  4929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4930. font-weight:400;
  4931. font-style:normal;
  4932. font-size:14px;
  4933. color:#FFFFFF;
  4934. }
  4935. #u35624_div {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:0px;
  4939. top:0px;
  4940. width:62px;
  4941. height:20px;
  4942. background:inherit;
  4943. background-color:rgba(255, 255, 255, 0);
  4944. border:none;
  4945. border-radius:0px;
  4946. -moz-box-shadow:none;
  4947. -webkit-box-shadow:none;
  4948. box-shadow:none;
  4949. }
  4950. #u35624 {
  4951. border-width:0px;
  4952. position:absolute;
  4953. left:22px;
  4954. top:0px;
  4955. width:62px;
  4956. height:20px;
  4957. display:flex;
  4958. }
  4959. #u35624 .text {
  4960. position:absolute;
  4961. align-self:center;
  4962. padding:2px 2px 2px 3px;
  4963. box-sizing:border-box;
  4964. width:100%;
  4965. }
  4966. #u35624_text {
  4967. border-width:0px;
  4968. white-space:nowrap;
  4969. text-transform:none;
  4970. }
  4971. #u35625 {
  4972. border-width:0px;
  4973. position:absolute;
  4974. left:20px;
  4975. top:80px;
  4976. width:84px;
  4977. height:20px;
  4978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4979. font-weight:400;
  4980. font-style:normal;
  4981. font-size:14px;
  4982. color:#FFFFFF;
  4983. }
  4984. #u35626_div {
  4985. border-width:0px;
  4986. position:absolute;
  4987. left:0px;
  4988. top:0px;
  4989. width:62px;
  4990. height:20px;
  4991. background:inherit;
  4992. background-color:rgba(255, 255, 255, 0);
  4993. border:none;
  4994. border-radius:0px;
  4995. -moz-box-shadow:none;
  4996. -webkit-box-shadow:none;
  4997. box-shadow:none;
  4998. }
  4999. #u35626 {
  5000. border-width:0px;
  5001. position:absolute;
  5002. left:22px;
  5003. top:0px;
  5004. width:62px;
  5005. height:20px;
  5006. display:flex;
  5007. }
  5008. #u35626 .text {
  5009. position:absolute;
  5010. align-self:center;
  5011. padding:2px 2px 2px 3px;
  5012. box-sizing:border-box;
  5013. width:100%;
  5014. }
  5015. #u35626_text {
  5016. border-width:0px;
  5017. white-space:nowrap;
  5018. text-transform:none;
  5019. }
  5020. #u35627 {
  5021. border-width:0px;
  5022. position:absolute;
  5023. left:0px;
  5024. top:160px;
  5025. width:98px;
  5026. height:20px;
  5027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5028. font-weight:400;
  5029. font-style:normal;
  5030. font-size:14px;
  5031. color:#FFFFFF;
  5032. }
  5033. #u35628_img {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:0px;
  5037. top:0px;
  5038. width:9px;
  5039. height:9px;
  5040. }
  5041. #u35628 {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:6px;
  5045. top:6px;
  5046. width:9px;
  5047. height:9px;
  5048. display:flex;
  5049. }
  5050. #u35628 .text {
  5051. position:absolute;
  5052. align-self:center;
  5053. padding:2px 2px 2px 2px;
  5054. box-sizing:border-box;
  5055. width:100%;
  5056. }
  5057. #u35628_img.selected {
  5058. }
  5059. #u35628.selected {
  5060. }
  5061. #u35628_text {
  5062. border-width:0px;
  5063. word-wrap:break-word;
  5064. text-transform:none;
  5065. visibility:hidden;
  5066. }
  5067. #u35629_div {
  5068. border-width:0px;
  5069. position:absolute;
  5070. left:0px;
  5071. top:0px;
  5072. width:76px;
  5073. height:20px;
  5074. background:inherit;
  5075. background-color:rgba(255, 255, 255, 0);
  5076. border:none;
  5077. border-radius:0px;
  5078. -moz-box-shadow:none;
  5079. -webkit-box-shadow:none;
  5080. box-shadow:none;
  5081. }
  5082. #u35629 {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:22px;
  5086. top:0px;
  5087. width:76px;
  5088. height:20px;
  5089. display:flex;
  5090. }
  5091. #u35629 .text {
  5092. position:absolute;
  5093. align-self:center;
  5094. padding:2px 2px 2px 3px;
  5095. box-sizing:border-box;
  5096. width:100%;
  5097. }
  5098. #u35629_text {
  5099. border-width:0px;
  5100. white-space:nowrap;
  5101. text-transform:none;
  5102. }
  5103. #u35627_children {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:0px;
  5107. top:0px;
  5108. width:0px;
  5109. height:0px;
  5110. visibility:hidden;
  5111. }
  5112. #u35630 {
  5113. border-width:0px;
  5114. position:absolute;
  5115. left:20px;
  5116. top:20px;
  5117. width:98px;
  5118. height:20px;
  5119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5120. font-weight:400;
  5121. font-style:normal;
  5122. font-size:14px;
  5123. color:#FFFFFF;
  5124. }
  5125. #u35631_div {
  5126. border-width:0px;
  5127. position:absolute;
  5128. left:0px;
  5129. top:0px;
  5130. width:76px;
  5131. height:20px;
  5132. background:inherit;
  5133. background-color:rgba(255, 255, 255, 0);
  5134. border:none;
  5135. border-radius:0px;
  5136. -moz-box-shadow:none;
  5137. -webkit-box-shadow:none;
  5138. box-shadow:none;
  5139. }
  5140. #u35631 {
  5141. border-width:0px;
  5142. position:absolute;
  5143. left:22px;
  5144. top:0px;
  5145. width:76px;
  5146. height:20px;
  5147. display:flex;
  5148. }
  5149. #u35631 .text {
  5150. position:absolute;
  5151. align-self:center;
  5152. padding:2px 2px 2px 3px;
  5153. box-sizing:border-box;
  5154. width:100%;
  5155. }
  5156. #u35631_text {
  5157. border-width:0px;
  5158. white-space:nowrap;
  5159. text-transform:none;
  5160. }
  5161. #u35632 {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:20px;
  5165. top:40px;
  5166. width:98px;
  5167. height:20px;
  5168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5169. font-weight:400;
  5170. font-style:normal;
  5171. font-size:14px;
  5172. color:#FFFFFF;
  5173. }
  5174. #u35633_div {
  5175. border-width:0px;
  5176. position:absolute;
  5177. left:0px;
  5178. top:0px;
  5179. width:76px;
  5180. height:20px;
  5181. background:inherit;
  5182. background-color:rgba(255, 255, 255, 0);
  5183. border:none;
  5184. border-radius:0px;
  5185. -moz-box-shadow:none;
  5186. -webkit-box-shadow:none;
  5187. box-shadow:none;
  5188. }
  5189. #u35633 {
  5190. border-width:0px;
  5191. position:absolute;
  5192. left:22px;
  5193. top:0px;
  5194. width:76px;
  5195. height:20px;
  5196. display:flex;
  5197. }
  5198. #u35633 .text {
  5199. position:absolute;
  5200. align-self:center;
  5201. padding:2px 2px 2px 3px;
  5202. box-sizing:border-box;
  5203. width:100%;
  5204. }
  5205. #u35633_text {
  5206. border-width:0px;
  5207. white-space:nowrap;
  5208. text-transform:none;
  5209. }
  5210. #u35634 {
  5211. border-width:0px;
  5212. position:absolute;
  5213. left:0px;
  5214. top:180px;
  5215. width:84px;
  5216. height:20px;
  5217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5218. font-weight:400;
  5219. font-style:normal;
  5220. font-size:14px;
  5221. color:#FFFFFF;
  5222. }
  5223. #u35635_img {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:0px;
  5227. top:0px;
  5228. width:9px;
  5229. height:9px;
  5230. }
  5231. #u35635 {
  5232. border-width:0px;
  5233. position:absolute;
  5234. left:6px;
  5235. top:6px;
  5236. width:9px;
  5237. height:9px;
  5238. display:flex;
  5239. }
  5240. #u35635 .text {
  5241. position:absolute;
  5242. align-self:center;
  5243. padding:2px 2px 2px 2px;
  5244. box-sizing:border-box;
  5245. width:100%;
  5246. }
  5247. #u35635_img.selected {
  5248. }
  5249. #u35635.selected {
  5250. }
  5251. #u35635_text {
  5252. border-width:0px;
  5253. word-wrap:break-word;
  5254. text-transform:none;
  5255. visibility:hidden;
  5256. }
  5257. #u35636_div {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:0px;
  5261. top:0px;
  5262. width:62px;
  5263. height:20px;
  5264. background:inherit;
  5265. background-color:rgba(255, 255, 255, 0);
  5266. border:none;
  5267. border-radius:0px;
  5268. -moz-box-shadow:none;
  5269. -webkit-box-shadow:none;
  5270. box-shadow:none;
  5271. }
  5272. #u35636 {
  5273. border-width:0px;
  5274. position:absolute;
  5275. left:22px;
  5276. top:0px;
  5277. width:62px;
  5278. height:20px;
  5279. display:flex;
  5280. }
  5281. #u35636 .text {
  5282. position:absolute;
  5283. align-self:center;
  5284. padding:2px 2px 2px 3px;
  5285. box-sizing:border-box;
  5286. width:100%;
  5287. }
  5288. #u35636_text {
  5289. border-width:0px;
  5290. white-space:nowrap;
  5291. text-transform:none;
  5292. }
  5293. #u35634_children {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:0px;
  5297. top:0px;
  5298. width:0px;
  5299. height:0px;
  5300. visibility:hidden;
  5301. }
  5302. #u35637 {
  5303. border-width:0px;
  5304. position:absolute;
  5305. left:20px;
  5306. top:20px;
  5307. width:98px;
  5308. height:20px;
  5309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5310. font-weight:400;
  5311. font-style:normal;
  5312. font-size:14px;
  5313. color:#FFFFFF;
  5314. }
  5315. #u35638_div {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:0px;
  5319. top:0px;
  5320. width:76px;
  5321. height:20px;
  5322. background:inherit;
  5323. background-color:rgba(255, 255, 255, 0);
  5324. border:none;
  5325. border-radius:0px;
  5326. -moz-box-shadow:none;
  5327. -webkit-box-shadow:none;
  5328. box-shadow:none;
  5329. }
  5330. #u35638 {
  5331. border-width:0px;
  5332. position:absolute;
  5333. left:22px;
  5334. top:0px;
  5335. width:76px;
  5336. height:20px;
  5337. display:flex;
  5338. }
  5339. #u35638 .text {
  5340. position:absolute;
  5341. align-self:center;
  5342. padding:2px 2px 2px 3px;
  5343. box-sizing:border-box;
  5344. width:100%;
  5345. }
  5346. #u35638_text {
  5347. border-width:0px;
  5348. white-space:nowrap;
  5349. text-transform:none;
  5350. }
  5351. #u35639 {
  5352. border-width:0px;
  5353. position:absolute;
  5354. left:20px;
  5355. top:40px;
  5356. width:84px;
  5357. height:20px;
  5358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5359. font-weight:400;
  5360. font-style:normal;
  5361. font-size:14px;
  5362. color:#FFFFFF;
  5363. }
  5364. #u35640_div {
  5365. border-width:0px;
  5366. position:absolute;
  5367. left:0px;
  5368. top:0px;
  5369. width:62px;
  5370. height:20px;
  5371. background:inherit;
  5372. background-color:rgba(255, 255, 255, 0);
  5373. border:none;
  5374. border-radius:0px;
  5375. -moz-box-shadow:none;
  5376. -webkit-box-shadow:none;
  5377. box-shadow:none;
  5378. }
  5379. #u35640 {
  5380. border-width:0px;
  5381. position:absolute;
  5382. left:22px;
  5383. top:0px;
  5384. width:62px;
  5385. height:20px;
  5386. display:flex;
  5387. }
  5388. #u35640 .text {
  5389. position:absolute;
  5390. align-self:center;
  5391. padding:2px 2px 2px 3px;
  5392. box-sizing:border-box;
  5393. width:100%;
  5394. }
  5395. #u35640_text {
  5396. border-width:0px;
  5397. white-space:nowrap;
  5398. text-transform:none;
  5399. }
  5400. #u35641 {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:0px;
  5404. top:200px;
  5405. width:84px;
  5406. height:20px;
  5407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5408. font-weight:400;
  5409. font-style:normal;
  5410. font-size:14px;
  5411. color:#FFFFFF;
  5412. }
  5413. #u35642_img {
  5414. border-width:0px;
  5415. position:absolute;
  5416. left:0px;
  5417. top:0px;
  5418. width:9px;
  5419. height:9px;
  5420. }
  5421. #u35642 {
  5422. border-width:0px;
  5423. position:absolute;
  5424. left:6px;
  5425. top:6px;
  5426. width:9px;
  5427. height:9px;
  5428. display:flex;
  5429. }
  5430. #u35642 .text {
  5431. position:absolute;
  5432. align-self:center;
  5433. padding:2px 2px 2px 2px;
  5434. box-sizing:border-box;
  5435. width:100%;
  5436. }
  5437. #u35642_img.selected {
  5438. }
  5439. #u35642.selected {
  5440. }
  5441. #u35642_text {
  5442. border-width:0px;
  5443. word-wrap:break-word;
  5444. text-transform:none;
  5445. visibility:hidden;
  5446. }
  5447. #u35643_div {
  5448. border-width:0px;
  5449. position:absolute;
  5450. left:0px;
  5451. top:0px;
  5452. width:62px;
  5453. height:20px;
  5454. background:inherit;
  5455. background-color:rgba(255, 255, 255, 0);
  5456. border:none;
  5457. border-radius:0px;
  5458. -moz-box-shadow:none;
  5459. -webkit-box-shadow:none;
  5460. box-shadow:none;
  5461. }
  5462. #u35643 {
  5463. border-width:0px;
  5464. position:absolute;
  5465. left:22px;
  5466. top:0px;
  5467. width:62px;
  5468. height:20px;
  5469. display:flex;
  5470. }
  5471. #u35643 .text {
  5472. position:absolute;
  5473. align-self:center;
  5474. padding:2px 2px 2px 3px;
  5475. box-sizing:border-box;
  5476. width:100%;
  5477. }
  5478. #u35643_text {
  5479. border-width:0px;
  5480. white-space:nowrap;
  5481. text-transform:none;
  5482. }
  5483. #u35641_children {
  5484. border-width:0px;
  5485. position:absolute;
  5486. left:0px;
  5487. top:0px;
  5488. width:0px;
  5489. height:0px;
  5490. visibility:hidden;
  5491. }
  5492. #u35644 {
  5493. border-width:0px;
  5494. position:absolute;
  5495. left:20px;
  5496. top:20px;
  5497. width:84px;
  5498. height:20px;
  5499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5500. font-weight:400;
  5501. font-style:normal;
  5502. font-size:14px;
  5503. color:#FFFFFF;
  5504. }
  5505. #u35645_div {
  5506. border-width:0px;
  5507. position:absolute;
  5508. left:0px;
  5509. top:0px;
  5510. width:62px;
  5511. height:20px;
  5512. background:inherit;
  5513. background-color:rgba(255, 255, 255, 0);
  5514. border:none;
  5515. border-radius:0px;
  5516. -moz-box-shadow:none;
  5517. -webkit-box-shadow:none;
  5518. box-shadow:none;
  5519. }
  5520. #u35645 {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:22px;
  5524. top:0px;
  5525. width:62px;
  5526. height:20px;
  5527. display:flex;
  5528. }
  5529. #u35645 .text {
  5530. position:absolute;
  5531. align-self:center;
  5532. padding:2px 2px 2px 3px;
  5533. box-sizing:border-box;
  5534. width:100%;
  5535. }
  5536. #u35645_text {
  5537. border-width:0px;
  5538. white-space:nowrap;
  5539. text-transform:none;
  5540. }
  5541. #u35646 {
  5542. border-width:0px;
  5543. position:absolute;
  5544. left:20px;
  5545. top:40px;
  5546. width:84px;
  5547. height:20px;
  5548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5549. font-weight:400;
  5550. font-style:normal;
  5551. font-size:14px;
  5552. color:#FFFFFF;
  5553. }
  5554. #u35647_div {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:0px;
  5558. top:0px;
  5559. width:62px;
  5560. height:20px;
  5561. background:inherit;
  5562. background-color:rgba(255, 255, 255, 0);
  5563. border:none;
  5564. border-radius:0px;
  5565. -moz-box-shadow:none;
  5566. -webkit-box-shadow:none;
  5567. box-shadow:none;
  5568. }
  5569. #u35647 {
  5570. border-width:0px;
  5571. position:absolute;
  5572. left:22px;
  5573. top:0px;
  5574. width:62px;
  5575. height:20px;
  5576. display:flex;
  5577. }
  5578. #u35647 .text {
  5579. position:absolute;
  5580. align-self:center;
  5581. padding:2px 2px 2px 3px;
  5582. box-sizing:border-box;
  5583. width:100%;
  5584. }
  5585. #u35647_text {
  5586. border-width:0px;
  5587. white-space:nowrap;
  5588. text-transform:none;
  5589. }
  5590. #u35648 {
  5591. border-width:0px;
  5592. position:absolute;
  5593. left:20px;
  5594. top:60px;
  5595. width:84px;
  5596. height:20px;
  5597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5598. font-weight:400;
  5599. font-style:normal;
  5600. font-size:14px;
  5601. color:#FFFFFF;
  5602. }
  5603. #u35649_div {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:0px;
  5607. top:0px;
  5608. width:62px;
  5609. height:20px;
  5610. background:inherit;
  5611. background-color:rgba(255, 255, 255, 0);
  5612. border:none;
  5613. border-radius:0px;
  5614. -moz-box-shadow:none;
  5615. -webkit-box-shadow:none;
  5616. box-shadow:none;
  5617. }
  5618. #u35649 {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:22px;
  5622. top:0px;
  5623. width:62px;
  5624. height:20px;
  5625. display:flex;
  5626. }
  5627. #u35649 .text {
  5628. position:absolute;
  5629. align-self:center;
  5630. padding:2px 2px 2px 3px;
  5631. box-sizing:border-box;
  5632. width:100%;
  5633. }
  5634. #u35649_text {
  5635. border-width:0px;
  5636. white-space:nowrap;
  5637. text-transform:none;
  5638. }
  5639. #u35650 {
  5640. border-width:0px;
  5641. position:absolute;
  5642. left:0px;
  5643. top:0px;
  5644. width:0px;
  5645. height:0px;
  5646. }
  5647. #u35651_input {
  5648. position:absolute;
  5649. left:0px;
  5650. top:0px;
  5651. width:141px;
  5652. height:22px;
  5653. padding:2px 2px 2px 2px;
  5654. font-family:'ArialMT', 'Arial', sans-serif;
  5655. font-weight:400;
  5656. font-style:normal;
  5657. font-size:14px;
  5658. letter-spacing:normal;
  5659. color:#FFFFFF;
  5660. vertical-align:none;
  5661. text-align:left;
  5662. text-transform:none;
  5663. background-color:transparent;
  5664. border-color:transparent;
  5665. }
  5666. #u35651_input.disabled {
  5667. position:absolute;
  5668. left:0px;
  5669. top:0px;
  5670. width:141px;
  5671. height:22px;
  5672. padding:2px 2px 2px 2px;
  5673. font-family:'ArialMT', 'Arial', sans-serif;
  5674. font-weight:400;
  5675. font-style:normal;
  5676. font-size:14px;
  5677. letter-spacing:normal;
  5678. color:#FFFFFF;
  5679. vertical-align:none;
  5680. text-align:left;
  5681. text-transform:none;
  5682. background-color:transparent;
  5683. border-color:transparent;
  5684. }
  5685. #u35651_div {
  5686. border-width:0px;
  5687. position:absolute;
  5688. left:0px;
  5689. top:0px;
  5690. width:141px;
  5691. height:22px;
  5692. background:inherit;
  5693. background-color:rgba(255, 255, 255, 0);
  5694. border:none;
  5695. border-radius:0px;
  5696. -moz-box-shadow:none;
  5697. -webkit-box-shadow:none;
  5698. box-shadow:none;
  5699. font-size:14px;
  5700. color:#FFFFFF;
  5701. }
  5702. #u35651 {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:1880px;
  5706. top:14px;
  5707. width:141px;
  5708. height:22px;
  5709. display:flex;
  5710. font-size:14px;
  5711. color:#FFFFFF;
  5712. }
  5713. #u35651 .text {
  5714. position:absolute;
  5715. align-self:flex-start;
  5716. padding:2px 2px 2px 2px;
  5717. box-sizing:border-box;
  5718. width:100%;
  5719. }
  5720. #u35651_div.disabled {
  5721. border-width:0px;
  5722. position:absolute;
  5723. left:0px;
  5724. top:0px;
  5725. width:141px;
  5726. height:22px;
  5727. background:inherit;
  5728. background-color:rgba(240, 240, 240, 1);
  5729. border:none;
  5730. border-radius:0px;
  5731. -moz-box-shadow:none;
  5732. -webkit-box-shadow:none;
  5733. box-shadow:none;
  5734. font-size:14px;
  5735. color:#FFFFFF;
  5736. }
  5737. #u35651.disabled {
  5738. }
  5739. .u35651_input_option {
  5740. font-size:14px;
  5741. }
  5742. #u35652_img {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:0px;
  5746. top:0px;
  5747. width:22px;
  5748. height:22px;
  5749. }
  5750. #u35652 {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:1853px;
  5754. top:15px;
  5755. width:22px;
  5756. height:22px;
  5757. display:flex;
  5758. }
  5759. #u35652 .text {
  5760. position:absolute;
  5761. align-self:center;
  5762. padding:2px 2px 2px 2px;
  5763. box-sizing:border-box;
  5764. width:100%;
  5765. }
  5766. #u35652_text {
  5767. border-width:0px;
  5768. word-wrap:break-word;
  5769. text-transform:none;
  5770. visibility:hidden;
  5771. }
  5772. #u35653_div {
  5773. border-width:0px;
  5774. position:absolute;
  5775. left:0px;
  5776. top:0px;
  5777. width:136px;
  5778. height:16px;
  5779. background:inherit;
  5780. background-color:rgba(255, 255, 255, 0);
  5781. border:none;
  5782. border-radius:0px;
  5783. -moz-box-shadow:none;
  5784. -webkit-box-shadow:none;
  5785. box-shadow:none;
  5786. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  5787. font-weight:200;
  5788. font-style:normal;
  5789. font-size:11px;
  5790. color:#555555;
  5791. }
  5792. #u35653 {
  5793. border-width:0px;
  5794. position:absolute;
  5795. left:1845px;
  5796. top:53px;
  5797. width:136px;
  5798. height:16px;
  5799. display:flex;
  5800. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  5801. font-weight:200;
  5802. font-style:normal;
  5803. font-size:11px;
  5804. color:#555555;
  5805. }
  5806. #u35653 .text {
  5807. position:absolute;
  5808. align-self:flex-start;
  5809. padding:0px 0px 0px 0px;
  5810. box-sizing:border-box;
  5811. width:100%;
  5812. }
  5813. #u35653_text {
  5814. border-width:0px;
  5815. white-space:nowrap;
  5816. text-transform:none;
  5817. }
  5818. #u35654_div {
  5819. border-width:0px;
  5820. position:absolute;
  5821. left:0px;
  5822. top:0px;
  5823. width:140px;
  5824. height:24px;
  5825. background:inherit;
  5826. background-color:rgba(242, 242, 242, 0.2);
  5827. border:none;
  5828. border-radius:25px;
  5829. -moz-box-shadow:none;
  5830. -webkit-box-shadow:none;
  5831. box-shadow:none;
  5832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5833. font-weight:400;
  5834. font-style:normal;
  5835. color:#FFFFFF;
  5836. text-align:center;
  5837. }
  5838. #u35654 {
  5839. border-width:0px;
  5840. position:absolute;
  5841. left:2054px;
  5842. top:13px;
  5843. width:140px;
  5844. height:24px;
  5845. display:flex;
  5846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5847. font-weight:400;
  5848. font-style:normal;
  5849. color:#FFFFFF;
  5850. text-align:center;
  5851. }
  5852. #u35654 .text {
  5853. position:absolute;
  5854. align-self:center;
  5855. padding:0px 0px 0px 0px;
  5856. box-sizing:border-box;
  5857. width:100%;
  5858. }
  5859. #u35654_text {
  5860. border-width:0px;
  5861. word-wrap:break-word;
  5862. text-transform:none;
  5863. }
  5864. #u35655_div {
  5865. border-width:0px;
  5866. position:absolute;
  5867. left:0px;
  5868. top:0px;
  5869. width:85px;
  5870. height:20px;
  5871. background:inherit;
  5872. background-color:rgba(30, 42, 68, 1);
  5873. border:none;
  5874. border-radius:0px;
  5875. -moz-box-shadow:none;
  5876. -webkit-box-shadow:none;
  5877. box-shadow:none;
  5878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5879. font-weight:400;
  5880. font-style:normal;
  5881. color:#FFFFFF;
  5882. }
  5883. #u35655 {
  5884. border-width:0px;
  5885. position:absolute;
  5886. left:3011px;
  5887. top:15px;
  5888. width:85px;
  5889. height:20px;
  5890. display:flex;
  5891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5892. font-weight:400;
  5893. font-style:normal;
  5894. color:#FFFFFF;
  5895. }
  5896. #u35655 .text {
  5897. position:absolute;
  5898. align-self:flex-start;
  5899. padding:0px 0px 0px 0px;
  5900. box-sizing:border-box;
  5901. width:100%;
  5902. }
  5903. #u35655_text {
  5904. border-width:0px;
  5905. white-space:nowrap;
  5906. text-transform:none;
  5907. }
  5908. #u35656_div {
  5909. border-width:0px;
  5910. position:absolute;
  5911. left:0px;
  5912. top:0px;
  5913. width:1381px;
  5914. height:1154px;
  5915. background:inherit;
  5916. background-color:rgba(255, 255, 255, 1);
  5917. border:none;
  5918. border-radius:0px;
  5919. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5920. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5921. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5922. }
  5923. #u35656 {
  5924. border-width:0px;
  5925. position:absolute;
  5926. left:1845px;
  5927. top:80px;
  5928. width:1381px;
  5929. height:1154px;
  5930. display:flex;
  5931. }
  5932. #u35656 .text {
  5933. position:absolute;
  5934. align-self:center;
  5935. padding:2px 2px 2px 2px;
  5936. box-sizing:border-box;
  5937. width:100%;
  5938. }
  5939. #u35656_text {
  5940. border-width:0px;
  5941. word-wrap:break-word;
  5942. text-transform:none;
  5943. visibility:hidden;
  5944. }
  5945. #u35657_div {
  5946. border-width:0px;
  5947. position:absolute;
  5948. left:0px;
  5949. top:0px;
  5950. width:1150px;
  5951. height:269px;
  5952. background:inherit;
  5953. background-color:rgba(242, 242, 242, 1);
  5954. border:none;
  5955. border-radius:4px;
  5956. -moz-box-shadow:none;
  5957. -webkit-box-shadow:none;
  5958. box-shadow:none;
  5959. }
  5960. #u35657 {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:1935px;
  5964. top:166px;
  5965. width:1150px;
  5966. height:269px;
  5967. display:flex;
  5968. }
  5969. #u35657 .text {
  5970. position:absolute;
  5971. align-self:center;
  5972. padding:2px 2px 2px 2px;
  5973. box-sizing:border-box;
  5974. width:100%;
  5975. }
  5976. #u35657_text {
  5977. border-width:0px;
  5978. word-wrap:break-word;
  5979. text-transform:none;
  5980. visibility:hidden;
  5981. }
  5982. #u35658 {
  5983. border-width:0px;
  5984. position:absolute;
  5985. left:0px;
  5986. top:0px;
  5987. width:0px;
  5988. height:0px;
  5989. }
  5990. #u35659_div {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:0px;
  5994. top:0px;
  5995. width:1150px;
  5996. height:60px;
  5997. background:inherit;
  5998. background-color:rgba(255, 255, 255, 1);
  5999. box-sizing:border-box;
  6000. border-width:1px;
  6001. border-style:solid;
  6002. border-color:rgba(215, 215, 215, 1);
  6003. border-radius:0px;
  6004. -moz-box-shadow:none;
  6005. -webkit-box-shadow:none;
  6006. box-shadow:none;
  6007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6008. font-weight:400;
  6009. font-style:normal;
  6010. font-size:14px;
  6011. color:#AAAAAA;
  6012. text-align:center;
  6013. line-height:30px;
  6014. }
  6015. #u35659 {
  6016. border-width:0px;
  6017. position:absolute;
  6018. left:1935px;
  6019. top:375px;
  6020. width:1150px;
  6021. height:60px;
  6022. display:flex;
  6023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6024. font-weight:400;
  6025. font-style:normal;
  6026. font-size:14px;
  6027. color:#AAAAAA;
  6028. text-align:center;
  6029. line-height:30px;
  6030. }
  6031. #u35659 .text {
  6032. position:absolute;
  6033. align-self:center;
  6034. padding:5px 10px 5px 10px;
  6035. box-sizing:border-box;
  6036. width:100%;
  6037. }
  6038. #u35659_text {
  6039. border-width:0px;
  6040. word-wrap:break-word;
  6041. text-transform:none;
  6042. visibility:hidden;
  6043. }
  6044. #u35660_div {
  6045. border-width:0px;
  6046. position:absolute;
  6047. left:0px;
  6048. top:0px;
  6049. width:60px;
  6050. height:30px;
  6051. background:inherit;
  6052. background-color:rgba(24, 144, 255, 1);
  6053. border:none;
  6054. border-radius:4px;
  6055. -moz-box-shadow:none;
  6056. -webkit-box-shadow:none;
  6057. box-shadow:none;
  6058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6059. font-weight:400;
  6060. font-style:normal;
  6061. font-size:14px;
  6062. color:#FFFFFF;
  6063. }
  6064. #u35660 {
  6065. border-width:0px;
  6066. position:absolute;
  6067. left:3005px;
  6068. top:390px;
  6069. width:60px;
  6070. height:30px;
  6071. display:flex;
  6072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6073. font-weight:400;
  6074. font-style:normal;
  6075. font-size:14px;
  6076. color:#FFFFFF;
  6077. }
  6078. #u35660 .text {
  6079. position:absolute;
  6080. align-self:center;
  6081. padding:2px 2px 2px 2px;
  6082. box-sizing:border-box;
  6083. width:100%;
  6084. }
  6085. #u35660_text {
  6086. border-width:0px;
  6087. word-wrap:break-word;
  6088. text-transform:none;
  6089. }
  6090. #u35661_div {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:0px;
  6094. top:0px;
  6095. width:488px;
  6096. height:50px;
  6097. background:inherit;
  6098. background-color:rgba(255, 255, 255, 0);
  6099. border:none;
  6100. border-left:0px;
  6101. border-top:0px;
  6102. border-right:0px;
  6103. border-radius:0px;
  6104. border-bottom-right-radius:0px;
  6105. border-bottom-left-radius:0px;
  6106. -moz-box-shadow:none;
  6107. -webkit-box-shadow:none;
  6108. box-shadow:none;
  6109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6110. font-weight:400;
  6111. font-style:normal;
  6112. font-size:18px;
  6113. color:#000000;
  6114. line-height:40px;
  6115. }
  6116. #u35661 {
  6117. border-width:0px;
  6118. position:absolute;
  6119. left:2320px;
  6120. top:255px;
  6121. width:488px;
  6122. height:50px;
  6123. display:flex;
  6124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6125. font-weight:400;
  6126. font-style:normal;
  6127. font-size:18px;
  6128. color:#000000;
  6129. line-height:40px;
  6130. }
  6131. #u35661 .text {
  6132. position:absolute;
  6133. align-self:center;
  6134. padding:0px 0px 0px 0px;
  6135. box-sizing:border-box;
  6136. width:100%;
  6137. }
  6138. #u35661_text {
  6139. border-width:0px;
  6140. white-space:nowrap;
  6141. text-transform:none;
  6142. }
  6143. #u35662 {
  6144. border-width:0px;
  6145. position:absolute;
  6146. left:0px;
  6147. top:0px;
  6148. width:0px;
  6149. height:0px;
  6150. }
  6151. #u35663_div {
  6152. border-width:0px;
  6153. position:absolute;
  6154. left:0px;
  6155. top:0px;
  6156. width:455px;
  6157. height:160px;
  6158. background:inherit;
  6159. background-color:rgba(255, 255, 255, 1);
  6160. box-sizing:border-box;
  6161. border-width:1px;
  6162. border-style:solid;
  6163. border-color:rgba(204, 204, 204, 1);
  6164. border-radius:0px;
  6165. -moz-box-shadow:none;
  6166. -webkit-box-shadow:none;
  6167. box-shadow:none;
  6168. font-family:'Microsoft YaHei', sans-serif;
  6169. font-weight:400;
  6170. font-style:normal;
  6171. }
  6172. #u35663 {
  6173. border-width:0px;
  6174. position:absolute;
  6175. left:2283px;
  6176. top:984px;
  6177. width:455px;
  6178. height:160px;
  6179. display:flex;
  6180. font-family:'Microsoft YaHei', sans-serif;
  6181. font-weight:400;
  6182. font-style:normal;
  6183. }
  6184. #u35663 .text {
  6185. position:absolute;
  6186. align-self:center;
  6187. padding:2px 2px 2px 2px;
  6188. box-sizing:border-box;
  6189. width:100%;
  6190. }
  6191. #u35663_text {
  6192. border-width:0px;
  6193. word-wrap:break-word;
  6194. text-transform:none;
  6195. visibility:hidden;
  6196. }
  6197. #u35664_div {
  6198. border-width:0px;
  6199. position:absolute;
  6200. left:0px;
  6201. top:0px;
  6202. width:73px;
  6203. height:21px;
  6204. background:inherit;
  6205. background-color:rgba(255, 255, 255, 0);
  6206. border:none;
  6207. border-radius:0px;
  6208. -moz-box-shadow:none;
  6209. -webkit-box-shadow:none;
  6210. box-shadow:none;
  6211. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6212. font-weight:650;
  6213. font-style:normal;
  6214. font-size:18px;
  6215. color:#000000;
  6216. line-height:22px;
  6217. }
  6218. #u35664 {
  6219. border-width:0px;
  6220. position:absolute;
  6221. left:2343px;
  6222. top:1019px;
  6223. width:73px;
  6224. height:21px;
  6225. display:flex;
  6226. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6227. font-weight:650;
  6228. font-style:normal;
  6229. font-size:18px;
  6230. color:#000000;
  6231. line-height:22px;
  6232. }
  6233. #u35664 .text {
  6234. position:absolute;
  6235. align-self:flex-start;
  6236. padding:0px 0px 0px 0px;
  6237. box-sizing:border-box;
  6238. width:100%;
  6239. }
  6240. #u35664_text {
  6241. border-width:0px;
  6242. white-space:nowrap;
  6243. text-transform:none;
  6244. }
  6245. #u35665_div {
  6246. border-width:0px;
  6247. position:absolute;
  6248. left:0px;
  6249. top:0px;
  6250. width:61px;
  6251. height:32px;
  6252. background:inherit;
  6253. background-color:rgba(24, 144, 255, 1);
  6254. border:none;
  6255. border-radius:4px;
  6256. -moz-box-shadow:none;
  6257. -webkit-box-shadow:none;
  6258. box-shadow:none;
  6259. font-family:'Microsoft YaHei', sans-serif;
  6260. font-weight:400;
  6261. font-style:normal;
  6262. font-size:14px;
  6263. color:#FFFFFF;
  6264. }
  6265. #u35665 {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:2644px;
  6269. top:1089px;
  6270. width:61px;
  6271. height:32px;
  6272. display:flex;
  6273. font-family:'Microsoft YaHei', sans-serif;
  6274. font-weight:400;
  6275. font-style:normal;
  6276. font-size:14px;
  6277. color:#FFFFFF;
  6278. }
  6279. #u35665 .text {
  6280. position:absolute;
  6281. align-self:center;
  6282. padding:2px 16px 2px 16px;
  6283. box-sizing:border-box;
  6284. width:100%;
  6285. }
  6286. #u35665_text {
  6287. border-width:0px;
  6288. white-space:nowrap;
  6289. text-transform:none;
  6290. }
  6291. #u35666_div {
  6292. border-width:0px;
  6293. position:absolute;
  6294. left:0px;
  6295. top:0px;
  6296. width:66px;
  6297. height:32px;
  6298. background:inherit;
  6299. background-color:rgba(255, 255, 255, 1);
  6300. box-sizing:border-box;
  6301. border-width:1px;
  6302. border-style:solid;
  6303. border-color:rgba(217, 217, 217, 1);
  6304. border-radius:4px;
  6305. -moz-box-shadow:none;
  6306. -webkit-box-shadow:none;
  6307. box-shadow:none;
  6308. font-family:'Microsoft YaHei', sans-serif;
  6309. font-weight:400;
  6310. font-style:normal;
  6311. font-size:14px;
  6312. color:rgba(0, 0, 0, 0.647058823529412);
  6313. line-height:21px;
  6314. }
  6315. #u35666 {
  6316. border-width:0px;
  6317. position:absolute;
  6318. left:2562px;
  6319. top:1089px;
  6320. width:66px;
  6321. height:32px;
  6322. display:flex;
  6323. font-family:'Microsoft YaHei', sans-serif;
  6324. font-weight:400;
  6325. font-style:normal;
  6326. font-size:14px;
  6327. color:rgba(0, 0, 0, 0.647058823529412);
  6328. line-height:21px;
  6329. }
  6330. #u35666 .text {
  6331. position:absolute;
  6332. align-self:center;
  6333. padding:2px 16px 2px 16px;
  6334. box-sizing:border-box;
  6335. width:100%;
  6336. }
  6337. #u35666_text {
  6338. border-width:0px;
  6339. white-space:nowrap;
  6340. text-transform:none;
  6341. }
  6342. #u35667_img {
  6343. border-width:0px;
  6344. position:absolute;
  6345. left:0px;
  6346. top:0px;
  6347. width:24px;
  6348. height:24px;
  6349. }
  6350. #u35667 {
  6351. border-width:0px;
  6352. position:absolute;
  6353. left:2307px;
  6354. top:1017px;
  6355. width:24px;
  6356. height:24px;
  6357. display:flex;
  6358. font-family:'Microsoft YaHei', sans-serif;
  6359. font-weight:400;
  6360. font-style:normal;
  6361. font-size:52px;
  6362. color:#FAAD14;
  6363. }
  6364. #u35667 .text {
  6365. position:absolute;
  6366. align-self:center;
  6367. padding:2px 2px 2px 2px;
  6368. box-sizing:border-box;
  6369. width:100%;
  6370. }
  6371. #u35667_text {
  6372. border-width:0px;
  6373. word-wrap:break-word;
  6374. text-transform:none;
  6375. visibility:hidden;
  6376. }
  6377. #u35668_div {
  6378. border-width:0px;
  6379. position:absolute;
  6380. left:0px;
  6381. top:0px;
  6382. width:194px;
  6383. height:22px;
  6384. background:inherit;
  6385. background-color:rgba(255, 255, 255, 0);
  6386. border:none;
  6387. border-radius:0px;
  6388. -moz-box-shadow:none;
  6389. -webkit-box-shadow:none;
  6390. box-shadow:none;
  6391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6392. font-weight:400;
  6393. font-style:normal;
  6394. font-size:12px;
  6395. color:#7F7F7F;
  6396. line-height:22px;
  6397. }
  6398. #u35668 {
  6399. border-width:0px;
  6400. position:absolute;
  6401. left:2343px;
  6402. top:1051px;
  6403. width:194px;
  6404. height:22px;
  6405. display:flex;
  6406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6407. font-weight:400;
  6408. font-style:normal;
  6409. font-size:12px;
  6410. color:#7F7F7F;
  6411. line-height:22px;
  6412. }
  6413. #u35668 .text {
  6414. position:absolute;
  6415. align-self:flex-start;
  6416. padding:0px 0px 0px 0px;
  6417. box-sizing:border-box;
  6418. width:100%;
  6419. }
  6420. #u35668_text {
  6421. border-width:0px;
  6422. white-space:nowrap;
  6423. text-transform:none;
  6424. }
  6425. #u35669_div {
  6426. border-width:0px;
  6427. position:absolute;
  6428. left:0px;
  6429. top:0px;
  6430. width:109px;
  6431. height:50px;
  6432. background:inherit;
  6433. background-color:rgba(255, 255, 255, 0);
  6434. border:none;
  6435. border-left:0px;
  6436. border-top:0px;
  6437. border-right:0px;
  6438. border-radius:0px;
  6439. border-bottom-right-radius:0px;
  6440. border-bottom-left-radius:0px;
  6441. -moz-box-shadow:none;
  6442. -webkit-box-shadow:none;
  6443. box-shadow:none;
  6444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6445. font-weight:400;
  6446. font-style:normal;
  6447. font-size:18px;
  6448. }
  6449. #u35669 {
  6450. border-width:0px;
  6451. position:absolute;
  6452. left:1865px;
  6453. top:80px;
  6454. width:109px;
  6455. height:50px;
  6456. display:flex;
  6457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6458. font-weight:400;
  6459. font-style:normal;
  6460. font-size:18px;
  6461. }
  6462. #u35669 .text {
  6463. position:absolute;
  6464. align-self:center;
  6465. padding:0px 0px 0px 0px;
  6466. box-sizing:border-box;
  6467. width:100%;
  6468. }
  6469. #u35669_text {
  6470. border-width:0px;
  6471. white-space:nowrap;
  6472. text-transform:none;
  6473. }
  6474. #u35670_img {
  6475. border-width:0px;
  6476. position:absolute;
  6477. left:0px;
  6478. top:0px;
  6479. width:397px;
  6480. height:308px;
  6481. }
  6482. #u35670 {
  6483. border-width:0px;
  6484. position:absolute;
  6485. left:841px;
  6486. top:470px;
  6487. width:397px;
  6488. height:308px;
  6489. display:flex;
  6490. }
  6491. #u35670 .text {
  6492. position:absolute;
  6493. align-self:center;
  6494. padding:2px 2px 2px 2px;
  6495. box-sizing:border-box;
  6496. width:100%;
  6497. }
  6498. #u35670_text {
  6499. border-width:0px;
  6500. word-wrap:break-word;
  6501. text-transform:none;
  6502. visibility:hidden;
  6503. }