styles.css 163 KB

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