styles.css 126 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u10417_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. #u10417 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u10417 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u10417_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u10418_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. #u10418 {
  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. #u10418 .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. #u10418_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u10419_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. #u10419 {
  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. #u10419 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u10419_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u10420 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u10421_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u10421 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u10421 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u10421_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u10422_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. #u10422 {
  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. #u10422 .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. #u10422_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u10423_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. #u10423 {
  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. #u10423 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u10423_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u10424 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u10425_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. #u10425 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:171px;
  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. #u10425 .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. #u10425_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u10426_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u10426 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u10426 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u10426_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u10427 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u10428_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. #u10428 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:381px;
  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. #u10428 .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. #u10428_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u10429_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u10429 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u10429 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u10429_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u10430 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u10431_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:49px;
  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. #u10431 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:133px;
  458. width:49px;
  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. #u10431 .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. #u10431_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u10432_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u10432 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u10432 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u10432_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u10433 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u10434_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:33px;
  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. #u10434 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:423px;
  542. width:33px;
  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. #u10434 .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. #u10434_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u10435_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u10435 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u10435 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u10435_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u10436 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u10437_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. #u10437 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:297px;
  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. #u10437 .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. #u10437_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u10438_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u10438 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u10438 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u10438_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u10439 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u10440_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. #u10440 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:213px;
  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. #u10440 .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. #u10440_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u10441_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u10441 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u10441 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u10441_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u10442 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u10443_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. #u10443 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:339px;
  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. #u10443 .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. #u10443_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u10444_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u10444 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u10444 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u10444_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u10445 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u10446_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. #u10446 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:465px;
  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. #u10446 .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. #u10446_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u10447_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u10447 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u10447 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u10447_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u10448 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u10449_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:29px;
  943. height:20px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:25px;
  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. color:#FFFFFF;
  955. }
  956. #u10449 {
  957. border-width:0px;
  958. position:absolute;
  959. left:52px;
  960. top:1145px;
  961. width:29px;
  962. height:20px;
  963. display:flex;
  964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  965. font-weight:400;
  966. font-style:normal;
  967. color:#FFFFFF;
  968. }
  969. #u10449 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u10449_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u10450_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u10450 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u10450 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u10450_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u10451 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u10452_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:29px;
  1025. height:20px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-radius:25px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. color:#FFFFFF;
  1037. }
  1038. #u10452 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:52px;
  1042. top:1187px;
  1043. width:29px;
  1044. height:20px;
  1045. display:flex;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. color:#FFFFFF;
  1050. }
  1051. #u10452 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u10452_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u10453_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u10453 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u10453 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u10453_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u10454 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u10455_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:33px;
  1107. height:22px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u10455 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:39px;
  1125. top:255px;
  1126. width:33px;
  1127. height:22px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#FFFFFF;
  1134. }
  1135. #u10455 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u10455_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u10456_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u10456 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u10456 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u10456_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u10457 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u10458_input {
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:214px;
  1190. height:27px;
  1191. padding:2px 2px 2px 2px;
  1192. font-family:'ArialMT', 'Arial', sans-serif;
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:14px;
  1196. letter-spacing:normal;
  1197. color:#FFFFFF;
  1198. vertical-align:none;
  1199. text-align:left;
  1200. text-transform:none;
  1201. background-color:transparent;
  1202. border-color:transparent;
  1203. }
  1204. #u10458_input.disabled {
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:214px;
  1209. height:27px;
  1210. padding:2px 2px 2px 2px;
  1211. font-family:'ArialMT', 'Arial', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:14px;
  1215. letter-spacing:normal;
  1216. color:#FFFFFF;
  1217. vertical-align:none;
  1218. text-align:left;
  1219. text-transform:none;
  1220. background-color:transparent;
  1221. border-color:transparent;
  1222. }
  1223. #u10458_div {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. background:inherit;
  1231. background-color:rgba(255, 255, 255, 0);
  1232. border:none;
  1233. border-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-size:14px;
  1238. color:#FFFFFF;
  1239. }
  1240. #u10458 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:1221px;
  1244. top:11px;
  1245. width:214px;
  1246. height:27px;
  1247. display:flex;
  1248. font-size:14px;
  1249. color:#FFFFFF;
  1250. }
  1251. #u10458 .text {
  1252. position:absolute;
  1253. align-self:flex-start;
  1254. padding:2px 2px 2px 2px;
  1255. box-sizing:border-box;
  1256. width:100%;
  1257. }
  1258. #u10458_div.disabled {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:214px;
  1264. height:27px;
  1265. background:inherit;
  1266. background-color:rgba(240, 240, 240, 1);
  1267. border:none;
  1268. border-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-size:14px;
  1273. color:#FFFFFF;
  1274. }
  1275. #u10458.disabled {
  1276. }
  1277. .u10458_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u10459_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u10459 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u10459 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u10459_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u10460_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:100px;
  1316. height:24px;
  1317. background:inherit;
  1318. background-color:rgba(242, 242, 242, 0.2);
  1319. border:none;
  1320. border-radius:25px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. color:#FFFFFF;
  1328. text-align:center;
  1329. }
  1330. #u10460 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1480px;
  1334. top:13px;
  1335. width:100px;
  1336. height:24px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. color:#FFFFFF;
  1342. text-align:center;
  1343. }
  1344. #u10460 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u10460_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u10461_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u10461 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u10461 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u10461_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u10462 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u10463_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:29px;
  1400. height:20px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:25px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. color:#FFFFFF;
  1412. }
  1413. #u10463 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:52px;
  1417. top:1082px;
  1418. width:29px;
  1419. height:20px;
  1420. display:flex;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. color:#FFFFFF;
  1425. }
  1426. #u10463 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u10463_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u10464_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u10464 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u10464 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u10464_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u10465_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u10465 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u10465 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u10465_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u10466_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u10466 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u10466 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u10466_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u10467_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u10467 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u10467 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u10467_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u10468 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u10469_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:33px;
  1572. height:22px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-radius:0px;
  1577. -moz-box-shadow:none;
  1578. -webkit-box-shadow:none;
  1579. box-shadow:none;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:16px;
  1584. color:#FFFFFF;
  1585. }
  1586. #u10469 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:43px;
  1590. top:71px;
  1591. width:33px;
  1592. height:22px;
  1593. display:flex;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:16px;
  1598. color:#FFFFFF;
  1599. }
  1600. #u10469 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u10469_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u10470_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u10470 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u10470 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u10470_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u10471_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1265px;
  1648. height:1180px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. border:none;
  1652. border-radius:0px;
  1653. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1654. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1655. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1656. color:#1890FF;
  1657. }
  1658. #u10471 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:329px;
  1662. top:50px;
  1663. width:1265px;
  1664. height:1180px;
  1665. display:flex;
  1666. color:#1890FF;
  1667. }
  1668. #u10471 .text {
  1669. position:absolute;
  1670. align-self:center;
  1671. padding:2px 2px 2px 2px;
  1672. box-sizing:border-box;
  1673. width:100%;
  1674. }
  1675. #u10471_text {
  1676. border-width:0px;
  1677. word-wrap:break-word;
  1678. text-transform:none;
  1679. visibility:hidden;
  1680. }
  1681. #u10472_div {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:0px;
  1685. top:0px;
  1686. width:73px;
  1687. height:47px;
  1688. background:inherit;
  1689. background-color:rgba(255, 255, 255, 0);
  1690. border:none;
  1691. border-left:0px;
  1692. border-top:0px;
  1693. border-right:0px;
  1694. border-radius:0px;
  1695. border-bottom-right-radius:0px;
  1696. border-bottom-left-radius:0px;
  1697. -moz-box-shadow:none;
  1698. -webkit-box-shadow:none;
  1699. box-shadow:none;
  1700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1701. font-weight:400;
  1702. font-style:normal;
  1703. font-size:18px;
  1704. line-height:40px;
  1705. }
  1706. #u10472 {
  1707. border-width:0px;
  1708. position:absolute;
  1709. left:355px;
  1710. top:50px;
  1711. width:73px;
  1712. height:47px;
  1713. display:flex;
  1714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1715. font-weight:400;
  1716. font-style:normal;
  1717. font-size:18px;
  1718. line-height:40px;
  1719. }
  1720. #u10472 .text {
  1721. position:absolute;
  1722. align-self:center;
  1723. padding:0px 0px 0px 0px;
  1724. box-sizing:border-box;
  1725. width:100%;
  1726. }
  1727. #u10472_text {
  1728. border-width:0px;
  1729. white-space:nowrap;
  1730. text-transform:none;
  1731. }
  1732. #u10473_div {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:0px;
  1736. top:0px;
  1737. width:87px;
  1738. height:30px;
  1739. background:inherit;
  1740. background-color:rgba(255, 255, 255, 1);
  1741. box-sizing:border-box;
  1742. border-width:1px;
  1743. border-style:solid;
  1744. border-color:rgba(170, 170, 170, 1);
  1745. border-radius:4px;
  1746. -moz-box-shadow:none;
  1747. -webkit-box-shadow:none;
  1748. box-shadow:none;
  1749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1750. font-weight:400;
  1751. font-style:normal;
  1752. font-size:14px;
  1753. color:#555555;
  1754. }
  1755. #u10473 {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:1487px;
  1759. top:65px;
  1760. width:87px;
  1761. height:30px;
  1762. display:flex;
  1763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1764. font-weight:400;
  1765. font-style:normal;
  1766. font-size:14px;
  1767. color:#555555;
  1768. }
  1769. #u10473 .text {
  1770. position:absolute;
  1771. align-self:center;
  1772. padding:5px 15px 5px 15px;
  1773. box-sizing:border-box;
  1774. width:100%;
  1775. }
  1776. #u10473_text {
  1777. border-width:0px;
  1778. white-space:nowrap;
  1779. text-transform:none;
  1780. }
  1781. #u10474 {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:0px;
  1785. top:0px;
  1786. width:0px;
  1787. height:0px;
  1788. }
  1789. #u10475_div {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:0px;
  1793. top:0px;
  1794. width:59px;
  1795. height:30px;
  1796. background:inherit;
  1797. background-color:rgba(41, 143, 255, 1);
  1798. border:none;
  1799. border-radius:4px;
  1800. -moz-box-shadow:none;
  1801. -webkit-box-shadow:none;
  1802. box-shadow:none;
  1803. font-family:'Microsoft YaHei', sans-serif;
  1804. font-weight:400;
  1805. font-style:normal;
  1806. font-size:14px;
  1807. color:#FFFFFF;
  1808. }
  1809. #u10475 {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:658px;
  1813. top:144px;
  1814. width:59px;
  1815. height:30px;
  1816. display:flex;
  1817. font-family:'Microsoft YaHei', sans-serif;
  1818. font-weight:400;
  1819. font-style:normal;
  1820. font-size:14px;
  1821. color:#FFFFFF;
  1822. }
  1823. #u10475 .text {
  1824. position:absolute;
  1825. align-self:center;
  1826. padding:5px 15px 5px 15px;
  1827. box-sizing:border-box;
  1828. width:100%;
  1829. }
  1830. #u10475_text {
  1831. border-width:0px;
  1832. white-space:nowrap;
  1833. text-transform:none;
  1834. }
  1835. #u10476_div {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:0px;
  1839. top:0px;
  1840. width:55px;
  1841. height:30px;
  1842. background:inherit;
  1843. background-color:rgba(255, 255, 255, 1);
  1844. box-sizing:border-box;
  1845. border-width:1px;
  1846. border-style:solid;
  1847. border-color:rgba(170, 170, 170, 1);
  1848. border-radius:4px;
  1849. -moz-box-shadow:none;
  1850. -webkit-box-shadow:none;
  1851. box-shadow:none;
  1852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1853. font-weight:400;
  1854. font-style:normal;
  1855. font-size:12px;
  1856. color:#555555;
  1857. }
  1858. #u10476 {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:727px;
  1862. top:144px;
  1863. width:55px;
  1864. height:30px;
  1865. display:flex;
  1866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1867. font-weight:400;
  1868. font-style:normal;
  1869. font-size:12px;
  1870. color:#555555;
  1871. }
  1872. #u10476 .text {
  1873. position:absolute;
  1874. align-self:center;
  1875. padding:5px 15px 5px 15px;
  1876. box-sizing:border-box;
  1877. width:100%;
  1878. }
  1879. #u10476_text {
  1880. border-width:0px;
  1881. white-space:nowrap;
  1882. text-transform:none;
  1883. }
  1884. #u10477 {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:0px;
  1888. top:0px;
  1889. width:0px;
  1890. height:0px;
  1891. }
  1892. #u10478_div {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:0px;
  1896. top:0px;
  1897. width:140px;
  1898. height:30px;
  1899. background:inherit;
  1900. background-color:rgba(255, 255, 255, 1);
  1901. box-sizing:border-box;
  1902. border-width:1px;
  1903. border-style:solid;
  1904. border-color:rgba(215, 215, 215, 1);
  1905. border-radius:4px;
  1906. -moz-box-shadow:none;
  1907. -webkit-box-shadow:none;
  1908. box-shadow:none;
  1909. font-size:11px;
  1910. }
  1911. #u10478 {
  1912. border-width:0px;
  1913. position:absolute;
  1914. left:508px;
  1915. top:144px;
  1916. width:140px;
  1917. height:30px;
  1918. display:flex;
  1919. font-size:11px;
  1920. }
  1921. #u10478 .text {
  1922. position:absolute;
  1923. align-self:center;
  1924. padding:2px 2px 2px 2px;
  1925. box-sizing:border-box;
  1926. width:100%;
  1927. }
  1928. #u10478_text {
  1929. border-width:0px;
  1930. word-wrap:break-word;
  1931. text-transform:none;
  1932. visibility:hidden;
  1933. }
  1934. #u10479_input {
  1935. position:absolute;
  1936. left:0px;
  1937. top:0px;
  1938. width:120px;
  1939. height:23px;
  1940. padding:2px 2px 2px 2px;
  1941. font-family:'ArialMT', 'Arial', sans-serif;
  1942. font-weight:400;
  1943. font-style:normal;
  1944. font-size:11px;
  1945. letter-spacing:normal;
  1946. color:#AAAAAA;
  1947. vertical-align:none;
  1948. text-align:left;
  1949. text-transform:none;
  1950. background-color:transparent;
  1951. border-color:transparent;
  1952. }
  1953. #u10479_input.disabled {
  1954. position:absolute;
  1955. left:0px;
  1956. top:0px;
  1957. width:120px;
  1958. height:23px;
  1959. padding:2px 2px 2px 2px;
  1960. font-family:'ArialMT', 'Arial', sans-serif;
  1961. font-weight:400;
  1962. font-style:normal;
  1963. font-size:11px;
  1964. letter-spacing:normal;
  1965. color:#AAAAAA;
  1966. vertical-align:none;
  1967. text-align:left;
  1968. text-transform:none;
  1969. background-color:transparent;
  1970. border-color:transparent;
  1971. }
  1972. #u10479_div {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:0px;
  1976. top:0px;
  1977. width:120px;
  1978. height:23px;
  1979. background:inherit;
  1980. background-color:rgba(255, 255, 255, 1);
  1981. border:none;
  1982. border-radius:0px;
  1983. -moz-box-shadow:none;
  1984. -webkit-box-shadow:none;
  1985. box-shadow:none;
  1986. font-size:11px;
  1987. color:#AAAAAA;
  1988. }
  1989. #u10479 {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:515px;
  1993. top:146px;
  1994. width:120px;
  1995. height:23px;
  1996. display:flex;
  1997. font-size:11px;
  1998. color:#AAAAAA;
  1999. }
  2000. #u10479 .text {
  2001. position:absolute;
  2002. align-self:flex-start;
  2003. padding:2px 2px 2px 2px;
  2004. box-sizing:border-box;
  2005. width:100%;
  2006. }
  2007. #u10479_div.disabled {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:0px;
  2011. top:0px;
  2012. width:120px;
  2013. height:23px;
  2014. background:inherit;
  2015. background-color:rgba(240, 240, 240, 1);
  2016. border:none;
  2017. border-radius:0px;
  2018. -moz-box-shadow:none;
  2019. -webkit-box-shadow:none;
  2020. box-shadow:none;
  2021. font-size:11px;
  2022. color:#AAAAAA;
  2023. }
  2024. #u10479.disabled {
  2025. }
  2026. .u10479_input_option {
  2027. font-size:11px;
  2028. }
  2029. #u10480 {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:0px;
  2033. top:0px;
  2034. width:0px;
  2035. height:0px;
  2036. }
  2037. #u10481_div {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:0px;
  2041. top:0px;
  2042. width:140px;
  2043. height:30px;
  2044. background:inherit;
  2045. background-color:rgba(255, 255, 255, 1);
  2046. box-sizing:border-box;
  2047. border-width:1px;
  2048. border-style:solid;
  2049. border-color:rgba(215, 215, 215, 1);
  2050. border-radius:4px;
  2051. -moz-box-shadow:none;
  2052. -webkit-box-shadow:none;
  2053. box-shadow:none;
  2054. font-size:11px;
  2055. }
  2056. #u10481 {
  2057. border-width:0px;
  2058. position:absolute;
  2059. left:358px;
  2060. top:144px;
  2061. width:140px;
  2062. height:30px;
  2063. display:flex;
  2064. font-size:11px;
  2065. }
  2066. #u10481 .text {
  2067. position:absolute;
  2068. align-self:center;
  2069. padding:2px 2px 2px 2px;
  2070. box-sizing:border-box;
  2071. width:100%;
  2072. }
  2073. #u10481_text {
  2074. border-width:0px;
  2075. word-wrap:break-word;
  2076. text-transform:none;
  2077. visibility:hidden;
  2078. }
  2079. #u10482_input {
  2080. position:absolute;
  2081. left:0px;
  2082. top:0px;
  2083. width:120px;
  2084. height:23px;
  2085. padding:2px 2px 2px 2px;
  2086. font-family:'ArialMT', 'Arial', sans-serif;
  2087. font-weight:400;
  2088. font-style:normal;
  2089. font-size:11px;
  2090. letter-spacing:normal;
  2091. color:#AAAAAA;
  2092. vertical-align:none;
  2093. text-align:left;
  2094. text-transform:none;
  2095. background-color:transparent;
  2096. border-color:transparent;
  2097. }
  2098. #u10482_input.disabled {
  2099. position:absolute;
  2100. left:0px;
  2101. top:0px;
  2102. width:120px;
  2103. height:23px;
  2104. padding:2px 2px 2px 2px;
  2105. font-family:'ArialMT', 'Arial', sans-serif;
  2106. font-weight:400;
  2107. font-style:normal;
  2108. font-size:11px;
  2109. letter-spacing:normal;
  2110. color:#AAAAAA;
  2111. vertical-align:none;
  2112. text-align:left;
  2113. text-transform:none;
  2114. background-color:transparent;
  2115. border-color:transparent;
  2116. }
  2117. #u10482_div {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:0px;
  2121. top:0px;
  2122. width:120px;
  2123. height:23px;
  2124. background:inherit;
  2125. background-color:rgba(255, 255, 255, 1);
  2126. border:none;
  2127. border-radius:0px;
  2128. -moz-box-shadow:none;
  2129. -webkit-box-shadow:none;
  2130. box-shadow:none;
  2131. font-size:11px;
  2132. color:#AAAAAA;
  2133. }
  2134. #u10482 {
  2135. border-width:0px;
  2136. position:absolute;
  2137. left:365px;
  2138. top:146px;
  2139. width:120px;
  2140. height:23px;
  2141. display:flex;
  2142. font-size:11px;
  2143. color:#AAAAAA;
  2144. }
  2145. #u10482 .text {
  2146. position:absolute;
  2147. align-self:flex-start;
  2148. padding:2px 2px 2px 2px;
  2149. box-sizing:border-box;
  2150. width:100%;
  2151. }
  2152. #u10482_div.disabled {
  2153. border-width:0px;
  2154. position:absolute;
  2155. left:0px;
  2156. top:0px;
  2157. width:120px;
  2158. height:23px;
  2159. background:inherit;
  2160. background-color:rgba(240, 240, 240, 1);
  2161. border:none;
  2162. border-radius:0px;
  2163. -moz-box-shadow:none;
  2164. -webkit-box-shadow:none;
  2165. box-shadow:none;
  2166. font-size:11px;
  2167. color:#AAAAAA;
  2168. }
  2169. #u10482.disabled {
  2170. }
  2171. .u10482_input_option {
  2172. font-size:11px;
  2173. }
  2174. #u10484 {
  2175. border-width:0px;
  2176. position:absolute;
  2177. left:0px;
  2178. top:0px;
  2179. width:0px;
  2180. height:0px;
  2181. }
  2182. #u10485_div {
  2183. border-width:0px;
  2184. position:absolute;
  2185. left:0px;
  2186. top:0px;
  2187. width:200px;
  2188. height:1180px;
  2189. background:inherit;
  2190. background-color:rgba(255, 255, 255, 1);
  2191. border:none;
  2192. border-radius:0px;
  2193. -moz-box-shadow:none;
  2194. -webkit-box-shadow:none;
  2195. box-shadow:none;
  2196. }
  2197. #u10485 {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:121px;
  2201. top:50px;
  2202. width:200px;
  2203. height:1180px;
  2204. display:flex;
  2205. }
  2206. #u10485 .text {
  2207. position:absolute;
  2208. align-self:center;
  2209. padding:2px 2px 2px 2px;
  2210. box-sizing:border-box;
  2211. width:100%;
  2212. }
  2213. #u10485_text {
  2214. border-width:0px;
  2215. word-wrap:break-word;
  2216. text-transform:none;
  2217. visibility:hidden;
  2218. }
  2219. #u10486_div {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:0px;
  2223. top:0px;
  2224. width:200px;
  2225. height:60px;
  2226. background:inherit;
  2227. background-color:rgba(224, 231, 247, 1);
  2228. border:none;
  2229. border-radius:0px;
  2230. -moz-box-shadow:none;
  2231. -webkit-box-shadow:none;
  2232. box-shadow:none;
  2233. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2234. font-weight:500;
  2235. font-style:normal;
  2236. font-size:18px;
  2237. }
  2238. #u10486 {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:121px;
  2242. top:50px;
  2243. width:200px;
  2244. height:60px;
  2245. display:flex;
  2246. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2247. font-weight:500;
  2248. font-style:normal;
  2249. font-size:18px;
  2250. }
  2251. #u10486 .text {
  2252. position:absolute;
  2253. align-self:center;
  2254. padding:0px 0px 0px 20px;
  2255. box-sizing:border-box;
  2256. width:100%;
  2257. }
  2258. #u10486_text {
  2259. border-width:0px;
  2260. word-wrap:break-word;
  2261. text-transform:none;
  2262. }
  2263. #u10487_div {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:0px;
  2267. top:0px;
  2268. width:65px;
  2269. height:22px;
  2270. background:inherit;
  2271. background-color:rgba(255, 255, 255, 0);
  2272. border:none;
  2273. border-radius:0px;
  2274. -moz-box-shadow:none;
  2275. -webkit-box-shadow:none;
  2276. box-shadow:none;
  2277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2278. font-weight:400;
  2279. font-style:normal;
  2280. font-size:16px;
  2281. }
  2282. #u10487 {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:148px;
  2286. top:161px;
  2287. width:65px;
  2288. height:22px;
  2289. display:flex;
  2290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2291. font-weight:400;
  2292. font-style:normal;
  2293. font-size:16px;
  2294. }
  2295. #u10487 .text {
  2296. position:absolute;
  2297. align-self:flex-start;
  2298. padding:0px 0px 0px 0px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u10487_text {
  2303. border-width:0px;
  2304. white-space:nowrap;
  2305. text-transform:none;
  2306. }
  2307. #u10488_div {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:0px;
  2311. top:0px;
  2312. width:65px;
  2313. height:22px;
  2314. background:inherit;
  2315. background-color:rgba(255, 255, 255, 0);
  2316. border:none;
  2317. border-radius:0px;
  2318. -moz-box-shadow:none;
  2319. -webkit-box-shadow:none;
  2320. box-shadow:none;
  2321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2322. font-weight:400;
  2323. font-style:normal;
  2324. font-size:16px;
  2325. }
  2326. #u10488 {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:148px;
  2330. top:309px;
  2331. width:65px;
  2332. height:22px;
  2333. display:flex;
  2334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2335. font-weight:400;
  2336. font-style:normal;
  2337. font-size:16px;
  2338. }
  2339. #u10488 .text {
  2340. position:absolute;
  2341. align-self:flex-start;
  2342. padding:0px 0px 0px 0px;
  2343. box-sizing:border-box;
  2344. width:100%;
  2345. }
  2346. #u10488_text {
  2347. border-width:0px;
  2348. white-space:nowrap;
  2349. text-transform:none;
  2350. }
  2351. #u10489_div {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:0px;
  2355. top:0px;
  2356. width:49px;
  2357. height:17px;
  2358. background:inherit;
  2359. background-color:rgba(255, 255, 255, 0);
  2360. border:none;
  2361. border-radius:0px;
  2362. -moz-box-shadow:none;
  2363. -webkit-box-shadow:none;
  2364. box-shadow:none;
  2365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2366. font-weight:400;
  2367. font-style:normal;
  2368. font-size:12px;
  2369. color:#AAAAAA;
  2370. }
  2371. #u10489 {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:148px;
  2375. top:272px;
  2376. width:49px;
  2377. height:17px;
  2378. display:flex;
  2379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2380. font-weight:400;
  2381. font-style:normal;
  2382. font-size:12px;
  2383. color:#AAAAAA;
  2384. }
  2385. #u10489 .text {
  2386. position:absolute;
  2387. align-self:flex-start;
  2388. padding:0px 0px 0px 0px;
  2389. box-sizing:border-box;
  2390. width:100%;
  2391. }
  2392. #u10489_text {
  2393. border-width:0px;
  2394. white-space:nowrap;
  2395. text-transform:none;
  2396. }
  2397. #u10490_img {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:0px;
  2401. top:0px;
  2402. width:201px;
  2403. height:2px;
  2404. }
  2405. #u10490 {
  2406. border-width:0px;
  2407. position:absolute;
  2408. left:121px;
  2409. top:250px;
  2410. width:200px;
  2411. height:1px;
  2412. display:flex;
  2413. }
  2414. #u10490 .text {
  2415. position:absolute;
  2416. align-self:center;
  2417. padding:2px 2px 2px 2px;
  2418. box-sizing:border-box;
  2419. width:100%;
  2420. }
  2421. #u10490_text {
  2422. border-width:0px;
  2423. word-wrap:break-word;
  2424. text-transform:none;
  2425. visibility:hidden;
  2426. }
  2427. #u10491_div {
  2428. border-width:0px;
  2429. position:absolute;
  2430. left:0px;
  2431. top:0px;
  2432. width:65px;
  2433. height:22px;
  2434. background:inherit;
  2435. background-color:rgba(255, 255, 255, 0);
  2436. border:none;
  2437. border-radius:0px;
  2438. -moz-box-shadow:none;
  2439. -webkit-box-shadow:none;
  2440. box-shadow:none;
  2441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2442. font-weight:400;
  2443. font-style:normal;
  2444. font-size:16px;
  2445. }
  2446. #u10491 {
  2447. border-width:0px;
  2448. position:absolute;
  2449. left:148px;
  2450. top:351px;
  2451. width:65px;
  2452. height:22px;
  2453. display:flex;
  2454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2455. font-weight:400;
  2456. font-style:normal;
  2457. font-size:16px;
  2458. }
  2459. #u10491 .text {
  2460. position:absolute;
  2461. align-self:flex-start;
  2462. padding:0px 0px 0px 0px;
  2463. box-sizing:border-box;
  2464. width:100%;
  2465. }
  2466. #u10491_text {
  2467. border-width:0px;
  2468. white-space:nowrap;
  2469. text-transform:none;
  2470. }
  2471. #u10492_div {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:0px;
  2475. top:0px;
  2476. width:49px;
  2477. height:17px;
  2478. background:inherit;
  2479. background-color:rgba(255, 255, 255, 0);
  2480. border:none;
  2481. border-radius:0px;
  2482. -moz-box-shadow:none;
  2483. -webkit-box-shadow:none;
  2484. box-shadow:none;
  2485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2486. font-weight:400;
  2487. font-style:normal;
  2488. font-size:12px;
  2489. color:#AAAAAA;
  2490. }
  2491. #u10492 {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:148px;
  2495. top:130px;
  2496. width:49px;
  2497. height:17px;
  2498. display:flex;
  2499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2500. font-weight:400;
  2501. font-style:normal;
  2502. font-size:12px;
  2503. color:#AAAAAA;
  2504. }
  2505. #u10492 .text {
  2506. position:absolute;
  2507. align-self:flex-start;
  2508. padding:0px 0px 0px 0px;
  2509. box-sizing:border-box;
  2510. width:100%;
  2511. }
  2512. #u10492_text {
  2513. border-width:0px;
  2514. white-space:nowrap;
  2515. text-transform:none;
  2516. }
  2517. #u10493_div {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:0px;
  2521. top:0px;
  2522. width:65px;
  2523. height:22px;
  2524. background:inherit;
  2525. background-color:rgba(255, 255, 255, 0);
  2526. border:none;
  2527. border-radius:0px;
  2528. -moz-box-shadow:none;
  2529. -webkit-box-shadow:none;
  2530. box-shadow:none;
  2531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2532. font-weight:400;
  2533. font-style:normal;
  2534. font-size:16px;
  2535. }
  2536. #u10493 {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:148px;
  2540. top:393px;
  2541. width:65px;
  2542. height:22px;
  2543. display:flex;
  2544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2545. font-weight:400;
  2546. font-style:normal;
  2547. font-size:16px;
  2548. }
  2549. #u10493 .text {
  2550. position:absolute;
  2551. align-self:flex-start;
  2552. padding:0px 0px 0px 0px;
  2553. box-sizing:border-box;
  2554. width:100%;
  2555. }
  2556. #u10493_text {
  2557. border-width:0px;
  2558. white-space:nowrap;
  2559. text-transform:none;
  2560. }
  2561. #u10494_div {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:0px;
  2565. top:0px;
  2566. width:65px;
  2567. height:22px;
  2568. background:inherit;
  2569. background-color:rgba(255, 255, 255, 0);
  2570. border:none;
  2571. border-radius:0px;
  2572. -moz-box-shadow:none;
  2573. -webkit-box-shadow:none;
  2574. box-shadow:none;
  2575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2576. font-weight:400;
  2577. font-style:normal;
  2578. font-size:16px;
  2579. }
  2580. #u10494 {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:148px;
  2584. top:203px;
  2585. width:65px;
  2586. height:22px;
  2587. display:flex;
  2588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2589. font-weight:400;
  2590. font-style:normal;
  2591. font-size:16px;
  2592. }
  2593. #u10494 .text {
  2594. position:absolute;
  2595. align-self:flex-start;
  2596. padding:0px 0px 0px 0px;
  2597. box-sizing:border-box;
  2598. width:100%;
  2599. }
  2600. #u10494_text {
  2601. border-width:0px;
  2602. white-space:nowrap;
  2603. text-transform:none;
  2604. }
  2605. #u10495_div {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:0px;
  2609. top:0px;
  2610. width:589px;
  2611. height:20px;
  2612. background:inherit;
  2613. background-color:rgba(255, 255, 255, 0);
  2614. border:none;
  2615. border-left:0px;
  2616. border-top:0px;
  2617. border-right:0px;
  2618. border-radius:0px;
  2619. border-bottom-right-radius:0px;
  2620. border-bottom-left-radius:0px;
  2621. -moz-box-shadow:none;
  2622. -webkit-box-shadow:none;
  2623. box-shadow:none;
  2624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2625. font-weight:400;
  2626. font-style:normal;
  2627. font-size:14px;
  2628. color:#7F7F7F;
  2629. }
  2630. #u10495 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:352px;
  2634. top:100px;
  2635. width:589px;
  2636. height:20px;
  2637. display:flex;
  2638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2639. font-weight:400;
  2640. font-style:normal;
  2641. font-size:14px;
  2642. color:#7F7F7F;
  2643. }
  2644. #u10495 .text {
  2645. position:absolute;
  2646. align-self:center;
  2647. padding:0px 0px 0px 0px;
  2648. box-sizing:border-box;
  2649. width:100%;
  2650. }
  2651. #u10495_text {
  2652. border-width:0px;
  2653. white-space:nowrap;
  2654. text-transform:none;
  2655. }
  2656. #u10496 {
  2657. border-width:0px;
  2658. position:absolute;
  2659. left:0px;
  2660. top:0px;
  2661. width:0px;
  2662. height:0px;
  2663. }
  2664. #u10497_div {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:0px;
  2668. top:0px;
  2669. width:229px;
  2670. height:126px;
  2671. background:inherit;
  2672. background-color:rgba(255, 255, 255, 1);
  2673. box-sizing:border-box;
  2674. border-width:1px;
  2675. border-style:solid;
  2676. border-color:rgba(242, 242, 242, 1);
  2677. border-radius:5px;
  2678. -moz-box-shadow:none;
  2679. -webkit-box-shadow:none;
  2680. box-shadow:none;
  2681. }
  2682. #u10497 {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:610px;
  2686. top:470px;
  2687. width:229px;
  2688. height:126px;
  2689. display:flex;
  2690. }
  2691. #u10497 .text {
  2692. position:absolute;
  2693. align-self:center;
  2694. padding:2px 2px 2px 2px;
  2695. box-sizing:border-box;
  2696. width:100%;
  2697. }
  2698. #u10497_text {
  2699. border-width:0px;
  2700. word-wrap:break-word;
  2701. text-transform:none;
  2702. visibility:hidden;
  2703. }
  2704. #u10498_div {
  2705. border-width:0px;
  2706. position:absolute;
  2707. left:0px;
  2708. top:0px;
  2709. width:229px;
  2710. height:30px;
  2711. background:inherit;
  2712. background-color:rgba(51, 51, 51, 1);
  2713. box-sizing:border-box;
  2714. border-width:1px;
  2715. border-style:solid;
  2716. border-color:rgba(242, 242, 242, 1);
  2717. border-bottom:0px;
  2718. border-radius:5px;
  2719. border-bottom-right-radius:0px;
  2720. border-bottom-left-radius:0px;
  2721. -moz-box-shadow:none;
  2722. -webkit-box-shadow:none;
  2723. box-shadow:none;
  2724. }
  2725. #u10498 {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:610px;
  2729. top:470px;
  2730. width:229px;
  2731. height:30px;
  2732. display:flex;
  2733. }
  2734. #u10498 .text {
  2735. position:absolute;
  2736. align-self:center;
  2737. padding:2px 2px 2px 2px;
  2738. box-sizing:border-box;
  2739. width:100%;
  2740. }
  2741. #u10498_text {
  2742. border-width:0px;
  2743. word-wrap:break-word;
  2744. text-transform:none;
  2745. visibility:hidden;
  2746. }
  2747. #u10499_div {
  2748. border-width:0px;
  2749. position:absolute;
  2750. left:0px;
  2751. top:0px;
  2752. width:121px;
  2753. height:20px;
  2754. background:inherit;
  2755. background-color:rgba(255, 255, 255, 0);
  2756. border:none;
  2757. border-left:0px;
  2758. border-top:0px;
  2759. border-right:0px;
  2760. border-radius:0px;
  2761. border-bottom-right-radius:0px;
  2762. border-bottom-left-radius:0px;
  2763. -moz-box-shadow:none;
  2764. -webkit-box-shadow:none;
  2765. box-shadow:none;
  2766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2767. font-weight:400;
  2768. font-style:normal;
  2769. font-size:14px;
  2770. color:#FFFFFF;
  2771. }
  2772. #u10499 {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:617px;
  2776. top:475px;
  2777. width:121px;
  2778. height:20px;
  2779. display:flex;
  2780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2781. font-weight:400;
  2782. font-style:normal;
  2783. font-size:14px;
  2784. color:#FFFFFF;
  2785. }
  2786. #u10499 .text {
  2787. position:absolute;
  2788. align-self:center;
  2789. padding:0px 0px 0px 0px;
  2790. box-sizing:border-box;
  2791. width:100%;
  2792. }
  2793. #u10499_text {
  2794. border-width:0px;
  2795. white-space:nowrap;
  2796. text-transform:none;
  2797. }
  2798. #u10500_img {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:0px;
  2802. top:0px;
  2803. width:70px;
  2804. height:63px;
  2805. }
  2806. #u10500 {
  2807. border-width:0px;
  2808. position:absolute;
  2809. left:632px;
  2810. top:512px;
  2811. width:70px;
  2812. height:63px;
  2813. display:flex;
  2814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2815. font-weight:400;
  2816. font-style:normal;
  2817. }
  2818. #u10500 .text {
  2819. position:absolute;
  2820. align-self:center;
  2821. padding:2px 2px 2px 2px;
  2822. box-sizing:border-box;
  2823. width:100%;
  2824. }
  2825. #u10500_text {
  2826. border-width:0px;
  2827. word-wrap:break-word;
  2828. text-transform:none;
  2829. }
  2830. #u10501_div {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:0px;
  2834. top:0px;
  2835. width:73px;
  2836. height:47px;
  2837. background:inherit;
  2838. background-color:rgba(255, 255, 255, 0);
  2839. border:none;
  2840. border-left:0px;
  2841. border-top:0px;
  2842. border-right:0px;
  2843. border-radius:0px;
  2844. border-bottom-right-radius:0px;
  2845. border-bottom-left-radius:0px;
  2846. -moz-box-shadow:none;
  2847. -webkit-box-shadow:none;
  2848. box-shadow:none;
  2849. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2850. font-weight:500;
  2851. font-style:normal;
  2852. font-size:18px;
  2853. line-height:40px;
  2854. }
  2855. #u10501 {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:725px;
  2859. top:520px;
  2860. width:73px;
  2861. height:47px;
  2862. display:flex;
  2863. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2864. font-weight:500;
  2865. font-style:normal;
  2866. font-size:18px;
  2867. line-height:40px;
  2868. }
  2869. #u10501 .text {
  2870. position:absolute;
  2871. align-self:center;
  2872. padding:0px 0px 0px 0px;
  2873. box-sizing:border-box;
  2874. width:100%;
  2875. }
  2876. #u10501_text {
  2877. border-width:0px;
  2878. white-space:nowrap;
  2879. text-transform:none;
  2880. }
  2881. #u10502_div {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:0px;
  2885. top:0px;
  2886. width:23px;
  2887. height:16px;
  2888. background:inherit;
  2889. background-color:rgba(255, 255, 255, 0);
  2890. border:none;
  2891. border-left:0px;
  2892. border-top:0px;
  2893. border-right:0px;
  2894. border-radius:0px;
  2895. border-bottom-right-radius:0px;
  2896. border-bottom-left-radius:0px;
  2897. -moz-box-shadow:none;
  2898. -webkit-box-shadow:none;
  2899. box-shadow:none;
  2900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2901. font-weight:400;
  2902. font-style:normal;
  2903. font-size:11px;
  2904. color:#298FFF;
  2905. }
  2906. #u10502 {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:795px;
  2910. top:520px;
  2911. width:23px;
  2912. height:16px;
  2913. display:flex;
  2914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2915. font-weight:400;
  2916. font-style:normal;
  2917. font-size:11px;
  2918. color:#298FFF;
  2919. }
  2920. #u10502 .text {
  2921. position:absolute;
  2922. align-self:center;
  2923. padding:0px 0px 0px 0px;
  2924. box-sizing:border-box;
  2925. width:100%;
  2926. }
  2927. #u10502_text {
  2928. border-width:0px;
  2929. white-space:nowrap;
  2930. text-transform:none;
  2931. }
  2932. #u10503 {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:0px;
  2936. top:0px;
  2937. width:0px;
  2938. height:0px;
  2939. }
  2940. #u10504_div {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:0px;
  2944. top:0px;
  2945. width:229px;
  2946. height:126px;
  2947. background:inherit;
  2948. background-color:rgba(255, 255, 255, 1);
  2949. box-sizing:border-box;
  2950. border-width:1px;
  2951. border-style:solid;
  2952. border-color:rgba(242, 242, 242, 1);
  2953. border-radius:5px;
  2954. -moz-box-shadow:none;
  2955. -webkit-box-shadow:none;
  2956. box-shadow:none;
  2957. }
  2958. #u10504 {
  2959. border-width:0px;
  2960. position:absolute;
  2961. left:355px;
  2962. top:185px;
  2963. width:229px;
  2964. height:126px;
  2965. display:flex;
  2966. }
  2967. #u10504 .text {
  2968. position:absolute;
  2969. align-self:center;
  2970. padding:2px 2px 2px 2px;
  2971. box-sizing:border-box;
  2972. width:100%;
  2973. }
  2974. #u10504_text {
  2975. border-width:0px;
  2976. word-wrap:break-word;
  2977. text-transform:none;
  2978. visibility:hidden;
  2979. }
  2980. #u10505_div {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:0px;
  2984. top:0px;
  2985. width:229px;
  2986. height:30px;
  2987. background:inherit;
  2988. background-color:rgba(51, 51, 51, 1);
  2989. box-sizing:border-box;
  2990. border-width:1px;
  2991. border-style:solid;
  2992. border-color:rgba(242, 242, 242, 1);
  2993. border-bottom:0px;
  2994. border-radius:5px;
  2995. border-bottom-right-radius:0px;
  2996. border-bottom-left-radius:0px;
  2997. -moz-box-shadow:none;
  2998. -webkit-box-shadow:none;
  2999. box-shadow:none;
  3000. }
  3001. #u10505 {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:355px;
  3005. top:185px;
  3006. width:229px;
  3007. height:30px;
  3008. display:flex;
  3009. }
  3010. #u10505 .text {
  3011. position:absolute;
  3012. align-self:center;
  3013. padding:2px 2px 2px 2px;
  3014. box-sizing:border-box;
  3015. width:100%;
  3016. }
  3017. #u10505_text {
  3018. border-width:0px;
  3019. word-wrap:break-word;
  3020. text-transform:none;
  3021. visibility:hidden;
  3022. }
  3023. #u10506_div {
  3024. border-width:0px;
  3025. position:absolute;
  3026. left:0px;
  3027. top:0px;
  3028. width:149px;
  3029. height:20px;
  3030. background:inherit;
  3031. background-color:rgba(255, 255, 255, 0);
  3032. border:none;
  3033. border-left:0px;
  3034. border-top:0px;
  3035. border-right:0px;
  3036. border-radius:0px;
  3037. border-bottom-right-radius:0px;
  3038. border-bottom-left-radius:0px;
  3039. -moz-box-shadow:none;
  3040. -webkit-box-shadow:none;
  3041. box-shadow:none;
  3042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3043. font-weight:400;
  3044. font-style:normal;
  3045. font-size:14px;
  3046. color:#FFFFFF;
  3047. }
  3048. #u10506 {
  3049. border-width:0px;
  3050. position:absolute;
  3051. left:362px;
  3052. top:190px;
  3053. width:149px;
  3054. height:20px;
  3055. display:flex;
  3056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3057. font-weight:400;
  3058. font-style:normal;
  3059. font-size:14px;
  3060. color:#FFFFFF;
  3061. }
  3062. #u10506 .text {
  3063. position:absolute;
  3064. align-self:center;
  3065. padding:0px 0px 0px 0px;
  3066. box-sizing:border-box;
  3067. width:100%;
  3068. }
  3069. #u10506_text {
  3070. border-width:0px;
  3071. white-space:nowrap;
  3072. text-transform:none;
  3073. }
  3074. #u10507_img {
  3075. border-width:0px;
  3076. position:absolute;
  3077. left:0px;
  3078. top:0px;
  3079. width:70px;
  3080. height:63px;
  3081. }
  3082. #u10507 {
  3083. border-width:0px;
  3084. position:absolute;
  3085. left:377px;
  3086. top:227px;
  3087. width:70px;
  3088. height:63px;
  3089. display:flex;
  3090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3091. font-weight:400;
  3092. font-style:normal;
  3093. }
  3094. #u10507 .text {
  3095. position:absolute;
  3096. align-self:center;
  3097. padding:2px 2px 2px 2px;
  3098. box-sizing:border-box;
  3099. width:100%;
  3100. }
  3101. #u10507_text {
  3102. border-width:0px;
  3103. word-wrap:break-word;
  3104. text-transform:none;
  3105. }
  3106. #u10508_div {
  3107. border-width:0px;
  3108. position:absolute;
  3109. left:0px;
  3110. top:0px;
  3111. width:41px;
  3112. height:47px;
  3113. background:inherit;
  3114. background-color:rgba(255, 255, 255, 0);
  3115. border:none;
  3116. border-left:0px;
  3117. border-top:0px;
  3118. border-right:0px;
  3119. border-radius:0px;
  3120. border-bottom-right-radius:0px;
  3121. border-bottom-left-radius:0px;
  3122. -moz-box-shadow:none;
  3123. -webkit-box-shadow:none;
  3124. box-shadow:none;
  3125. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3126. font-weight:500;
  3127. font-style:normal;
  3128. line-height:40px;
  3129. }
  3130. #u10508 {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:489px;
  3134. top:235px;
  3135. width:41px;
  3136. height:47px;
  3137. display:flex;
  3138. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3139. font-weight:500;
  3140. font-style:normal;
  3141. line-height:40px;
  3142. }
  3143. #u10508 .text {
  3144. position:absolute;
  3145. align-self:center;
  3146. padding:0px 0px 0px 0px;
  3147. box-sizing:border-box;
  3148. width:100%;
  3149. }
  3150. #u10508_text {
  3151. border-width:0px;
  3152. white-space:nowrap;
  3153. text-transform:none;
  3154. }
  3155. #u10509_div {
  3156. border-width:0px;
  3157. position:absolute;
  3158. left:0px;
  3159. top:0px;
  3160. width:23px;
  3161. height:16px;
  3162. background:inherit;
  3163. background-color:rgba(255, 255, 255, 0);
  3164. border:none;
  3165. border-left:0px;
  3166. border-top:0px;
  3167. border-right:0px;
  3168. border-radius:0px;
  3169. border-bottom-right-radius:0px;
  3170. border-bottom-left-radius:0px;
  3171. -moz-box-shadow:none;
  3172. -webkit-box-shadow:none;
  3173. box-shadow:none;
  3174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3175. font-weight:400;
  3176. font-style:normal;
  3177. font-size:11px;
  3178. color:#298FFF;
  3179. }
  3180. #u10509 {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:530px;
  3184. top:235px;
  3185. width:23px;
  3186. height:16px;
  3187. display:flex;
  3188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3189. font-weight:400;
  3190. font-style:normal;
  3191. font-size:11px;
  3192. color:#298FFF;
  3193. }
  3194. #u10509 .text {
  3195. position:absolute;
  3196. align-self:center;
  3197. padding:0px 0px 0px 0px;
  3198. box-sizing:border-box;
  3199. width:100%;
  3200. }
  3201. #u10509_text {
  3202. border-width:0px;
  3203. white-space:nowrap;
  3204. text-transform:none;
  3205. }
  3206. #u10510 {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:0px;
  3210. top:0px;
  3211. width:0px;
  3212. height:0px;
  3213. }
  3214. #u10511_div {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:0px;
  3218. top:0px;
  3219. width:229px;
  3220. height:126px;
  3221. background:inherit;
  3222. background-color:rgba(255, 255, 255, 1);
  3223. box-sizing:border-box;
  3224. border-width:1px;
  3225. border-style:solid;
  3226. border-color:rgba(242, 242, 242, 1);
  3227. border-radius:5px;
  3228. -moz-box-shadow:none;
  3229. -webkit-box-shadow:none;
  3230. box-shadow:none;
  3231. }
  3232. #u10511 {
  3233. border-width:0px;
  3234. position:absolute;
  3235. left:603px;
  3236. top:185px;
  3237. width:229px;
  3238. height:126px;
  3239. display:flex;
  3240. }
  3241. #u10511 .text {
  3242. position:absolute;
  3243. align-self:center;
  3244. padding:2px 2px 2px 2px;
  3245. box-sizing:border-box;
  3246. width:100%;
  3247. }
  3248. #u10511_text {
  3249. border-width:0px;
  3250. word-wrap:break-word;
  3251. text-transform:none;
  3252. visibility:hidden;
  3253. }
  3254. #u10512_div {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:0px;
  3258. top:0px;
  3259. width:229px;
  3260. height:30px;
  3261. background:inherit;
  3262. background-color:rgba(51, 51, 51, 1);
  3263. box-sizing:border-box;
  3264. border-width:1px;
  3265. border-style:solid;
  3266. border-color:rgba(242, 242, 242, 1);
  3267. border-bottom:0px;
  3268. border-radius:5px;
  3269. border-bottom-right-radius:0px;
  3270. border-bottom-left-radius:0px;
  3271. -moz-box-shadow:none;
  3272. -webkit-box-shadow:none;
  3273. box-shadow:none;
  3274. }
  3275. #u10512 {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:603px;
  3279. top:185px;
  3280. width:229px;
  3281. height:30px;
  3282. display:flex;
  3283. }
  3284. #u10512 .text {
  3285. position:absolute;
  3286. align-self:center;
  3287. padding:2px 2px 2px 2px;
  3288. box-sizing:border-box;
  3289. width:100%;
  3290. }
  3291. #u10512_text {
  3292. border-width:0px;
  3293. word-wrap:break-word;
  3294. text-transform:none;
  3295. visibility:hidden;
  3296. }
  3297. #u10513_div {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:0px;
  3301. top:0px;
  3302. width:149px;
  3303. height:20px;
  3304. background:inherit;
  3305. background-color:rgba(255, 255, 255, 0);
  3306. border:none;
  3307. border-left:0px;
  3308. border-top:0px;
  3309. border-right:0px;
  3310. border-radius:0px;
  3311. border-bottom-right-radius:0px;
  3312. border-bottom-left-radius:0px;
  3313. -moz-box-shadow:none;
  3314. -webkit-box-shadow:none;
  3315. box-shadow:none;
  3316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3317. font-weight:400;
  3318. font-style:normal;
  3319. font-size:14px;
  3320. color:#FFFFFF;
  3321. }
  3322. #u10513 {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:610px;
  3326. top:190px;
  3327. width:149px;
  3328. height:20px;
  3329. display:flex;
  3330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3331. font-weight:400;
  3332. font-style:normal;
  3333. font-size:14px;
  3334. color:#FFFFFF;
  3335. }
  3336. #u10513 .text {
  3337. position:absolute;
  3338. align-self:center;
  3339. padding:0px 0px 0px 0px;
  3340. box-sizing:border-box;
  3341. width:100%;
  3342. }
  3343. #u10513_text {
  3344. border-width:0px;
  3345. white-space:nowrap;
  3346. text-transform:none;
  3347. }
  3348. #u10514_img {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:0px;
  3352. top:0px;
  3353. width:70px;
  3354. height:63px;
  3355. }
  3356. #u10514 {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:625px;
  3360. top:227px;
  3361. width:70px;
  3362. height:63px;
  3363. display:flex;
  3364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3365. font-weight:400;
  3366. font-style:normal;
  3367. }
  3368. #u10514 .text {
  3369. position:absolute;
  3370. align-self:center;
  3371. padding:2px 2px 2px 2px;
  3372. box-sizing:border-box;
  3373. width:100%;
  3374. }
  3375. #u10514_text {
  3376. border-width:0px;
  3377. word-wrap:break-word;
  3378. text-transform:none;
  3379. }
  3380. #u10515_div {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:0px;
  3384. top:0px;
  3385. width:66px;
  3386. height:47px;
  3387. background:inherit;
  3388. background-color:rgba(255, 255, 255, 0);
  3389. border:none;
  3390. border-left:0px;
  3391. border-top:0px;
  3392. border-right:0px;
  3393. border-radius:0px;
  3394. border-bottom-right-radius:0px;
  3395. border-bottom-left-radius:0px;
  3396. -moz-box-shadow:none;
  3397. -webkit-box-shadow:none;
  3398. box-shadow:none;
  3399. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3400. font-weight:500;
  3401. font-style:normal;
  3402. font-size:18px;
  3403. line-height:40px;
  3404. }
  3405. #u10515 {
  3406. border-width:0px;
  3407. position:absolute;
  3408. left:737px;
  3409. top:235px;
  3410. width:66px;
  3411. height:47px;
  3412. display:flex;
  3413. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3414. font-weight:500;
  3415. font-style:normal;
  3416. font-size:18px;
  3417. line-height:40px;
  3418. }
  3419. #u10515 .text {
  3420. position:absolute;
  3421. align-self:center;
  3422. padding:0px 0px 0px 0px;
  3423. box-sizing:border-box;
  3424. width:100%;
  3425. }
  3426. #u10515_text {
  3427. border-width:0px;
  3428. white-space:nowrap;
  3429. text-transform:none;
  3430. }
  3431. #u10516_div {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:0px;
  3435. top:0px;
  3436. width:23px;
  3437. height:16px;
  3438. background:inherit;
  3439. background-color:rgba(255, 255, 255, 0);
  3440. border:none;
  3441. border-left:0px;
  3442. border-top:0px;
  3443. border-right:0px;
  3444. border-radius:0px;
  3445. border-bottom-right-radius:0px;
  3446. border-bottom-left-radius:0px;
  3447. -moz-box-shadow:none;
  3448. -webkit-box-shadow:none;
  3449. box-shadow:none;
  3450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3451. font-weight:400;
  3452. font-style:normal;
  3453. font-size:11px;
  3454. color:#298FFF;
  3455. }
  3456. #u10516 {
  3457. border-width:0px;
  3458. position:absolute;
  3459. left:797px;
  3460. top:235px;
  3461. width:23px;
  3462. height:16px;
  3463. display:flex;
  3464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3465. font-weight:400;
  3466. font-style:normal;
  3467. font-size:11px;
  3468. color:#298FFF;
  3469. }
  3470. #u10516 .text {
  3471. position:absolute;
  3472. align-self:center;
  3473. padding:0px 0px 0px 0px;
  3474. box-sizing:border-box;
  3475. width:100%;
  3476. }
  3477. #u10516_text {
  3478. border-width:0px;
  3479. white-space:nowrap;
  3480. text-transform:none;
  3481. }
  3482. #u10517 {
  3483. border-width:0px;
  3484. position:absolute;
  3485. left:0px;
  3486. top:0px;
  3487. width:0px;
  3488. height:0px;
  3489. }
  3490. #u10518_div {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:0px;
  3494. top:0px;
  3495. width:229px;
  3496. height:126px;
  3497. background:inherit;
  3498. background-color:rgba(255, 255, 255, 1);
  3499. box-sizing:border-box;
  3500. border-width:1px;
  3501. border-style:solid;
  3502. border-color:rgba(242, 242, 242, 1);
  3503. border-radius:5px;
  3504. -moz-box-shadow:none;
  3505. -webkit-box-shadow:none;
  3506. box-shadow:none;
  3507. }
  3508. #u10518 {
  3509. border-width:0px;
  3510. position:absolute;
  3511. left:850px;
  3512. top:185px;
  3513. width:229px;
  3514. height:126px;
  3515. display:flex;
  3516. }
  3517. #u10518 .text {
  3518. position:absolute;
  3519. align-self:center;
  3520. padding:2px 2px 2px 2px;
  3521. box-sizing:border-box;
  3522. width:100%;
  3523. }
  3524. #u10518_text {
  3525. border-width:0px;
  3526. word-wrap:break-word;
  3527. text-transform:none;
  3528. visibility:hidden;
  3529. }
  3530. #u10519_div {
  3531. border-width:0px;
  3532. position:absolute;
  3533. left:0px;
  3534. top:0px;
  3535. width:229px;
  3536. height:30px;
  3537. background:inherit;
  3538. background-color:rgba(51, 51, 51, 1);
  3539. box-sizing:border-box;
  3540. border-width:1px;
  3541. border-style:solid;
  3542. border-color:rgba(242, 242, 242, 1);
  3543. border-bottom:0px;
  3544. border-radius:5px;
  3545. border-bottom-right-radius:0px;
  3546. border-bottom-left-radius:0px;
  3547. -moz-box-shadow:none;
  3548. -webkit-box-shadow:none;
  3549. box-shadow:none;
  3550. }
  3551. #u10519 {
  3552. border-width:0px;
  3553. position:absolute;
  3554. left:850px;
  3555. top:185px;
  3556. width:229px;
  3557. height:30px;
  3558. display:flex;
  3559. }
  3560. #u10519 .text {
  3561. position:absolute;
  3562. align-self:center;
  3563. padding:2px 2px 2px 2px;
  3564. box-sizing:border-box;
  3565. width:100%;
  3566. }
  3567. #u10519_text {
  3568. border-width:0px;
  3569. word-wrap:break-word;
  3570. text-transform:none;
  3571. visibility:hidden;
  3572. }
  3573. #u10520_div {
  3574. border-width:0px;
  3575. position:absolute;
  3576. left:0px;
  3577. top:0px;
  3578. width:121px;
  3579. height:20px;
  3580. background:inherit;
  3581. background-color:rgba(255, 255, 255, 0);
  3582. border:none;
  3583. border-left:0px;
  3584. border-top:0px;
  3585. border-right:0px;
  3586. border-radius:0px;
  3587. border-bottom-right-radius:0px;
  3588. border-bottom-left-radius:0px;
  3589. -moz-box-shadow:none;
  3590. -webkit-box-shadow:none;
  3591. box-shadow:none;
  3592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3593. font-weight:400;
  3594. font-style:normal;
  3595. font-size:14px;
  3596. color:#FFFFFF;
  3597. }
  3598. #u10520 {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:857px;
  3602. top:190px;
  3603. width:121px;
  3604. height:20px;
  3605. display:flex;
  3606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3607. font-weight:400;
  3608. font-style:normal;
  3609. font-size:14px;
  3610. color:#FFFFFF;
  3611. }
  3612. #u10520 .text {
  3613. position:absolute;
  3614. align-self:center;
  3615. padding:0px 0px 0px 0px;
  3616. box-sizing:border-box;
  3617. width:100%;
  3618. }
  3619. #u10520_text {
  3620. border-width:0px;
  3621. white-space:nowrap;
  3622. text-transform:none;
  3623. }
  3624. #u10521_img {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:0px;
  3628. top:0px;
  3629. width:70px;
  3630. height:63px;
  3631. }
  3632. #u10521 {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:872px;
  3636. top:227px;
  3637. width:70px;
  3638. height:63px;
  3639. display:flex;
  3640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3641. font-weight:400;
  3642. font-style:normal;
  3643. }
  3644. #u10521 .text {
  3645. position:absolute;
  3646. align-self:center;
  3647. padding:2px 2px 2px 2px;
  3648. box-sizing:border-box;
  3649. width:100%;
  3650. }
  3651. #u10521_text {
  3652. border-width:0px;
  3653. word-wrap:break-word;
  3654. text-transform:none;
  3655. }
  3656. #u10522_div {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:0px;
  3660. top:0px;
  3661. width:37px;
  3662. height:47px;
  3663. background:inherit;
  3664. background-color:rgba(255, 255, 255, 0);
  3665. border:none;
  3666. border-left:0px;
  3667. border-top:0px;
  3668. border-right:0px;
  3669. border-radius:0px;
  3670. border-bottom-right-radius:0px;
  3671. border-bottom-left-radius:0px;
  3672. -moz-box-shadow:none;
  3673. -webkit-box-shadow:none;
  3674. box-shadow:none;
  3675. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3676. font-weight:500;
  3677. font-style:normal;
  3678. font-size:18px;
  3679. line-height:40px;
  3680. }
  3681. #u10522 {
  3682. border-width:0px;
  3683. position:absolute;
  3684. left:1001px;
  3685. top:235px;
  3686. width:37px;
  3687. height:47px;
  3688. display:flex;
  3689. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3690. font-weight:500;
  3691. font-style:normal;
  3692. font-size:18px;
  3693. line-height:40px;
  3694. }
  3695. #u10522 .text {
  3696. position:absolute;
  3697. align-self:center;
  3698. padding:0px 0px 0px 0px;
  3699. box-sizing:border-box;
  3700. width:100%;
  3701. }
  3702. #u10522_text {
  3703. border-width:0px;
  3704. white-space:nowrap;
  3705. text-transform:none;
  3706. }
  3707. #u10523 {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:0px;
  3711. top:0px;
  3712. width:0px;
  3713. height:0px;
  3714. }
  3715. #u10524_div {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:0px;
  3719. top:0px;
  3720. width:229px;
  3721. height:126px;
  3722. background:inherit;
  3723. background-color:rgba(255, 255, 255, 1);
  3724. box-sizing:border-box;
  3725. border-width:1px;
  3726. border-style:solid;
  3727. border-color:rgba(242, 242, 242, 1);
  3728. border-radius:5px;
  3729. -moz-box-shadow:none;
  3730. -webkit-box-shadow:none;
  3731. box-shadow:none;
  3732. }
  3733. #u10524 {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:1098px;
  3737. top:185px;
  3738. width:229px;
  3739. height:126px;
  3740. display:flex;
  3741. }
  3742. #u10524 .text {
  3743. position:absolute;
  3744. align-self:center;
  3745. padding:2px 2px 2px 2px;
  3746. box-sizing:border-box;
  3747. width:100%;
  3748. }
  3749. #u10524_text {
  3750. border-width:0px;
  3751. word-wrap:break-word;
  3752. text-transform:none;
  3753. visibility:hidden;
  3754. }
  3755. #u10525_div {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:0px;
  3759. top:0px;
  3760. width:229px;
  3761. height:30px;
  3762. background:inherit;
  3763. background-color:rgba(51, 51, 51, 1);
  3764. box-sizing:border-box;
  3765. border-width:1px;
  3766. border-style:solid;
  3767. border-color:rgba(242, 242, 242, 1);
  3768. border-bottom:0px;
  3769. border-radius:5px;
  3770. border-bottom-right-radius:0px;
  3771. border-bottom-left-radius:0px;
  3772. -moz-box-shadow:none;
  3773. -webkit-box-shadow:none;
  3774. box-shadow:none;
  3775. }
  3776. #u10525 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:1098px;
  3780. top:185px;
  3781. width:229px;
  3782. height:30px;
  3783. display:flex;
  3784. }
  3785. #u10525 .text {
  3786. position:absolute;
  3787. align-self:center;
  3788. padding:2px 2px 2px 2px;
  3789. box-sizing:border-box;
  3790. width:100%;
  3791. }
  3792. #u10525_text {
  3793. border-width:0px;
  3794. word-wrap:break-word;
  3795. text-transform:none;
  3796. visibility:hidden;
  3797. }
  3798. #u10526_div {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:0px;
  3802. top:0px;
  3803. width:121px;
  3804. height:20px;
  3805. background:inherit;
  3806. background-color:rgba(255, 255, 255, 0);
  3807. border:none;
  3808. border-left:0px;
  3809. border-top:0px;
  3810. border-right:0px;
  3811. border-radius:0px;
  3812. border-bottom-right-radius:0px;
  3813. border-bottom-left-radius:0px;
  3814. -moz-box-shadow:none;
  3815. -webkit-box-shadow:none;
  3816. box-shadow:none;
  3817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3818. font-weight:400;
  3819. font-style:normal;
  3820. font-size:14px;
  3821. color:#FFFFFF;
  3822. }
  3823. #u10526 {
  3824. border-width:0px;
  3825. position:absolute;
  3826. left:1105px;
  3827. top:190px;
  3828. width:121px;
  3829. height:20px;
  3830. display:flex;
  3831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3832. font-weight:400;
  3833. font-style:normal;
  3834. font-size:14px;
  3835. color:#FFFFFF;
  3836. }
  3837. #u10526 .text {
  3838. position:absolute;
  3839. align-self:center;
  3840. padding:0px 0px 0px 0px;
  3841. box-sizing:border-box;
  3842. width:100%;
  3843. }
  3844. #u10526_text {
  3845. border-width:0px;
  3846. white-space:nowrap;
  3847. text-transform:none;
  3848. }
  3849. #u10527_img {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:0px;
  3853. top:0px;
  3854. width:70px;
  3855. height:63px;
  3856. }
  3857. #u10527 {
  3858. border-width:0px;
  3859. position:absolute;
  3860. left:1120px;
  3861. top:227px;
  3862. width:70px;
  3863. height:63px;
  3864. display:flex;
  3865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3866. font-weight:400;
  3867. font-style:normal;
  3868. }
  3869. #u10527 .text {
  3870. position:absolute;
  3871. align-self:center;
  3872. padding:2px 2px 2px 2px;
  3873. box-sizing:border-box;
  3874. width:100%;
  3875. }
  3876. #u10527_text {
  3877. border-width:0px;
  3878. word-wrap:break-word;
  3879. text-transform:none;
  3880. }
  3881. #u10528_div {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:0px;
  3885. top:0px;
  3886. width:53px;
  3887. height:47px;
  3888. background:inherit;
  3889. background-color:rgba(255, 255, 255, 0);
  3890. border:none;
  3891. border-left:0px;
  3892. border-top:0px;
  3893. border-right:0px;
  3894. border-radius:0px;
  3895. border-bottom-right-radius:0px;
  3896. border-bottom-left-radius:0px;
  3897. -moz-box-shadow:none;
  3898. -webkit-box-shadow:none;
  3899. box-shadow:none;
  3900. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3901. font-weight:500;
  3902. font-style:normal;
  3903. font-size:18px;
  3904. line-height:40px;
  3905. }
  3906. #u10528 {
  3907. border-width:0px;
  3908. position:absolute;
  3909. left:1239px;
  3910. top:235px;
  3911. width:53px;
  3912. height:47px;
  3913. display:flex;
  3914. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3915. font-weight:500;
  3916. font-style:normal;
  3917. font-size:18px;
  3918. line-height:40px;
  3919. }
  3920. #u10528 .text {
  3921. position:absolute;
  3922. align-self:center;
  3923. padding:0px 0px 0px 0px;
  3924. box-sizing:border-box;
  3925. width:100%;
  3926. }
  3927. #u10528_text {
  3928. border-width:0px;
  3929. white-space:nowrap;
  3930. text-transform:none;
  3931. }
  3932. #u10529 {
  3933. border-width:0px;
  3934. position:absolute;
  3935. left:0px;
  3936. top:0px;
  3937. width:0px;
  3938. height:0px;
  3939. }
  3940. #u10530_div {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:0px;
  3944. top:0px;
  3945. width:229px;
  3946. height:126px;
  3947. background:inherit;
  3948. background-color:rgba(255, 255, 255, 1);
  3949. box-sizing:border-box;
  3950. border-width:1px;
  3951. border-style:solid;
  3952. border-color:rgba(242, 242, 242, 1);
  3953. border-radius:5px;
  3954. -moz-box-shadow:none;
  3955. -webkit-box-shadow:none;
  3956. box-shadow:none;
  3957. }
  3958. #u10530 {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:1345px;
  3962. top:185px;
  3963. width:229px;
  3964. height:126px;
  3965. display:flex;
  3966. }
  3967. #u10530 .text {
  3968. position:absolute;
  3969. align-self:center;
  3970. padding:2px 2px 2px 2px;
  3971. box-sizing:border-box;
  3972. width:100%;
  3973. }
  3974. #u10530_text {
  3975. border-width:0px;
  3976. word-wrap:break-word;
  3977. text-transform:none;
  3978. visibility:hidden;
  3979. }
  3980. #u10531_div {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:0px;
  3984. top:0px;
  3985. width:229px;
  3986. height:30px;
  3987. background:inherit;
  3988. background-color:rgba(51, 51, 51, 1);
  3989. box-sizing:border-box;
  3990. border-width:1px;
  3991. border-style:solid;
  3992. border-color:rgba(242, 242, 242, 1);
  3993. border-bottom:0px;
  3994. border-radius:5px;
  3995. border-bottom-right-radius:0px;
  3996. border-bottom-left-radius:0px;
  3997. -moz-box-shadow:none;
  3998. -webkit-box-shadow:none;
  3999. box-shadow:none;
  4000. }
  4001. #u10531 {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:1345px;
  4005. top:185px;
  4006. width:229px;
  4007. height:30px;
  4008. display:flex;
  4009. }
  4010. #u10531 .text {
  4011. position:absolute;
  4012. align-self:center;
  4013. padding:2px 2px 2px 2px;
  4014. box-sizing:border-box;
  4015. width:100%;
  4016. }
  4017. #u10531_text {
  4018. border-width:0px;
  4019. word-wrap:break-word;
  4020. text-transform:none;
  4021. visibility:hidden;
  4022. }
  4023. #u10532_div {
  4024. border-width:0px;
  4025. position:absolute;
  4026. left:0px;
  4027. top:0px;
  4028. width:149px;
  4029. height:20px;
  4030. background:inherit;
  4031. background-color:rgba(255, 255, 255, 0);
  4032. border:none;
  4033. border-left:0px;
  4034. border-top:0px;
  4035. border-right:0px;
  4036. border-radius:0px;
  4037. border-bottom-right-radius:0px;
  4038. border-bottom-left-radius:0px;
  4039. -moz-box-shadow:none;
  4040. -webkit-box-shadow:none;
  4041. box-shadow:none;
  4042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4043. font-weight:400;
  4044. font-style:normal;
  4045. font-size:14px;
  4046. color:#FFFFFF;
  4047. }
  4048. #u10532 {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:1352px;
  4052. top:190px;
  4053. width:149px;
  4054. height:20px;
  4055. display:flex;
  4056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4057. font-weight:400;
  4058. font-style:normal;
  4059. font-size:14px;
  4060. color:#FFFFFF;
  4061. }
  4062. #u10532 .text {
  4063. position:absolute;
  4064. align-self:center;
  4065. padding:0px 0px 0px 0px;
  4066. box-sizing:border-box;
  4067. width:100%;
  4068. }
  4069. #u10532_text {
  4070. border-width:0px;
  4071. white-space:nowrap;
  4072. text-transform:none;
  4073. }
  4074. #u10533_img {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:0px;
  4078. top:0px;
  4079. width:70px;
  4080. height:63px;
  4081. }
  4082. #u10533 {
  4083. border-width:0px;
  4084. position:absolute;
  4085. left:1367px;
  4086. top:227px;
  4087. width:70px;
  4088. height:63px;
  4089. display:flex;
  4090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4091. font-weight:400;
  4092. font-style:normal;
  4093. }
  4094. #u10533 .text {
  4095. position:absolute;
  4096. align-self:center;
  4097. padding:2px 2px 2px 2px;
  4098. box-sizing:border-box;
  4099. width:100%;
  4100. }
  4101. #u10533_text {
  4102. border-width:0px;
  4103. word-wrap:break-word;
  4104. text-transform:none;
  4105. }
  4106. #u10534_div {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:0px;
  4110. top:0px;
  4111. width:43px;
  4112. height:47px;
  4113. background:inherit;
  4114. background-color:rgba(255, 255, 255, 0);
  4115. border:none;
  4116. border-left:0px;
  4117. border-top:0px;
  4118. border-right:0px;
  4119. border-radius:0px;
  4120. border-bottom-right-radius:0px;
  4121. border-bottom-left-radius:0px;
  4122. -moz-box-shadow:none;
  4123. -webkit-box-shadow:none;
  4124. box-shadow:none;
  4125. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4126. font-weight:500;
  4127. font-style:normal;
  4128. font-size:18px;
  4129. line-height:40px;
  4130. }
  4131. #u10534 {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:1486px;
  4135. top:235px;
  4136. width:43px;
  4137. height:47px;
  4138. display:flex;
  4139. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4140. font-weight:500;
  4141. font-style:normal;
  4142. font-size:18px;
  4143. line-height:40px;
  4144. }
  4145. #u10534 .text {
  4146. position:absolute;
  4147. align-self:center;
  4148. padding:0px 0px 0px 0px;
  4149. box-sizing:border-box;
  4150. width:100%;
  4151. }
  4152. #u10534_text {
  4153. border-width:0px;
  4154. white-space:nowrap;
  4155. text-transform:none;
  4156. }
  4157. #u10535 {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:0px;
  4161. top:0px;
  4162. width:0px;
  4163. height:0px;
  4164. }
  4165. #u10536_div {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:0px;
  4169. top:0px;
  4170. width:229px;
  4171. height:126px;
  4172. background:inherit;
  4173. background-color:rgba(255, 255, 255, 1);
  4174. box-sizing:border-box;
  4175. border-width:1px;
  4176. border-style:solid;
  4177. border-color:rgba(242, 242, 242, 1);
  4178. border-radius:5px;
  4179. -moz-box-shadow:none;
  4180. -webkit-box-shadow:none;
  4181. box-shadow:none;
  4182. }
  4183. #u10536 {
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:355px;
  4187. top:324px;
  4188. width:229px;
  4189. height:126px;
  4190. display:flex;
  4191. }
  4192. #u10536 .text {
  4193. position:absolute;
  4194. align-self:center;
  4195. padding:2px 2px 2px 2px;
  4196. box-sizing:border-box;
  4197. width:100%;
  4198. }
  4199. #u10536_text {
  4200. border-width:0px;
  4201. word-wrap:break-word;
  4202. text-transform:none;
  4203. visibility:hidden;
  4204. }
  4205. #u10537_div {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:0px;
  4209. top:0px;
  4210. width:229px;
  4211. height:30px;
  4212. background:inherit;
  4213. background-color:rgba(51, 51, 51, 1);
  4214. box-sizing:border-box;
  4215. border-width:1px;
  4216. border-style:solid;
  4217. border-color:rgba(242, 242, 242, 1);
  4218. border-bottom:0px;
  4219. border-radius:5px;
  4220. border-bottom-right-radius:0px;
  4221. border-bottom-left-radius:0px;
  4222. -moz-box-shadow:none;
  4223. -webkit-box-shadow:none;
  4224. box-shadow:none;
  4225. }
  4226. #u10537 {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:355px;
  4230. top:324px;
  4231. width:229px;
  4232. height:30px;
  4233. display:flex;
  4234. }
  4235. #u10537 .text {
  4236. position:absolute;
  4237. align-self:center;
  4238. padding:2px 2px 2px 2px;
  4239. box-sizing:border-box;
  4240. width:100%;
  4241. }
  4242. #u10537_text {
  4243. border-width:0px;
  4244. word-wrap:break-word;
  4245. text-transform:none;
  4246. visibility:hidden;
  4247. }
  4248. #u10538_div {
  4249. border-width:0px;
  4250. position:absolute;
  4251. left:0px;
  4252. top:0px;
  4253. width:135px;
  4254. height:20px;
  4255. background:inherit;
  4256. background-color:rgba(255, 255, 255, 0);
  4257. border:none;
  4258. border-left:0px;
  4259. border-top:0px;
  4260. border-right:0px;
  4261. border-radius:0px;
  4262. border-bottom-right-radius:0px;
  4263. border-bottom-left-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:14px;
  4271. color:#FFFFFF;
  4272. }
  4273. #u10538 {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:362px;
  4277. top:329px;
  4278. width:135px;
  4279. height:20px;
  4280. display:flex;
  4281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4282. font-weight:400;
  4283. font-style:normal;
  4284. font-size:14px;
  4285. color:#FFFFFF;
  4286. }
  4287. #u10538 .text {
  4288. position:absolute;
  4289. align-self:center;
  4290. padding:0px 0px 0px 0px;
  4291. box-sizing:border-box;
  4292. width:100%;
  4293. }
  4294. #u10538_text {
  4295. border-width:0px;
  4296. white-space:nowrap;
  4297. text-transform:none;
  4298. }
  4299. #u10539_img {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:0px;
  4303. top:0px;
  4304. width:70px;
  4305. height:63px;
  4306. }
  4307. #u10539 {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:377px;
  4311. top:366px;
  4312. width:70px;
  4313. height:63px;
  4314. display:flex;
  4315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4316. font-weight:400;
  4317. font-style:normal;
  4318. }
  4319. #u10539 .text {
  4320. position:absolute;
  4321. align-self:center;
  4322. padding:2px 2px 2px 2px;
  4323. box-sizing:border-box;
  4324. width:100%;
  4325. }
  4326. #u10539_text {
  4327. border-width:0px;
  4328. word-wrap:break-word;
  4329. text-transform:none;
  4330. }
  4331. #u10540_div {
  4332. border-width:0px;
  4333. position:absolute;
  4334. left:0px;
  4335. top:0px;
  4336. width:53px;
  4337. height:47px;
  4338. background:inherit;
  4339. background-color:rgba(255, 255, 255, 0);
  4340. border:none;
  4341. border-left:0px;
  4342. border-top:0px;
  4343. border-right:0px;
  4344. border-radius:0px;
  4345. border-bottom-right-radius:0px;
  4346. border-bottom-left-radius:0px;
  4347. -moz-box-shadow:none;
  4348. -webkit-box-shadow:none;
  4349. box-shadow:none;
  4350. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4351. font-weight:500;
  4352. font-style:normal;
  4353. font-size:18px;
  4354. line-height:40px;
  4355. }
  4356. #u10540 {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:489px;
  4360. top:374px;
  4361. width:53px;
  4362. height:47px;
  4363. display:flex;
  4364. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4365. font-weight:500;
  4366. font-style:normal;
  4367. font-size:18px;
  4368. line-height:40px;
  4369. }
  4370. #u10540 .text {
  4371. position:absolute;
  4372. align-self:center;
  4373. padding:0px 0px 0px 0px;
  4374. box-sizing:border-box;
  4375. width:100%;
  4376. }
  4377. #u10540_text {
  4378. border-width:0px;
  4379. white-space:nowrap;
  4380. text-transform:none;
  4381. }
  4382. #u10541_div {
  4383. border-width:0px;
  4384. position:absolute;
  4385. left:0px;
  4386. top:0px;
  4387. width:23px;
  4388. height:16px;
  4389. background:inherit;
  4390. background-color:rgba(255, 255, 255, 0);
  4391. border:none;
  4392. border-left:0px;
  4393. border-top:0px;
  4394. border-right:0px;
  4395. border-radius:0px;
  4396. border-bottom-right-radius:0px;
  4397. border-bottom-left-radius:0px;
  4398. -moz-box-shadow:none;
  4399. -webkit-box-shadow:none;
  4400. box-shadow:none;
  4401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4402. font-weight:400;
  4403. font-style:normal;
  4404. font-size:11px;
  4405. color:#298FFF;
  4406. }
  4407. #u10541 {
  4408. border-width:0px;
  4409. position:absolute;
  4410. left:530px;
  4411. top:374px;
  4412. width:23px;
  4413. height:16px;
  4414. display:flex;
  4415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4416. font-weight:400;
  4417. font-style:normal;
  4418. font-size:11px;
  4419. color:#298FFF;
  4420. }
  4421. #u10541 .text {
  4422. position:absolute;
  4423. align-self:center;
  4424. padding:0px 0px 0px 0px;
  4425. box-sizing:border-box;
  4426. width:100%;
  4427. }
  4428. #u10541_text {
  4429. border-width:0px;
  4430. white-space:nowrap;
  4431. text-transform:none;
  4432. }
  4433. #u10542 {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:0px;
  4437. top:0px;
  4438. width:0px;
  4439. height:0px;
  4440. }
  4441. #u10543_div {
  4442. border-width:0px;
  4443. position:absolute;
  4444. left:0px;
  4445. top:0px;
  4446. width:229px;
  4447. height:126px;
  4448. background:inherit;
  4449. background-color:rgba(255, 255, 255, 1);
  4450. box-sizing:border-box;
  4451. border-width:1px;
  4452. border-style:solid;
  4453. border-color:rgba(242, 242, 242, 1);
  4454. border-radius:5px;
  4455. -moz-box-shadow:none;
  4456. -webkit-box-shadow:none;
  4457. box-shadow:none;
  4458. }
  4459. #u10543 {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:603px;
  4463. top:324px;
  4464. width:229px;
  4465. height:126px;
  4466. display:flex;
  4467. }
  4468. #u10543 .text {
  4469. position:absolute;
  4470. align-self:center;
  4471. padding:2px 2px 2px 2px;
  4472. box-sizing:border-box;
  4473. width:100%;
  4474. }
  4475. #u10543_text {
  4476. border-width:0px;
  4477. word-wrap:break-word;
  4478. text-transform:none;
  4479. visibility:hidden;
  4480. }
  4481. #u10544_div {
  4482. border-width:0px;
  4483. position:absolute;
  4484. left:0px;
  4485. top:0px;
  4486. width:229px;
  4487. height:30px;
  4488. background:inherit;
  4489. background-color:rgba(51, 51, 51, 1);
  4490. box-sizing:border-box;
  4491. border-width:1px;
  4492. border-style:solid;
  4493. border-color:rgba(242, 242, 242, 1);
  4494. border-bottom:0px;
  4495. border-radius:5px;
  4496. border-bottom-right-radius:0px;
  4497. border-bottom-left-radius:0px;
  4498. -moz-box-shadow:none;
  4499. -webkit-box-shadow:none;
  4500. box-shadow:none;
  4501. }
  4502. #u10544 {
  4503. border-width:0px;
  4504. position:absolute;
  4505. left:603px;
  4506. top:324px;
  4507. width:229px;
  4508. height:30px;
  4509. display:flex;
  4510. }
  4511. #u10544 .text {
  4512. position:absolute;
  4513. align-self:center;
  4514. padding:2px 2px 2px 2px;
  4515. box-sizing:border-box;
  4516. width:100%;
  4517. }
  4518. #u10544_text {
  4519. border-width:0px;
  4520. word-wrap:break-word;
  4521. text-transform:none;
  4522. visibility:hidden;
  4523. }
  4524. #u10545_div {
  4525. border-width:0px;
  4526. position:absolute;
  4527. left:0px;
  4528. top:0px;
  4529. width:135px;
  4530. height:20px;
  4531. background:inherit;
  4532. background-color:rgba(255, 255, 255, 0);
  4533. border:none;
  4534. border-left:0px;
  4535. border-top:0px;
  4536. border-right:0px;
  4537. border-radius:0px;
  4538. border-bottom-right-radius:0px;
  4539. border-bottom-left-radius:0px;
  4540. -moz-box-shadow:none;
  4541. -webkit-box-shadow:none;
  4542. box-shadow:none;
  4543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4544. font-weight:400;
  4545. font-style:normal;
  4546. font-size:14px;
  4547. color:#FFFFFF;
  4548. }
  4549. #u10545 {
  4550. border-width:0px;
  4551. position:absolute;
  4552. left:610px;
  4553. top:329px;
  4554. width:135px;
  4555. height:20px;
  4556. display:flex;
  4557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4558. font-weight:400;
  4559. font-style:normal;
  4560. font-size:14px;
  4561. color:#FFFFFF;
  4562. }
  4563. #u10545 .text {
  4564. position:absolute;
  4565. align-self:center;
  4566. padding:0px 0px 0px 0px;
  4567. box-sizing:border-box;
  4568. width:100%;
  4569. }
  4570. #u10545_text {
  4571. border-width:0px;
  4572. white-space:nowrap;
  4573. text-transform:none;
  4574. }
  4575. #u10546_img {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:0px;
  4579. top:0px;
  4580. width:70px;
  4581. height:63px;
  4582. }
  4583. #u10546 {
  4584. border-width:0px;
  4585. position:absolute;
  4586. left:625px;
  4587. top:366px;
  4588. width:70px;
  4589. height:63px;
  4590. display:flex;
  4591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4592. font-weight:400;
  4593. font-style:normal;
  4594. }
  4595. #u10546 .text {
  4596. position:absolute;
  4597. align-self:center;
  4598. padding:2px 2px 2px 2px;
  4599. box-sizing:border-box;
  4600. width:100%;
  4601. }
  4602. #u10546_text {
  4603. border-width:0px;
  4604. word-wrap:break-word;
  4605. text-transform:none;
  4606. }
  4607. #u10547_div {
  4608. border-width:0px;
  4609. position:absolute;
  4610. left:0px;
  4611. top:0px;
  4612. width:71px;
  4613. height:47px;
  4614. background:inherit;
  4615. background-color:rgba(255, 255, 255, 0);
  4616. border:none;
  4617. border-left:0px;
  4618. border-top:0px;
  4619. border-right:0px;
  4620. border-radius:0px;
  4621. border-bottom-right-radius:0px;
  4622. border-bottom-left-radius:0px;
  4623. -moz-box-shadow:none;
  4624. -webkit-box-shadow:none;
  4625. box-shadow:none;
  4626. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4627. font-weight:500;
  4628. font-style:normal;
  4629. font-size:18px;
  4630. line-height:40px;
  4631. }
  4632. #u10547 {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:737px;
  4636. top:374px;
  4637. width:71px;
  4638. height:47px;
  4639. display:flex;
  4640. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4641. font-weight:500;
  4642. font-style:normal;
  4643. font-size:18px;
  4644. line-height:40px;
  4645. }
  4646. #u10547 .text {
  4647. position:absolute;
  4648. align-self:center;
  4649. padding:0px 0px 0px 0px;
  4650. box-sizing:border-box;
  4651. width:100%;
  4652. }
  4653. #u10547_text {
  4654. border-width:0px;
  4655. white-space:nowrap;
  4656. text-transform:none;
  4657. }
  4658. #u10548_div {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:0px;
  4662. top:0px;
  4663. width:23px;
  4664. height:16px;
  4665. background:inherit;
  4666. background-color:rgba(255, 255, 255, 0);
  4667. border:none;
  4668. border-left:0px;
  4669. border-top:0px;
  4670. border-right:0px;
  4671. border-radius:0px;
  4672. border-bottom-right-radius:0px;
  4673. border-bottom-left-radius:0px;
  4674. -moz-box-shadow:none;
  4675. -webkit-box-shadow:none;
  4676. box-shadow:none;
  4677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4678. font-weight:400;
  4679. font-style:normal;
  4680. font-size:11px;
  4681. color:#298FFF;
  4682. }
  4683. #u10548 {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:797px;
  4687. top:374px;
  4688. width:23px;
  4689. height:16px;
  4690. display:flex;
  4691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4692. font-weight:400;
  4693. font-style:normal;
  4694. font-size:11px;
  4695. color:#298FFF;
  4696. }
  4697. #u10548 .text {
  4698. position:absolute;
  4699. align-self:center;
  4700. padding:0px 0px 0px 0px;
  4701. box-sizing:border-box;
  4702. width:100%;
  4703. }
  4704. #u10548_text {
  4705. border-width:0px;
  4706. white-space:nowrap;
  4707. text-transform:none;
  4708. }
  4709. #u10549 {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:0px;
  4713. top:0px;
  4714. width:0px;
  4715. height:0px;
  4716. }
  4717. #u10550_div {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:0px;
  4721. top:0px;
  4722. width:229px;
  4723. height:126px;
  4724. background:inherit;
  4725. background-color:rgba(255, 255, 255, 1);
  4726. box-sizing:border-box;
  4727. border-width:1px;
  4728. border-style:solid;
  4729. border-color:rgba(242, 242, 242, 1);
  4730. border-radius:5px;
  4731. -moz-box-shadow:none;
  4732. -webkit-box-shadow:none;
  4733. box-shadow:none;
  4734. }
  4735. #u10550 {
  4736. border-width:0px;
  4737. position:absolute;
  4738. left:850px;
  4739. top:324px;
  4740. width:229px;
  4741. height:126px;
  4742. display:flex;
  4743. }
  4744. #u10550 .text {
  4745. position:absolute;
  4746. align-self:center;
  4747. padding:2px 2px 2px 2px;
  4748. box-sizing:border-box;
  4749. width:100%;
  4750. }
  4751. #u10550_text {
  4752. border-width:0px;
  4753. word-wrap:break-word;
  4754. text-transform:none;
  4755. visibility:hidden;
  4756. }
  4757. #u10551_div {
  4758. border-width:0px;
  4759. position:absolute;
  4760. left:0px;
  4761. top:0px;
  4762. width:229px;
  4763. height:30px;
  4764. background:inherit;
  4765. background-color:rgba(51, 51, 51, 1);
  4766. box-sizing:border-box;
  4767. border-width:1px;
  4768. border-style:solid;
  4769. border-color:rgba(242, 242, 242, 1);
  4770. border-bottom:0px;
  4771. border-radius:5px;
  4772. border-bottom-right-radius:0px;
  4773. border-bottom-left-radius:0px;
  4774. -moz-box-shadow:none;
  4775. -webkit-box-shadow:none;
  4776. box-shadow:none;
  4777. }
  4778. #u10551 {
  4779. border-width:0px;
  4780. position:absolute;
  4781. left:850px;
  4782. top:324px;
  4783. width:229px;
  4784. height:30px;
  4785. display:flex;
  4786. }
  4787. #u10551 .text {
  4788. position:absolute;
  4789. align-self:center;
  4790. padding:2px 2px 2px 2px;
  4791. box-sizing:border-box;
  4792. width:100%;
  4793. }
  4794. #u10551_text {
  4795. border-width:0px;
  4796. word-wrap:break-word;
  4797. text-transform:none;
  4798. visibility:hidden;
  4799. }
  4800. #u10552_div {
  4801. border-width:0px;
  4802. position:absolute;
  4803. left:0px;
  4804. top:0px;
  4805. width:149px;
  4806. height:20px;
  4807. background:inherit;
  4808. background-color:rgba(255, 255, 255, 0);
  4809. border:none;
  4810. border-left:0px;
  4811. border-top:0px;
  4812. border-right:0px;
  4813. border-radius:0px;
  4814. border-bottom-right-radius:0px;
  4815. border-bottom-left-radius:0px;
  4816. -moz-box-shadow:none;
  4817. -webkit-box-shadow:none;
  4818. box-shadow:none;
  4819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4820. font-weight:400;
  4821. font-style:normal;
  4822. font-size:14px;
  4823. color:#FFFFFF;
  4824. }
  4825. #u10552 {
  4826. border-width:0px;
  4827. position:absolute;
  4828. left:857px;
  4829. top:329px;
  4830. width:149px;
  4831. height:20px;
  4832. display:flex;
  4833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4834. font-weight:400;
  4835. font-style:normal;
  4836. font-size:14px;
  4837. color:#FFFFFF;
  4838. }
  4839. #u10552 .text {
  4840. position:absolute;
  4841. align-self:center;
  4842. padding:0px 0px 0px 0px;
  4843. box-sizing:border-box;
  4844. width:100%;
  4845. }
  4846. #u10552_text {
  4847. border-width:0px;
  4848. white-space:nowrap;
  4849. text-transform:none;
  4850. }
  4851. #u10553_img {
  4852. border-width:0px;
  4853. position:absolute;
  4854. left:0px;
  4855. top:0px;
  4856. width:70px;
  4857. height:63px;
  4858. }
  4859. #u10553 {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:872px;
  4863. top:366px;
  4864. width:70px;
  4865. height:63px;
  4866. display:flex;
  4867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4868. font-weight:400;
  4869. font-style:normal;
  4870. }
  4871. #u10553 .text {
  4872. position:absolute;
  4873. align-self:center;
  4874. padding:2px 2px 2px 2px;
  4875. box-sizing:border-box;
  4876. width:100%;
  4877. }
  4878. #u10553_text {
  4879. border-width:0px;
  4880. word-wrap:break-word;
  4881. text-transform:none;
  4882. }
  4883. #u10554_div {
  4884. border-width:0px;
  4885. position:absolute;
  4886. left:0px;
  4887. top:0px;
  4888. width:76px;
  4889. height:47px;
  4890. background:inherit;
  4891. background-color:rgba(255, 255, 255, 0);
  4892. border:none;
  4893. border-left:0px;
  4894. border-top:0px;
  4895. border-right:0px;
  4896. border-radius:0px;
  4897. border-bottom-right-radius:0px;
  4898. border-bottom-left-radius:0px;
  4899. -moz-box-shadow:none;
  4900. -webkit-box-shadow:none;
  4901. box-shadow:none;
  4902. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4903. font-weight:500;
  4904. font-style:normal;
  4905. line-height:40px;
  4906. }
  4907. #u10554 {
  4908. border-width:0px;
  4909. position:absolute;
  4910. left:975px;
  4911. top:374px;
  4912. width:76px;
  4913. height:47px;
  4914. display:flex;
  4915. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4916. font-weight:500;
  4917. font-style:normal;
  4918. line-height:40px;
  4919. }
  4920. #u10554 .text {
  4921. position:absolute;
  4922. align-self:center;
  4923. padding:0px 0px 0px 0px;
  4924. box-sizing:border-box;
  4925. width:100%;
  4926. }
  4927. #u10554_text {
  4928. border-width:0px;
  4929. white-space:nowrap;
  4930. text-transform:none;
  4931. }
  4932. #u10555 {
  4933. border-width:0px;
  4934. position:absolute;
  4935. left:0px;
  4936. top:0px;
  4937. width:0px;
  4938. height:0px;
  4939. }
  4940. #u10556_div {
  4941. border-width:0px;
  4942. position:absolute;
  4943. left:0px;
  4944. top:0px;
  4945. width:229px;
  4946. height:126px;
  4947. background:inherit;
  4948. background-color:rgba(255, 255, 255, 1);
  4949. box-sizing:border-box;
  4950. border-width:1px;
  4951. border-style:solid;
  4952. border-color:rgba(242, 242, 242, 1);
  4953. border-radius:5px;
  4954. -moz-box-shadow:none;
  4955. -webkit-box-shadow:none;
  4956. box-shadow:none;
  4957. }
  4958. #u10556 {
  4959. border-width:0px;
  4960. position:absolute;
  4961. left:1098px;
  4962. top:324px;
  4963. width:229px;
  4964. height:126px;
  4965. display:flex;
  4966. }
  4967. #u10556 .text {
  4968. position:absolute;
  4969. align-self:center;
  4970. padding:2px 2px 2px 2px;
  4971. box-sizing:border-box;
  4972. width:100%;
  4973. }
  4974. #u10556_text {
  4975. border-width:0px;
  4976. word-wrap:break-word;
  4977. text-transform:none;
  4978. visibility:hidden;
  4979. }
  4980. #u10557_div {
  4981. border-width:0px;
  4982. position:absolute;
  4983. left:0px;
  4984. top:0px;
  4985. width:229px;
  4986. height:30px;
  4987. background:inherit;
  4988. background-color:rgba(51, 51, 51, 1);
  4989. box-sizing:border-box;
  4990. border-width:1px;
  4991. border-style:solid;
  4992. border-color:rgba(242, 242, 242, 1);
  4993. border-bottom:0px;
  4994. border-radius:5px;
  4995. border-bottom-right-radius:0px;
  4996. border-bottom-left-radius:0px;
  4997. -moz-box-shadow:none;
  4998. -webkit-box-shadow:none;
  4999. box-shadow:none;
  5000. }
  5001. #u10557 {
  5002. border-width:0px;
  5003. position:absolute;
  5004. left:1098px;
  5005. top:324px;
  5006. width:229px;
  5007. height:30px;
  5008. display:flex;
  5009. }
  5010. #u10557 .text {
  5011. position:absolute;
  5012. align-self:center;
  5013. padding:2px 2px 2px 2px;
  5014. box-sizing:border-box;
  5015. width:100%;
  5016. }
  5017. #u10557_text {
  5018. border-width:0px;
  5019. word-wrap:break-word;
  5020. text-transform:none;
  5021. visibility:hidden;
  5022. }
  5023. #u10558_div {
  5024. border-width:0px;
  5025. position:absolute;
  5026. left:0px;
  5027. top:0px;
  5028. width:152px;
  5029. height:20px;
  5030. background:inherit;
  5031. background-color:rgba(255, 255, 255, 0);
  5032. border:none;
  5033. border-left:0px;
  5034. border-top:0px;
  5035. border-right:0px;
  5036. border-radius:0px;
  5037. border-bottom-right-radius:0px;
  5038. border-bottom-left-radius:0px;
  5039. -moz-box-shadow:none;
  5040. -webkit-box-shadow:none;
  5041. box-shadow:none;
  5042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5043. font-weight:400;
  5044. font-style:normal;
  5045. font-size:14px;
  5046. color:#FFFFFF;
  5047. }
  5048. #u10558 {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:1105px;
  5052. top:329px;
  5053. width:152px;
  5054. height:20px;
  5055. display:flex;
  5056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5057. font-weight:400;
  5058. font-style:normal;
  5059. font-size:14px;
  5060. color:#FFFFFF;
  5061. }
  5062. #u10558 .text {
  5063. position:absolute;
  5064. align-self:center;
  5065. padding:0px 0px 0px 0px;
  5066. box-sizing:border-box;
  5067. width:100%;
  5068. }
  5069. #u10558_text {
  5070. border-width:0px;
  5071. white-space:nowrap;
  5072. text-transform:none;
  5073. }
  5074. #u10559_img {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:0px;
  5078. top:0px;
  5079. width:70px;
  5080. height:63px;
  5081. }
  5082. #u10559 {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:1120px;
  5086. top:366px;
  5087. width:70px;
  5088. height:63px;
  5089. display:flex;
  5090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5091. font-weight:400;
  5092. font-style:normal;
  5093. }
  5094. #u10559 .text {
  5095. position:absolute;
  5096. align-self:center;
  5097. padding:2px 2px 2px 2px;
  5098. box-sizing:border-box;
  5099. width:100%;
  5100. }
  5101. #u10559_text {
  5102. border-width:0px;
  5103. word-wrap:break-word;
  5104. text-transform:none;
  5105. }
  5106. #u10560_div {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:0px;
  5110. top:0px;
  5111. width:61px;
  5112. height:47px;
  5113. background:inherit;
  5114. background-color:rgba(255, 255, 255, 0);
  5115. border:none;
  5116. border-left:0px;
  5117. border-top:0px;
  5118. border-right:0px;
  5119. border-radius:0px;
  5120. border-bottom-right-radius:0px;
  5121. border-bottom-left-radius:0px;
  5122. -moz-box-shadow:none;
  5123. -webkit-box-shadow:none;
  5124. box-shadow:none;
  5125. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5126. font-weight:500;
  5127. font-style:normal;
  5128. line-height:40px;
  5129. }
  5130. #u10560 {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:1239px;
  5134. top:374px;
  5135. width:61px;
  5136. height:47px;
  5137. display:flex;
  5138. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5139. font-weight:500;
  5140. font-style:normal;
  5141. line-height:40px;
  5142. }
  5143. #u10560 .text {
  5144. position:absolute;
  5145. align-self:center;
  5146. padding:0px 0px 0px 0px;
  5147. box-sizing:border-box;
  5148. width:100%;
  5149. }
  5150. #u10560_text {
  5151. border-width:0px;
  5152. white-space:nowrap;
  5153. text-transform:none;
  5154. }
  5155. #u10561 {
  5156. border-width:0px;
  5157. position:absolute;
  5158. left:0px;
  5159. top:0px;
  5160. width:0px;
  5161. height:0px;
  5162. }
  5163. #u10562_div {
  5164. border-width:0px;
  5165. position:absolute;
  5166. left:0px;
  5167. top:0px;
  5168. width:229px;
  5169. height:126px;
  5170. background:inherit;
  5171. background-color:rgba(255, 255, 255, 1);
  5172. box-sizing:border-box;
  5173. border-width:1px;
  5174. border-style:solid;
  5175. border-color:rgba(242, 242, 242, 1);
  5176. border-radius:5px;
  5177. -moz-box-shadow:none;
  5178. -webkit-box-shadow:none;
  5179. box-shadow:none;
  5180. }
  5181. #u10562 {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:1345px;
  5185. top:324px;
  5186. width:229px;
  5187. height:126px;
  5188. display:flex;
  5189. }
  5190. #u10562 .text {
  5191. position:absolute;
  5192. align-self:center;
  5193. padding:2px 2px 2px 2px;
  5194. box-sizing:border-box;
  5195. width:100%;
  5196. }
  5197. #u10562_text {
  5198. border-width:0px;
  5199. word-wrap:break-word;
  5200. text-transform:none;
  5201. visibility:hidden;
  5202. }
  5203. #u10563_div {
  5204. border-width:0px;
  5205. position:absolute;
  5206. left:0px;
  5207. top:0px;
  5208. width:229px;
  5209. height:30px;
  5210. background:inherit;
  5211. background-color:rgba(51, 51, 51, 1);
  5212. box-sizing:border-box;
  5213. border-width:1px;
  5214. border-style:solid;
  5215. border-color:rgba(242, 242, 242, 1);
  5216. border-bottom:0px;
  5217. border-radius:5px;
  5218. border-bottom-right-radius:0px;
  5219. border-bottom-left-radius:0px;
  5220. -moz-box-shadow:none;
  5221. -webkit-box-shadow:none;
  5222. box-shadow:none;
  5223. }
  5224. #u10563 {
  5225. border-width:0px;
  5226. position:absolute;
  5227. left:1345px;
  5228. top:324px;
  5229. width:229px;
  5230. height:30px;
  5231. display:flex;
  5232. }
  5233. #u10563 .text {
  5234. position:absolute;
  5235. align-self:center;
  5236. padding:2px 2px 2px 2px;
  5237. box-sizing:border-box;
  5238. width:100%;
  5239. }
  5240. #u10563_text {
  5241. border-width:0px;
  5242. word-wrap:break-word;
  5243. text-transform:none;
  5244. visibility:hidden;
  5245. }
  5246. #u10564_div {
  5247. border-width:0px;
  5248. position:absolute;
  5249. left:0px;
  5250. top:0px;
  5251. width:124px;
  5252. height:20px;
  5253. background:inherit;
  5254. background-color:rgba(255, 255, 255, 0);
  5255. border:none;
  5256. border-left:0px;
  5257. border-top:0px;
  5258. border-right:0px;
  5259. border-radius:0px;
  5260. border-bottom-right-radius:0px;
  5261. border-bottom-left-radius:0px;
  5262. -moz-box-shadow:none;
  5263. -webkit-box-shadow:none;
  5264. box-shadow:none;
  5265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5266. font-weight:400;
  5267. font-style:normal;
  5268. font-size:14px;
  5269. color:#FFFFFF;
  5270. }
  5271. #u10564 {
  5272. border-width:0px;
  5273. position:absolute;
  5274. left:1352px;
  5275. top:329px;
  5276. width:124px;
  5277. height:20px;
  5278. display:flex;
  5279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5280. font-weight:400;
  5281. font-style:normal;
  5282. font-size:14px;
  5283. color:#FFFFFF;
  5284. }
  5285. #u10564 .text {
  5286. position:absolute;
  5287. align-self:center;
  5288. padding:0px 0px 0px 0px;
  5289. box-sizing:border-box;
  5290. width:100%;
  5291. }
  5292. #u10564_text {
  5293. border-width:0px;
  5294. white-space:nowrap;
  5295. text-transform:none;
  5296. }
  5297. #u10565_img {
  5298. border-width:0px;
  5299. position:absolute;
  5300. left:0px;
  5301. top:0px;
  5302. width:70px;
  5303. height:63px;
  5304. }
  5305. #u10565 {
  5306. border-width:0px;
  5307. position:absolute;
  5308. left:1367px;
  5309. top:366px;
  5310. width:70px;
  5311. height:63px;
  5312. display:flex;
  5313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5314. font-weight:400;
  5315. font-style:normal;
  5316. }
  5317. #u10565 .text {
  5318. position:absolute;
  5319. align-self:center;
  5320. padding:2px 2px 2px 2px;
  5321. box-sizing:border-box;
  5322. width:100%;
  5323. }
  5324. #u10565_text {
  5325. border-width:0px;
  5326. word-wrap:break-word;
  5327. text-transform:none;
  5328. }
  5329. #u10566_div {
  5330. border-width:0px;
  5331. position:absolute;
  5332. left:0px;
  5333. top:0px;
  5334. width:48px;
  5335. height:47px;
  5336. background:inherit;
  5337. background-color:rgba(255, 255, 255, 0);
  5338. border:none;
  5339. border-left:0px;
  5340. border-top:0px;
  5341. border-right:0px;
  5342. border-radius:0px;
  5343. border-bottom-right-radius:0px;
  5344. border-bottom-left-radius:0px;
  5345. -moz-box-shadow:none;
  5346. -webkit-box-shadow:none;
  5347. box-shadow:none;
  5348. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5349. font-weight:500;
  5350. font-style:normal;
  5351. font-size:18px;
  5352. line-height:40px;
  5353. }
  5354. #u10566 {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:1486px;
  5358. top:374px;
  5359. width:48px;
  5360. height:47px;
  5361. display:flex;
  5362. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5363. font-weight:500;
  5364. font-style:normal;
  5365. font-size:18px;
  5366. line-height:40px;
  5367. }
  5368. #u10566 .text {
  5369. position:absolute;
  5370. align-self:center;
  5371. padding:0px 0px 0px 0px;
  5372. box-sizing:border-box;
  5373. width:100%;
  5374. }
  5375. #u10566_text {
  5376. border-width:0px;
  5377. white-space:nowrap;
  5378. text-transform:none;
  5379. }
  5380. #u10567 {
  5381. border-width:0px;
  5382. position:absolute;
  5383. left:0px;
  5384. top:0px;
  5385. width:0px;
  5386. height:0px;
  5387. }
  5388. #u10568_div {
  5389. border-width:0px;
  5390. position:absolute;
  5391. left:0px;
  5392. top:0px;
  5393. width:229px;
  5394. height:126px;
  5395. background:inherit;
  5396. background-color:rgba(255, 255, 255, 1);
  5397. box-sizing:border-box;
  5398. border-width:1px;
  5399. border-style:solid;
  5400. border-color:rgba(242, 242, 242, 1);
  5401. border-radius:5px;
  5402. -moz-box-shadow:none;
  5403. -webkit-box-shadow:none;
  5404. box-shadow:none;
  5405. }
  5406. #u10568 {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:362px;
  5410. top:470px;
  5411. width:229px;
  5412. height:126px;
  5413. display:flex;
  5414. }
  5415. #u10568 .text {
  5416. position:absolute;
  5417. align-self:center;
  5418. padding:2px 2px 2px 2px;
  5419. box-sizing:border-box;
  5420. width:100%;
  5421. }
  5422. #u10568_text {
  5423. border-width:0px;
  5424. word-wrap:break-word;
  5425. text-transform:none;
  5426. visibility:hidden;
  5427. }
  5428. #u10569_div {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:0px;
  5432. top:0px;
  5433. width:229px;
  5434. height:30px;
  5435. background:inherit;
  5436. background-color:rgba(51, 51, 51, 1);
  5437. box-sizing:border-box;
  5438. border-width:1px;
  5439. border-style:solid;
  5440. border-color:rgba(242, 242, 242, 1);
  5441. border-bottom:0px;
  5442. border-radius:5px;
  5443. border-bottom-right-radius:0px;
  5444. border-bottom-left-radius:0px;
  5445. -moz-box-shadow:none;
  5446. -webkit-box-shadow:none;
  5447. box-shadow:none;
  5448. }
  5449. #u10569 {
  5450. border-width:0px;
  5451. position:absolute;
  5452. left:362px;
  5453. top:470px;
  5454. width:229px;
  5455. height:30px;
  5456. display:flex;
  5457. }
  5458. #u10569 .text {
  5459. position:absolute;
  5460. align-self:center;
  5461. padding:2px 2px 2px 2px;
  5462. box-sizing:border-box;
  5463. width:100%;
  5464. }
  5465. #u10569_text {
  5466. border-width:0px;
  5467. word-wrap:break-word;
  5468. text-transform:none;
  5469. visibility:hidden;
  5470. }
  5471. #u10570_div {
  5472. border-width:0px;
  5473. position:absolute;
  5474. left:0px;
  5475. top:0px;
  5476. width:149px;
  5477. height:20px;
  5478. background:inherit;
  5479. background-color:rgba(255, 255, 255, 0);
  5480. border:none;
  5481. border-left:0px;
  5482. border-top:0px;
  5483. border-right:0px;
  5484. border-radius:0px;
  5485. border-bottom-right-radius:0px;
  5486. border-bottom-left-radius:0px;
  5487. -moz-box-shadow:none;
  5488. -webkit-box-shadow:none;
  5489. box-shadow:none;
  5490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5491. font-weight:400;
  5492. font-style:normal;
  5493. font-size:14px;
  5494. color:#FFFFFF;
  5495. }
  5496. #u10570 {
  5497. border-width:0px;
  5498. position:absolute;
  5499. left:369px;
  5500. top:475px;
  5501. width:149px;
  5502. height:20px;
  5503. display:flex;
  5504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5505. font-weight:400;
  5506. font-style:normal;
  5507. font-size:14px;
  5508. color:#FFFFFF;
  5509. }
  5510. #u10570 .text {
  5511. position:absolute;
  5512. align-self:center;
  5513. padding:0px 0px 0px 0px;
  5514. box-sizing:border-box;
  5515. width:100%;
  5516. }
  5517. #u10570_text {
  5518. border-width:0px;
  5519. white-space:nowrap;
  5520. text-transform:none;
  5521. }
  5522. #u10571_img {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:0px;
  5526. top:0px;
  5527. width:70px;
  5528. height:63px;
  5529. }
  5530. #u10571 {
  5531. border-width:0px;
  5532. position:absolute;
  5533. left:384px;
  5534. top:512px;
  5535. width:70px;
  5536. height:63px;
  5537. display:flex;
  5538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5539. font-weight:400;
  5540. font-style:normal;
  5541. }
  5542. #u10571 .text {
  5543. position:absolute;
  5544. align-self:center;
  5545. padding:2px 2px 2px 2px;
  5546. box-sizing:border-box;
  5547. width:100%;
  5548. }
  5549. #u10571_text {
  5550. border-width:0px;
  5551. word-wrap:break-word;
  5552. text-transform:none;
  5553. }
  5554. #u10572_img {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:0px;
  5558. top:0px;
  5559. width:50px;
  5560. height:31px;
  5561. }
  5562. #u10572 {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:508px;
  5566. top:528px;
  5567. width:50px;
  5568. height:31px;
  5569. display:flex;
  5570. }
  5571. #u10572 .text {
  5572. position:absolute;
  5573. align-self:center;
  5574. padding:2px 2px 2px 2px;
  5575. box-sizing:border-box;
  5576. width:100%;
  5577. }
  5578. #u10572_text {
  5579. border-width:0px;
  5580. word-wrap:break-word;
  5581. text-transform:none;
  5582. visibility:hidden;
  5583. }
  5584. #u10573_div {
  5585. border-width:0px;
  5586. position:absolute;
  5587. left:0px;
  5588. top:0px;
  5589. width:597px;
  5590. height:80px;
  5591. background:inherit;
  5592. background-color:rgba(255, 255, 255, 0);
  5593. border:none;
  5594. border-left:0px;
  5595. border-top:0px;
  5596. border-right:0px;
  5597. border-radius:0px;
  5598. border-bottom-right-radius:0px;
  5599. border-bottom-left-radius:0px;
  5600. -moz-box-shadow:none;
  5601. -webkit-box-shadow:none;
  5602. box-shadow:none;
  5603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5604. font-weight:400;
  5605. font-style:normal;
  5606. font-size:14px;
  5607. color:#D9001B;
  5608. }
  5609. #u10573 {
  5610. border-width:0px;
  5611. position:absolute;
  5612. left:365px;
  5613. top:614px;
  5614. width:597px;
  5615. height:80px;
  5616. display:flex;
  5617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5618. font-weight:400;
  5619. font-style:normal;
  5620. font-size:14px;
  5621. color:#D9001B;
  5622. }
  5623. #u10573 .text {
  5624. position:absolute;
  5625. align-self:center;
  5626. padding:0px 0px 0px 0px;
  5627. box-sizing:border-box;
  5628. width:100%;
  5629. }
  5630. #u10573_text {
  5631. border-width:0px;
  5632. white-space:nowrap;
  5633. text-transform:none;
  5634. }
  5635. #u10574 {
  5636. border-width:0px;
  5637. position:absolute;
  5638. left:0px;
  5639. top:0px;
  5640. width:0px;
  5641. height:0px;
  5642. }
  5643. #u10575 {
  5644. border-width:0px;
  5645. position:absolute;
  5646. left:0px;
  5647. top:0px;
  5648. width:0px;
  5649. height:0px;
  5650. }
  5651. #u10576_div {
  5652. border-width:0px;
  5653. position:absolute;
  5654. left:0px;
  5655. top:0px;
  5656. width:380px;
  5657. height:120px;
  5658. background:inherit;
  5659. background-color:rgba(255, 255, 255, 1);
  5660. border:none;
  5661. border-radius:4px;
  5662. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5663. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5664. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5665. font-family:'Microsoft YaHei', sans-serif;
  5666. font-weight:400;
  5667. font-style:normal;
  5668. }
  5669. #u10576 {
  5670. border-width:0px;
  5671. position:absolute;
  5672. left:402px;
  5673. top:705px;
  5674. width:380px;
  5675. height:120px;
  5676. display:flex;
  5677. font-family:'Microsoft YaHei', sans-serif;
  5678. font-weight:400;
  5679. font-style:normal;
  5680. }
  5681. #u10576 .text {
  5682. position:absolute;
  5683. align-self:center;
  5684. padding:2px 2px 2px 2px;
  5685. box-sizing:border-box;
  5686. width:100%;
  5687. }
  5688. #u10576_text {
  5689. border-width:0px;
  5690. word-wrap:break-word;
  5691. text-transform:none;
  5692. visibility:hidden;
  5693. }
  5694. #u10577_div {
  5695. border-width:0px;
  5696. position:absolute;
  5697. left:0px;
  5698. top:0px;
  5699. width:91px;
  5700. height:21px;
  5701. background:inherit;
  5702. background-color:rgba(255, 255, 255, 0);
  5703. border:none;
  5704. border-radius:0px;
  5705. -moz-box-shadow:none;
  5706. -webkit-box-shadow:none;
  5707. box-shadow:none;
  5708. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5709. font-weight:650;
  5710. font-style:normal;
  5711. font-size:18px;
  5712. color:#000000;
  5713. line-height:22px;
  5714. }
  5715. #u10577 {
  5716. border-width:0px;
  5717. position:absolute;
  5718. left:462px;
  5719. top:730px;
  5720. width:91px;
  5721. height:21px;
  5722. display:flex;
  5723. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5724. font-weight:650;
  5725. font-style:normal;
  5726. font-size:18px;
  5727. color:#000000;
  5728. line-height:22px;
  5729. }
  5730. #u10577 .text {
  5731. position:absolute;
  5732. align-self:flex-start;
  5733. padding:0px 0px 0px 0px;
  5734. box-sizing:border-box;
  5735. width:100%;
  5736. }
  5737. #u10577_text {
  5738. border-width:0px;
  5739. white-space:nowrap;
  5740. text-transform:none;
  5741. }
  5742. #u10578_div {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:0px;
  5746. top:0px;
  5747. width:61px;
  5748. height:30px;
  5749. background:inherit;
  5750. background-color:rgba(24, 144, 255, 1);
  5751. border:none;
  5752. border-radius:4px;
  5753. -moz-box-shadow:none;
  5754. -webkit-box-shadow:none;
  5755. box-shadow:none;
  5756. font-family:'Microsoft YaHei', sans-serif;
  5757. font-weight:400;
  5758. font-style:normal;
  5759. font-size:14px;
  5760. color:#FFFFFF;
  5761. }
  5762. #u10578 {
  5763. border-width:0px;
  5764. position:absolute;
  5765. left:704px;
  5766. top:780px;
  5767. width:61px;
  5768. height:30px;
  5769. display:flex;
  5770. font-family:'Microsoft YaHei', sans-serif;
  5771. font-weight:400;
  5772. font-style:normal;
  5773. font-size:14px;
  5774. color:#FFFFFF;
  5775. }
  5776. #u10578 .text {
  5777. position:absolute;
  5778. align-self:center;
  5779. padding:2px 16px 2px 16px;
  5780. box-sizing:border-box;
  5781. width:100%;
  5782. }
  5783. #u10578_text {
  5784. border-width:0px;
  5785. white-space:nowrap;
  5786. text-transform:none;
  5787. }
  5788. #u10579_div {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:0px;
  5792. top:0px;
  5793. width:66px;
  5794. height:30px;
  5795. background:inherit;
  5796. background-color:rgba(255, 255, 255, 1);
  5797. box-sizing:border-box;
  5798. border-width:1px;
  5799. border-style:solid;
  5800. border-color:rgba(217, 217, 217, 1);
  5801. border-radius:4px;
  5802. -moz-box-shadow:none;
  5803. -webkit-box-shadow:none;
  5804. box-shadow:none;
  5805. font-family:'Microsoft YaHei', sans-serif;
  5806. font-weight:400;
  5807. font-style:normal;
  5808. font-size:14px;
  5809. color:rgba(0, 0, 0, 0.647058823529412);
  5810. line-height:21px;
  5811. }
  5812. #u10579 {
  5813. border-width:0px;
  5814. position:absolute;
  5815. left:622px;
  5816. top:780px;
  5817. width:66px;
  5818. height:30px;
  5819. display:flex;
  5820. font-family:'Microsoft YaHei', sans-serif;
  5821. font-weight:400;
  5822. font-style:normal;
  5823. font-size:14px;
  5824. color:rgba(0, 0, 0, 0.647058823529412);
  5825. line-height:21px;
  5826. }
  5827. #u10579 .text {
  5828. position:absolute;
  5829. align-self:center;
  5830. padding:2px 16px 2px 16px;
  5831. box-sizing:border-box;
  5832. width:100%;
  5833. }
  5834. #u10579_text {
  5835. border-width:0px;
  5836. white-space:nowrap;
  5837. text-transform:none;
  5838. }
  5839. #u10580_img {
  5840. border-width:0px;
  5841. position:absolute;
  5842. left:0px;
  5843. top:0px;
  5844. width:20px;
  5845. height:20px;
  5846. }
  5847. #u10580 {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:431px;
  5851. top:734px;
  5852. width:20px;
  5853. height:20px;
  5854. display:flex;
  5855. }
  5856. #u10580 .text {
  5857. position:absolute;
  5858. align-self:center;
  5859. padding:2px 2px 2px 2px;
  5860. box-sizing:border-box;
  5861. width:100%;
  5862. }
  5863. #u10580_text {
  5864. border-width:0px;
  5865. word-wrap:break-word;
  5866. text-transform:none;
  5867. visibility:hidden;
  5868. }
  5869. #u10582 {
  5870. border-width:0px;
  5871. position:absolute;
  5872. left:0px;
  5873. top:0px;
  5874. width:0px;
  5875. height:0px;
  5876. }
  5877. #u10583_div {
  5878. border-width:0px;
  5879. position:absolute;
  5880. left:0px;
  5881. top:0px;
  5882. width:30px;
  5883. height:30px;
  5884. background:inherit;
  5885. background-color:rgba(255, 255, 255, 1);
  5886. box-sizing:border-box;
  5887. border-width:1px;
  5888. border-style:solid;
  5889. border-color:rgba(228, 228, 228, 1);
  5890. border-radius:4px;
  5891. -moz-box-shadow:none;
  5892. -webkit-box-shadow:none;
  5893. box-shadow:none;
  5894. font-family:'Microsoft YaHei', sans-serif;
  5895. font-weight:400;
  5896. font-style:normal;
  5897. font-size:14px;
  5898. }
  5899. #u10583 {
  5900. border-width:0px;
  5901. position:absolute;
  5902. left:1005px;
  5903. top:1189px;
  5904. width:30px;
  5905. height:30px;
  5906. display:flex;
  5907. font-family:'Microsoft YaHei', sans-serif;
  5908. font-weight:400;
  5909. font-style:normal;
  5910. font-size:14px;
  5911. }
  5912. #u10583 .text {
  5913. position:absolute;
  5914. align-self:center;
  5915. padding:2px 2px 2px 2px;
  5916. box-sizing:border-box;
  5917. width:100%;
  5918. }
  5919. #u10583_text {
  5920. border-width:0px;
  5921. word-wrap:break-word;
  5922. text-transform:none;
  5923. }
  5924. #u10584_div {
  5925. border-width:0px;
  5926. position:absolute;
  5927. left:0px;
  5928. top:0px;
  5929. width:49px;
  5930. height:30px;
  5931. background:inherit;
  5932. background-color:rgba(255, 255, 255, 0);
  5933. box-sizing:border-box;
  5934. border-width:1px;
  5935. border-style:solid;
  5936. border-color:rgba(188, 188, 188, 1);
  5937. border-radius:4px;
  5938. -moz-box-shadow:none;
  5939. -webkit-box-shadow:none;
  5940. box-shadow:none;
  5941. font-family:'Microsoft YaHei', sans-serif;
  5942. font-weight:400;
  5943. font-style:normal;
  5944. font-size:14px;
  5945. color:#1E1E1E;
  5946. }
  5947. #u10584 {
  5948. border-width:0px;
  5949. position:absolute;
  5950. left:1521px;
  5951. top:1189px;
  5952. width:49px;
  5953. height:30px;
  5954. display:flex;
  5955. font-family:'Microsoft YaHei', sans-serif;
  5956. font-weight:400;
  5957. font-style:normal;
  5958. font-size:14px;
  5959. color:#1E1E1E;
  5960. }
  5961. #u10584 .text {
  5962. position:absolute;
  5963. align-self:center;
  5964. padding:5px 10px 5px 10px;
  5965. box-sizing:border-box;
  5966. width:100%;
  5967. }
  5968. #u10584_text {
  5969. border-width:0px;
  5970. white-space:nowrap;
  5971. text-transform:none;
  5972. }
  5973. #u10585 {
  5974. border-width:0px;
  5975. position:absolute;
  5976. left:0px;
  5977. top:0px;
  5978. width:0px;
  5979. height:0px;
  5980. }
  5981. #u10586_div {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:0px;
  5985. top:0px;
  5986. width:33px;
  5987. height:24px;
  5988. background:inherit;
  5989. background-color:rgba(255, 255, 255, 1);
  5990. border:none;
  5991. border-radius:0px;
  5992. -moz-box-shadow:none;
  5993. -webkit-box-shadow:none;
  5994. box-shadow:none;
  5995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5996. font-weight:400;
  5997. font-style:normal;
  5998. font-size:14px;
  5999. color:#BCBCBC;
  6000. text-align:left;
  6001. }
  6002. #u10586 {
  6003. border-width:0px;
  6004. position:absolute;
  6005. left:1289px;
  6006. top:1192px;
  6007. width:33px;
  6008. height:24px;
  6009. display:flex;
  6010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6011. font-weight:400;
  6012. font-style:normal;
  6013. font-size:14px;
  6014. color:#BCBCBC;
  6015. text-align:left;
  6016. }
  6017. #u10586 .text {
  6018. position:absolute;
  6019. align-self:center;
  6020. padding:2px 2px 2px 2px;
  6021. box-sizing:border-box;
  6022. width:100%;
  6023. }
  6024. #u10586_text {
  6025. border-width:0px;
  6026. white-space:nowrap;
  6027. text-transform:none;
  6028. }
  6029. #u10587_div {
  6030. border-width:0px;
  6031. position:absolute;
  6032. left:0px;
  6033. top:0px;
  6034. width:40px;
  6035. height:30px;
  6036. background:inherit;
  6037. background-color:rgba(255, 255, 255, 1);
  6038. box-sizing:border-box;
  6039. border-width:1px;
  6040. border-style:solid;
  6041. border-color:rgba(228, 228, 228, 1);
  6042. border-radius:4px;
  6043. -moz-box-shadow:none;
  6044. -webkit-box-shadow:none;
  6045. box-shadow:none;
  6046. font-family:'Microsoft YaHei', sans-serif;
  6047. font-weight:400;
  6048. font-style:normal;
  6049. font-size:14px;
  6050. }
  6051. #u10587 {
  6052. border-width:0px;
  6053. position:absolute;
  6054. left:1324px;
  6055. top:1189px;
  6056. width:40px;
  6057. height:30px;
  6058. display:flex;
  6059. font-family:'Microsoft YaHei', sans-serif;
  6060. font-weight:400;
  6061. font-style:normal;
  6062. font-size:14px;
  6063. }
  6064. #u10587 .text {
  6065. position:absolute;
  6066. align-self:center;
  6067. padding:2px 2px 2px 2px;
  6068. box-sizing:border-box;
  6069. width:100%;
  6070. }
  6071. #u10587_text {
  6072. border-width:0px;
  6073. word-wrap:break-word;
  6074. text-transform:none;
  6075. visibility:hidden;
  6076. }
  6077. #u10588_div {
  6078. border-width:0px;
  6079. position:absolute;
  6080. left:0px;
  6081. top:0px;
  6082. width:19px;
  6083. height:24px;
  6084. background:inherit;
  6085. background-color:rgba(255, 255, 255, 1);
  6086. border:none;
  6087. border-radius:0px;
  6088. -moz-box-shadow:none;
  6089. -webkit-box-shadow:none;
  6090. box-shadow:none;
  6091. font-family:'Microsoft YaHei', sans-serif;
  6092. font-weight:400;
  6093. font-style:normal;
  6094. font-size:14px;
  6095. color:#BCBCBC;
  6096. text-align:left;
  6097. }
  6098. #u10588 {
  6099. border-width:0px;
  6100. position:absolute;
  6101. left:1366px;
  6102. top:1193px;
  6103. width:19px;
  6104. height:24px;
  6105. display:flex;
  6106. font-family:'Microsoft YaHei', sans-serif;
  6107. font-weight:400;
  6108. font-style:normal;
  6109. font-size:14px;
  6110. color:#BCBCBC;
  6111. text-align:left;
  6112. }
  6113. #u10588 .text {
  6114. position:absolute;
  6115. align-self:center;
  6116. padding:2px 2px 2px 2px;
  6117. box-sizing:border-box;
  6118. width:100%;
  6119. }
  6120. #u10588_text {
  6121. border-width:0px;
  6122. white-space:nowrap;
  6123. text-transform:none;
  6124. }
  6125. #u10589_input {
  6126. position:absolute;
  6127. left:0px;
  6128. top:0px;
  6129. width:34px;
  6130. height:25px;
  6131. padding:2px 2px 2px 2px;
  6132. font-family:'Microsoft YaHei', sans-serif;
  6133. font-weight:400;
  6134. font-style:normal;
  6135. font-size:13px;
  6136. letter-spacing:normal;
  6137. color:#000000;
  6138. vertical-align:none;
  6139. text-align:left;
  6140. text-transform:none;
  6141. background-color:transparent;
  6142. border-color:transparent;
  6143. }
  6144. #u10589_input.disabled {
  6145. position:absolute;
  6146. left:0px;
  6147. top:0px;
  6148. width:34px;
  6149. height:25px;
  6150. padding:2px 2px 2px 2px;
  6151. font-family:'Microsoft YaHei', sans-serif;
  6152. font-weight:400;
  6153. font-style:normal;
  6154. font-size:13px;
  6155. letter-spacing:normal;
  6156. color:#000000;
  6157. vertical-align:none;
  6158. text-align:left;
  6159. text-transform:none;
  6160. background-color:transparent;
  6161. border-color:transparent;
  6162. }
  6163. #u10589_div {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:0px;
  6167. top:0px;
  6168. width:34px;
  6169. height:25px;
  6170. background:inherit;
  6171. background-color:rgba(255, 255, 255, 1);
  6172. border:none;
  6173. border-radius:0px;
  6174. -moz-box-shadow:none;
  6175. -webkit-box-shadow:none;
  6176. box-shadow:none;
  6177. font-family:'Microsoft YaHei', sans-serif;
  6178. font-weight:400;
  6179. font-style:normal;
  6180. }
  6181. #u10589 {
  6182. border-width:0px;
  6183. position:absolute;
  6184. left:1327px;
  6185. top:1191px;
  6186. width:34px;
  6187. height:25px;
  6188. display:flex;
  6189. font-family:'Microsoft YaHei', sans-serif;
  6190. font-weight:400;
  6191. font-style:normal;
  6192. }
  6193. #u10589 .text {
  6194. position:absolute;
  6195. align-self:center;
  6196. padding:2px 2px 2px 2px;
  6197. box-sizing:border-box;
  6198. width:100%;
  6199. }
  6200. #u10589_div.disabled {
  6201. border-width:0px;
  6202. position:absolute;
  6203. left:0px;
  6204. top:0px;
  6205. width:34px;
  6206. height:25px;
  6207. background:inherit;
  6208. background-color:rgba(240, 240, 240, 1);
  6209. border:none;
  6210. border-radius:0px;
  6211. -moz-box-shadow:none;
  6212. -webkit-box-shadow:none;
  6213. box-shadow:none;
  6214. font-family:'Microsoft YaHei', sans-serif;
  6215. font-weight:400;
  6216. font-style:normal;
  6217. }
  6218. #u10589.disabled {
  6219. }
  6220. #u10590_div {
  6221. border-width:0px;
  6222. position:absolute;
  6223. left:0px;
  6224. top:0px;
  6225. width:30px;
  6226. height:30px;
  6227. background:inherit;
  6228. background-color:rgba(41, 143, 255, 1);
  6229. border:none;
  6230. border-radius:4px;
  6231. -moz-box-shadow:none;
  6232. -webkit-box-shadow:none;
  6233. box-shadow:none;
  6234. font-family:'Microsoft YaHei', sans-serif;
  6235. font-weight:400;
  6236. font-style:normal;
  6237. font-size:14px;
  6238. color:#FFFFFF;
  6239. }
  6240. #u10590 {
  6241. border-width:0px;
  6242. position:absolute;
  6243. left:1039px;
  6244. top:1189px;
  6245. width:30px;
  6246. height:30px;
  6247. display:flex;
  6248. font-family:'Microsoft YaHei', sans-serif;
  6249. font-weight:400;
  6250. font-style:normal;
  6251. font-size:14px;
  6252. color:#FFFFFF;
  6253. }
  6254. #u10590 .text {
  6255. position:absolute;
  6256. align-self:center;
  6257. padding:2px 2px 2px 2px;
  6258. box-sizing:border-box;
  6259. width:100%;
  6260. }
  6261. #u10590_text {
  6262. border-width:0px;
  6263. word-wrap:break-word;
  6264. text-transform:none;
  6265. }
  6266. #u10591_div {
  6267. border-width:0px;
  6268. position:absolute;
  6269. left:0px;
  6270. top:0px;
  6271. width:30px;
  6272. height:30px;
  6273. background:inherit;
  6274. background-color:rgba(255, 255, 255, 1);
  6275. box-sizing:border-box;
  6276. border-width:1px;
  6277. border-style:solid;
  6278. border-color:rgba(228, 228, 228, 1);
  6279. border-radius:4px;
  6280. -moz-box-shadow:none;
  6281. -webkit-box-shadow:none;
  6282. box-shadow:none;
  6283. font-family:'Microsoft YaHei', sans-serif;
  6284. font-weight:400;
  6285. font-style:normal;
  6286. font-size:14px;
  6287. }
  6288. #u10591 {
  6289. border-width:0px;
  6290. position:absolute;
  6291. left:1073px;
  6292. top:1189px;
  6293. width:30px;
  6294. height:30px;
  6295. display:flex;
  6296. font-family:'Microsoft YaHei', sans-serif;
  6297. font-weight:400;
  6298. font-style:normal;
  6299. font-size:14px;
  6300. }
  6301. #u10591 .text {
  6302. position:absolute;
  6303. align-self:center;
  6304. padding:2px 2px 2px 2px;
  6305. box-sizing:border-box;
  6306. width:100%;
  6307. }
  6308. #u10591_text {
  6309. border-width:0px;
  6310. word-wrap:break-word;
  6311. text-transform:none;
  6312. }
  6313. #u10592_div {
  6314. border-width:0px;
  6315. position:absolute;
  6316. left:0px;
  6317. top:0px;
  6318. width:30px;
  6319. height:30px;
  6320. background:inherit;
  6321. background-color:rgba(255, 255, 255, 1);
  6322. box-sizing:border-box;
  6323. border-width:1px;
  6324. border-style:solid;
  6325. border-color:rgba(228, 228, 228, 1);
  6326. border-radius:4px;
  6327. -moz-box-shadow:none;
  6328. -webkit-box-shadow:none;
  6329. box-shadow:none;
  6330. font-family:'Microsoft YaHei', sans-serif;
  6331. font-weight:400;
  6332. font-style:normal;
  6333. font-size:14px;
  6334. }
  6335. #u10592 {
  6336. border-width:0px;
  6337. position:absolute;
  6338. left:1107px;
  6339. top:1189px;
  6340. width:30px;
  6341. height:30px;
  6342. display:flex;
  6343. font-family:'Microsoft YaHei', sans-serif;
  6344. font-weight:400;
  6345. font-style:normal;
  6346. font-size:14px;
  6347. }
  6348. #u10592 .text {
  6349. position:absolute;
  6350. align-self:center;
  6351. padding:2px 2px 2px 2px;
  6352. box-sizing:border-box;
  6353. width:100%;
  6354. }
  6355. #u10592_text {
  6356. border-width:0px;
  6357. word-wrap:break-word;
  6358. text-transform:none;
  6359. }
  6360. #u10593_div {
  6361. border-width:0px;
  6362. position:absolute;
  6363. left:0px;
  6364. top:0px;
  6365. width:30px;
  6366. height:30px;
  6367. background:inherit;
  6368. background-color:rgba(255, 255, 255, 1);
  6369. border:none;
  6370. border-radius:4px;
  6371. -moz-box-shadow:none;
  6372. -webkit-box-shadow:none;
  6373. box-shadow:none;
  6374. font-family:'Microsoft YaHei', sans-serif;
  6375. font-weight:400;
  6376. font-style:normal;
  6377. font-size:14px;
  6378. }
  6379. #u10593 {
  6380. border-width:0px;
  6381. position:absolute;
  6382. left:1137px;
  6383. top:1189px;
  6384. width:30px;
  6385. height:30px;
  6386. display:flex;
  6387. font-family:'Microsoft YaHei', sans-serif;
  6388. font-weight:400;
  6389. font-style:normal;
  6390. font-size:14px;
  6391. }
  6392. #u10593 .text {
  6393. position:absolute;
  6394. align-self:center;
  6395. padding:2px 2px 2px 2px;
  6396. box-sizing:border-box;
  6397. width:100%;
  6398. }
  6399. #u10593_text {
  6400. border-width:0px;
  6401. word-wrap:break-word;
  6402. text-transform:none;
  6403. }
  6404. #u10594_div {
  6405. border-width:0px;
  6406. position:absolute;
  6407. left:0px;
  6408. top:0px;
  6409. width:30px;
  6410. height:30px;
  6411. background:inherit;
  6412. background-color:rgba(255, 255, 255, 1);
  6413. box-sizing:border-box;
  6414. border-width:1px;
  6415. border-style:solid;
  6416. border-color:rgba(228, 228, 228, 1);
  6417. border-radius:4px;
  6418. -moz-box-shadow:none;
  6419. -webkit-box-shadow:none;
  6420. box-shadow:none;
  6421. font-family:'Microsoft YaHei', sans-serif;
  6422. font-weight:400;
  6423. font-style:normal;
  6424. font-size:14px;
  6425. }
  6426. #u10594 {
  6427. border-width:0px;
  6428. position:absolute;
  6429. left:1171px;
  6430. top:1189px;
  6431. width:30px;
  6432. height:30px;
  6433. display:flex;
  6434. font-family:'Microsoft YaHei', sans-serif;
  6435. font-weight:400;
  6436. font-style:normal;
  6437. font-size:14px;
  6438. }
  6439. #u10594 .text {
  6440. position:absolute;
  6441. align-self:center;
  6442. padding:2px 2px 2px 2px;
  6443. box-sizing:border-box;
  6444. width:100%;
  6445. }
  6446. #u10594_text {
  6447. border-width:0px;
  6448. word-wrap:break-word;
  6449. text-transform:none;
  6450. }
  6451. #u10595_div {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:0px;
  6455. top:0px;
  6456. width:32px;
  6457. height:21px;
  6458. background:inherit;
  6459. background-color:rgba(255, 255, 255, 1);
  6460. border:none;
  6461. border-radius:15px;
  6462. -moz-box-shadow:none;
  6463. -webkit-box-shadow:none;
  6464. box-shadow:none;
  6465. font-family:'Microsoft YaHei', sans-serif;
  6466. font-weight:400;
  6467. font-style:normal;
  6468. font-size:14px;
  6469. color:#1E1E1E;
  6470. }
  6471. #u10595 {
  6472. border-width:0px;
  6473. position:absolute;
  6474. left:1245px;
  6475. top:1194px;
  6476. width:32px;
  6477. height:21px;
  6478. display:flex;
  6479. font-family:'Microsoft YaHei', sans-serif;
  6480. font-weight:400;
  6481. font-style:normal;
  6482. font-size:14px;
  6483. color:#1E1E1E;
  6484. }
  6485. #u10595 .text {
  6486. position:absolute;
  6487. align-self:center;
  6488. padding:2px 2px 2px 2px;
  6489. box-sizing:border-box;
  6490. width:100%;
  6491. }
  6492. #u10595_text {
  6493. border-width:0px;
  6494. white-space:nowrap;
  6495. text-transform:none;
  6496. }
  6497. #u10596 {
  6498. border-width:0px;
  6499. position:absolute;
  6500. left:0px;
  6501. top:0px;
  6502. width:0px;
  6503. height:0px;
  6504. }
  6505. #u10597_div {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:0px;
  6509. top:0px;
  6510. width:31px;
  6511. height:30px;
  6512. background:inherit;
  6513. background-color:rgba(255, 255, 255, 1);
  6514. box-sizing:border-box;
  6515. border-width:1px;
  6516. border-style:solid;
  6517. border-color:rgba(228, 228, 228, 1);
  6518. border-radius:4px;
  6519. -moz-box-shadow:none;
  6520. -webkit-box-shadow:none;
  6521. box-shadow:none;
  6522. font-family:'Microsoft YaHei', sans-serif;
  6523. font-weight:400;
  6524. font-style:normal;
  6525. font-size:12px;
  6526. }
  6527. #u10597 {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:970px;
  6531. top:1189px;
  6532. width:31px;
  6533. height:30px;
  6534. display:flex;
  6535. font-family:'Microsoft YaHei', sans-serif;
  6536. font-weight:400;
  6537. font-style:normal;
  6538. font-size:12px;
  6539. }
  6540. #u10597 .text {
  6541. position:absolute;
  6542. align-self:center;
  6543. padding:2px 2px 2px 2px;
  6544. box-sizing:border-box;
  6545. width:100%;
  6546. }
  6547. #u10597_text {
  6548. border-width:0px;
  6549. word-wrap:break-word;
  6550. text-transform:none;
  6551. visibility:hidden;
  6552. }
  6553. #u10598_img {
  6554. border-width:0px;
  6555. position:absolute;
  6556. left:0px;
  6557. top:0px;
  6558. width:8px;
  6559. height:14px;
  6560. }
  6561. #u10598 {
  6562. border-width:0px;
  6563. position:absolute;
  6564. left:982px;
  6565. top:1197px;
  6566. width:8px;
  6567. height:14px;
  6568. display:flex;
  6569. font-family:'Microsoft YaHei', sans-serif;
  6570. font-weight:400;
  6571. font-style:normal;
  6572. font-size:12px;
  6573. }
  6574. #u10598 .text {
  6575. position:absolute;
  6576. align-self:center;
  6577. padding:2px 2px 2px 2px;
  6578. box-sizing:border-box;
  6579. width:100%;
  6580. }
  6581. #u10598_text {
  6582. border-width:0px;
  6583. word-wrap:break-word;
  6584. text-transform:none;
  6585. visibility:hidden;
  6586. }
  6587. #u10599 {
  6588. border-width:0px;
  6589. position:absolute;
  6590. left:0px;
  6591. top:0px;
  6592. width:0px;
  6593. height:0px;
  6594. }
  6595. #u10600_div {
  6596. border-width:0px;
  6597. position:absolute;
  6598. left:0px;
  6599. top:0px;
  6600. width:31px;
  6601. height:30px;
  6602. background:inherit;
  6603. background-color:rgba(255, 255, 255, 1);
  6604. box-sizing:border-box;
  6605. border-width:1px;
  6606. border-style:solid;
  6607. border-color:rgba(228, 228, 228, 1);
  6608. border-radius:4px;
  6609. -moz-box-shadow:none;
  6610. -webkit-box-shadow:none;
  6611. box-shadow:none;
  6612. font-family:'Microsoft YaHei', sans-serif;
  6613. font-weight:400;
  6614. font-style:normal;
  6615. font-size:12px;
  6616. }
  6617. #u10600 {
  6618. border-width:0px;
  6619. position:absolute;
  6620. left:1204px;
  6621. top:1189px;
  6622. width:31px;
  6623. height:30px;
  6624. display:flex;
  6625. font-family:'Microsoft YaHei', sans-serif;
  6626. font-weight:400;
  6627. font-style:normal;
  6628. font-size:12px;
  6629. }
  6630. #u10600 .text {
  6631. position:absolute;
  6632. align-self:center;
  6633. padding:2px 2px 2px 2px;
  6634. box-sizing:border-box;
  6635. width:100%;
  6636. }
  6637. #u10600_text {
  6638. border-width:0px;
  6639. word-wrap:break-word;
  6640. text-transform:none;
  6641. visibility:hidden;
  6642. }
  6643. #u10601_img {
  6644. border-width:0px;
  6645. position:absolute;
  6646. left:0px;
  6647. top:0px;
  6648. width:8px;
  6649. height:14px;
  6650. }
  6651. #u10601 {
  6652. border-width:0px;
  6653. position:absolute;
  6654. left:1217px;
  6655. top:1197px;
  6656. width:8px;
  6657. height:14px;
  6658. display:flex;
  6659. font-family:'Microsoft YaHei', sans-serif;
  6660. font-weight:400;
  6661. font-style:normal;
  6662. font-size:12px;
  6663. }
  6664. #u10601 .text {
  6665. position:absolute;
  6666. align-self:center;
  6667. padding:2px 2px 2px 2px;
  6668. box-sizing:border-box;
  6669. width:100%;
  6670. }
  6671. #u10601_text {
  6672. border-width:0px;
  6673. word-wrap:break-word;
  6674. text-transform:none;
  6675. visibility:hidden;
  6676. }
  6677. #u10602 {
  6678. border-width:0px;
  6679. position:absolute;
  6680. left:0px;
  6681. top:0px;
  6682. width:0px;
  6683. height:0px;
  6684. }
  6685. #u10603_div {
  6686. border-width:0px;
  6687. position:absolute;
  6688. left:0px;
  6689. top:0px;
  6690. width:33px;
  6691. height:24px;
  6692. background:inherit;
  6693. background-color:rgba(255, 255, 255, 1);
  6694. border:none;
  6695. border-radius:0px;
  6696. -moz-box-shadow:none;
  6697. -webkit-box-shadow:none;
  6698. box-shadow:none;
  6699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6700. font-weight:400;
  6701. font-style:normal;
  6702. font-size:14px;
  6703. color:#BCBCBC;
  6704. text-align:left;
  6705. }
  6706. #u10603 {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:1405px;
  6710. top:1192px;
  6711. width:33px;
  6712. height:24px;
  6713. display:flex;
  6714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6715. font-weight:400;
  6716. font-style:normal;
  6717. font-size:14px;
  6718. color:#BCBCBC;
  6719. text-align:left;
  6720. }
  6721. #u10603 .text {
  6722. position:absolute;
  6723. align-self:center;
  6724. padding:2px 2px 2px 2px;
  6725. box-sizing:border-box;
  6726. width:100%;
  6727. }
  6728. #u10603_text {
  6729. border-width:0px;
  6730. white-space:nowrap;
  6731. text-transform:none;
  6732. }
  6733. #u10604_div {
  6734. border-width:0px;
  6735. position:absolute;
  6736. left:0px;
  6737. top:0px;
  6738. width:40px;
  6739. height:30px;
  6740. background:inherit;
  6741. background-color:rgba(255, 255, 255, 1);
  6742. box-sizing:border-box;
  6743. border-width:1px;
  6744. border-style:solid;
  6745. border-color:rgba(228, 228, 228, 1);
  6746. border-radius:4px;
  6747. -moz-box-shadow:none;
  6748. -webkit-box-shadow:none;
  6749. box-shadow:none;
  6750. font-family:'Microsoft YaHei', sans-serif;
  6751. font-weight:400;
  6752. font-style:normal;
  6753. font-size:14px;
  6754. }
  6755. #u10604 {
  6756. border-width:0px;
  6757. position:absolute;
  6758. left:1440px;
  6759. top:1189px;
  6760. width:40px;
  6761. height:30px;
  6762. display:flex;
  6763. font-family:'Microsoft YaHei', sans-serif;
  6764. font-weight:400;
  6765. font-style:normal;
  6766. font-size:14px;
  6767. }
  6768. #u10604 .text {
  6769. position:absolute;
  6770. align-self:center;
  6771. padding:2px 2px 2px 2px;
  6772. box-sizing:border-box;
  6773. width:100%;
  6774. }
  6775. #u10604_text {
  6776. border-width:0px;
  6777. word-wrap:break-word;
  6778. text-transform:none;
  6779. visibility:hidden;
  6780. }
  6781. #u10605_div {
  6782. border-width:0px;
  6783. position:absolute;
  6784. left:0px;
  6785. top:0px;
  6786. width:19px;
  6787. height:24px;
  6788. background:inherit;
  6789. background-color:rgba(255, 255, 255, 1);
  6790. border:none;
  6791. border-radius:0px;
  6792. -moz-box-shadow:none;
  6793. -webkit-box-shadow:none;
  6794. box-shadow:none;
  6795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6796. font-weight:400;
  6797. font-style:normal;
  6798. font-size:14px;
  6799. color:#BCBCBC;
  6800. text-align:left;
  6801. }
  6802. #u10605 {
  6803. border-width:0px;
  6804. position:absolute;
  6805. left:1482px;
  6806. top:1193px;
  6807. width:19px;
  6808. height:24px;
  6809. display:flex;
  6810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6811. font-weight:400;
  6812. font-style:normal;
  6813. font-size:14px;
  6814. color:#BCBCBC;
  6815. text-align:left;
  6816. }
  6817. #u10605 .text {
  6818. position:absolute;
  6819. align-self:center;
  6820. padding:2px 2px 2px 2px;
  6821. box-sizing:border-box;
  6822. width:100%;
  6823. }
  6824. #u10605_text {
  6825. border-width:0px;
  6826. white-space:nowrap;
  6827. text-transform:none;
  6828. }
  6829. #u10606_input {
  6830. position:absolute;
  6831. left:0px;
  6832. top:0px;
  6833. width:34px;
  6834. height:25px;
  6835. padding:2px 2px 2px 2px;
  6836. font-family:'Microsoft YaHei', sans-serif;
  6837. font-weight:400;
  6838. font-style:normal;
  6839. font-size:13px;
  6840. letter-spacing:normal;
  6841. color:#000000;
  6842. vertical-align:none;
  6843. text-align:left;
  6844. text-transform:none;
  6845. background-color:transparent;
  6846. border-color:transparent;
  6847. }
  6848. #u10606_input.disabled {
  6849. position:absolute;
  6850. left:0px;
  6851. top:0px;
  6852. width:34px;
  6853. height:25px;
  6854. padding:2px 2px 2px 2px;
  6855. font-family:'Microsoft YaHei', sans-serif;
  6856. font-weight:400;
  6857. font-style:normal;
  6858. font-size:13px;
  6859. letter-spacing:normal;
  6860. color:#000000;
  6861. vertical-align:none;
  6862. text-align:left;
  6863. text-transform:none;
  6864. background-color:transparent;
  6865. border-color:transparent;
  6866. }
  6867. #u10606_div {
  6868. border-width:0px;
  6869. position:absolute;
  6870. left:0px;
  6871. top:0px;
  6872. width:34px;
  6873. height:25px;
  6874. background:inherit;
  6875. background-color:rgba(255, 255, 255, 1);
  6876. border:none;
  6877. border-radius:0px;
  6878. -moz-box-shadow:none;
  6879. -webkit-box-shadow:none;
  6880. box-shadow:none;
  6881. font-family:'Microsoft YaHei', sans-serif;
  6882. font-weight:400;
  6883. font-style:normal;
  6884. }
  6885. #u10606 {
  6886. border-width:0px;
  6887. position:absolute;
  6888. left:1443px;
  6889. top:1191px;
  6890. width:34px;
  6891. height:25px;
  6892. display:flex;
  6893. font-family:'Microsoft YaHei', sans-serif;
  6894. font-weight:400;
  6895. font-style:normal;
  6896. }
  6897. #u10606 .text {
  6898. position:absolute;
  6899. align-self:center;
  6900. padding:2px 2px 2px 2px;
  6901. box-sizing:border-box;
  6902. width:100%;
  6903. }
  6904. #u10606_div.disabled {
  6905. border-width:0px;
  6906. position:absolute;
  6907. left:0px;
  6908. top:0px;
  6909. width:34px;
  6910. height:25px;
  6911. background:inherit;
  6912. background-color:rgba(240, 240, 240, 1);
  6913. border:none;
  6914. border-radius:0px;
  6915. -moz-box-shadow:none;
  6916. -webkit-box-shadow:none;
  6917. box-shadow:none;
  6918. font-family:'Microsoft YaHei', sans-serif;
  6919. font-weight:400;
  6920. font-style:normal;
  6921. }
  6922. #u10606.disabled {
  6923. }