styles.css 195 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2273px;
  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. #u13529_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. #u13529 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u13529 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u13529_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u13530_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. #u13530 {
  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. #u13530 .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. #u13530_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u13531_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. #u13531 {
  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. #u13531 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u13531_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u13532 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u13533_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u13533 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u13533 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u13533_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u13534_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. #u13534 {
  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. #u13534 .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. #u13534_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u13535_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. #u13535 {
  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. #u13535 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u13535_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u13536 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u13537_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. #u13537 {
  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. #u13537 .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. #u13537_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u13538_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u13538 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u13538 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u13538_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u13539 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u13540_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. #u13540 {
  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. #u13540 .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. #u13540_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u13541_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u13541 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u13541 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u13541_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u13542 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u13543_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. #u13543 {
  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. #u13543 .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. #u13543_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u13544_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u13544 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u13544 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u13544_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u13545 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u13546_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. #u13546 {
  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. #u13546 .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. #u13546_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u13547_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u13547 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u13547 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u13547_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u13548 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u13549_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. #u13549 {
  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. #u13549 .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. #u13549_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u13550_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u13550 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u13550 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u13550_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u13551 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u13552_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. #u13552 {
  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. #u13552 .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. #u13552_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u13553_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u13553 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u13553 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u13553_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u13554 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u13555_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. #u13555 {
  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. #u13555 .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. #u13555_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u13556_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u13556 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u13556 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u13556_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u13557 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u13558_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. #u13558 {
  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. #u13558 .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. #u13558_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u13559_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u13559 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u13559 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u13559_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u13560 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u13561_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. #u13561 {
  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. #u13561 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u13561_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u13562_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u13562 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u13562 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u13562_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u13563 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u13564_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. #u13564 {
  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. #u13564 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u13564_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u13565_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u13565 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u13565 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u13565_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u13566 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u13567_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. #u13567 {
  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. #u13567 .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. #u13567_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u13568_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u13568 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u13568 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u13568_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u13569 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u13570_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. #u13570_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. #u13570_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. #u13570 {
  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. #u13570 .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. #u13570_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. #u13570.disabled {
  1276. }
  1277. .u13570_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u13571_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u13571 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u13571 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u13571_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u13572_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. #u13572 {
  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. #u13572 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u13572_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u13573_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u13573 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u13573 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u13573_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u13574 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u13575_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. #u13575 {
  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. #u13575 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u13575_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u13576_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u13576 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u13576 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u13576_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u13577_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u13577 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u13577 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u13577_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u13578_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u13578 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u13578 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u13578_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u13579_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u13579 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u13579 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u13579_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u13580 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u13581_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. #u13581 {
  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. #u13581 .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. #u13581_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u13582_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u13582 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u13582 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u13582_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u13583_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1262px;
  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:none;
  1654. -webkit-box-shadow:none;
  1655. box-shadow:none;
  1656. }
  1657. #u13583 {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:330px;
  1661. top:51px;
  1662. width:1262px;
  1663. height:1180px;
  1664. display:flex;
  1665. }
  1666. #u13583 .text {
  1667. position:absolute;
  1668. align-self:center;
  1669. padding:2px 2px 2px 2px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u13583_text {
  1674. border-width:0px;
  1675. word-wrap:break-word;
  1676. text-transform:none;
  1677. visibility:hidden;
  1678. }
  1679. #u13584_div {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:0px;
  1683. top:0px;
  1684. width:73px;
  1685. height:25px;
  1686. background:inherit;
  1687. background-color:rgba(255, 255, 255, 0);
  1688. border:none;
  1689. border-radius:0px;
  1690. -moz-box-shadow:none;
  1691. -webkit-box-shadow:none;
  1692. box-shadow:none;
  1693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1694. font-weight:400;
  1695. font-style:normal;
  1696. font-size:18px;
  1697. }
  1698. #u13584 {
  1699. border-width:0px;
  1700. position:absolute;
  1701. left:350px;
  1702. top:61px;
  1703. width:73px;
  1704. height:25px;
  1705. display:flex;
  1706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1707. font-weight:400;
  1708. font-style:normal;
  1709. font-size:18px;
  1710. }
  1711. #u13584 .text {
  1712. position:absolute;
  1713. align-self:flex-start;
  1714. padding:0px 0px 0px 0px;
  1715. box-sizing:border-box;
  1716. width:100%;
  1717. }
  1718. #u13584_text {
  1719. border-width:0px;
  1720. white-space:nowrap;
  1721. text-transform:none;
  1722. }
  1723. #u13585 {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:350px;
  1727. top:267px;
  1728. width:1227px;
  1729. height:326px;
  1730. }
  1731. #u13586_img {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:0px;
  1735. top:0px;
  1736. width:84px;
  1737. height:38px;
  1738. }
  1739. #u13586 {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:0px;
  1743. top:0px;
  1744. width:84px;
  1745. height:38px;
  1746. display:flex;
  1747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1748. font-weight:400;
  1749. font-style:normal;
  1750. font-size:12px;
  1751. color:#FFFFFF;
  1752. }
  1753. #u13586 .text {
  1754. position:absolute;
  1755. align-self:center;
  1756. padding:2px 2px 2px 0px;
  1757. box-sizing:border-box;
  1758. width:100%;
  1759. }
  1760. #u13586_text {
  1761. border-width:0px;
  1762. word-wrap:break-word;
  1763. text-transform:none;
  1764. }
  1765. #u13587_img {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:0px;
  1769. top:0px;
  1770. width:84px;
  1771. height:38px;
  1772. }
  1773. #u13587 {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:84px;
  1777. top:0px;
  1778. width:84px;
  1779. height:38px;
  1780. display:flex;
  1781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1782. font-weight:400;
  1783. font-style:normal;
  1784. font-size:12px;
  1785. color:#FFFFFF;
  1786. }
  1787. #u13587 .text {
  1788. position:absolute;
  1789. align-self:center;
  1790. padding:2px 2px 2px 0px;
  1791. box-sizing:border-box;
  1792. width:100%;
  1793. }
  1794. #u13587_text {
  1795. border-width:0px;
  1796. word-wrap:break-word;
  1797. text-transform:none;
  1798. }
  1799. #u13588_img {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:0px;
  1803. top:0px;
  1804. width:92px;
  1805. height:38px;
  1806. }
  1807. #u13588 {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:168px;
  1811. top:0px;
  1812. width:92px;
  1813. height:38px;
  1814. display:flex;
  1815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1816. font-weight:400;
  1817. font-style:normal;
  1818. font-size:12px;
  1819. color:#FFFFFF;
  1820. }
  1821. #u13588 .text {
  1822. position:absolute;
  1823. align-self:center;
  1824. padding:2px 2px 2px 0px;
  1825. box-sizing:border-box;
  1826. width:100%;
  1827. }
  1828. #u13588_text {
  1829. border-width:0px;
  1830. word-wrap:break-word;
  1831. text-transform:none;
  1832. }
  1833. #u13589_img {
  1834. border-width:0px;
  1835. position:absolute;
  1836. left:0px;
  1837. top:0px;
  1838. width:84px;
  1839. height:38px;
  1840. }
  1841. #u13589 {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:260px;
  1845. top:0px;
  1846. width:84px;
  1847. height:38px;
  1848. display:flex;
  1849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1850. font-weight:400;
  1851. font-style:normal;
  1852. font-size:12px;
  1853. color:#FFFFFF;
  1854. }
  1855. #u13589 .text {
  1856. position:absolute;
  1857. align-self:center;
  1858. padding:2px 2px 2px 0px;
  1859. box-sizing:border-box;
  1860. width:100%;
  1861. }
  1862. #u13589_text {
  1863. border-width:0px;
  1864. word-wrap:break-word;
  1865. text-transform:none;
  1866. }
  1867. #u13590_img {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:0px;
  1871. top:0px;
  1872. width:93px;
  1873. height:38px;
  1874. }
  1875. #u13590 {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:344px;
  1879. top:0px;
  1880. width:93px;
  1881. height:38px;
  1882. display:flex;
  1883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1884. font-weight:400;
  1885. font-style:normal;
  1886. font-size:12px;
  1887. color:#FFFFFF;
  1888. }
  1889. #u13590 .text {
  1890. position:absolute;
  1891. align-self:center;
  1892. padding:2px 2px 2px 0px;
  1893. box-sizing:border-box;
  1894. width:100%;
  1895. }
  1896. #u13590_text {
  1897. border-width:0px;
  1898. word-wrap:break-word;
  1899. text-transform:none;
  1900. }
  1901. #u13591_img {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:0px;
  1905. top:0px;
  1906. width:84px;
  1907. height:38px;
  1908. }
  1909. #u13591 {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:437px;
  1913. top:0px;
  1914. width:84px;
  1915. height:38px;
  1916. display:flex;
  1917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1918. font-weight:400;
  1919. font-style:normal;
  1920. font-size:12px;
  1921. color:#FFFFFF;
  1922. }
  1923. #u13591 .text {
  1924. position:absolute;
  1925. align-self:center;
  1926. padding:2px 2px 2px 0px;
  1927. box-sizing:border-box;
  1928. width:100%;
  1929. }
  1930. #u13591_text {
  1931. border-width:0px;
  1932. word-wrap:break-word;
  1933. text-transform:none;
  1934. }
  1935. #u13592_img {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:0px;
  1939. top:0px;
  1940. width:76px;
  1941. height:38px;
  1942. }
  1943. #u13592 {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:521px;
  1947. top:0px;
  1948. width:76px;
  1949. height:38px;
  1950. display:flex;
  1951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1952. font-weight:400;
  1953. font-style:normal;
  1954. font-size:12px;
  1955. color:#FFFFFF;
  1956. }
  1957. #u13592 .text {
  1958. position:absolute;
  1959. align-self:center;
  1960. padding:2px 2px 2px 0px;
  1961. box-sizing:border-box;
  1962. width:100%;
  1963. }
  1964. #u13592_text {
  1965. border-width:0px;
  1966. word-wrap:break-word;
  1967. text-transform:none;
  1968. }
  1969. #u13593_img {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:0px;
  1973. top:0px;
  1974. width:102px;
  1975. height:38px;
  1976. }
  1977. #u13593 {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:597px;
  1981. top:0px;
  1982. width:102px;
  1983. height:38px;
  1984. display:flex;
  1985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1986. font-weight:400;
  1987. font-style:normal;
  1988. font-size:12px;
  1989. color:#FFFFFF;
  1990. }
  1991. #u13593 .text {
  1992. position:absolute;
  1993. align-self:center;
  1994. padding:2px 2px 2px 0px;
  1995. box-sizing:border-box;
  1996. width:100%;
  1997. }
  1998. #u13593_text {
  1999. border-width:0px;
  2000. word-wrap:break-word;
  2001. text-transform:none;
  2002. }
  2003. #u13594_img {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:0px;
  2007. top:0px;
  2008. width:80px;
  2009. height:38px;
  2010. }
  2011. #u13594 {
  2012. border-width:0px;
  2013. position:absolute;
  2014. left:699px;
  2015. top:0px;
  2016. width:80px;
  2017. height:38px;
  2018. display:flex;
  2019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2020. font-weight:400;
  2021. font-style:normal;
  2022. font-size:12px;
  2023. color:#FFFFFF;
  2024. }
  2025. #u13594 .text {
  2026. position:absolute;
  2027. align-self:center;
  2028. padding:2px 2px 2px 0px;
  2029. box-sizing:border-box;
  2030. width:100%;
  2031. }
  2032. #u13594_text {
  2033. border-width:0px;
  2034. word-wrap:break-word;
  2035. text-transform:none;
  2036. }
  2037. #u13595_img {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:0px;
  2041. top:0px;
  2042. width:140px;
  2043. height:38px;
  2044. }
  2045. #u13595 {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:779px;
  2049. top:0px;
  2050. width:140px;
  2051. height:38px;
  2052. display:flex;
  2053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2054. font-weight:400;
  2055. font-style:normal;
  2056. font-size:12px;
  2057. color:#FFFFFF;
  2058. }
  2059. #u13595 .text {
  2060. position:absolute;
  2061. align-self:center;
  2062. padding:2px 2px 2px 0px;
  2063. box-sizing:border-box;
  2064. width:100%;
  2065. }
  2066. #u13595_text {
  2067. border-width:0px;
  2068. word-wrap:break-word;
  2069. text-transform:none;
  2070. }
  2071. #u13596_img {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:90px;
  2077. height:38px;
  2078. }
  2079. #u13596 {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:919px;
  2083. top:0px;
  2084. width:90px;
  2085. height:38px;
  2086. display:flex;
  2087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2088. font-weight:400;
  2089. font-style:normal;
  2090. font-size:12px;
  2091. color:#FFFFFF;
  2092. }
  2093. #u13596 .text {
  2094. position:absolute;
  2095. align-self:center;
  2096. padding:2px 2px 2px 0px;
  2097. box-sizing:border-box;
  2098. width:100%;
  2099. }
  2100. #u13596_text {
  2101. border-width:0px;
  2102. word-wrap:break-word;
  2103. text-transform:none;
  2104. }
  2105. #u13597_img {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:0px;
  2109. top:0px;
  2110. width:90px;
  2111. height:38px;
  2112. }
  2113. #u13597 {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:1009px;
  2117. top:0px;
  2118. width:90px;
  2119. height:38px;
  2120. display:flex;
  2121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2122. font-weight:400;
  2123. font-style:normal;
  2124. font-size:12px;
  2125. color:#FFFFFF;
  2126. }
  2127. #u13597 .text {
  2128. position:absolute;
  2129. align-self:center;
  2130. padding:2px 2px 2px 0px;
  2131. box-sizing:border-box;
  2132. width:100%;
  2133. }
  2134. #u13597_text {
  2135. border-width:0px;
  2136. word-wrap:break-word;
  2137. text-transform:none;
  2138. }
  2139. #u13598_img {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:0px;
  2143. top:0px;
  2144. width:128px;
  2145. height:38px;
  2146. }
  2147. #u13598 {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:1099px;
  2151. top:0px;
  2152. width:128px;
  2153. height:38px;
  2154. display:flex;
  2155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2156. font-weight:400;
  2157. font-style:normal;
  2158. font-size:12px;
  2159. color:#FFFFFF;
  2160. }
  2161. #u13598 .text {
  2162. position:absolute;
  2163. align-self:center;
  2164. padding:2px 2px 2px 0px;
  2165. box-sizing:border-box;
  2166. width:100%;
  2167. }
  2168. #u13598_text {
  2169. border-width:0px;
  2170. word-wrap:break-word;
  2171. text-transform:none;
  2172. }
  2173. #u13599_img {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:0px;
  2177. top:0px;
  2178. width:84px;
  2179. height:44px;
  2180. }
  2181. #u13599 {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:0px;
  2185. top:38px;
  2186. width:84px;
  2187. height:44px;
  2188. display:flex;
  2189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2190. font-weight:400;
  2191. font-style:normal;
  2192. font-size:12px;
  2193. color:#333333;
  2194. line-height:40px;
  2195. }
  2196. #u13599 .text {
  2197. position:absolute;
  2198. align-self:center;
  2199. padding:2px 2px 2px 0px;
  2200. box-sizing:border-box;
  2201. width:100%;
  2202. }
  2203. #u13599_text {
  2204. border-width:0px;
  2205. word-wrap:break-word;
  2206. text-transform:none;
  2207. visibility:hidden;
  2208. }
  2209. #u13600_img {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:0px;
  2213. top:0px;
  2214. width:84px;
  2215. height:44px;
  2216. }
  2217. #u13600 {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:84px;
  2221. top:38px;
  2222. width:84px;
  2223. height:44px;
  2224. display:flex;
  2225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2226. font-weight:400;
  2227. font-style:normal;
  2228. font-size:12px;
  2229. color:#333333;
  2230. }
  2231. #u13600 .text {
  2232. position:absolute;
  2233. align-self:center;
  2234. padding:2px 2px 2px 0px;
  2235. box-sizing:border-box;
  2236. width:100%;
  2237. }
  2238. #u13600_text {
  2239. border-width:0px;
  2240. word-wrap:break-word;
  2241. text-transform:none;
  2242. }
  2243. #u13601_img {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:0px;
  2247. top:0px;
  2248. width:92px;
  2249. height:44px;
  2250. }
  2251. #u13601 {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:168px;
  2255. top:38px;
  2256. width:92px;
  2257. height:44px;
  2258. display:flex;
  2259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2260. font-weight:400;
  2261. font-style:normal;
  2262. font-size:12px;
  2263. text-decoration:line-through ;
  2264. color:#333333;
  2265. }
  2266. #u13601 .text {
  2267. position:absolute;
  2268. align-self:center;
  2269. padding:2px 2px 2px 0px;
  2270. box-sizing:border-box;
  2271. width:100%;
  2272. }
  2273. #u13601_text {
  2274. border-width:0px;
  2275. word-wrap:break-word;
  2276. text-transform:none;
  2277. }
  2278. #u13602_img {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:0px;
  2282. top:0px;
  2283. width:84px;
  2284. height:44px;
  2285. }
  2286. #u13602 {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:260px;
  2290. top:38px;
  2291. width:84px;
  2292. height:44px;
  2293. display:flex;
  2294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2295. font-weight:400;
  2296. font-style:normal;
  2297. font-size:12px;
  2298. color:#333333;
  2299. }
  2300. #u13602 .text {
  2301. position:absolute;
  2302. align-self:center;
  2303. padding:2px 2px 2px 0px;
  2304. box-sizing:border-box;
  2305. width:100%;
  2306. }
  2307. #u13602_text {
  2308. border-width:0px;
  2309. word-wrap:break-word;
  2310. text-transform:none;
  2311. visibility:hidden;
  2312. }
  2313. #u13603_img {
  2314. border-width:0px;
  2315. position:absolute;
  2316. left:0px;
  2317. top:0px;
  2318. width:93px;
  2319. height:44px;
  2320. }
  2321. #u13603 {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:344px;
  2325. top:38px;
  2326. width:93px;
  2327. height:44px;
  2328. display:flex;
  2329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2330. font-weight:400;
  2331. font-style:normal;
  2332. font-size:12px;
  2333. color:#333333;
  2334. line-height:40px;
  2335. }
  2336. #u13603 .text {
  2337. position:absolute;
  2338. align-self:center;
  2339. padding:2px 2px 2px 0px;
  2340. box-sizing:border-box;
  2341. width:100%;
  2342. }
  2343. #u13603_text {
  2344. border-width:0px;
  2345. word-wrap:break-word;
  2346. text-transform:none;
  2347. }
  2348. #u13604_img {
  2349. border-width:0px;
  2350. position:absolute;
  2351. left:0px;
  2352. top:0px;
  2353. width:84px;
  2354. height:44px;
  2355. }
  2356. #u13604 {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:437px;
  2360. top:38px;
  2361. width:84px;
  2362. height:44px;
  2363. display:flex;
  2364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2365. font-weight:400;
  2366. font-style:normal;
  2367. font-size:12px;
  2368. color:#333333;
  2369. line-height:40px;
  2370. }
  2371. #u13604 .text {
  2372. position:absolute;
  2373. align-self:center;
  2374. padding:2px 2px 2px 0px;
  2375. box-sizing:border-box;
  2376. width:100%;
  2377. }
  2378. #u13604_text {
  2379. border-width:0px;
  2380. word-wrap:break-word;
  2381. text-transform:none;
  2382. visibility:hidden;
  2383. }
  2384. #u13605_img {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:0px;
  2388. top:0px;
  2389. width:76px;
  2390. height:44px;
  2391. }
  2392. #u13605 {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:521px;
  2396. top:38px;
  2397. width:76px;
  2398. height:44px;
  2399. display:flex;
  2400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2401. font-weight:400;
  2402. font-style:normal;
  2403. font-size:12px;
  2404. color:#333333;
  2405. line-height:40px;
  2406. }
  2407. #u13605 .text {
  2408. position:absolute;
  2409. align-self:center;
  2410. padding:2px 2px 2px 0px;
  2411. box-sizing:border-box;
  2412. width:100%;
  2413. }
  2414. #u13605_text {
  2415. border-width:0px;
  2416. word-wrap:break-word;
  2417. text-transform:none;
  2418. visibility:hidden;
  2419. }
  2420. #u13606_img {
  2421. border-width:0px;
  2422. position:absolute;
  2423. left:0px;
  2424. top:0px;
  2425. width:102px;
  2426. height:44px;
  2427. }
  2428. #u13606 {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:597px;
  2432. top:38px;
  2433. width:102px;
  2434. height:44px;
  2435. display:flex;
  2436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2437. font-weight:400;
  2438. font-style:normal;
  2439. font-size:12px;
  2440. }
  2441. #u13606 .text {
  2442. position:absolute;
  2443. align-self:center;
  2444. padding:2px 2px 2px 0px;
  2445. box-sizing:border-box;
  2446. width:100%;
  2447. }
  2448. #u13606_text {
  2449. border-width:0px;
  2450. word-wrap:break-word;
  2451. text-transform:none;
  2452. visibility:hidden;
  2453. }
  2454. #u13607_img {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:0px;
  2458. top:0px;
  2459. width:80px;
  2460. height:44px;
  2461. }
  2462. #u13607 {
  2463. border-width:0px;
  2464. position:absolute;
  2465. left:699px;
  2466. top:38px;
  2467. width:80px;
  2468. height:44px;
  2469. display:flex;
  2470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2471. font-weight:400;
  2472. font-style:normal;
  2473. font-size:12px;
  2474. color:#333333;
  2475. }
  2476. #u13607 .text {
  2477. position:absolute;
  2478. align-self:center;
  2479. padding:2px 2px 2px 0px;
  2480. box-sizing:border-box;
  2481. width:100%;
  2482. }
  2483. #u13607_text {
  2484. border-width:0px;
  2485. word-wrap:break-word;
  2486. text-transform:none;
  2487. }
  2488. #u13608_img {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:0px;
  2492. top:0px;
  2493. width:140px;
  2494. height:44px;
  2495. }
  2496. #u13608 {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:779px;
  2500. top:38px;
  2501. width:140px;
  2502. height:44px;
  2503. display:flex;
  2504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2505. font-weight:400;
  2506. font-style:normal;
  2507. font-size:12px;
  2508. color:#333333;
  2509. }
  2510. #u13608 .text {
  2511. position:absolute;
  2512. align-self:center;
  2513. padding:2px 2px 2px 0px;
  2514. box-sizing:border-box;
  2515. width:100%;
  2516. }
  2517. #u13608_text {
  2518. border-width:0px;
  2519. word-wrap:break-word;
  2520. text-transform:none;
  2521. visibility:hidden;
  2522. }
  2523. #u13609_img {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:0px;
  2527. top:0px;
  2528. width:90px;
  2529. height:44px;
  2530. }
  2531. #u13609 {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:919px;
  2535. top:38px;
  2536. width:90px;
  2537. height:44px;
  2538. display:flex;
  2539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2540. font-weight:400;
  2541. font-style:normal;
  2542. font-size:12px;
  2543. color:#333333;
  2544. }
  2545. #u13609 .text {
  2546. position:absolute;
  2547. align-self:center;
  2548. padding:2px 2px 2px 0px;
  2549. box-sizing:border-box;
  2550. width:100%;
  2551. }
  2552. #u13609_text {
  2553. border-width:0px;
  2554. word-wrap:break-word;
  2555. text-transform:none;
  2556. visibility:hidden;
  2557. }
  2558. #u13610_img {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:0px;
  2562. top:0px;
  2563. width:90px;
  2564. height:44px;
  2565. }
  2566. #u13610 {
  2567. border-width:0px;
  2568. position:absolute;
  2569. left:1009px;
  2570. top:38px;
  2571. width:90px;
  2572. height:44px;
  2573. display:flex;
  2574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2575. font-weight:400;
  2576. font-style:normal;
  2577. font-size:12px;
  2578. color:#333333;
  2579. }
  2580. #u13610 .text {
  2581. position:absolute;
  2582. align-self:center;
  2583. padding:2px 2px 2px 0px;
  2584. box-sizing:border-box;
  2585. width:100%;
  2586. }
  2587. #u13610_text {
  2588. border-width:0px;
  2589. word-wrap:break-word;
  2590. text-transform:none;
  2591. visibility:hidden;
  2592. }
  2593. #u13611_img {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:0px;
  2597. top:0px;
  2598. width:128px;
  2599. height:44px;
  2600. }
  2601. #u13611 {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:1099px;
  2605. top:38px;
  2606. width:128px;
  2607. height:44px;
  2608. display:flex;
  2609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2610. font-weight:400;
  2611. font-style:normal;
  2612. font-size:12px;
  2613. color:#298FFF;
  2614. line-height:35px;
  2615. }
  2616. #u13611 .text {
  2617. position:absolute;
  2618. align-self:center;
  2619. padding:2px 2px 2px 0px;
  2620. box-sizing:border-box;
  2621. width:100%;
  2622. }
  2623. #u13611_text {
  2624. border-width:0px;
  2625. word-wrap:break-word;
  2626. text-transform:none;
  2627. }
  2628. #u13612_img {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:0px;
  2632. top:0px;
  2633. width:84px;
  2634. height:44px;
  2635. }
  2636. #u13612 {
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:0px;
  2640. top:82px;
  2641. width:84px;
  2642. height:44px;
  2643. display:flex;
  2644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2645. font-weight:400;
  2646. font-style:normal;
  2647. font-size:12px;
  2648. color:#333333;
  2649. line-height:40px;
  2650. }
  2651. #u13612 .text {
  2652. position:absolute;
  2653. align-self:center;
  2654. padding:2px 2px 2px 0px;
  2655. box-sizing:border-box;
  2656. width:100%;
  2657. }
  2658. #u13612_text {
  2659. border-width:0px;
  2660. word-wrap:break-word;
  2661. text-transform:none;
  2662. visibility:hidden;
  2663. }
  2664. #u13613_img {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:0px;
  2668. top:0px;
  2669. width:84px;
  2670. height:44px;
  2671. }
  2672. #u13613 {
  2673. border-width:0px;
  2674. position:absolute;
  2675. left:84px;
  2676. top:82px;
  2677. width:84px;
  2678. height:44px;
  2679. display:flex;
  2680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2681. font-weight:400;
  2682. font-style:normal;
  2683. font-size:12px;
  2684. }
  2685. #u13613 .text {
  2686. position:absolute;
  2687. align-self:center;
  2688. padding:2px 2px 2px 0px;
  2689. box-sizing:border-box;
  2690. width:100%;
  2691. }
  2692. #u13613_text {
  2693. border-width:0px;
  2694. word-wrap:break-word;
  2695. text-transform:none;
  2696. }
  2697. #u13614_img {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:0px;
  2701. top:0px;
  2702. width:92px;
  2703. height:44px;
  2704. }
  2705. #u13614 {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:168px;
  2709. top:82px;
  2710. width:92px;
  2711. height:44px;
  2712. display:flex;
  2713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2714. font-weight:400;
  2715. font-style:normal;
  2716. font-size:12px;
  2717. }
  2718. #u13614 .text {
  2719. position:absolute;
  2720. align-self:center;
  2721. padding:2px 2px 2px 0px;
  2722. box-sizing:border-box;
  2723. width:100%;
  2724. }
  2725. #u13614_text {
  2726. border-width:0px;
  2727. word-wrap:break-word;
  2728. text-transform:none;
  2729. }
  2730. #u13615_img {
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:0px;
  2734. top:0px;
  2735. width:84px;
  2736. height:44px;
  2737. }
  2738. #u13615 {
  2739. border-width:0px;
  2740. position:absolute;
  2741. left:260px;
  2742. top:82px;
  2743. width:84px;
  2744. height:44px;
  2745. display:flex;
  2746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2747. font-weight:400;
  2748. font-style:normal;
  2749. font-size:12px;
  2750. color:#333333;
  2751. }
  2752. #u13615 .text {
  2753. position:absolute;
  2754. align-self:center;
  2755. padding:2px 2px 2px 0px;
  2756. box-sizing:border-box;
  2757. width:100%;
  2758. }
  2759. #u13615_text {
  2760. border-width:0px;
  2761. word-wrap:break-word;
  2762. text-transform:none;
  2763. visibility:hidden;
  2764. }
  2765. #u13616_img {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:0px;
  2769. top:0px;
  2770. width:93px;
  2771. height:44px;
  2772. }
  2773. #u13616 {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:344px;
  2777. top:82px;
  2778. width:93px;
  2779. height:44px;
  2780. display:flex;
  2781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2782. font-weight:400;
  2783. font-style:normal;
  2784. font-size:12px;
  2785. color:#333333;
  2786. line-height:40px;
  2787. }
  2788. #u13616 .text {
  2789. position:absolute;
  2790. align-self:center;
  2791. padding:2px 2px 2px 0px;
  2792. box-sizing:border-box;
  2793. width:100%;
  2794. }
  2795. #u13616_text {
  2796. border-width:0px;
  2797. word-wrap:break-word;
  2798. text-transform:none;
  2799. visibility:hidden;
  2800. }
  2801. #u13617_img {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:0px;
  2805. top:0px;
  2806. width:84px;
  2807. height:44px;
  2808. }
  2809. #u13617 {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:437px;
  2813. top:82px;
  2814. width:84px;
  2815. height:44px;
  2816. display:flex;
  2817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2818. font-weight:400;
  2819. font-style:normal;
  2820. font-size:12px;
  2821. color:#333333;
  2822. line-height:40px;
  2823. }
  2824. #u13617 .text {
  2825. position:absolute;
  2826. align-self:center;
  2827. padding:2px 2px 2px 0px;
  2828. box-sizing:border-box;
  2829. width:100%;
  2830. }
  2831. #u13617_text {
  2832. border-width:0px;
  2833. word-wrap:break-word;
  2834. text-transform:none;
  2835. visibility:hidden;
  2836. }
  2837. #u13618_img {
  2838. border-width:0px;
  2839. position:absolute;
  2840. left:0px;
  2841. top:0px;
  2842. width:76px;
  2843. height:44px;
  2844. }
  2845. #u13618 {
  2846. border-width:0px;
  2847. position:absolute;
  2848. left:521px;
  2849. top:82px;
  2850. width:76px;
  2851. height:44px;
  2852. display:flex;
  2853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2854. font-weight:400;
  2855. font-style:normal;
  2856. font-size:12px;
  2857. color:#333333;
  2858. line-height:40px;
  2859. }
  2860. #u13618 .text {
  2861. position:absolute;
  2862. align-self:center;
  2863. padding:2px 2px 2px 0px;
  2864. box-sizing:border-box;
  2865. width:100%;
  2866. }
  2867. #u13618_text {
  2868. border-width:0px;
  2869. word-wrap:break-word;
  2870. text-transform:none;
  2871. visibility:hidden;
  2872. }
  2873. #u13619_img {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:0px;
  2877. top:0px;
  2878. width:102px;
  2879. height:44px;
  2880. }
  2881. #u13619 {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:597px;
  2885. top:82px;
  2886. width:102px;
  2887. height:44px;
  2888. display:flex;
  2889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2890. font-weight:400;
  2891. font-style:normal;
  2892. font-size:12px;
  2893. }
  2894. #u13619 .text {
  2895. position:absolute;
  2896. align-self:center;
  2897. padding:2px 2px 2px 0px;
  2898. box-sizing:border-box;
  2899. width:100%;
  2900. }
  2901. #u13619_text {
  2902. border-width:0px;
  2903. word-wrap:break-word;
  2904. text-transform:none;
  2905. visibility:hidden;
  2906. }
  2907. #u13620_img {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:80px;
  2913. height:44px;
  2914. }
  2915. #u13620 {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:699px;
  2919. top:82px;
  2920. width:80px;
  2921. height:44px;
  2922. display:flex;
  2923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2924. font-weight:400;
  2925. font-style:normal;
  2926. font-size:12px;
  2927. color:#333333;
  2928. }
  2929. #u13620 .text {
  2930. position:absolute;
  2931. align-self:center;
  2932. padding:2px 2px 2px 0px;
  2933. box-sizing:border-box;
  2934. width:100%;
  2935. }
  2936. #u13620_text {
  2937. border-width:0px;
  2938. word-wrap:break-word;
  2939. text-transform:none;
  2940. }
  2941. #u13621_img {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:0px;
  2945. top:0px;
  2946. width:140px;
  2947. height:44px;
  2948. }
  2949. #u13621 {
  2950. border-width:0px;
  2951. position:absolute;
  2952. left:779px;
  2953. top:82px;
  2954. width:140px;
  2955. height:44px;
  2956. display:flex;
  2957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2958. font-weight:400;
  2959. font-style:normal;
  2960. font-size:12px;
  2961. color:#333333;
  2962. }
  2963. #u13621 .text {
  2964. position:absolute;
  2965. align-self:center;
  2966. padding:2px 2px 2px 0px;
  2967. box-sizing:border-box;
  2968. width:100%;
  2969. }
  2970. #u13621_text {
  2971. border-width:0px;
  2972. word-wrap:break-word;
  2973. text-transform:none;
  2974. visibility:hidden;
  2975. }
  2976. #u13622_img {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:0px;
  2980. top:0px;
  2981. width:90px;
  2982. height:44px;
  2983. }
  2984. #u13622 {
  2985. border-width:0px;
  2986. position:absolute;
  2987. left:919px;
  2988. top:82px;
  2989. width:90px;
  2990. height:44px;
  2991. display:flex;
  2992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2993. font-weight:400;
  2994. font-style:normal;
  2995. font-size:12px;
  2996. color:#333333;
  2997. }
  2998. #u13622 .text {
  2999. position:absolute;
  3000. align-self:center;
  3001. padding:2px 2px 2px 0px;
  3002. box-sizing:border-box;
  3003. width:100%;
  3004. }
  3005. #u13622_text {
  3006. border-width:0px;
  3007. word-wrap:break-word;
  3008. text-transform:none;
  3009. visibility:hidden;
  3010. }
  3011. #u13623_img {
  3012. border-width:0px;
  3013. position:absolute;
  3014. left:0px;
  3015. top:0px;
  3016. width:90px;
  3017. height:44px;
  3018. }
  3019. #u13623 {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:1009px;
  3023. top:82px;
  3024. width:90px;
  3025. height:44px;
  3026. display:flex;
  3027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3028. font-weight:400;
  3029. font-style:normal;
  3030. font-size:12px;
  3031. color:#333333;
  3032. }
  3033. #u13623 .text {
  3034. position:absolute;
  3035. align-self:center;
  3036. padding:2px 2px 2px 0px;
  3037. box-sizing:border-box;
  3038. width:100%;
  3039. }
  3040. #u13623_text {
  3041. border-width:0px;
  3042. word-wrap:break-word;
  3043. text-transform:none;
  3044. visibility:hidden;
  3045. }
  3046. #u13624_img {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:0px;
  3050. top:0px;
  3051. width:128px;
  3052. height:44px;
  3053. }
  3054. #u13624 {
  3055. border-width:0px;
  3056. position:absolute;
  3057. left:1099px;
  3058. top:82px;
  3059. width:128px;
  3060. height:44px;
  3061. display:flex;
  3062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3063. font-weight:400;
  3064. font-style:normal;
  3065. font-size:12px;
  3066. color:#298FFF;
  3067. line-height:35px;
  3068. }
  3069. #u13624 .text {
  3070. position:absolute;
  3071. align-self:center;
  3072. padding:2px 2px 2px 0px;
  3073. box-sizing:border-box;
  3074. width:100%;
  3075. }
  3076. #u13624_text {
  3077. border-width:0px;
  3078. word-wrap:break-word;
  3079. text-transform:none;
  3080. }
  3081. #u13625_img {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:0px;
  3085. top:0px;
  3086. width:84px;
  3087. height:44px;
  3088. }
  3089. #u13625 {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:0px;
  3093. top:126px;
  3094. width:84px;
  3095. height:44px;
  3096. display:flex;
  3097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3098. font-weight:400;
  3099. font-style:normal;
  3100. font-size:12px;
  3101. color:#333333;
  3102. line-height:40px;
  3103. }
  3104. #u13625 .text {
  3105. position:absolute;
  3106. align-self:center;
  3107. padding:2px 2px 2px 0px;
  3108. box-sizing:border-box;
  3109. width:100%;
  3110. }
  3111. #u13625_text {
  3112. border-width:0px;
  3113. word-wrap:break-word;
  3114. text-transform:none;
  3115. visibility:hidden;
  3116. }
  3117. #u13626_img {
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:0px;
  3121. top:0px;
  3122. width:84px;
  3123. height:44px;
  3124. }
  3125. #u13626 {
  3126. border-width:0px;
  3127. position:absolute;
  3128. left:84px;
  3129. top:126px;
  3130. width:84px;
  3131. height:44px;
  3132. display:flex;
  3133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3134. font-weight:400;
  3135. font-style:normal;
  3136. font-size:12px;
  3137. color:#333333;
  3138. }
  3139. #u13626 .text {
  3140. position:absolute;
  3141. align-self:center;
  3142. padding:2px 2px 2px 0px;
  3143. box-sizing:border-box;
  3144. width:100%;
  3145. }
  3146. #u13626_text {
  3147. border-width:0px;
  3148. word-wrap:break-word;
  3149. text-transform:none;
  3150. }
  3151. #u13627_img {
  3152. border-width:0px;
  3153. position:absolute;
  3154. left:0px;
  3155. top:0px;
  3156. width:92px;
  3157. height:44px;
  3158. }
  3159. #u13627 {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:168px;
  3163. top:126px;
  3164. width:92px;
  3165. height:44px;
  3166. display:flex;
  3167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3168. font-weight:400;
  3169. font-style:normal;
  3170. font-size:12px;
  3171. color:#333333;
  3172. }
  3173. #u13627 .text {
  3174. position:absolute;
  3175. align-self:center;
  3176. padding:2px 2px 2px 0px;
  3177. box-sizing:border-box;
  3178. width:100%;
  3179. }
  3180. #u13627_text {
  3181. border-width:0px;
  3182. word-wrap:break-word;
  3183. text-transform:none;
  3184. visibility:hidden;
  3185. }
  3186. #u13628_img {
  3187. border-width:0px;
  3188. position:absolute;
  3189. left:0px;
  3190. top:0px;
  3191. width:84px;
  3192. height:44px;
  3193. }
  3194. #u13628 {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:260px;
  3198. top:126px;
  3199. width:84px;
  3200. height:44px;
  3201. display:flex;
  3202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3203. font-weight:400;
  3204. font-style:normal;
  3205. font-size:12px;
  3206. color:#333333;
  3207. }
  3208. #u13628 .text {
  3209. position:absolute;
  3210. align-self:center;
  3211. padding:2px 2px 2px 0px;
  3212. box-sizing:border-box;
  3213. width:100%;
  3214. }
  3215. #u13628_text {
  3216. border-width:0px;
  3217. word-wrap:break-word;
  3218. text-transform:none;
  3219. visibility:hidden;
  3220. }
  3221. #u13629_img {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:0px;
  3225. top:0px;
  3226. width:93px;
  3227. height:44px;
  3228. }
  3229. #u13629 {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:344px;
  3233. top:126px;
  3234. width:93px;
  3235. height:44px;
  3236. display:flex;
  3237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3238. font-weight:400;
  3239. font-style:normal;
  3240. font-size:12px;
  3241. color:#333333;
  3242. line-height:40px;
  3243. }
  3244. #u13629 .text {
  3245. position:absolute;
  3246. align-self:center;
  3247. padding:2px 2px 2px 0px;
  3248. box-sizing:border-box;
  3249. width:100%;
  3250. }
  3251. #u13629_text {
  3252. border-width:0px;
  3253. word-wrap:break-word;
  3254. text-transform:none;
  3255. visibility:hidden;
  3256. }
  3257. #u13630_img {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:0px;
  3261. top:0px;
  3262. width:84px;
  3263. height:44px;
  3264. }
  3265. #u13630 {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:437px;
  3269. top:126px;
  3270. width:84px;
  3271. height:44px;
  3272. display:flex;
  3273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3274. font-weight:400;
  3275. font-style:normal;
  3276. font-size:12px;
  3277. color:#333333;
  3278. line-height:40px;
  3279. }
  3280. #u13630 .text {
  3281. position:absolute;
  3282. align-self:center;
  3283. padding:2px 2px 2px 0px;
  3284. box-sizing:border-box;
  3285. width:100%;
  3286. }
  3287. #u13630_text {
  3288. border-width:0px;
  3289. word-wrap:break-word;
  3290. text-transform:none;
  3291. visibility:hidden;
  3292. }
  3293. #u13631_img {
  3294. border-width:0px;
  3295. position:absolute;
  3296. left:0px;
  3297. top:0px;
  3298. width:76px;
  3299. height:44px;
  3300. }
  3301. #u13631 {
  3302. border-width:0px;
  3303. position:absolute;
  3304. left:521px;
  3305. top:126px;
  3306. width:76px;
  3307. height:44px;
  3308. display:flex;
  3309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3310. font-weight:400;
  3311. font-style:normal;
  3312. font-size:12px;
  3313. color:#333333;
  3314. line-height:40px;
  3315. }
  3316. #u13631 .text {
  3317. position:absolute;
  3318. align-self:center;
  3319. padding:2px 2px 2px 0px;
  3320. box-sizing:border-box;
  3321. width:100%;
  3322. }
  3323. #u13631_text {
  3324. border-width:0px;
  3325. word-wrap:break-word;
  3326. text-transform:none;
  3327. visibility:hidden;
  3328. }
  3329. #u13632_img {
  3330. border-width:0px;
  3331. position:absolute;
  3332. left:0px;
  3333. top:0px;
  3334. width:102px;
  3335. height:44px;
  3336. }
  3337. #u13632 {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:597px;
  3341. top:126px;
  3342. width:102px;
  3343. height:44px;
  3344. display:flex;
  3345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3346. font-weight:400;
  3347. font-style:normal;
  3348. font-size:12px;
  3349. }
  3350. #u13632 .text {
  3351. position:absolute;
  3352. align-self:center;
  3353. padding:2px 2px 2px 0px;
  3354. box-sizing:border-box;
  3355. width:100%;
  3356. }
  3357. #u13632_text {
  3358. border-width:0px;
  3359. word-wrap:break-word;
  3360. text-transform:none;
  3361. visibility:hidden;
  3362. }
  3363. #u13633_img {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:0px;
  3367. top:0px;
  3368. width:80px;
  3369. height:44px;
  3370. }
  3371. #u13633 {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:699px;
  3375. top:126px;
  3376. width:80px;
  3377. height:44px;
  3378. display:flex;
  3379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3380. font-weight:400;
  3381. font-style:normal;
  3382. font-size:12px;
  3383. color:#298FFF;
  3384. }
  3385. #u13633 .text {
  3386. position:absolute;
  3387. align-self:center;
  3388. padding:2px 2px 2px 0px;
  3389. box-sizing:border-box;
  3390. width:100%;
  3391. }
  3392. #u13633_text {
  3393. border-width:0px;
  3394. word-wrap:break-word;
  3395. text-transform:none;
  3396. }
  3397. #u13634_img {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:0px;
  3401. top:0px;
  3402. width:140px;
  3403. height:44px;
  3404. }
  3405. #u13634 {
  3406. border-width:0px;
  3407. position:absolute;
  3408. left:779px;
  3409. top:126px;
  3410. width:140px;
  3411. height:44px;
  3412. display:flex;
  3413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3414. font-weight:400;
  3415. font-style:normal;
  3416. font-size:12px;
  3417. color:#333333;
  3418. }
  3419. #u13634 .text {
  3420. position:absolute;
  3421. align-self:center;
  3422. padding:2px 2px 2px 0px;
  3423. box-sizing:border-box;
  3424. width:100%;
  3425. }
  3426. #u13634_text {
  3427. border-width:0px;
  3428. word-wrap:break-word;
  3429. text-transform:none;
  3430. visibility:hidden;
  3431. }
  3432. #u13635_img {
  3433. border-width:0px;
  3434. position:absolute;
  3435. left:0px;
  3436. top:0px;
  3437. width:90px;
  3438. height:44px;
  3439. }
  3440. #u13635 {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:919px;
  3444. top:126px;
  3445. width:90px;
  3446. height:44px;
  3447. display:flex;
  3448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3449. font-weight:400;
  3450. font-style:normal;
  3451. font-size:12px;
  3452. color:#333333;
  3453. }
  3454. #u13635 .text {
  3455. position:absolute;
  3456. align-self:center;
  3457. padding:2px 2px 2px 0px;
  3458. box-sizing:border-box;
  3459. width:100%;
  3460. }
  3461. #u13635_text {
  3462. border-width:0px;
  3463. word-wrap:break-word;
  3464. text-transform:none;
  3465. visibility:hidden;
  3466. }
  3467. #u13636_img {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:0px;
  3471. top:0px;
  3472. width:90px;
  3473. height:44px;
  3474. }
  3475. #u13636 {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:1009px;
  3479. top:126px;
  3480. width:90px;
  3481. height:44px;
  3482. display:flex;
  3483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3484. font-weight:400;
  3485. font-style:normal;
  3486. font-size:12px;
  3487. color:#333333;
  3488. }
  3489. #u13636 .text {
  3490. position:absolute;
  3491. align-self:center;
  3492. padding:2px 2px 2px 0px;
  3493. box-sizing:border-box;
  3494. width:100%;
  3495. }
  3496. #u13636_text {
  3497. border-width:0px;
  3498. word-wrap:break-word;
  3499. text-transform:none;
  3500. visibility:hidden;
  3501. }
  3502. #u13637_img {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:0px;
  3506. top:0px;
  3507. width:128px;
  3508. height:44px;
  3509. }
  3510. #u13637 {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:1099px;
  3514. top:126px;
  3515. width:128px;
  3516. height:44px;
  3517. display:flex;
  3518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3519. font-weight:400;
  3520. font-style:normal;
  3521. font-size:12px;
  3522. line-height:35px;
  3523. }
  3524. #u13637 .text {
  3525. position:absolute;
  3526. align-self:center;
  3527. padding:2px 2px 2px 0px;
  3528. box-sizing:border-box;
  3529. width:100%;
  3530. }
  3531. #u13637_text {
  3532. border-width:0px;
  3533. word-wrap:break-word;
  3534. text-transform:none;
  3535. }
  3536. #u13638_img {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:0px;
  3540. top:0px;
  3541. width:84px;
  3542. height:39px;
  3543. }
  3544. #u13638 {
  3545. border-width:0px;
  3546. position:absolute;
  3547. left:0px;
  3548. top:170px;
  3549. width:84px;
  3550. height:39px;
  3551. display:flex;
  3552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3553. font-weight:400;
  3554. font-style:normal;
  3555. font-size:12px;
  3556. color:#333333;
  3557. line-height:40px;
  3558. }
  3559. #u13638 .text {
  3560. position:absolute;
  3561. align-self:center;
  3562. padding:2px 2px 2px 0px;
  3563. box-sizing:border-box;
  3564. width:100%;
  3565. }
  3566. #u13638_text {
  3567. border-width:0px;
  3568. word-wrap:break-word;
  3569. text-transform:none;
  3570. visibility:hidden;
  3571. }
  3572. #u13639_img {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:0px;
  3576. top:0px;
  3577. width:84px;
  3578. height:39px;
  3579. }
  3580. #u13639 {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:84px;
  3584. top:170px;
  3585. width:84px;
  3586. height:39px;
  3587. display:flex;
  3588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3589. font-weight:400;
  3590. font-style:normal;
  3591. font-size:12px;
  3592. color:#333333;
  3593. }
  3594. #u13639 .text {
  3595. position:absolute;
  3596. align-self:center;
  3597. padding:2px 2px 2px 0px;
  3598. box-sizing:border-box;
  3599. width:100%;
  3600. }
  3601. #u13639_text {
  3602. border-width:0px;
  3603. word-wrap:break-word;
  3604. text-transform:none;
  3605. }
  3606. #u13640_img {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:0px;
  3610. top:0px;
  3611. width:92px;
  3612. height:39px;
  3613. }
  3614. #u13640 {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:168px;
  3618. top:170px;
  3619. width:92px;
  3620. height:39px;
  3621. display:flex;
  3622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3623. font-weight:400;
  3624. font-style:normal;
  3625. font-size:12px;
  3626. color:#333333;
  3627. }
  3628. #u13640 .text {
  3629. position:absolute;
  3630. align-self:center;
  3631. padding:2px 2px 2px 0px;
  3632. box-sizing:border-box;
  3633. width:100%;
  3634. }
  3635. #u13640_text {
  3636. border-width:0px;
  3637. word-wrap:break-word;
  3638. text-transform:none;
  3639. visibility:hidden;
  3640. }
  3641. #u13641_img {
  3642. border-width:0px;
  3643. position:absolute;
  3644. left:0px;
  3645. top:0px;
  3646. width:84px;
  3647. height:39px;
  3648. }
  3649. #u13641 {
  3650. border-width:0px;
  3651. position:absolute;
  3652. left:260px;
  3653. top:170px;
  3654. width:84px;
  3655. height:39px;
  3656. display:flex;
  3657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3658. font-weight:400;
  3659. font-style:normal;
  3660. font-size:12px;
  3661. color:#606266;
  3662. }
  3663. #u13641 .text {
  3664. position:absolute;
  3665. align-self:center;
  3666. padding:2px 2px 2px 0px;
  3667. box-sizing:border-box;
  3668. width:100%;
  3669. }
  3670. #u13641_text {
  3671. border-width:0px;
  3672. word-wrap:break-word;
  3673. text-transform:none;
  3674. visibility:hidden;
  3675. }
  3676. #u13642_img {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:0px;
  3680. top:0px;
  3681. width:93px;
  3682. height:39px;
  3683. }
  3684. #u13642 {
  3685. border-width:0px;
  3686. position:absolute;
  3687. left:344px;
  3688. top:170px;
  3689. width:93px;
  3690. height:39px;
  3691. display:flex;
  3692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3693. font-weight:400;
  3694. font-style:normal;
  3695. font-size:12px;
  3696. color:#333333;
  3697. line-height:40px;
  3698. }
  3699. #u13642 .text {
  3700. position:absolute;
  3701. align-self:center;
  3702. padding:2px 2px 2px 0px;
  3703. box-sizing:border-box;
  3704. width:100%;
  3705. }
  3706. #u13642_text {
  3707. border-width:0px;
  3708. word-wrap:break-word;
  3709. text-transform:none;
  3710. visibility:hidden;
  3711. }
  3712. #u13643_img {
  3713. border-width:0px;
  3714. position:absolute;
  3715. left:0px;
  3716. top:0px;
  3717. width:84px;
  3718. height:39px;
  3719. }
  3720. #u13643 {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:437px;
  3724. top:170px;
  3725. width:84px;
  3726. height:39px;
  3727. display:flex;
  3728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3729. font-weight:400;
  3730. font-style:normal;
  3731. font-size:12px;
  3732. color:#333333;
  3733. line-height:40px;
  3734. }
  3735. #u13643 .text {
  3736. position:absolute;
  3737. align-self:center;
  3738. padding:2px 2px 2px 0px;
  3739. box-sizing:border-box;
  3740. width:100%;
  3741. }
  3742. #u13643_text {
  3743. border-width:0px;
  3744. word-wrap:break-word;
  3745. text-transform:none;
  3746. visibility:hidden;
  3747. }
  3748. #u13644_img {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:0px;
  3752. top:0px;
  3753. width:76px;
  3754. height:39px;
  3755. }
  3756. #u13644 {
  3757. border-width:0px;
  3758. position:absolute;
  3759. left:521px;
  3760. top:170px;
  3761. width:76px;
  3762. height:39px;
  3763. display:flex;
  3764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3765. font-weight:400;
  3766. font-style:normal;
  3767. font-size:12px;
  3768. color:#333333;
  3769. line-height:40px;
  3770. }
  3771. #u13644 .text {
  3772. position:absolute;
  3773. align-self:center;
  3774. padding:2px 2px 2px 0px;
  3775. box-sizing:border-box;
  3776. width:100%;
  3777. }
  3778. #u13644_text {
  3779. border-width:0px;
  3780. word-wrap:break-word;
  3781. text-transform:none;
  3782. visibility:hidden;
  3783. }
  3784. #u13645_img {
  3785. border-width:0px;
  3786. position:absolute;
  3787. left:0px;
  3788. top:0px;
  3789. width:102px;
  3790. height:39px;
  3791. }
  3792. #u13645 {
  3793. border-width:0px;
  3794. position:absolute;
  3795. left:597px;
  3796. top:170px;
  3797. width:102px;
  3798. height:39px;
  3799. display:flex;
  3800. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3801. font-weight:400;
  3802. font-style:normal;
  3803. font-size:12px;
  3804. color:#606266;
  3805. }
  3806. #u13645 .text {
  3807. position:absolute;
  3808. align-self:center;
  3809. padding:2px 2px 2px 0px;
  3810. box-sizing:border-box;
  3811. width:100%;
  3812. }
  3813. #u13645_text {
  3814. border-width:0px;
  3815. word-wrap:break-word;
  3816. text-transform:none;
  3817. visibility:hidden;
  3818. }
  3819. #u13646_img {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:0px;
  3823. top:0px;
  3824. width:80px;
  3825. height:39px;
  3826. }
  3827. #u13646 {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:699px;
  3831. top:170px;
  3832. width:80px;
  3833. height:39px;
  3834. display:flex;
  3835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3836. font-weight:400;
  3837. font-style:normal;
  3838. font-size:12px;
  3839. color:#298FFF;
  3840. }
  3841. #u13646 .text {
  3842. position:absolute;
  3843. align-self:center;
  3844. padding:2px 2px 2px 0px;
  3845. box-sizing:border-box;
  3846. width:100%;
  3847. }
  3848. #u13646_text {
  3849. border-width:0px;
  3850. word-wrap:break-word;
  3851. text-transform:none;
  3852. }
  3853. #u13647_img {
  3854. border-width:0px;
  3855. position:absolute;
  3856. left:0px;
  3857. top:0px;
  3858. width:140px;
  3859. height:39px;
  3860. }
  3861. #u13647 {
  3862. border-width:0px;
  3863. position:absolute;
  3864. left:779px;
  3865. top:170px;
  3866. width:140px;
  3867. height:39px;
  3868. display:flex;
  3869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3870. font-weight:400;
  3871. font-style:normal;
  3872. font-size:12px;
  3873. color:#606266;
  3874. }
  3875. #u13647 .text {
  3876. position:absolute;
  3877. align-self:center;
  3878. padding:2px 2px 2px 0px;
  3879. box-sizing:border-box;
  3880. width:100%;
  3881. }
  3882. #u13647_text {
  3883. border-width:0px;
  3884. word-wrap:break-word;
  3885. text-transform:none;
  3886. visibility:hidden;
  3887. }
  3888. #u13648_img {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:0px;
  3892. top:0px;
  3893. width:90px;
  3894. height:39px;
  3895. }
  3896. #u13648 {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:919px;
  3900. top:170px;
  3901. width:90px;
  3902. height:39px;
  3903. display:flex;
  3904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3905. font-weight:400;
  3906. font-style:normal;
  3907. font-size:12px;
  3908. color:#606266;
  3909. }
  3910. #u13648 .text {
  3911. position:absolute;
  3912. align-self:center;
  3913. padding:2px 2px 2px 0px;
  3914. box-sizing:border-box;
  3915. width:100%;
  3916. }
  3917. #u13648_text {
  3918. border-width:0px;
  3919. word-wrap:break-word;
  3920. text-transform:none;
  3921. visibility:hidden;
  3922. }
  3923. #u13649_img {
  3924. border-width:0px;
  3925. position:absolute;
  3926. left:0px;
  3927. top:0px;
  3928. width:90px;
  3929. height:39px;
  3930. }
  3931. #u13649 {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:1009px;
  3935. top:170px;
  3936. width:90px;
  3937. height:39px;
  3938. display:flex;
  3939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3940. font-weight:400;
  3941. font-style:normal;
  3942. font-size:12px;
  3943. color:#606266;
  3944. }
  3945. #u13649 .text {
  3946. position:absolute;
  3947. align-self:center;
  3948. padding:2px 2px 2px 0px;
  3949. box-sizing:border-box;
  3950. width:100%;
  3951. }
  3952. #u13649_text {
  3953. border-width:0px;
  3954. word-wrap:break-word;
  3955. text-transform:none;
  3956. visibility:hidden;
  3957. }
  3958. #u13650_img {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:0px;
  3963. width:128px;
  3964. height:39px;
  3965. }
  3966. #u13650 {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:1099px;
  3970. top:170px;
  3971. width:128px;
  3972. height:39px;
  3973. display:flex;
  3974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3975. font-weight:400;
  3976. font-style:normal;
  3977. font-size:12px;
  3978. line-height:35px;
  3979. }
  3980. #u13650 .text {
  3981. position:absolute;
  3982. align-self:center;
  3983. padding:2px 2px 2px 0px;
  3984. box-sizing:border-box;
  3985. width:100%;
  3986. }
  3987. #u13650_text {
  3988. border-width:0px;
  3989. word-wrap:break-word;
  3990. text-transform:none;
  3991. }
  3992. #u13651_img {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:0px;
  3996. top:0px;
  3997. width:84px;
  3998. height:39px;
  3999. }
  4000. #u13651 {
  4001. border-width:0px;
  4002. position:absolute;
  4003. left:0px;
  4004. top:209px;
  4005. width:84px;
  4006. height:39px;
  4007. display:flex;
  4008. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4009. font-weight:400;
  4010. font-style:normal;
  4011. font-size:12px;
  4012. color:#606266;
  4013. }
  4014. #u13651 .text {
  4015. position:absolute;
  4016. align-self:center;
  4017. padding:2px 2px 2px 0px;
  4018. box-sizing:border-box;
  4019. width:100%;
  4020. }
  4021. #u13651_text {
  4022. border-width:0px;
  4023. word-wrap:break-word;
  4024. text-transform:none;
  4025. visibility:hidden;
  4026. }
  4027. #u13652_img {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:0px;
  4031. top:0px;
  4032. width:84px;
  4033. height:39px;
  4034. }
  4035. #u13652 {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:84px;
  4039. top:209px;
  4040. width:84px;
  4041. height:39px;
  4042. display:flex;
  4043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4044. font-weight:400;
  4045. font-style:normal;
  4046. font-size:12px;
  4047. color:#333333;
  4048. }
  4049. #u13652 .text {
  4050. position:absolute;
  4051. align-self:center;
  4052. padding:2px 2px 2px 0px;
  4053. box-sizing:border-box;
  4054. width:100%;
  4055. }
  4056. #u13652_text {
  4057. border-width:0px;
  4058. word-wrap:break-word;
  4059. text-transform:none;
  4060. }
  4061. #u13653_img {
  4062. border-width:0px;
  4063. position:absolute;
  4064. left:0px;
  4065. top:0px;
  4066. width:92px;
  4067. height:39px;
  4068. }
  4069. #u13653 {
  4070. border-width:0px;
  4071. position:absolute;
  4072. left:168px;
  4073. top:209px;
  4074. width:92px;
  4075. height:39px;
  4076. display:flex;
  4077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4078. font-weight:400;
  4079. font-style:normal;
  4080. font-size:12px;
  4081. color:#333333;
  4082. }
  4083. #u13653 .text {
  4084. position:absolute;
  4085. align-self:center;
  4086. padding:2px 2px 2px 0px;
  4087. box-sizing:border-box;
  4088. width:100%;
  4089. }
  4090. #u13653_text {
  4091. border-width:0px;
  4092. word-wrap:break-word;
  4093. text-transform:none;
  4094. visibility:hidden;
  4095. }
  4096. #u13654_img {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:0px;
  4100. top:0px;
  4101. width:84px;
  4102. height:39px;
  4103. }
  4104. #u13654 {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:260px;
  4108. top:209px;
  4109. width:84px;
  4110. height:39px;
  4111. display:flex;
  4112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4113. font-weight:400;
  4114. font-style:normal;
  4115. font-size:12px;
  4116. color:#606266;
  4117. }
  4118. #u13654 .text {
  4119. position:absolute;
  4120. align-self:center;
  4121. padding:2px 2px 2px 0px;
  4122. box-sizing:border-box;
  4123. width:100%;
  4124. }
  4125. #u13654_text {
  4126. border-width:0px;
  4127. word-wrap:break-word;
  4128. text-transform:none;
  4129. visibility:hidden;
  4130. }
  4131. #u13655_img {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:0px;
  4135. top:0px;
  4136. width:93px;
  4137. height:39px;
  4138. }
  4139. #u13655 {
  4140. border-width:0px;
  4141. position:absolute;
  4142. left:344px;
  4143. top:209px;
  4144. width:93px;
  4145. height:39px;
  4146. display:flex;
  4147. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4148. font-weight:400;
  4149. font-style:normal;
  4150. font-size:12px;
  4151. color:#606266;
  4152. }
  4153. #u13655 .text {
  4154. position:absolute;
  4155. align-self:center;
  4156. padding:2px 2px 2px 0px;
  4157. box-sizing:border-box;
  4158. width:100%;
  4159. }
  4160. #u13655_text {
  4161. border-width:0px;
  4162. word-wrap:break-word;
  4163. text-transform:none;
  4164. visibility:hidden;
  4165. }
  4166. #u13656_img {
  4167. border-width:0px;
  4168. position:absolute;
  4169. left:0px;
  4170. top:0px;
  4171. width:84px;
  4172. height:39px;
  4173. }
  4174. #u13656 {
  4175. border-width:0px;
  4176. position:absolute;
  4177. left:437px;
  4178. top:209px;
  4179. width:84px;
  4180. height:39px;
  4181. display:flex;
  4182. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4183. font-weight:400;
  4184. font-style:normal;
  4185. font-size:12px;
  4186. color:#606266;
  4187. }
  4188. #u13656 .text {
  4189. position:absolute;
  4190. align-self:center;
  4191. padding:2px 2px 2px 0px;
  4192. box-sizing:border-box;
  4193. width:100%;
  4194. }
  4195. #u13656_text {
  4196. border-width:0px;
  4197. word-wrap:break-word;
  4198. text-transform:none;
  4199. visibility:hidden;
  4200. }
  4201. #u13657_img {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:0px;
  4205. top:0px;
  4206. width:76px;
  4207. height:39px;
  4208. }
  4209. #u13657 {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:521px;
  4213. top:209px;
  4214. width:76px;
  4215. height:39px;
  4216. display:flex;
  4217. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4218. font-weight:400;
  4219. font-style:normal;
  4220. font-size:12px;
  4221. color:#606266;
  4222. }
  4223. #u13657 .text {
  4224. position:absolute;
  4225. align-self:center;
  4226. padding:2px 2px 2px 0px;
  4227. box-sizing:border-box;
  4228. width:100%;
  4229. }
  4230. #u13657_text {
  4231. border-width:0px;
  4232. word-wrap:break-word;
  4233. text-transform:none;
  4234. visibility:hidden;
  4235. }
  4236. #u13658_img {
  4237. border-width:0px;
  4238. position:absolute;
  4239. left:0px;
  4240. top:0px;
  4241. width:102px;
  4242. height:39px;
  4243. }
  4244. #u13658 {
  4245. border-width:0px;
  4246. position:absolute;
  4247. left:597px;
  4248. top:209px;
  4249. width:102px;
  4250. height:39px;
  4251. display:flex;
  4252. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4253. font-weight:400;
  4254. font-style:normal;
  4255. font-size:12px;
  4256. color:#606266;
  4257. }
  4258. #u13658 .text {
  4259. position:absolute;
  4260. align-self:center;
  4261. padding:2px 2px 2px 0px;
  4262. box-sizing:border-box;
  4263. width:100%;
  4264. }
  4265. #u13658_text {
  4266. border-width:0px;
  4267. word-wrap:break-word;
  4268. text-transform:none;
  4269. visibility:hidden;
  4270. }
  4271. #u13659_img {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:0px;
  4275. top:0px;
  4276. width:80px;
  4277. height:39px;
  4278. }
  4279. #u13659 {
  4280. border-width:0px;
  4281. position:absolute;
  4282. left:699px;
  4283. top:209px;
  4284. width:80px;
  4285. height:39px;
  4286. display:flex;
  4287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4288. font-weight:400;
  4289. font-style:normal;
  4290. font-size:12px;
  4291. color:#298FFF;
  4292. }
  4293. #u13659 .text {
  4294. position:absolute;
  4295. align-self:center;
  4296. padding:2px 2px 2px 0px;
  4297. box-sizing:border-box;
  4298. width:100%;
  4299. }
  4300. #u13659_text {
  4301. border-width:0px;
  4302. word-wrap:break-word;
  4303. text-transform:none;
  4304. }
  4305. #u13660_img {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:140px;
  4311. height:39px;
  4312. }
  4313. #u13660 {
  4314. border-width:0px;
  4315. position:absolute;
  4316. left:779px;
  4317. top:209px;
  4318. width:140px;
  4319. height:39px;
  4320. display:flex;
  4321. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4322. font-weight:400;
  4323. font-style:normal;
  4324. font-size:12px;
  4325. color:#606266;
  4326. }
  4327. #u13660 .text {
  4328. position:absolute;
  4329. align-self:center;
  4330. padding:2px 2px 2px 0px;
  4331. box-sizing:border-box;
  4332. width:100%;
  4333. }
  4334. #u13660_text {
  4335. border-width:0px;
  4336. word-wrap:break-word;
  4337. text-transform:none;
  4338. visibility:hidden;
  4339. }
  4340. #u13661_img {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:0px;
  4344. top:0px;
  4345. width:90px;
  4346. height:39px;
  4347. }
  4348. #u13661 {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:919px;
  4352. top:209px;
  4353. width:90px;
  4354. height:39px;
  4355. display:flex;
  4356. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4357. font-weight:400;
  4358. font-style:normal;
  4359. font-size:12px;
  4360. color:#606266;
  4361. }
  4362. #u13661 .text {
  4363. position:absolute;
  4364. align-self:center;
  4365. padding:2px 2px 2px 0px;
  4366. box-sizing:border-box;
  4367. width:100%;
  4368. }
  4369. #u13661_text {
  4370. border-width:0px;
  4371. word-wrap:break-word;
  4372. text-transform:none;
  4373. visibility:hidden;
  4374. }
  4375. #u13662_img {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:0px;
  4379. top:0px;
  4380. width:90px;
  4381. height:39px;
  4382. }
  4383. #u13662 {
  4384. border-width:0px;
  4385. position:absolute;
  4386. left:1009px;
  4387. top:209px;
  4388. width:90px;
  4389. height:39px;
  4390. display:flex;
  4391. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4392. font-weight:400;
  4393. font-style:normal;
  4394. font-size:12px;
  4395. color:#606266;
  4396. }
  4397. #u13662 .text {
  4398. position:absolute;
  4399. align-self:center;
  4400. padding:2px 2px 2px 0px;
  4401. box-sizing:border-box;
  4402. width:100%;
  4403. }
  4404. #u13662_text {
  4405. border-width:0px;
  4406. word-wrap:break-word;
  4407. text-transform:none;
  4408. visibility:hidden;
  4409. }
  4410. #u13663_img {
  4411. border-width:0px;
  4412. position:absolute;
  4413. left:0px;
  4414. top:0px;
  4415. width:128px;
  4416. height:39px;
  4417. }
  4418. #u13663 {
  4419. border-width:0px;
  4420. position:absolute;
  4421. left:1099px;
  4422. top:209px;
  4423. width:128px;
  4424. height:39px;
  4425. display:flex;
  4426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4427. font-weight:400;
  4428. font-style:normal;
  4429. font-size:12px;
  4430. line-height:35px;
  4431. }
  4432. #u13663 .text {
  4433. position:absolute;
  4434. align-self:center;
  4435. padding:2px 2px 2px 0px;
  4436. box-sizing:border-box;
  4437. width:100%;
  4438. }
  4439. #u13663_text {
  4440. border-width:0px;
  4441. word-wrap:break-word;
  4442. text-transform:none;
  4443. }
  4444. #u13664_img {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:0px;
  4448. top:0px;
  4449. width:84px;
  4450. height:39px;
  4451. }
  4452. #u13664 {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:0px;
  4456. top:248px;
  4457. width:84px;
  4458. height:39px;
  4459. display:flex;
  4460. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4461. font-weight:400;
  4462. font-style:normal;
  4463. font-size:12px;
  4464. color:#606266;
  4465. }
  4466. #u13664 .text {
  4467. position:absolute;
  4468. align-self:center;
  4469. padding:2px 2px 2px 0px;
  4470. box-sizing:border-box;
  4471. width:100%;
  4472. }
  4473. #u13664_text {
  4474. border-width:0px;
  4475. word-wrap:break-word;
  4476. text-transform:none;
  4477. visibility:hidden;
  4478. }
  4479. #u13665_img {
  4480. border-width:0px;
  4481. position:absolute;
  4482. left:0px;
  4483. top:0px;
  4484. width:84px;
  4485. height:39px;
  4486. }
  4487. #u13665 {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:84px;
  4491. top:248px;
  4492. width:84px;
  4493. height:39px;
  4494. display:flex;
  4495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4496. font-weight:400;
  4497. font-style:normal;
  4498. font-size:12px;
  4499. color:#333333;
  4500. }
  4501. #u13665 .text {
  4502. position:absolute;
  4503. align-self:center;
  4504. padding:2px 2px 2px 0px;
  4505. box-sizing:border-box;
  4506. width:100%;
  4507. }
  4508. #u13665_text {
  4509. border-width:0px;
  4510. word-wrap:break-word;
  4511. text-transform:none;
  4512. }
  4513. #u13666_img {
  4514. border-width:0px;
  4515. position:absolute;
  4516. left:0px;
  4517. top:0px;
  4518. width:92px;
  4519. height:39px;
  4520. }
  4521. #u13666 {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:168px;
  4525. top:248px;
  4526. width:92px;
  4527. height:39px;
  4528. display:flex;
  4529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4530. font-weight:400;
  4531. font-style:normal;
  4532. font-size:12px;
  4533. color:#333333;
  4534. }
  4535. #u13666 .text {
  4536. position:absolute;
  4537. align-self:center;
  4538. padding:2px 2px 2px 0px;
  4539. box-sizing:border-box;
  4540. width:100%;
  4541. }
  4542. #u13666_text {
  4543. border-width:0px;
  4544. word-wrap:break-word;
  4545. text-transform:none;
  4546. visibility:hidden;
  4547. }
  4548. #u13667_img {
  4549. border-width:0px;
  4550. position:absolute;
  4551. left:0px;
  4552. top:0px;
  4553. width:84px;
  4554. height:39px;
  4555. }
  4556. #u13667 {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:260px;
  4560. top:248px;
  4561. width:84px;
  4562. height:39px;
  4563. display:flex;
  4564. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4565. font-weight:400;
  4566. font-style:normal;
  4567. font-size:12px;
  4568. color:#606266;
  4569. }
  4570. #u13667 .text {
  4571. position:absolute;
  4572. align-self:center;
  4573. padding:2px 2px 2px 0px;
  4574. box-sizing:border-box;
  4575. width:100%;
  4576. }
  4577. #u13667_text {
  4578. border-width:0px;
  4579. word-wrap:break-word;
  4580. text-transform:none;
  4581. visibility:hidden;
  4582. }
  4583. #u13668_img {
  4584. border-width:0px;
  4585. position:absolute;
  4586. left:0px;
  4587. top:0px;
  4588. width:93px;
  4589. height:39px;
  4590. }
  4591. #u13668 {
  4592. border-width:0px;
  4593. position:absolute;
  4594. left:344px;
  4595. top:248px;
  4596. width:93px;
  4597. height:39px;
  4598. display:flex;
  4599. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4600. font-weight:400;
  4601. font-style:normal;
  4602. font-size:12px;
  4603. color:#606266;
  4604. }
  4605. #u13668 .text {
  4606. position:absolute;
  4607. align-self:center;
  4608. padding:2px 2px 2px 0px;
  4609. box-sizing:border-box;
  4610. width:100%;
  4611. }
  4612. #u13668_text {
  4613. border-width:0px;
  4614. word-wrap:break-word;
  4615. text-transform:none;
  4616. visibility:hidden;
  4617. }
  4618. #u13669_img {
  4619. border-width:0px;
  4620. position:absolute;
  4621. left:0px;
  4622. top:0px;
  4623. width:84px;
  4624. height:39px;
  4625. }
  4626. #u13669 {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:437px;
  4630. top:248px;
  4631. width:84px;
  4632. height:39px;
  4633. display:flex;
  4634. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4635. font-weight:400;
  4636. font-style:normal;
  4637. font-size:12px;
  4638. color:#606266;
  4639. }
  4640. #u13669 .text {
  4641. position:absolute;
  4642. align-self:center;
  4643. padding:2px 2px 2px 0px;
  4644. box-sizing:border-box;
  4645. width:100%;
  4646. }
  4647. #u13669_text {
  4648. border-width:0px;
  4649. word-wrap:break-word;
  4650. text-transform:none;
  4651. visibility:hidden;
  4652. }
  4653. #u13670_img {
  4654. border-width:0px;
  4655. position:absolute;
  4656. left:0px;
  4657. top:0px;
  4658. width:76px;
  4659. height:39px;
  4660. }
  4661. #u13670 {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:521px;
  4665. top:248px;
  4666. width:76px;
  4667. height:39px;
  4668. display:flex;
  4669. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4670. font-weight:400;
  4671. font-style:normal;
  4672. font-size:12px;
  4673. color:#606266;
  4674. }
  4675. #u13670 .text {
  4676. position:absolute;
  4677. align-self:center;
  4678. padding:2px 2px 2px 0px;
  4679. box-sizing:border-box;
  4680. width:100%;
  4681. }
  4682. #u13670_text {
  4683. border-width:0px;
  4684. word-wrap:break-word;
  4685. text-transform:none;
  4686. visibility:hidden;
  4687. }
  4688. #u13671_img {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:0px;
  4692. top:0px;
  4693. width:102px;
  4694. height:39px;
  4695. }
  4696. #u13671 {
  4697. border-width:0px;
  4698. position:absolute;
  4699. left:597px;
  4700. top:248px;
  4701. width:102px;
  4702. height:39px;
  4703. display:flex;
  4704. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4705. font-weight:400;
  4706. font-style:normal;
  4707. font-size:12px;
  4708. color:#606266;
  4709. }
  4710. #u13671 .text {
  4711. position:absolute;
  4712. align-self:center;
  4713. padding:2px 2px 2px 0px;
  4714. box-sizing:border-box;
  4715. width:100%;
  4716. }
  4717. #u13671_text {
  4718. border-width:0px;
  4719. word-wrap:break-word;
  4720. text-transform:none;
  4721. visibility:hidden;
  4722. }
  4723. #u13672_img {
  4724. border-width:0px;
  4725. position:absolute;
  4726. left:0px;
  4727. top:0px;
  4728. width:80px;
  4729. height:39px;
  4730. }
  4731. #u13672 {
  4732. border-width:0px;
  4733. position:absolute;
  4734. left:699px;
  4735. top:248px;
  4736. width:80px;
  4737. height:39px;
  4738. display:flex;
  4739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4740. font-weight:400;
  4741. font-style:normal;
  4742. font-size:12px;
  4743. color:#333333;
  4744. }
  4745. #u13672 .text {
  4746. position:absolute;
  4747. align-self:center;
  4748. padding:2px 2px 2px 0px;
  4749. box-sizing:border-box;
  4750. width:100%;
  4751. }
  4752. #u13672_text {
  4753. border-width:0px;
  4754. word-wrap:break-word;
  4755. text-transform:none;
  4756. }
  4757. #u13673_img {
  4758. border-width:0px;
  4759. position:absolute;
  4760. left:0px;
  4761. top:0px;
  4762. width:140px;
  4763. height:39px;
  4764. }
  4765. #u13673 {
  4766. border-width:0px;
  4767. position:absolute;
  4768. left:779px;
  4769. top:248px;
  4770. width:140px;
  4771. height:39px;
  4772. display:flex;
  4773. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4774. font-weight:400;
  4775. font-style:normal;
  4776. font-size:12px;
  4777. color:#606266;
  4778. }
  4779. #u13673 .text {
  4780. position:absolute;
  4781. align-self:center;
  4782. padding:2px 2px 2px 0px;
  4783. box-sizing:border-box;
  4784. width:100%;
  4785. }
  4786. #u13673_text {
  4787. border-width:0px;
  4788. word-wrap:break-word;
  4789. text-transform:none;
  4790. visibility:hidden;
  4791. }
  4792. #u13674_img {
  4793. border-width:0px;
  4794. position:absolute;
  4795. left:0px;
  4796. top:0px;
  4797. width:90px;
  4798. height:39px;
  4799. }
  4800. #u13674 {
  4801. border-width:0px;
  4802. position:absolute;
  4803. left:919px;
  4804. top:248px;
  4805. width:90px;
  4806. height:39px;
  4807. display:flex;
  4808. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4809. font-weight:400;
  4810. font-style:normal;
  4811. font-size:12px;
  4812. color:#606266;
  4813. }
  4814. #u13674 .text {
  4815. position:absolute;
  4816. align-self:center;
  4817. padding:2px 2px 2px 0px;
  4818. box-sizing:border-box;
  4819. width:100%;
  4820. }
  4821. #u13674_text {
  4822. border-width:0px;
  4823. word-wrap:break-word;
  4824. text-transform:none;
  4825. visibility:hidden;
  4826. }
  4827. #u13675_img {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:0px;
  4831. top:0px;
  4832. width:90px;
  4833. height:39px;
  4834. }
  4835. #u13675 {
  4836. border-width:0px;
  4837. position:absolute;
  4838. left:1009px;
  4839. top:248px;
  4840. width:90px;
  4841. height:39px;
  4842. display:flex;
  4843. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4844. font-weight:400;
  4845. font-style:normal;
  4846. font-size:12px;
  4847. color:#606266;
  4848. }
  4849. #u13675 .text {
  4850. position:absolute;
  4851. align-self:center;
  4852. padding:2px 2px 2px 0px;
  4853. box-sizing:border-box;
  4854. width:100%;
  4855. }
  4856. #u13675_text {
  4857. border-width:0px;
  4858. word-wrap:break-word;
  4859. text-transform:none;
  4860. visibility:hidden;
  4861. }
  4862. #u13676_img {
  4863. border-width:0px;
  4864. position:absolute;
  4865. left:0px;
  4866. top:0px;
  4867. width:128px;
  4868. height:39px;
  4869. }
  4870. #u13676 {
  4871. border-width:0px;
  4872. position:absolute;
  4873. left:1099px;
  4874. top:248px;
  4875. width:128px;
  4876. height:39px;
  4877. display:flex;
  4878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4879. font-weight:400;
  4880. font-style:normal;
  4881. font-size:12px;
  4882. line-height:35px;
  4883. }
  4884. #u13676 .text {
  4885. position:absolute;
  4886. align-self:center;
  4887. padding:2px 2px 2px 0px;
  4888. box-sizing:border-box;
  4889. width:100%;
  4890. }
  4891. #u13676_text {
  4892. border-width:0px;
  4893. word-wrap:break-word;
  4894. text-transform:none;
  4895. }
  4896. #u13677_img {
  4897. border-width:0px;
  4898. position:absolute;
  4899. left:0px;
  4900. top:0px;
  4901. width:84px;
  4902. height:39px;
  4903. }
  4904. #u13677 {
  4905. border-width:0px;
  4906. position:absolute;
  4907. left:0px;
  4908. top:287px;
  4909. width:84px;
  4910. height:39px;
  4911. display:flex;
  4912. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4913. font-weight:400;
  4914. font-style:normal;
  4915. font-size:12px;
  4916. color:#606266;
  4917. }
  4918. #u13677 .text {
  4919. position:absolute;
  4920. align-self:center;
  4921. padding:2px 2px 2px 0px;
  4922. box-sizing:border-box;
  4923. width:100%;
  4924. }
  4925. #u13677_text {
  4926. border-width:0px;
  4927. word-wrap:break-word;
  4928. text-transform:none;
  4929. visibility:hidden;
  4930. }
  4931. #u13678_img {
  4932. border-width:0px;
  4933. position:absolute;
  4934. left:0px;
  4935. top:0px;
  4936. width:84px;
  4937. height:39px;
  4938. }
  4939. #u13678 {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:84px;
  4943. top:287px;
  4944. width:84px;
  4945. height:39px;
  4946. display:flex;
  4947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4948. font-weight:400;
  4949. font-style:normal;
  4950. font-size:12px;
  4951. }
  4952. #u13678 .text {
  4953. position:absolute;
  4954. align-self:center;
  4955. padding:2px 2px 2px 0px;
  4956. box-sizing:border-box;
  4957. width:100%;
  4958. }
  4959. #u13678_text {
  4960. border-width:0px;
  4961. word-wrap:break-word;
  4962. text-transform:none;
  4963. }
  4964. #u13679_img {
  4965. border-width:0px;
  4966. position:absolute;
  4967. left:0px;
  4968. top:0px;
  4969. width:92px;
  4970. height:39px;
  4971. }
  4972. #u13679 {
  4973. border-width:0px;
  4974. position:absolute;
  4975. left:168px;
  4976. top:287px;
  4977. width:92px;
  4978. height:39px;
  4979. display:flex;
  4980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4981. font-weight:400;
  4982. font-style:normal;
  4983. font-size:12px;
  4984. }
  4985. #u13679 .text {
  4986. position:absolute;
  4987. align-self:center;
  4988. padding:2px 2px 2px 0px;
  4989. box-sizing:border-box;
  4990. width:100%;
  4991. }
  4992. #u13679_text {
  4993. border-width:0px;
  4994. word-wrap:break-word;
  4995. text-transform:none;
  4996. visibility:hidden;
  4997. }
  4998. #u13680_img {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:0px;
  5002. top:0px;
  5003. width:84px;
  5004. height:39px;
  5005. }
  5006. #u13680 {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:260px;
  5010. top:287px;
  5011. width:84px;
  5012. height:39px;
  5013. display:flex;
  5014. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5015. font-weight:400;
  5016. font-style:normal;
  5017. font-size:12px;
  5018. color:#606266;
  5019. }
  5020. #u13680 .text {
  5021. position:absolute;
  5022. align-self:center;
  5023. padding:2px 2px 2px 0px;
  5024. box-sizing:border-box;
  5025. width:100%;
  5026. }
  5027. #u13680_text {
  5028. border-width:0px;
  5029. word-wrap:break-word;
  5030. text-transform:none;
  5031. visibility:hidden;
  5032. }
  5033. #u13681_img {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:0px;
  5037. top:0px;
  5038. width:93px;
  5039. height:39px;
  5040. }
  5041. #u13681 {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:344px;
  5045. top:287px;
  5046. width:93px;
  5047. height:39px;
  5048. display:flex;
  5049. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5050. font-weight:400;
  5051. font-style:normal;
  5052. font-size:12px;
  5053. color:#606266;
  5054. }
  5055. #u13681 .text {
  5056. position:absolute;
  5057. align-self:center;
  5058. padding:2px 2px 2px 0px;
  5059. box-sizing:border-box;
  5060. width:100%;
  5061. }
  5062. #u13681_text {
  5063. border-width:0px;
  5064. word-wrap:break-word;
  5065. text-transform:none;
  5066. visibility:hidden;
  5067. }
  5068. #u13682_img {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:0px;
  5072. top:0px;
  5073. width:84px;
  5074. height:39px;
  5075. }
  5076. #u13682 {
  5077. border-width:0px;
  5078. position:absolute;
  5079. left:437px;
  5080. top:287px;
  5081. width:84px;
  5082. height:39px;
  5083. display:flex;
  5084. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5085. font-weight:400;
  5086. font-style:normal;
  5087. font-size:12px;
  5088. color:#606266;
  5089. }
  5090. #u13682 .text {
  5091. position:absolute;
  5092. align-self:center;
  5093. padding:2px 2px 2px 0px;
  5094. box-sizing:border-box;
  5095. width:100%;
  5096. }
  5097. #u13682_text {
  5098. border-width:0px;
  5099. word-wrap:break-word;
  5100. text-transform:none;
  5101. visibility:hidden;
  5102. }
  5103. #u13683_img {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:0px;
  5107. top:0px;
  5108. width:76px;
  5109. height:39px;
  5110. }
  5111. #u13683 {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:521px;
  5115. top:287px;
  5116. width:76px;
  5117. height:39px;
  5118. display:flex;
  5119. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5120. font-weight:400;
  5121. font-style:normal;
  5122. font-size:12px;
  5123. color:#606266;
  5124. }
  5125. #u13683 .text {
  5126. position:absolute;
  5127. align-self:center;
  5128. padding:2px 2px 2px 0px;
  5129. box-sizing:border-box;
  5130. width:100%;
  5131. }
  5132. #u13683_text {
  5133. border-width:0px;
  5134. word-wrap:break-word;
  5135. text-transform:none;
  5136. visibility:hidden;
  5137. }
  5138. #u13684_img {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:0px;
  5142. top:0px;
  5143. width:102px;
  5144. height:39px;
  5145. }
  5146. #u13684 {
  5147. border-width:0px;
  5148. position:absolute;
  5149. left:597px;
  5150. top:287px;
  5151. width:102px;
  5152. height:39px;
  5153. display:flex;
  5154. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5155. font-weight:400;
  5156. font-style:normal;
  5157. font-size:12px;
  5158. color:#606266;
  5159. }
  5160. #u13684 .text {
  5161. position:absolute;
  5162. align-self:center;
  5163. padding:2px 2px 2px 0px;
  5164. box-sizing:border-box;
  5165. width:100%;
  5166. }
  5167. #u13684_text {
  5168. border-width:0px;
  5169. word-wrap:break-word;
  5170. text-transform:none;
  5171. visibility:hidden;
  5172. }
  5173. #u13685_img {
  5174. border-width:0px;
  5175. position:absolute;
  5176. left:0px;
  5177. top:0px;
  5178. width:80px;
  5179. height:39px;
  5180. }
  5181. #u13685 {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:699px;
  5185. top:287px;
  5186. width:80px;
  5187. height:39px;
  5188. display:flex;
  5189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5190. font-weight:400;
  5191. font-style:normal;
  5192. font-size:12px;
  5193. color:#298FFF;
  5194. }
  5195. #u13685 .text {
  5196. position:absolute;
  5197. align-self:center;
  5198. padding:2px 2px 2px 0px;
  5199. box-sizing:border-box;
  5200. width:100%;
  5201. }
  5202. #u13685_text {
  5203. border-width:0px;
  5204. word-wrap:break-word;
  5205. text-transform:none;
  5206. }
  5207. #u13686_img {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:0px;
  5211. top:0px;
  5212. width:140px;
  5213. height:39px;
  5214. }
  5215. #u13686 {
  5216. border-width:0px;
  5217. position:absolute;
  5218. left:779px;
  5219. top:287px;
  5220. width:140px;
  5221. height:39px;
  5222. display:flex;
  5223. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5224. font-weight:400;
  5225. font-style:normal;
  5226. font-size:12px;
  5227. color:#606266;
  5228. }
  5229. #u13686 .text {
  5230. position:absolute;
  5231. align-self:center;
  5232. padding:2px 2px 2px 0px;
  5233. box-sizing:border-box;
  5234. width:100%;
  5235. }
  5236. #u13686_text {
  5237. border-width:0px;
  5238. word-wrap:break-word;
  5239. text-transform:none;
  5240. visibility:hidden;
  5241. }
  5242. #u13687_img {
  5243. border-width:0px;
  5244. position:absolute;
  5245. left:0px;
  5246. top:0px;
  5247. width:90px;
  5248. height:39px;
  5249. }
  5250. #u13687 {
  5251. border-width:0px;
  5252. position:absolute;
  5253. left:919px;
  5254. top:287px;
  5255. width:90px;
  5256. height:39px;
  5257. display:flex;
  5258. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5259. font-weight:400;
  5260. font-style:normal;
  5261. font-size:12px;
  5262. color:#606266;
  5263. }
  5264. #u13687 .text {
  5265. position:absolute;
  5266. align-self:center;
  5267. padding:2px 2px 2px 0px;
  5268. box-sizing:border-box;
  5269. width:100%;
  5270. }
  5271. #u13687_text {
  5272. border-width:0px;
  5273. word-wrap:break-word;
  5274. text-transform:none;
  5275. visibility:hidden;
  5276. }
  5277. #u13688_img {
  5278. border-width:0px;
  5279. position:absolute;
  5280. left:0px;
  5281. top:0px;
  5282. width:90px;
  5283. height:39px;
  5284. }
  5285. #u13688 {
  5286. border-width:0px;
  5287. position:absolute;
  5288. left:1009px;
  5289. top:287px;
  5290. width:90px;
  5291. height:39px;
  5292. display:flex;
  5293. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5294. font-weight:400;
  5295. font-style:normal;
  5296. font-size:12px;
  5297. color:#606266;
  5298. }
  5299. #u13688 .text {
  5300. position:absolute;
  5301. align-self:center;
  5302. padding:2px 2px 2px 0px;
  5303. box-sizing:border-box;
  5304. width:100%;
  5305. }
  5306. #u13688_text {
  5307. border-width:0px;
  5308. word-wrap:break-word;
  5309. text-transform:none;
  5310. visibility:hidden;
  5311. }
  5312. #u13689_img {
  5313. border-width:0px;
  5314. position:absolute;
  5315. left:0px;
  5316. top:0px;
  5317. width:128px;
  5318. height:39px;
  5319. }
  5320. #u13689 {
  5321. border-width:0px;
  5322. position:absolute;
  5323. left:1099px;
  5324. top:287px;
  5325. width:128px;
  5326. height:39px;
  5327. display:flex;
  5328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5329. font-weight:400;
  5330. font-style:normal;
  5331. font-size:12px;
  5332. color:#298FFF;
  5333. line-height:35px;
  5334. }
  5335. #u13689 .text {
  5336. position:absolute;
  5337. align-self:center;
  5338. padding:2px 2px 2px 0px;
  5339. box-sizing:border-box;
  5340. width:100%;
  5341. }
  5342. #u13689_text {
  5343. border-width:0px;
  5344. word-wrap:break-word;
  5345. text-transform:none;
  5346. }
  5347. #u13690_div {
  5348. border-width:0px;
  5349. position:absolute;
  5350. left:0px;
  5351. top:0px;
  5352. width:60px;
  5353. height:30px;
  5354. background:inherit;
  5355. background-color:rgba(255, 255, 255, 1);
  5356. box-sizing:border-box;
  5357. border-width:1px;
  5358. border-style:solid;
  5359. border-color:rgba(170, 170, 170, 1);
  5360. border-radius:4px;
  5361. -moz-box-shadow:none;
  5362. -webkit-box-shadow:none;
  5363. box-shadow:none;
  5364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5365. font-weight:400;
  5366. font-style:normal;
  5367. font-size:14px;
  5368. }
  5369. #u13690 {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:490px;
  5373. top:225px;
  5374. width:60px;
  5375. height:30px;
  5376. display:flex;
  5377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5378. font-weight:400;
  5379. font-style:normal;
  5380. font-size:14px;
  5381. }
  5382. #u13690 .text {
  5383. position:absolute;
  5384. align-self:center;
  5385. padding:2px 2px 2px 2px;
  5386. box-sizing:border-box;
  5387. width:100%;
  5388. }
  5389. #u13690_text {
  5390. border-width:0px;
  5391. word-wrap:break-word;
  5392. text-transform:none;
  5393. }
  5394. #u13691_div {
  5395. border-width:0px;
  5396. position:absolute;
  5397. left:0px;
  5398. top:0px;
  5399. width:60px;
  5400. height:30px;
  5401. background:inherit;
  5402. background-color:rgba(255, 255, 255, 1);
  5403. box-sizing:border-box;
  5404. border-width:1px;
  5405. border-style:solid;
  5406. border-color:rgba(170, 170, 170, 1);
  5407. border-radius:4px;
  5408. -moz-box-shadow:none;
  5409. -webkit-box-shadow:none;
  5410. box-shadow:none;
  5411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5412. font-weight:400;
  5413. font-style:normal;
  5414. font-size:14px;
  5415. }
  5416. #u13691 {
  5417. border-width:0px;
  5418. position:absolute;
  5419. left:420px;
  5420. top:225px;
  5421. width:60px;
  5422. height:30px;
  5423. display:flex;
  5424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5425. font-weight:400;
  5426. font-style:normal;
  5427. font-size:14px;
  5428. }
  5429. #u13691 .text {
  5430. position:absolute;
  5431. align-self:center;
  5432. padding:2px 2px 2px 2px;
  5433. box-sizing:border-box;
  5434. width:100%;
  5435. }
  5436. #u13691_text {
  5437. border-width:0px;
  5438. word-wrap:break-word;
  5439. text-transform:none;
  5440. }
  5441. #u13692 {
  5442. border-width:0px;
  5443. position:absolute;
  5444. left:0px;
  5445. top:0px;
  5446. width:0px;
  5447. height:0px;
  5448. }
  5449. #u13693_div {
  5450. border-width:0px;
  5451. position:absolute;
  5452. left:0px;
  5453. top:0px;
  5454. width:60px;
  5455. height:30px;
  5456. background:inherit;
  5457. background-color:rgba(24, 144, 255, 1);
  5458. border:none;
  5459. border-radius:4px;
  5460. -moz-box-shadow:none;
  5461. -webkit-box-shadow:none;
  5462. box-shadow:none;
  5463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5464. font-weight:400;
  5465. font-style:normal;
  5466. font-size:14px;
  5467. color:#FFFFFF;
  5468. }
  5469. #u13693 {
  5470. border-width:0px;
  5471. position:absolute;
  5472. left:800px;
  5473. top:176px;
  5474. width:60px;
  5475. height:30px;
  5476. display:flex;
  5477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5478. font-weight:400;
  5479. font-style:normal;
  5480. font-size:14px;
  5481. color:#FFFFFF;
  5482. }
  5483. #u13693 .text {
  5484. position:absolute;
  5485. align-self:center;
  5486. padding:2px 2px 2px 2px;
  5487. box-sizing:border-box;
  5488. width:100%;
  5489. }
  5490. #u13693_text {
  5491. border-width:0px;
  5492. word-wrap:break-word;
  5493. text-transform:none;
  5494. }
  5495. #u13694_div {
  5496. border-width:0px;
  5497. position:absolute;
  5498. left:0px;
  5499. top:0px;
  5500. width:60px;
  5501. height:30px;
  5502. background:inherit;
  5503. background-color:rgba(255, 255, 255, 1);
  5504. box-sizing:border-box;
  5505. border-width:1px;
  5506. border-style:solid;
  5507. border-color:rgba(170, 170, 170, 1);
  5508. border-radius:4px;
  5509. -moz-box-shadow:none;
  5510. -webkit-box-shadow:none;
  5511. box-shadow:none;
  5512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5513. font-weight:400;
  5514. font-style:normal;
  5515. font-size:14px;
  5516. }
  5517. #u13694 {
  5518. border-width:0px;
  5519. position:absolute;
  5520. left:870px;
  5521. top:176px;
  5522. width:60px;
  5523. height:30px;
  5524. display:flex;
  5525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5526. font-weight:400;
  5527. font-style:normal;
  5528. font-size:14px;
  5529. }
  5530. #u13694 .text {
  5531. position:absolute;
  5532. align-self:center;
  5533. padding:2px 2px 2px 2px;
  5534. box-sizing:border-box;
  5535. width:100%;
  5536. }
  5537. #u13694_text {
  5538. border-width:0px;
  5539. word-wrap:break-word;
  5540. text-transform:none;
  5541. }
  5542. #u13695 {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:0px;
  5546. top:0px;
  5547. width:0px;
  5548. height:0px;
  5549. }
  5550. #u13696_div {
  5551. border-width:0px;
  5552. position:absolute;
  5553. left:0px;
  5554. top:0px;
  5555. width:140px;
  5556. height:30px;
  5557. background:inherit;
  5558. background-color:rgba(255, 255, 255, 1);
  5559. box-sizing:border-box;
  5560. border-width:1px;
  5561. border-style:solid;
  5562. border-color:rgba(215, 215, 215, 1);
  5563. border-radius:4px;
  5564. -moz-box-shadow:none;
  5565. -webkit-box-shadow:none;
  5566. box-shadow:none;
  5567. font-size:12px;
  5568. }
  5569. #u13696 {
  5570. border-width:0px;
  5571. position:absolute;
  5572. left:350px;
  5573. top:136px;
  5574. width:140px;
  5575. height:30px;
  5576. display:flex;
  5577. font-size:12px;
  5578. }
  5579. #u13696 .text {
  5580. position:absolute;
  5581. align-self:center;
  5582. padding:2px 2px 2px 2px;
  5583. box-sizing:border-box;
  5584. width:100%;
  5585. }
  5586. #u13696_text {
  5587. border-width:0px;
  5588. word-wrap:break-word;
  5589. text-transform:none;
  5590. visibility:hidden;
  5591. }
  5592. #u13697_input {
  5593. position:absolute;
  5594. left:0px;
  5595. top:0px;
  5596. width:134px;
  5597. height:23px;
  5598. padding:2px 2px 2px 2px;
  5599. font-family:'ArialMT', 'Arial', sans-serif;
  5600. font-weight:400;
  5601. font-style:normal;
  5602. font-size:12px;
  5603. letter-spacing:normal;
  5604. color:#AAAAAA;
  5605. vertical-align:none;
  5606. text-align:left;
  5607. text-transform:none;
  5608. background-color:transparent;
  5609. border-color:transparent;
  5610. }
  5611. #u13697_input.disabled {
  5612. position:absolute;
  5613. left:0px;
  5614. top:0px;
  5615. width:134px;
  5616. height:23px;
  5617. padding:2px 2px 2px 2px;
  5618. font-family:'ArialMT', 'Arial', sans-serif;
  5619. font-weight:400;
  5620. font-style:normal;
  5621. font-size:12px;
  5622. letter-spacing:normal;
  5623. color:#AAAAAA;
  5624. vertical-align:none;
  5625. text-align:left;
  5626. text-transform:none;
  5627. background-color:transparent;
  5628. border-color:transparent;
  5629. }
  5630. #u13697_div {
  5631. border-width:0px;
  5632. position:absolute;
  5633. left:0px;
  5634. top:0px;
  5635. width:134px;
  5636. height:23px;
  5637. background:inherit;
  5638. background-color:rgba(255, 255, 255, 1);
  5639. border:none;
  5640. border-radius:0px;
  5641. -moz-box-shadow:none;
  5642. -webkit-box-shadow:none;
  5643. box-shadow:none;
  5644. font-size:12px;
  5645. color:#AAAAAA;
  5646. }
  5647. #u13697 {
  5648. border-width:0px;
  5649. position:absolute;
  5650. left:354px;
  5651. top:138px;
  5652. width:134px;
  5653. height:23px;
  5654. display:flex;
  5655. font-size:12px;
  5656. color:#AAAAAA;
  5657. }
  5658. #u13697 .text {
  5659. position:absolute;
  5660. align-self:flex-start;
  5661. padding:2px 2px 2px 2px;
  5662. box-sizing:border-box;
  5663. width:100%;
  5664. }
  5665. #u13697_div.disabled {
  5666. border-width:0px;
  5667. position:absolute;
  5668. left:0px;
  5669. top:0px;
  5670. width:134px;
  5671. height:23px;
  5672. background:inherit;
  5673. background-color:rgba(240, 240, 240, 1);
  5674. border:none;
  5675. border-radius:0px;
  5676. -moz-box-shadow:none;
  5677. -webkit-box-shadow:none;
  5678. box-shadow:none;
  5679. font-size:12px;
  5680. color:#AAAAAA;
  5681. }
  5682. #u13697.disabled {
  5683. }
  5684. .u13697_input_option {
  5685. font-size:12px;
  5686. }
  5687. #u13698 {
  5688. border-width:0px;
  5689. position:absolute;
  5690. left:0px;
  5691. top:0px;
  5692. width:0px;
  5693. height:0px;
  5694. }
  5695. #u13699_div {
  5696. border-width:0px;
  5697. position:absolute;
  5698. left:0px;
  5699. top:0px;
  5700. width:140px;
  5701. height:30px;
  5702. background:inherit;
  5703. background-color:rgba(255, 255, 255, 1);
  5704. box-sizing:border-box;
  5705. border-width:1px;
  5706. border-style:solid;
  5707. border-color:rgba(215, 215, 215, 1);
  5708. border-radius:4px;
  5709. -moz-box-shadow:none;
  5710. -webkit-box-shadow:none;
  5711. box-shadow:none;
  5712. font-size:12px;
  5713. }
  5714. #u13699 {
  5715. border-width:0px;
  5716. position:absolute;
  5717. left:500px;
  5718. top:136px;
  5719. width:140px;
  5720. height:30px;
  5721. display:flex;
  5722. font-size:12px;
  5723. }
  5724. #u13699 .text {
  5725. position:absolute;
  5726. align-self:center;
  5727. padding:2px 2px 2px 2px;
  5728. box-sizing:border-box;
  5729. width:100%;
  5730. }
  5731. #u13699_text {
  5732. border-width:0px;
  5733. word-wrap:break-word;
  5734. text-transform:none;
  5735. visibility:hidden;
  5736. }
  5737. #u13700_input {
  5738. position:absolute;
  5739. left:0px;
  5740. top:0px;
  5741. width:134px;
  5742. height:23px;
  5743. padding:2px 2px 2px 2px;
  5744. font-family:'ArialMT', 'Arial', sans-serif;
  5745. font-weight:400;
  5746. font-style:normal;
  5747. font-size:12px;
  5748. letter-spacing:normal;
  5749. color:#AAAAAA;
  5750. vertical-align:none;
  5751. text-align:left;
  5752. text-transform:none;
  5753. background-color:transparent;
  5754. border-color:transparent;
  5755. }
  5756. #u13700_input.disabled {
  5757. position:absolute;
  5758. left:0px;
  5759. top:0px;
  5760. width:134px;
  5761. height:23px;
  5762. padding:2px 2px 2px 2px;
  5763. font-family:'ArialMT', 'Arial', sans-serif;
  5764. font-weight:400;
  5765. font-style:normal;
  5766. font-size:12px;
  5767. letter-spacing:normal;
  5768. color:#AAAAAA;
  5769. vertical-align:none;
  5770. text-align:left;
  5771. text-transform:none;
  5772. background-color:transparent;
  5773. border-color:transparent;
  5774. }
  5775. #u13700_div {
  5776. border-width:0px;
  5777. position:absolute;
  5778. left:0px;
  5779. top:0px;
  5780. width:134px;
  5781. height:23px;
  5782. background:inherit;
  5783. background-color:rgba(255, 255, 255, 1);
  5784. border:none;
  5785. border-radius:0px;
  5786. -moz-box-shadow:none;
  5787. -webkit-box-shadow:none;
  5788. box-shadow:none;
  5789. font-size:12px;
  5790. color:#AAAAAA;
  5791. }
  5792. #u13700 {
  5793. border-width:0px;
  5794. position:absolute;
  5795. left:504px;
  5796. top:138px;
  5797. width:134px;
  5798. height:23px;
  5799. display:flex;
  5800. font-size:12px;
  5801. color:#AAAAAA;
  5802. }
  5803. #u13700 .text {
  5804. position:absolute;
  5805. align-self:flex-start;
  5806. padding:2px 2px 2px 2px;
  5807. box-sizing:border-box;
  5808. width:100%;
  5809. }
  5810. #u13700_div.disabled {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:0px;
  5814. top:0px;
  5815. width:134px;
  5816. height:23px;
  5817. background:inherit;
  5818. background-color:rgba(240, 240, 240, 1);
  5819. border:none;
  5820. border-radius:0px;
  5821. -moz-box-shadow:none;
  5822. -webkit-box-shadow:none;
  5823. box-shadow:none;
  5824. font-size:12px;
  5825. color:#AAAAAA;
  5826. }
  5827. #u13700.disabled {
  5828. }
  5829. .u13700_input_option {
  5830. font-size:12px;
  5831. }
  5832. #u13701 {
  5833. border-width:0px;
  5834. position:absolute;
  5835. left:0px;
  5836. top:0px;
  5837. width:0px;
  5838. height:0px;
  5839. }
  5840. #u13702_div {
  5841. border-width:0px;
  5842. position:absolute;
  5843. left:0px;
  5844. top:0px;
  5845. width:140px;
  5846. height:30px;
  5847. background:inherit;
  5848. background-color:rgba(255, 255, 255, 1);
  5849. box-sizing:border-box;
  5850. border-width:1px;
  5851. border-style:solid;
  5852. border-color:rgba(215, 215, 215, 1);
  5853. border-radius:4px;
  5854. -moz-box-shadow:none;
  5855. -webkit-box-shadow:none;
  5856. box-shadow:none;
  5857. font-size:12px;
  5858. }
  5859. #u13702 {
  5860. border-width:0px;
  5861. position:absolute;
  5862. left:650px;
  5863. top:136px;
  5864. width:140px;
  5865. height:30px;
  5866. display:flex;
  5867. font-size:12px;
  5868. }
  5869. #u13702 .text {
  5870. position:absolute;
  5871. align-self:center;
  5872. padding:2px 2px 2px 2px;
  5873. box-sizing:border-box;
  5874. width:100%;
  5875. }
  5876. #u13702_text {
  5877. border-width:0px;
  5878. word-wrap:break-word;
  5879. text-transform:none;
  5880. visibility:hidden;
  5881. }
  5882. #u13703_input {
  5883. position:absolute;
  5884. left:0px;
  5885. top:0px;
  5886. width:134px;
  5887. height:23px;
  5888. padding:2px 2px 2px 2px;
  5889. font-family:'ArialMT', 'Arial', sans-serif;
  5890. font-weight:400;
  5891. font-style:normal;
  5892. font-size:12px;
  5893. letter-spacing:normal;
  5894. color:#AAAAAA;
  5895. vertical-align:none;
  5896. text-align:left;
  5897. text-transform:none;
  5898. background-color:transparent;
  5899. border-color:transparent;
  5900. }
  5901. #u13703_input.disabled {
  5902. position:absolute;
  5903. left:0px;
  5904. top:0px;
  5905. width:134px;
  5906. height:23px;
  5907. padding:2px 2px 2px 2px;
  5908. font-family:'ArialMT', 'Arial', sans-serif;
  5909. font-weight:400;
  5910. font-style:normal;
  5911. font-size:12px;
  5912. letter-spacing:normal;
  5913. color:#AAAAAA;
  5914. vertical-align:none;
  5915. text-align:left;
  5916. text-transform:none;
  5917. background-color:transparent;
  5918. border-color:transparent;
  5919. }
  5920. #u13703_div {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:0px;
  5924. top:0px;
  5925. width:134px;
  5926. height:23px;
  5927. background:inherit;
  5928. background-color:rgba(255, 255, 255, 1);
  5929. border:none;
  5930. border-radius:0px;
  5931. -moz-box-shadow:none;
  5932. -webkit-box-shadow:none;
  5933. box-shadow:none;
  5934. font-size:12px;
  5935. color:#AAAAAA;
  5936. }
  5937. #u13703 {
  5938. border-width:0px;
  5939. position:absolute;
  5940. left:654px;
  5941. top:138px;
  5942. width:134px;
  5943. height:23px;
  5944. display:flex;
  5945. font-size:12px;
  5946. color:#AAAAAA;
  5947. }
  5948. #u13703 .text {
  5949. position:absolute;
  5950. align-self:flex-start;
  5951. padding:2px 2px 2px 2px;
  5952. box-sizing:border-box;
  5953. width:100%;
  5954. }
  5955. #u13703_div.disabled {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:0px;
  5959. top:0px;
  5960. width:134px;
  5961. height:23px;
  5962. background:inherit;
  5963. background-color:rgba(240, 240, 240, 1);
  5964. border:none;
  5965. border-radius:0px;
  5966. -moz-box-shadow:none;
  5967. -webkit-box-shadow:none;
  5968. box-shadow:none;
  5969. font-size:12px;
  5970. color:#AAAAAA;
  5971. }
  5972. #u13703.disabled {
  5973. }
  5974. .u13703_input_option {
  5975. font-size:12px;
  5976. }
  5977. #u13704 {
  5978. border-width:0px;
  5979. position:absolute;
  5980. left:0px;
  5981. top:0px;
  5982. width:0px;
  5983. height:0px;
  5984. }
  5985. #u13705_div {
  5986. border-width:0px;
  5987. position:absolute;
  5988. left:0px;
  5989. top:0px;
  5990. width:140px;
  5991. height:30px;
  5992. background:inherit;
  5993. background-color:rgba(255, 255, 255, 1);
  5994. box-sizing:border-box;
  5995. border-width:1px;
  5996. border-style:solid;
  5997. border-color:rgba(215, 215, 215, 1);
  5998. border-radius:4px;
  5999. -moz-box-shadow:none;
  6000. -webkit-box-shadow:none;
  6001. box-shadow:none;
  6002. font-size:12px;
  6003. }
  6004. #u13705 {
  6005. border-width:0px;
  6006. position:absolute;
  6007. left:800px;
  6008. top:136px;
  6009. width:140px;
  6010. height:30px;
  6011. display:flex;
  6012. font-size:12px;
  6013. }
  6014. #u13705 .text {
  6015. position:absolute;
  6016. align-self:center;
  6017. padding:2px 2px 2px 2px;
  6018. box-sizing:border-box;
  6019. width:100%;
  6020. }
  6021. #u13705_text {
  6022. border-width:0px;
  6023. word-wrap:break-word;
  6024. text-transform:none;
  6025. visibility:hidden;
  6026. }
  6027. #u13706_input {
  6028. position:absolute;
  6029. left:0px;
  6030. top:0px;
  6031. width:134px;
  6032. height:23px;
  6033. padding:2px 2px 2px 2px;
  6034. font-family:'ArialMT', 'Arial', sans-serif;
  6035. font-weight:400;
  6036. font-style:normal;
  6037. font-size:12px;
  6038. letter-spacing:normal;
  6039. color:#AAAAAA;
  6040. vertical-align:none;
  6041. text-align:left;
  6042. text-transform:none;
  6043. background-color:transparent;
  6044. border-color:transparent;
  6045. }
  6046. #u13706_input.disabled {
  6047. position:absolute;
  6048. left:0px;
  6049. top:0px;
  6050. width:134px;
  6051. height:23px;
  6052. padding:2px 2px 2px 2px;
  6053. font-family:'ArialMT', 'Arial', sans-serif;
  6054. font-weight:400;
  6055. font-style:normal;
  6056. font-size:12px;
  6057. letter-spacing:normal;
  6058. color:#AAAAAA;
  6059. vertical-align:none;
  6060. text-align:left;
  6061. text-transform:none;
  6062. background-color:transparent;
  6063. border-color:transparent;
  6064. }
  6065. #u13706_div {
  6066. border-width:0px;
  6067. position:absolute;
  6068. left:0px;
  6069. top:0px;
  6070. width:134px;
  6071. height:23px;
  6072. background:inherit;
  6073. background-color:rgba(255, 255, 255, 1);
  6074. border:none;
  6075. border-radius:0px;
  6076. -moz-box-shadow:none;
  6077. -webkit-box-shadow:none;
  6078. box-shadow:none;
  6079. font-size:12px;
  6080. color:#AAAAAA;
  6081. }
  6082. #u13706 {
  6083. border-width:0px;
  6084. position:absolute;
  6085. left:804px;
  6086. top:138px;
  6087. width:134px;
  6088. height:23px;
  6089. display:flex;
  6090. font-size:12px;
  6091. color:#AAAAAA;
  6092. }
  6093. #u13706 .text {
  6094. position:absolute;
  6095. align-self:flex-start;
  6096. padding:2px 2px 2px 2px;
  6097. box-sizing:border-box;
  6098. width:100%;
  6099. }
  6100. #u13706_div.disabled {
  6101. border-width:0px;
  6102. position:absolute;
  6103. left:0px;
  6104. top:0px;
  6105. width:134px;
  6106. height:23px;
  6107. background:inherit;
  6108. background-color:rgba(240, 240, 240, 1);
  6109. border:none;
  6110. border-radius:0px;
  6111. -moz-box-shadow:none;
  6112. -webkit-box-shadow:none;
  6113. box-shadow:none;
  6114. font-size:12px;
  6115. color:#AAAAAA;
  6116. }
  6117. #u13706.disabled {
  6118. }
  6119. .u13706_input_option {
  6120. font-size:12px;
  6121. }
  6122. #u13707 {
  6123. border-width:0px;
  6124. position:absolute;
  6125. left:0px;
  6126. top:0px;
  6127. width:0px;
  6128. height:0px;
  6129. }
  6130. #u13708_div {
  6131. border-width:0px;
  6132. position:absolute;
  6133. left:0px;
  6134. top:0px;
  6135. width:140px;
  6136. height:30px;
  6137. background:inherit;
  6138. background-color:rgba(255, 255, 255, 1);
  6139. box-sizing:border-box;
  6140. border-width:1px;
  6141. border-style:solid;
  6142. border-color:rgba(215, 215, 215, 1);
  6143. border-radius:4px;
  6144. -moz-box-shadow:none;
  6145. -webkit-box-shadow:none;
  6146. box-shadow:none;
  6147. font-size:12px;
  6148. }
  6149. #u13708 {
  6150. border-width:0px;
  6151. position:absolute;
  6152. left:950px;
  6153. top:136px;
  6154. width:140px;
  6155. height:30px;
  6156. display:flex;
  6157. font-size:12px;
  6158. }
  6159. #u13708 .text {
  6160. position:absolute;
  6161. align-self:center;
  6162. padding:2px 2px 2px 2px;
  6163. box-sizing:border-box;
  6164. width:100%;
  6165. }
  6166. #u13708_text {
  6167. border-width:0px;
  6168. word-wrap:break-word;
  6169. text-transform:none;
  6170. visibility:hidden;
  6171. }
  6172. #u13709_input {
  6173. position:absolute;
  6174. left:0px;
  6175. top:0px;
  6176. width:134px;
  6177. height:23px;
  6178. padding:2px 2px 2px 2px;
  6179. font-family:'ArialMT', 'Arial', sans-serif;
  6180. font-weight:400;
  6181. font-style:normal;
  6182. font-size:12px;
  6183. letter-spacing:normal;
  6184. color:#AAAAAA;
  6185. vertical-align:none;
  6186. text-align:left;
  6187. text-transform:none;
  6188. background-color:transparent;
  6189. border-color:transparent;
  6190. }
  6191. #u13709_input.disabled {
  6192. position:absolute;
  6193. left:0px;
  6194. top:0px;
  6195. width:134px;
  6196. height:23px;
  6197. padding:2px 2px 2px 2px;
  6198. font-family:'ArialMT', 'Arial', sans-serif;
  6199. font-weight:400;
  6200. font-style:normal;
  6201. font-size:12px;
  6202. letter-spacing:normal;
  6203. color:#AAAAAA;
  6204. vertical-align:none;
  6205. text-align:left;
  6206. text-transform:none;
  6207. background-color:transparent;
  6208. border-color:transparent;
  6209. }
  6210. #u13709_div {
  6211. border-width:0px;
  6212. position:absolute;
  6213. left:0px;
  6214. top:0px;
  6215. width:134px;
  6216. height:23px;
  6217. background:inherit;
  6218. background-color:rgba(255, 255, 255, 1);
  6219. border:none;
  6220. border-radius:0px;
  6221. -moz-box-shadow:none;
  6222. -webkit-box-shadow:none;
  6223. box-shadow:none;
  6224. font-size:12px;
  6225. color:#AAAAAA;
  6226. }
  6227. #u13709 {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:954px;
  6231. top:138px;
  6232. width:134px;
  6233. height:23px;
  6234. display:flex;
  6235. font-size:12px;
  6236. color:#AAAAAA;
  6237. }
  6238. #u13709 .text {
  6239. position:absolute;
  6240. align-self:flex-start;
  6241. padding:2px 2px 2px 2px;
  6242. box-sizing:border-box;
  6243. width:100%;
  6244. }
  6245. #u13709_div.disabled {
  6246. border-width:0px;
  6247. position:absolute;
  6248. left:0px;
  6249. top:0px;
  6250. width:134px;
  6251. height:23px;
  6252. background:inherit;
  6253. background-color:rgba(240, 240, 240, 1);
  6254. border:none;
  6255. border-radius:0px;
  6256. -moz-box-shadow:none;
  6257. -webkit-box-shadow:none;
  6258. box-shadow:none;
  6259. font-size:12px;
  6260. color:#AAAAAA;
  6261. }
  6262. #u13709.disabled {
  6263. }
  6264. .u13709_input_option {
  6265. font-size:12px;
  6266. }
  6267. #u13710 {
  6268. border-width:0px;
  6269. position:absolute;
  6270. left:0px;
  6271. top:0px;
  6272. width:0px;
  6273. height:0px;
  6274. }
  6275. #u13711_div {
  6276. border-width:0px;
  6277. position:absolute;
  6278. left:0px;
  6279. top:0px;
  6280. width:140px;
  6281. height:30px;
  6282. background:inherit;
  6283. background-color:rgba(255, 255, 255, 1);
  6284. box-sizing:border-box;
  6285. border-width:1px;
  6286. border-style:solid;
  6287. border-color:rgba(201, 201, 201, 1);
  6288. border-radius:4px;
  6289. -moz-box-shadow:none;
  6290. -webkit-box-shadow:none;
  6291. box-shadow:none;
  6292. font-family:'Microsoft YaHei', sans-serif;
  6293. font-weight:400;
  6294. font-style:normal;
  6295. font-size:14px;
  6296. color:#CCCCCC;
  6297. text-align:left;
  6298. }
  6299. #u13711 {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:1400px;
  6303. top:136px;
  6304. width:140px;
  6305. height:30px;
  6306. display:flex;
  6307. font-family:'Microsoft YaHei', sans-serif;
  6308. font-weight:400;
  6309. font-style:normal;
  6310. font-size:14px;
  6311. color:#CCCCCC;
  6312. text-align:left;
  6313. }
  6314. #u13711 .text {
  6315. position:absolute;
  6316. align-self:center;
  6317. padding:2px 8px 2px 8px;
  6318. box-sizing:border-box;
  6319. width:100%;
  6320. }
  6321. #u13711_text {
  6322. border-width:0px;
  6323. word-wrap:break-word;
  6324. text-transform:none;
  6325. visibility:hidden;
  6326. }
  6327. #u13712_input {
  6328. position:absolute;
  6329. left:0px;
  6330. top:0px;
  6331. width:127px;
  6332. height:25px;
  6333. padding:2px 2px 2px 2px;
  6334. font-family:'Microsoft YaHei', sans-serif;
  6335. font-weight:400;
  6336. font-style:normal;
  6337. font-size:10px;
  6338. letter-spacing:normal;
  6339. color:#000000;
  6340. vertical-align:none;
  6341. text-align:left;
  6342. text-transform:none;
  6343. background-color:transparent;
  6344. border-color:transparent;
  6345. }
  6346. #u13712_input.disabled {
  6347. position:absolute;
  6348. left:0px;
  6349. top:0px;
  6350. width:127px;
  6351. height:25px;
  6352. padding:2px 2px 2px 2px;
  6353. font-family:'Microsoft YaHei', sans-serif;
  6354. font-weight:400;
  6355. font-style:normal;
  6356. font-size:10px;
  6357. letter-spacing:normal;
  6358. color:#000000;
  6359. vertical-align:none;
  6360. text-align:left;
  6361. text-transform:none;
  6362. background-color:transparent;
  6363. border-color:transparent;
  6364. }
  6365. #u13712_div {
  6366. border-width:0px;
  6367. position:absolute;
  6368. left:0px;
  6369. top:0px;
  6370. width:127px;
  6371. height:25px;
  6372. background:inherit;
  6373. background-color:rgba(255, 255, 255, 1);
  6374. border:none;
  6375. border-radius:0px;
  6376. -moz-box-shadow:none;
  6377. -webkit-box-shadow:none;
  6378. box-shadow:none;
  6379. font-family:'Microsoft YaHei', sans-serif;
  6380. font-weight:400;
  6381. font-style:normal;
  6382. font-size:10px;
  6383. }
  6384. #u13712 {
  6385. border-width:0px;
  6386. position:absolute;
  6387. left:1408px;
  6388. top:137px;
  6389. width:127px;
  6390. height:25px;
  6391. display:flex;
  6392. font-family:'Microsoft YaHei', sans-serif;
  6393. font-weight:400;
  6394. font-style:normal;
  6395. font-size:10px;
  6396. }
  6397. #u13712 .text {
  6398. position:absolute;
  6399. align-self:center;
  6400. padding:2px 2px 2px 2px;
  6401. box-sizing:border-box;
  6402. width:100%;
  6403. }
  6404. #u13712_div.disabled {
  6405. border-width:0px;
  6406. position:absolute;
  6407. left:0px;
  6408. top:0px;
  6409. width:127px;
  6410. height:25px;
  6411. background:inherit;
  6412. background-color:rgba(240, 240, 240, 1);
  6413. border:none;
  6414. border-radius:0px;
  6415. -moz-box-shadow:none;
  6416. -webkit-box-shadow:none;
  6417. box-shadow:none;
  6418. font-family:'Microsoft YaHei', sans-serif;
  6419. font-weight:400;
  6420. font-style:normal;
  6421. font-size:10px;
  6422. }
  6423. #u13712.disabled {
  6424. }
  6425. #u13713 {
  6426. border-width:0px;
  6427. position:absolute;
  6428. left:0px;
  6429. top:0px;
  6430. width:0px;
  6431. height:0px;
  6432. }
  6433. #u13714_div {
  6434. border-width:0px;
  6435. position:absolute;
  6436. left:0px;
  6437. top:0px;
  6438. width:140px;
  6439. height:30px;
  6440. background:inherit;
  6441. background-color:rgba(255, 255, 255, 1);
  6442. box-sizing:border-box;
  6443. border-width:1px;
  6444. border-style:solid;
  6445. border-color:rgba(201, 201, 201, 1);
  6446. border-radius:4px;
  6447. -moz-box-shadow:none;
  6448. -webkit-box-shadow:none;
  6449. box-shadow:none;
  6450. font-family:'Microsoft YaHei', sans-serif;
  6451. font-weight:400;
  6452. font-style:normal;
  6453. font-size:14px;
  6454. color:#CCCCCC;
  6455. text-align:left;
  6456. }
  6457. #u13714 {
  6458. border-width:0px;
  6459. position:absolute;
  6460. left:1100px;
  6461. top:136px;
  6462. width:140px;
  6463. height:30px;
  6464. display:flex;
  6465. font-family:'Microsoft YaHei', sans-serif;
  6466. font-weight:400;
  6467. font-style:normal;
  6468. font-size:14px;
  6469. color:#CCCCCC;
  6470. text-align:left;
  6471. }
  6472. #u13714 .text {
  6473. position:absolute;
  6474. align-self:center;
  6475. padding:2px 8px 2px 8px;
  6476. box-sizing:border-box;
  6477. width:100%;
  6478. }
  6479. #u13714_text {
  6480. border-width:0px;
  6481. word-wrap:break-word;
  6482. text-transform:none;
  6483. visibility:hidden;
  6484. }
  6485. #u13715_input {
  6486. position:absolute;
  6487. left:0px;
  6488. top:0px;
  6489. width:127px;
  6490. height:25px;
  6491. padding:2px 2px 2px 2px;
  6492. font-family:'Microsoft YaHei', sans-serif;
  6493. font-weight:400;
  6494. font-style:normal;
  6495. font-size:10px;
  6496. letter-spacing:normal;
  6497. color:#000000;
  6498. vertical-align:none;
  6499. text-align:left;
  6500. text-transform:none;
  6501. background-color:transparent;
  6502. border-color:transparent;
  6503. }
  6504. #u13715_input.disabled {
  6505. position:absolute;
  6506. left:0px;
  6507. top:0px;
  6508. width:127px;
  6509. height:25px;
  6510. padding:2px 2px 2px 2px;
  6511. font-family:'Microsoft YaHei', sans-serif;
  6512. font-weight:400;
  6513. font-style:normal;
  6514. font-size:10px;
  6515. letter-spacing:normal;
  6516. color:#000000;
  6517. vertical-align:none;
  6518. text-align:left;
  6519. text-transform:none;
  6520. background-color:transparent;
  6521. border-color:transparent;
  6522. }
  6523. #u13715_div {
  6524. border-width:0px;
  6525. position:absolute;
  6526. left:0px;
  6527. top:0px;
  6528. width:127px;
  6529. height:25px;
  6530. background:inherit;
  6531. background-color:rgba(255, 255, 255, 1);
  6532. border:none;
  6533. border-radius:0px;
  6534. -moz-box-shadow:none;
  6535. -webkit-box-shadow:none;
  6536. box-shadow:none;
  6537. font-family:'Microsoft YaHei', sans-serif;
  6538. font-weight:400;
  6539. font-style:normal;
  6540. font-size:10px;
  6541. }
  6542. #u13715 {
  6543. border-width:0px;
  6544. position:absolute;
  6545. left:1108px;
  6546. top:137px;
  6547. width:127px;
  6548. height:25px;
  6549. display:flex;
  6550. font-family:'Microsoft YaHei', sans-serif;
  6551. font-weight:400;
  6552. font-style:normal;
  6553. font-size:10px;
  6554. }
  6555. #u13715 .text {
  6556. position:absolute;
  6557. align-self:center;
  6558. padding:2px 2px 2px 2px;
  6559. box-sizing:border-box;
  6560. width:100%;
  6561. }
  6562. #u13715_div.disabled {
  6563. border-width:0px;
  6564. position:absolute;
  6565. left:0px;
  6566. top:0px;
  6567. width:127px;
  6568. height:25px;
  6569. background:inherit;
  6570. background-color:rgba(240, 240, 240, 1);
  6571. border:none;
  6572. border-radius:0px;
  6573. -moz-box-shadow:none;
  6574. -webkit-box-shadow:none;
  6575. box-shadow:none;
  6576. font-family:'Microsoft YaHei', sans-serif;
  6577. font-weight:400;
  6578. font-style:normal;
  6579. font-size:10px;
  6580. }
  6581. #u13715.disabled {
  6582. }
  6583. #u13716 {
  6584. border-width:0px;
  6585. position:absolute;
  6586. left:0px;
  6587. top:0px;
  6588. width:0px;
  6589. height:0px;
  6590. }
  6591. #u13717_div {
  6592. border-width:0px;
  6593. position:absolute;
  6594. left:0px;
  6595. top:0px;
  6596. width:140px;
  6597. height:30px;
  6598. background:inherit;
  6599. background-color:rgba(255, 255, 255, 1);
  6600. box-sizing:border-box;
  6601. border-width:1px;
  6602. border-style:solid;
  6603. border-color:rgba(201, 201, 201, 1);
  6604. border-radius:4px;
  6605. -moz-box-shadow:none;
  6606. -webkit-box-shadow:none;
  6607. box-shadow:none;
  6608. font-family:'Microsoft YaHei', sans-serif;
  6609. font-weight:400;
  6610. font-style:normal;
  6611. font-size:14px;
  6612. color:#CCCCCC;
  6613. text-align:left;
  6614. }
  6615. #u13717 {
  6616. border-width:0px;
  6617. position:absolute;
  6618. left:1250px;
  6619. top:136px;
  6620. width:140px;
  6621. height:30px;
  6622. display:flex;
  6623. font-family:'Microsoft YaHei', sans-serif;
  6624. font-weight:400;
  6625. font-style:normal;
  6626. font-size:14px;
  6627. color:#CCCCCC;
  6628. text-align:left;
  6629. }
  6630. #u13717 .text {
  6631. position:absolute;
  6632. align-self:center;
  6633. padding:2px 8px 2px 8px;
  6634. box-sizing:border-box;
  6635. width:100%;
  6636. }
  6637. #u13717_text {
  6638. border-width:0px;
  6639. word-wrap:break-word;
  6640. text-transform:none;
  6641. visibility:hidden;
  6642. }
  6643. #u13718_input {
  6644. position:absolute;
  6645. left:0px;
  6646. top:0px;
  6647. width:127px;
  6648. height:25px;
  6649. padding:2px 2px 2px 2px;
  6650. font-family:'Microsoft YaHei', sans-serif;
  6651. font-weight:400;
  6652. font-style:normal;
  6653. font-size:10px;
  6654. letter-spacing:normal;
  6655. color:#000000;
  6656. vertical-align:none;
  6657. text-align:left;
  6658. text-transform:none;
  6659. background-color:transparent;
  6660. border-color:transparent;
  6661. }
  6662. #u13718_input.disabled {
  6663. position:absolute;
  6664. left:0px;
  6665. top:0px;
  6666. width:127px;
  6667. height:25px;
  6668. padding:2px 2px 2px 2px;
  6669. font-family:'Microsoft YaHei', sans-serif;
  6670. font-weight:400;
  6671. font-style:normal;
  6672. font-size:10px;
  6673. letter-spacing:normal;
  6674. color:#000000;
  6675. vertical-align:none;
  6676. text-align:left;
  6677. text-transform:none;
  6678. background-color:transparent;
  6679. border-color:transparent;
  6680. }
  6681. #u13718_div {
  6682. border-width:0px;
  6683. position:absolute;
  6684. left:0px;
  6685. top:0px;
  6686. width:127px;
  6687. height:25px;
  6688. background:inherit;
  6689. background-color:rgba(255, 255, 255, 1);
  6690. border:none;
  6691. border-radius:0px;
  6692. -moz-box-shadow:none;
  6693. -webkit-box-shadow:none;
  6694. box-shadow:none;
  6695. font-family:'Microsoft YaHei', sans-serif;
  6696. font-weight:400;
  6697. font-style:normal;
  6698. font-size:10px;
  6699. }
  6700. #u13718 {
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:1258px;
  6704. top:137px;
  6705. width:127px;
  6706. height:25px;
  6707. display:flex;
  6708. font-family:'Microsoft YaHei', sans-serif;
  6709. font-weight:400;
  6710. font-style:normal;
  6711. font-size:10px;
  6712. }
  6713. #u13718 .text {
  6714. position:absolute;
  6715. align-self:center;
  6716. padding:2px 2px 2px 2px;
  6717. box-sizing:border-box;
  6718. width:100%;
  6719. }
  6720. #u13718_div.disabled {
  6721. border-width:0px;
  6722. position:absolute;
  6723. left:0px;
  6724. top:0px;
  6725. width:127px;
  6726. height:25px;
  6727. background:inherit;
  6728. background-color:rgba(240, 240, 240, 1);
  6729. border:none;
  6730. border-radius:0px;
  6731. -moz-box-shadow:none;
  6732. -webkit-box-shadow:none;
  6733. box-shadow:none;
  6734. font-family:'Microsoft YaHei', sans-serif;
  6735. font-weight:400;
  6736. font-style:normal;
  6737. font-size:10px;
  6738. }
  6739. #u13718.disabled {
  6740. }
  6741. #u13719 {
  6742. border-width:0px;
  6743. position:absolute;
  6744. left:0px;
  6745. top:0px;
  6746. width:0px;
  6747. height:0px;
  6748. }
  6749. #u13720_div {
  6750. border-width:0px;
  6751. position:absolute;
  6752. left:0px;
  6753. top:0px;
  6754. width:140px;
  6755. height:30px;
  6756. background:inherit;
  6757. background-color:rgba(255, 255, 255, 1);
  6758. box-sizing:border-box;
  6759. border-width:1px;
  6760. border-style:solid;
  6761. border-color:rgba(201, 201, 201, 1);
  6762. border-radius:4px;
  6763. -moz-box-shadow:none;
  6764. -webkit-box-shadow:none;
  6765. box-shadow:none;
  6766. font-family:'Microsoft YaHei', sans-serif;
  6767. font-weight:400;
  6768. font-style:normal;
  6769. font-size:14px;
  6770. color:#CCCCCC;
  6771. text-align:left;
  6772. }
  6773. #u13720 {
  6774. border-width:0px;
  6775. position:absolute;
  6776. left:350px;
  6777. top:176px;
  6778. width:140px;
  6779. height:30px;
  6780. display:flex;
  6781. font-family:'Microsoft YaHei', sans-serif;
  6782. font-weight:400;
  6783. font-style:normal;
  6784. font-size:14px;
  6785. color:#CCCCCC;
  6786. text-align:left;
  6787. }
  6788. #u13720 .text {
  6789. position:absolute;
  6790. align-self:center;
  6791. padding:2px 8px 2px 8px;
  6792. box-sizing:border-box;
  6793. width:100%;
  6794. }
  6795. #u13720_text {
  6796. border-width:0px;
  6797. word-wrap:break-word;
  6798. text-transform:none;
  6799. visibility:hidden;
  6800. }
  6801. #u13721_input {
  6802. position:absolute;
  6803. left:0px;
  6804. top:0px;
  6805. width:127px;
  6806. height:25px;
  6807. padding:2px 2px 2px 2px;
  6808. font-family:'Microsoft YaHei', sans-serif;
  6809. font-weight:400;
  6810. font-style:normal;
  6811. font-size:10px;
  6812. letter-spacing:normal;
  6813. color:#000000;
  6814. vertical-align:none;
  6815. text-align:left;
  6816. text-transform:none;
  6817. background-color:transparent;
  6818. border-color:transparent;
  6819. }
  6820. #u13721_input.disabled {
  6821. position:absolute;
  6822. left:0px;
  6823. top:0px;
  6824. width:127px;
  6825. height:25px;
  6826. padding:2px 2px 2px 2px;
  6827. font-family:'Microsoft YaHei', sans-serif;
  6828. font-weight:400;
  6829. font-style:normal;
  6830. font-size:10px;
  6831. letter-spacing:normal;
  6832. color:#000000;
  6833. vertical-align:none;
  6834. text-align:left;
  6835. text-transform:none;
  6836. background-color:transparent;
  6837. border-color:transparent;
  6838. }
  6839. #u13721_div {
  6840. border-width:0px;
  6841. position:absolute;
  6842. left:0px;
  6843. top:0px;
  6844. width:127px;
  6845. height:25px;
  6846. background:inherit;
  6847. background-color:rgba(255, 255, 255, 1);
  6848. border:none;
  6849. border-radius:0px;
  6850. -moz-box-shadow:none;
  6851. -webkit-box-shadow:none;
  6852. box-shadow:none;
  6853. font-family:'Microsoft YaHei', sans-serif;
  6854. font-weight:400;
  6855. font-style:normal;
  6856. font-size:10px;
  6857. }
  6858. #u13721 {
  6859. border-width:0px;
  6860. position:absolute;
  6861. left:358px;
  6862. top:177px;
  6863. width:127px;
  6864. height:25px;
  6865. display:flex;
  6866. font-family:'Microsoft YaHei', sans-serif;
  6867. font-weight:400;
  6868. font-style:normal;
  6869. font-size:10px;
  6870. }
  6871. #u13721 .text {
  6872. position:absolute;
  6873. align-self:center;
  6874. padding:2px 2px 2px 2px;
  6875. box-sizing:border-box;
  6876. width:100%;
  6877. }
  6878. #u13721_div.disabled {
  6879. border-width:0px;
  6880. position:absolute;
  6881. left:0px;
  6882. top:0px;
  6883. width:127px;
  6884. height:25px;
  6885. background:inherit;
  6886. background-color:rgba(240, 240, 240, 1);
  6887. border:none;
  6888. border-radius:0px;
  6889. -moz-box-shadow:none;
  6890. -webkit-box-shadow:none;
  6891. box-shadow:none;
  6892. font-family:'Microsoft YaHei', sans-serif;
  6893. font-weight:400;
  6894. font-style:normal;
  6895. font-size:10px;
  6896. }
  6897. #u13721.disabled {
  6898. }
  6899. #u13722 {
  6900. border-width:0px;
  6901. position:absolute;
  6902. left:0px;
  6903. top:0px;
  6904. width:0px;
  6905. height:0px;
  6906. }
  6907. #u13723_div {
  6908. border-width:0px;
  6909. position:absolute;
  6910. left:0px;
  6911. top:0px;
  6912. width:140px;
  6913. height:30px;
  6914. background:inherit;
  6915. background-color:rgba(255, 255, 255, 1);
  6916. box-sizing:border-box;
  6917. border-width:1px;
  6918. border-style:solid;
  6919. border-color:rgba(215, 215, 215, 1);
  6920. border-radius:4px;
  6921. -moz-box-shadow:none;
  6922. -webkit-box-shadow:none;
  6923. box-shadow:none;
  6924. font-size:12px;
  6925. }
  6926. #u13723 {
  6927. border-width:0px;
  6928. position:absolute;
  6929. left:500px;
  6930. top:176px;
  6931. width:140px;
  6932. height:30px;
  6933. display:flex;
  6934. font-size:12px;
  6935. }
  6936. #u13723 .text {
  6937. position:absolute;
  6938. align-self:center;
  6939. padding:2px 2px 2px 2px;
  6940. box-sizing:border-box;
  6941. width:100%;
  6942. }
  6943. #u13723_text {
  6944. border-width:0px;
  6945. word-wrap:break-word;
  6946. text-transform:none;
  6947. visibility:hidden;
  6948. }
  6949. #u13724_input {
  6950. position:absolute;
  6951. left:0px;
  6952. top:0px;
  6953. width:134px;
  6954. height:23px;
  6955. padding:2px 2px 2px 2px;
  6956. font-family:'ArialMT', 'Arial', sans-serif;
  6957. font-weight:400;
  6958. font-style:normal;
  6959. font-size:12px;
  6960. letter-spacing:normal;
  6961. color:#AAAAAA;
  6962. vertical-align:none;
  6963. text-align:left;
  6964. text-transform:none;
  6965. background-color:transparent;
  6966. border-color:transparent;
  6967. }
  6968. #u13724_input.disabled {
  6969. position:absolute;
  6970. left:0px;
  6971. top:0px;
  6972. width:134px;
  6973. height:23px;
  6974. padding:2px 2px 2px 2px;
  6975. font-family:'ArialMT', 'Arial', sans-serif;
  6976. font-weight:400;
  6977. font-style:normal;
  6978. font-size:12px;
  6979. letter-spacing:normal;
  6980. color:#AAAAAA;
  6981. vertical-align:none;
  6982. text-align:left;
  6983. text-transform:none;
  6984. background-color:transparent;
  6985. border-color:transparent;
  6986. }
  6987. #u13724_div {
  6988. border-width:0px;
  6989. position:absolute;
  6990. left:0px;
  6991. top:0px;
  6992. width:134px;
  6993. height:23px;
  6994. background:inherit;
  6995. background-color:rgba(255, 255, 255, 1);
  6996. border:none;
  6997. border-radius:0px;
  6998. -moz-box-shadow:none;
  6999. -webkit-box-shadow:none;
  7000. box-shadow:none;
  7001. font-size:12px;
  7002. color:#AAAAAA;
  7003. }
  7004. #u13724 {
  7005. border-width:0px;
  7006. position:absolute;
  7007. left:504px;
  7008. top:178px;
  7009. width:134px;
  7010. height:23px;
  7011. display:flex;
  7012. font-size:12px;
  7013. color:#AAAAAA;
  7014. }
  7015. #u13724 .text {
  7016. position:absolute;
  7017. align-self:flex-start;
  7018. padding:2px 2px 2px 2px;
  7019. box-sizing:border-box;
  7020. width:100%;
  7021. }
  7022. #u13724_div.disabled {
  7023. border-width:0px;
  7024. position:absolute;
  7025. left:0px;
  7026. top:0px;
  7027. width:134px;
  7028. height:23px;
  7029. background:inherit;
  7030. background-color:rgba(240, 240, 240, 1);
  7031. border:none;
  7032. border-radius:0px;
  7033. -moz-box-shadow:none;
  7034. -webkit-box-shadow:none;
  7035. box-shadow:none;
  7036. font-size:12px;
  7037. color:#AAAAAA;
  7038. }
  7039. #u13724.disabled {
  7040. }
  7041. .u13724_input_option {
  7042. font-size:12px;
  7043. }
  7044. #u13725 {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:0px;
  7048. top:0px;
  7049. width:0px;
  7050. height:0px;
  7051. }
  7052. #u13726_div {
  7053. border-width:0px;
  7054. position:absolute;
  7055. left:0px;
  7056. top:0px;
  7057. width:140px;
  7058. height:30px;
  7059. background:inherit;
  7060. background-color:rgba(255, 255, 255, 1);
  7061. box-sizing:border-box;
  7062. border-width:1px;
  7063. border-style:solid;
  7064. border-color:rgba(215, 215, 215, 1);
  7065. border-radius:4px;
  7066. -moz-box-shadow:none;
  7067. -webkit-box-shadow:none;
  7068. box-shadow:none;
  7069. font-size:12px;
  7070. }
  7071. #u13726 {
  7072. border-width:0px;
  7073. position:absolute;
  7074. left:650px;
  7075. top:176px;
  7076. width:140px;
  7077. height:30px;
  7078. display:flex;
  7079. font-size:12px;
  7080. }
  7081. #u13726 .text {
  7082. position:absolute;
  7083. align-self:center;
  7084. padding:2px 2px 2px 2px;
  7085. box-sizing:border-box;
  7086. width:100%;
  7087. }
  7088. #u13726_text {
  7089. border-width:0px;
  7090. word-wrap:break-word;
  7091. text-transform:none;
  7092. visibility:hidden;
  7093. }
  7094. #u13727_input {
  7095. position:absolute;
  7096. left:0px;
  7097. top:0px;
  7098. width:134px;
  7099. height:23px;
  7100. padding:2px 2px 2px 2px;
  7101. font-family:'ArialMT', 'Arial', sans-serif;
  7102. font-weight:400;
  7103. font-style:normal;
  7104. font-size:12px;
  7105. letter-spacing:normal;
  7106. color:#AAAAAA;
  7107. vertical-align:none;
  7108. text-align:left;
  7109. text-transform:none;
  7110. background-color:transparent;
  7111. border-color:transparent;
  7112. }
  7113. #u13727_input.disabled {
  7114. position:absolute;
  7115. left:0px;
  7116. top:0px;
  7117. width:134px;
  7118. height:23px;
  7119. padding:2px 2px 2px 2px;
  7120. font-family:'ArialMT', 'Arial', sans-serif;
  7121. font-weight:400;
  7122. font-style:normal;
  7123. font-size:12px;
  7124. letter-spacing:normal;
  7125. color:#AAAAAA;
  7126. vertical-align:none;
  7127. text-align:left;
  7128. text-transform:none;
  7129. background-color:transparent;
  7130. border-color:transparent;
  7131. }
  7132. #u13727_div {
  7133. border-width:0px;
  7134. position:absolute;
  7135. left:0px;
  7136. top:0px;
  7137. width:134px;
  7138. height:23px;
  7139. background:inherit;
  7140. background-color:rgba(255, 255, 255, 1);
  7141. border:none;
  7142. border-radius:0px;
  7143. -moz-box-shadow:none;
  7144. -webkit-box-shadow:none;
  7145. box-shadow:none;
  7146. font-size:12px;
  7147. color:#AAAAAA;
  7148. }
  7149. #u13727 {
  7150. border-width:0px;
  7151. position:absolute;
  7152. left:654px;
  7153. top:178px;
  7154. width:134px;
  7155. height:23px;
  7156. display:flex;
  7157. font-size:12px;
  7158. color:#AAAAAA;
  7159. }
  7160. #u13727 .text {
  7161. position:absolute;
  7162. align-self:flex-start;
  7163. padding:2px 2px 2px 2px;
  7164. box-sizing:border-box;
  7165. width:100%;
  7166. }
  7167. #u13727_div.disabled {
  7168. border-width:0px;
  7169. position:absolute;
  7170. left:0px;
  7171. top:0px;
  7172. width:134px;
  7173. height:23px;
  7174. background:inherit;
  7175. background-color:rgba(240, 240, 240, 1);
  7176. border:none;
  7177. border-radius:0px;
  7178. -moz-box-shadow:none;
  7179. -webkit-box-shadow:none;
  7180. box-shadow:none;
  7181. font-size:12px;
  7182. color:#AAAAAA;
  7183. }
  7184. #u13727.disabled {
  7185. }
  7186. .u13727_input_option {
  7187. font-size:12px;
  7188. }
  7189. #u13728 {
  7190. border-width:0px;
  7191. position:absolute;
  7192. left:0px;
  7193. top:0px;
  7194. width:0px;
  7195. height:0px;
  7196. }
  7197. #u13729_div {
  7198. border-width:0px;
  7199. position:absolute;
  7200. left:0px;
  7201. top:0px;
  7202. width:600px;
  7203. height:443px;
  7204. background:inherit;
  7205. background-color:rgba(255, 255, 255, 1);
  7206. box-sizing:border-box;
  7207. border-width:1px;
  7208. border-style:solid;
  7209. border-color:rgba(215, 215, 215, 1);
  7210. border-radius:0px;
  7211. -moz-box-shadow:none;
  7212. -webkit-box-shadow:none;
  7213. box-shadow:none;
  7214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7215. font-weight:400;
  7216. font-style:normal;
  7217. font-size:14px;
  7218. color:#AAAAAA;
  7219. text-align:center;
  7220. line-height:30px;
  7221. }
  7222. #u13729 {
  7223. border-width:0px;
  7224. position:absolute;
  7225. left:364px;
  7226. top:686px;
  7227. width:600px;
  7228. height:443px;
  7229. display:flex;
  7230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7231. font-weight:400;
  7232. font-style:normal;
  7233. font-size:14px;
  7234. color:#AAAAAA;
  7235. text-align:center;
  7236. line-height:30px;
  7237. }
  7238. #u13729 .text {
  7239. position:absolute;
  7240. align-self:center;
  7241. padding:5px 10px 5px 10px;
  7242. box-sizing:border-box;
  7243. width:100%;
  7244. }
  7245. #u13729_text {
  7246. border-width:0px;
  7247. word-wrap:break-word;
  7248. text-transform:none;
  7249. visibility:hidden;
  7250. }
  7251. #u13730_div {
  7252. border-width:0px;
  7253. position:absolute;
  7254. left:0px;
  7255. top:0px;
  7256. width:83px;
  7257. height:35px;
  7258. background:inherit;
  7259. background-color:rgba(255, 255, 255, 0);
  7260. border:none;
  7261. border-top:0px;
  7262. border-right:0px;
  7263. border-bottom:0px;
  7264. border-radius:0px;
  7265. border-top-left-radius:0px;
  7266. border-bottom-left-radius:0px;
  7267. -moz-box-shadow:none;
  7268. -webkit-box-shadow:none;
  7269. box-shadow:none;
  7270. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7271. font-weight:500;
  7272. font-style:normal;
  7273. font-size:18px;
  7274. }
  7275. #u13730 {
  7276. border-width:0px;
  7277. position:absolute;
  7278. left:384px;
  7279. top:704px;
  7280. width:83px;
  7281. height:35px;
  7282. display:flex;
  7283. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7284. font-weight:500;
  7285. font-style:normal;
  7286. font-size:18px;
  7287. }
  7288. #u13730 .text {
  7289. position:absolute;
  7290. align-self:center;
  7291. padding:5px 10px 5px 0px;
  7292. box-sizing:border-box;
  7293. width:100%;
  7294. }
  7295. #u13730_text {
  7296. border-width:0px;
  7297. white-space:nowrap;
  7298. text-transform:none;
  7299. }
  7300. #u13731 {
  7301. border-width:0px;
  7302. position:absolute;
  7303. left:0px;
  7304. top:0px;
  7305. width:0px;
  7306. height:0px;
  7307. }
  7308. #u13732_div {
  7309. border-width:0px;
  7310. position:absolute;
  7311. left:0px;
  7312. top:0px;
  7313. width:600px;
  7314. height:60px;
  7315. background:inherit;
  7316. background-color:rgba(255, 255, 255, 1);
  7317. box-sizing:border-box;
  7318. border-width:1px;
  7319. border-style:solid;
  7320. border-color:rgba(215, 215, 215, 1);
  7321. border-radius:0px;
  7322. -moz-box-shadow:none;
  7323. -webkit-box-shadow:none;
  7324. box-shadow:none;
  7325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7326. font-weight:400;
  7327. font-style:normal;
  7328. font-size:14px;
  7329. color:#AAAAAA;
  7330. text-align:center;
  7331. line-height:30px;
  7332. }
  7333. #u13732 {
  7334. border-width:0px;
  7335. position:absolute;
  7336. left:364px;
  7337. top:1069px;
  7338. width:600px;
  7339. height:60px;
  7340. display:flex;
  7341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7342. font-weight:400;
  7343. font-style:normal;
  7344. font-size:14px;
  7345. color:#AAAAAA;
  7346. text-align:center;
  7347. line-height:30px;
  7348. }
  7349. #u13732 .text {
  7350. position:absolute;
  7351. align-self:center;
  7352. padding:5px 10px 5px 10px;
  7353. box-sizing:border-box;
  7354. width:100%;
  7355. }
  7356. #u13732_text {
  7357. border-width:0px;
  7358. word-wrap:break-word;
  7359. text-transform:none;
  7360. visibility:hidden;
  7361. }
  7362. #u13733_div {
  7363. border-width:0px;
  7364. position:absolute;
  7365. left:0px;
  7366. top:0px;
  7367. width:80px;
  7368. height:30px;
  7369. background:inherit;
  7370. background-color:rgba(24, 144, 255, 1);
  7371. border:none;
  7372. border-radius:4px;
  7373. -moz-box-shadow:none;
  7374. -webkit-box-shadow:none;
  7375. box-shadow:none;
  7376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7377. font-weight:400;
  7378. font-style:normal;
  7379. font-size:14px;
  7380. color:#FFFFFF;
  7381. }
  7382. #u13733 {
  7383. border-width:0px;
  7384. position:absolute;
  7385. left:844px;
  7386. top:1084px;
  7387. width:80px;
  7388. height:30px;
  7389. display:flex;
  7390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7391. font-weight:400;
  7392. font-style:normal;
  7393. font-size:14px;
  7394. color:#FFFFFF;
  7395. }
  7396. #u13733 .text {
  7397. position:absolute;
  7398. align-self:center;
  7399. padding:2px 2px 2px 2px;
  7400. box-sizing:border-box;
  7401. width:100%;
  7402. }
  7403. #u13733_text {
  7404. border-width:0px;
  7405. word-wrap:break-word;
  7406. text-transform:none;
  7407. }
  7408. #u13734_div {
  7409. border-width:0px;
  7410. position:absolute;
  7411. left:0px;
  7412. top:0px;
  7413. width:79px;
  7414. height:30px;
  7415. background:inherit;
  7416. background-color:rgba(255, 255, 255, 1);
  7417. box-sizing:border-box;
  7418. border-width:1px;
  7419. border-style:solid;
  7420. border-color:rgba(170, 170, 170, 1);
  7421. border-radius:4px;
  7422. -moz-box-shadow:none;
  7423. -webkit-box-shadow:none;
  7424. box-shadow:none;
  7425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7426. font-weight:400;
  7427. font-style:normal;
  7428. font-size:14px;
  7429. }
  7430. #u13734 {
  7431. border-width:0px;
  7432. position:absolute;
  7433. left:745px;
  7434. top:1084px;
  7435. width:79px;
  7436. height:30px;
  7437. display:flex;
  7438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7439. font-weight:400;
  7440. font-style:normal;
  7441. font-size:14px;
  7442. }
  7443. #u13734 .text {
  7444. position:absolute;
  7445. align-self:center;
  7446. padding:2px 2px 2px 2px;
  7447. box-sizing:border-box;
  7448. width:100%;
  7449. }
  7450. #u13734_text {
  7451. border-width:0px;
  7452. word-wrap:break-word;
  7453. text-transform:none;
  7454. }
  7455. #u13735 {
  7456. border-width:0px;
  7457. position:absolute;
  7458. left:0px;
  7459. top:0px;
  7460. width:0px;
  7461. height:0px;
  7462. }
  7463. #u13736_div {
  7464. border-width:0px;
  7465. position:absolute;
  7466. left:0px;
  7467. top:0px;
  7468. width:379px;
  7469. height:40px;
  7470. background:inherit;
  7471. background-color:rgba(255, 255, 255, 1);
  7472. box-sizing:border-box;
  7473. border-width:1px;
  7474. border-style:solid;
  7475. border-color:rgba(215, 215, 215, 1);
  7476. border-radius:4px;
  7477. -moz-box-shadow:none;
  7478. -webkit-box-shadow:none;
  7479. box-shadow:none;
  7480. font-size:14px;
  7481. }
  7482. #u13736 {
  7483. border-width:0px;
  7484. position:absolute;
  7485. left:521px;
  7486. top:769px;
  7487. width:379px;
  7488. height:40px;
  7489. display:flex;
  7490. font-size:14px;
  7491. }
  7492. #u13736 .text {
  7493. position:absolute;
  7494. align-self:center;
  7495. padding:2px 2px 2px 2px;
  7496. box-sizing:border-box;
  7497. width:100%;
  7498. }
  7499. #u13736_text {
  7500. border-width:0px;
  7501. word-wrap:break-word;
  7502. text-transform:none;
  7503. visibility:hidden;
  7504. }
  7505. #u13737_input {
  7506. position:absolute;
  7507. left:0px;
  7508. top:0px;
  7509. width:363px;
  7510. height:31px;
  7511. padding:2px 2px 2px 2px;
  7512. font-family:'ArialMT', 'Arial', sans-serif;
  7513. font-weight:400;
  7514. font-style:normal;
  7515. font-size:14px;
  7516. letter-spacing:normal;
  7517. color:#AAAAAA;
  7518. vertical-align:none;
  7519. text-align:left;
  7520. text-transform:none;
  7521. background-color:transparent;
  7522. border-color:transparent;
  7523. }
  7524. #u13737_input.disabled {
  7525. position:absolute;
  7526. left:0px;
  7527. top:0px;
  7528. width:363px;
  7529. height:31px;
  7530. padding:2px 2px 2px 2px;
  7531. font-family:'ArialMT', 'Arial', sans-serif;
  7532. font-weight:400;
  7533. font-style:normal;
  7534. font-size:14px;
  7535. letter-spacing:normal;
  7536. color:#AAAAAA;
  7537. vertical-align:none;
  7538. text-align:left;
  7539. text-transform:none;
  7540. background-color:transparent;
  7541. border-color:transparent;
  7542. }
  7543. #u13737_div {
  7544. border-width:0px;
  7545. position:absolute;
  7546. left:0px;
  7547. top:0px;
  7548. width:363px;
  7549. height:31px;
  7550. background:inherit;
  7551. background-color:rgba(255, 255, 255, 1);
  7552. border:none;
  7553. border-radius:0px;
  7554. -moz-box-shadow:none;
  7555. -webkit-box-shadow:none;
  7556. box-shadow:none;
  7557. font-size:14px;
  7558. color:#AAAAAA;
  7559. }
  7560. #u13737 {
  7561. border-width:0px;
  7562. position:absolute;
  7563. left:531px;
  7564. top:774px;
  7565. width:363px;
  7566. height:31px;
  7567. display:flex;
  7568. font-size:14px;
  7569. color:#AAAAAA;
  7570. }
  7571. #u13737 .text {
  7572. position:absolute;
  7573. align-self:flex-start;
  7574. padding:2px 2px 2px 2px;
  7575. box-sizing:border-box;
  7576. width:100%;
  7577. }
  7578. #u13737_div.disabled {
  7579. border-width:0px;
  7580. position:absolute;
  7581. left:0px;
  7582. top:0px;
  7583. width:363px;
  7584. height:31px;
  7585. background:inherit;
  7586. background-color:rgba(240, 240, 240, 1);
  7587. border:none;
  7588. border-radius:0px;
  7589. -moz-box-shadow:none;
  7590. -webkit-box-shadow:none;
  7591. box-shadow:none;
  7592. font-size:14px;
  7593. color:#AAAAAA;
  7594. }
  7595. #u13737.disabled {
  7596. }
  7597. .u13737_input_option {
  7598. font-size:14px;
  7599. }
  7600. #u13738_div {
  7601. border-width:0px;
  7602. position:absolute;
  7603. left:0px;
  7604. top:0px;
  7605. width:88px;
  7606. height:40px;
  7607. background:inherit;
  7608. background-color:rgba(255, 255, 255, 0);
  7609. border:none;
  7610. border-top:0px;
  7611. border-right:0px;
  7612. border-bottom:0px;
  7613. border-radius:0px;
  7614. border-top-left-radius:0px;
  7615. border-bottom-left-radius:0px;
  7616. -moz-box-shadow:none;
  7617. -webkit-box-shadow:none;
  7618. box-shadow:none;
  7619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7620. font-weight:400;
  7621. font-style:normal;
  7622. font-size:14px;
  7623. text-align:right;
  7624. }
  7625. #u13738 {
  7626. border-width:0px;
  7627. position:absolute;
  7628. left:423px;
  7629. top:769px;
  7630. width:88px;
  7631. height:40px;
  7632. display:flex;
  7633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7634. font-weight:400;
  7635. font-style:normal;
  7636. font-size:14px;
  7637. text-align:right;
  7638. }
  7639. #u13738 .text {
  7640. position:absolute;
  7641. align-self:center;
  7642. padding:5px 10px 5px 0px;
  7643. box-sizing:border-box;
  7644. width:100%;
  7645. }
  7646. #u13738_text {
  7647. border-width:0px;
  7648. white-space:nowrap;
  7649. text-transform:none;
  7650. }
  7651. #u13739_div {
  7652. border-width:0px;
  7653. position:absolute;
  7654. left:0px;
  7655. top:0px;
  7656. width:81px;
  7657. height:40px;
  7658. background:inherit;
  7659. background-color:rgba(255, 255, 255, 0);
  7660. border:none;
  7661. border-top:0px;
  7662. border-right:0px;
  7663. border-bottom:0px;
  7664. border-radius:0px;
  7665. border-top-left-radius:0px;
  7666. border-bottom-left-radius:0px;
  7667. -moz-box-shadow:none;
  7668. -webkit-box-shadow:none;
  7669. box-shadow:none;
  7670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7671. font-weight:400;
  7672. font-style:normal;
  7673. font-size:14px;
  7674. text-align:right;
  7675. }
  7676. #u13739 {
  7677. border-width:0px;
  7678. position:absolute;
  7679. left:430px;
  7680. top:819px;
  7681. width:81px;
  7682. height:40px;
  7683. display:flex;
  7684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7685. font-weight:400;
  7686. font-style:normal;
  7687. font-size:14px;
  7688. text-align:right;
  7689. }
  7690. #u13739 .text {
  7691. position:absolute;
  7692. align-self:center;
  7693. padding:5px 10px 5px 0px;
  7694. box-sizing:border-box;
  7695. width:100%;
  7696. }
  7697. #u13739_text {
  7698. border-width:0px;
  7699. white-space:nowrap;
  7700. text-transform:none;
  7701. }
  7702. #u13740 {
  7703. border-width:0px;
  7704. position:absolute;
  7705. left:0px;
  7706. top:0px;
  7707. width:0px;
  7708. height:0px;
  7709. }
  7710. #u13741_div {
  7711. border-width:0px;
  7712. position:absolute;
  7713. left:0px;
  7714. top:0px;
  7715. width:379px;
  7716. height:80px;
  7717. background:inherit;
  7718. background-color:rgba(255, 255, 255, 1);
  7719. box-sizing:border-box;
  7720. border-width:1px;
  7721. border-style:solid;
  7722. border-color:rgba(201, 201, 201, 1);
  7723. border-radius:4px;
  7724. -moz-box-shadow:none;
  7725. -webkit-box-shadow:none;
  7726. box-shadow:none;
  7727. font-family:'Microsoft YaHei', sans-serif;
  7728. font-weight:400;
  7729. font-style:normal;
  7730. font-size:14px;
  7731. color:#CCCCCC;
  7732. text-align:left;
  7733. }
  7734. #u13741 {
  7735. border-width:0px;
  7736. position:absolute;
  7737. left:521px;
  7738. top:819px;
  7739. width:379px;
  7740. height:80px;
  7741. display:flex;
  7742. font-family:'Microsoft YaHei', sans-serif;
  7743. font-weight:400;
  7744. font-style:normal;
  7745. font-size:14px;
  7746. color:#CCCCCC;
  7747. text-align:left;
  7748. }
  7749. #u13741 .text {
  7750. position:absolute;
  7751. align-self:center;
  7752. padding:2px 8px 2px 8px;
  7753. box-sizing:border-box;
  7754. width:100%;
  7755. }
  7756. #u13741_text {
  7757. border-width:0px;
  7758. word-wrap:break-word;
  7759. text-transform:none;
  7760. visibility:hidden;
  7761. }
  7762. #u13742_input {
  7763. position:absolute;
  7764. left:0px;
  7765. top:0px;
  7766. width:360px;
  7767. height:38px;
  7768. padding:2px 2px 2px 2px;
  7769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7770. font-weight:400;
  7771. font-style:normal;
  7772. font-size:14px;
  7773. letter-spacing:normal;
  7774. color:#000000;
  7775. vertical-align:none;
  7776. text-align:left;
  7777. text-transform:none;
  7778. background-color:transparent;
  7779. border-color:transparent;
  7780. }
  7781. #u13742_input.disabled {
  7782. position:absolute;
  7783. left:0px;
  7784. top:0px;
  7785. width:360px;
  7786. height:38px;
  7787. padding:2px 2px 2px 2px;
  7788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7789. font-weight:400;
  7790. font-style:normal;
  7791. font-size:14px;
  7792. letter-spacing:normal;
  7793. color:#000000;
  7794. vertical-align:none;
  7795. text-align:left;
  7796. text-transform:none;
  7797. background-color:transparent;
  7798. border-color:transparent;
  7799. }
  7800. #u13742_div {
  7801. border-width:0px;
  7802. position:absolute;
  7803. left:0px;
  7804. top:0px;
  7805. width:360px;
  7806. height:38px;
  7807. background:inherit;
  7808. background-color:rgba(255, 255, 255, 1);
  7809. border:none;
  7810. border-radius:0px;
  7811. -moz-box-shadow:none;
  7812. -webkit-box-shadow:none;
  7813. box-shadow:none;
  7814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7815. font-weight:400;
  7816. font-style:normal;
  7817. font-size:14px;
  7818. }
  7819. #u13742 {
  7820. border-width:0px;
  7821. position:absolute;
  7822. left:531px;
  7823. top:820px;
  7824. width:360px;
  7825. height:38px;
  7826. display:flex;
  7827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7828. font-weight:400;
  7829. font-style:normal;
  7830. font-size:14px;
  7831. }
  7832. #u13742 .text {
  7833. position:absolute;
  7834. align-self:center;
  7835. padding:2px 2px 2px 2px;
  7836. box-sizing:border-box;
  7837. width:100%;
  7838. }
  7839. #u13742_div.disabled {
  7840. border-width:0px;
  7841. position:absolute;
  7842. left:0px;
  7843. top:0px;
  7844. width:360px;
  7845. height:38px;
  7846. background:inherit;
  7847. background-color:rgba(240, 240, 240, 1);
  7848. border:none;
  7849. border-radius:0px;
  7850. -moz-box-shadow:none;
  7851. -webkit-box-shadow:none;
  7852. box-shadow:none;
  7853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7854. font-weight:400;
  7855. font-style:normal;
  7856. font-size:14px;
  7857. }
  7858. #u13742.disabled {
  7859. }
  7860. #u13743_div {
  7861. border-width:0px;
  7862. position:absolute;
  7863. left:0px;
  7864. top:0px;
  7865. width:81px;
  7866. height:40px;
  7867. background:inherit;
  7868. background-color:rgba(255, 255, 255, 0);
  7869. border:none;
  7870. border-top:0px;
  7871. border-right:0px;
  7872. border-bottom:0px;
  7873. border-radius:0px;
  7874. border-top-left-radius:0px;
  7875. border-bottom-left-radius:0px;
  7876. -moz-box-shadow:none;
  7877. -webkit-box-shadow:none;
  7878. box-shadow:none;
  7879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7880. font-weight:400;
  7881. font-style:normal;
  7882. font-size:14px;
  7883. text-align:right;
  7884. }
  7885. #u13743 {
  7886. border-width:0px;
  7887. position:absolute;
  7888. left:430px;
  7889. top:909px;
  7890. width:81px;
  7891. height:40px;
  7892. display:flex;
  7893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7894. font-weight:400;
  7895. font-style:normal;
  7896. font-size:14px;
  7897. text-align:right;
  7898. }
  7899. #u13743 .text {
  7900. position:absolute;
  7901. align-self:center;
  7902. padding:5px 10px 5px 0px;
  7903. box-sizing:border-box;
  7904. width:100%;
  7905. }
  7906. #u13743_text {
  7907. border-width:0px;
  7908. white-space:nowrap;
  7909. text-transform:none;
  7910. }
  7911. #u13744_div {
  7912. border-width:0px;
  7913. position:absolute;
  7914. left:0px;
  7915. top:0px;
  7916. width:80px;
  7917. height:80px;
  7918. background:inherit;
  7919. background-color:rgba(255, 255, 255, 1);
  7920. box-sizing:border-box;
  7921. border-width:1px;
  7922. border-style:solid;
  7923. border-color:rgba(201, 201, 201, 1);
  7924. border-radius:4px;
  7925. -moz-box-shadow:none;
  7926. -webkit-box-shadow:none;
  7927. box-shadow:none;
  7928. font-family:'Helvetica', sans-serif;
  7929. font-weight:400;
  7930. font-style:normal;
  7931. font-size:28px;
  7932. }
  7933. #u13744 {
  7934. border-width:0px;
  7935. position:absolute;
  7936. left:521px;
  7937. top:909px;
  7938. width:80px;
  7939. height:80px;
  7940. display:flex;
  7941. font-family:'Helvetica', sans-serif;
  7942. font-weight:400;
  7943. font-style:normal;
  7944. font-size:28px;
  7945. }
  7946. #u13744 .text {
  7947. position:absolute;
  7948. align-self:center;
  7949. padding:0px 0px 0px 0px;
  7950. box-sizing:border-box;
  7951. width:100%;
  7952. }
  7953. #u13744_text {
  7954. border-width:0px;
  7955. word-wrap:break-word;
  7956. text-transform:none;
  7957. }
  7958. #u13745_div {
  7959. border-width:0px;
  7960. position:absolute;
  7961. left:0px;
  7962. top:0px;
  7963. width:626px;
  7964. height:40px;
  7965. background:inherit;
  7966. background-color:rgba(255, 255, 255, 0);
  7967. border:none;
  7968. border-top:0px;
  7969. border-right:0px;
  7970. border-bottom:0px;
  7971. border-radius:0px;
  7972. border-top-left-radius:0px;
  7973. border-bottom-left-radius:0px;
  7974. -moz-box-shadow:none;
  7975. -webkit-box-shadow:none;
  7976. box-shadow:none;
  7977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7978. font-weight:400;
  7979. font-style:normal;
  7980. font-size:14px;
  7981. color:#D9001B;
  7982. }
  7983. #u13745 {
  7984. border-width:0px;
  7985. position:absolute;
  7986. left:360px;
  7987. top:631px;
  7988. width:626px;
  7989. height:40px;
  7990. display:flex;
  7991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7992. font-weight:400;
  7993. font-style:normal;
  7994. font-size:14px;
  7995. color:#D9001B;
  7996. }
  7997. #u13745 .text {
  7998. position:absolute;
  7999. align-self:center;
  8000. padding:5px 10px 5px 0px;
  8001. box-sizing:border-box;
  8002. width:100%;
  8003. }
  8004. #u13745_text {
  8005. border-width:0px;
  8006. white-space:nowrap;
  8007. text-transform:none;
  8008. }
  8009. #u13746 {
  8010. border-width:0px;
  8011. position:absolute;
  8012. left:0px;
  8013. top:0px;
  8014. width:0px;
  8015. height:0px;
  8016. }
  8017. #u13747_div {
  8018. border-width:0px;
  8019. position:absolute;
  8020. left:0px;
  8021. top:0px;
  8022. width:600px;
  8023. height:233px;
  8024. background:inherit;
  8025. background-color:rgba(255, 255, 255, 1);
  8026. box-sizing:border-box;
  8027. border-width:1px;
  8028. border-style:solid;
  8029. border-color:rgba(215, 215, 215, 1);
  8030. border-radius:0px;
  8031. -moz-box-shadow:none;
  8032. -webkit-box-shadow:none;
  8033. box-shadow:none;
  8034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8035. font-weight:400;
  8036. font-style:normal;
  8037. font-size:14px;
  8038. color:#AAAAAA;
  8039. text-align:center;
  8040. line-height:30px;
  8041. }
  8042. #u13747 {
  8043. border-width:0px;
  8044. position:absolute;
  8045. left:999px;
  8046. top:704px;
  8047. width:600px;
  8048. height:233px;
  8049. display:flex;
  8050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8051. font-weight:400;
  8052. font-style:normal;
  8053. font-size:14px;
  8054. color:#AAAAAA;
  8055. text-align:center;
  8056. line-height:30px;
  8057. }
  8058. #u13747 .text {
  8059. position:absolute;
  8060. align-self:center;
  8061. padding:5px 10px 5px 10px;
  8062. box-sizing:border-box;
  8063. width:100%;
  8064. }
  8065. #u13747_text {
  8066. border-width:0px;
  8067. word-wrap:break-word;
  8068. text-transform:none;
  8069. visibility:hidden;
  8070. }
  8071. #u13748_div {
  8072. border-width:0px;
  8073. position:absolute;
  8074. left:0px;
  8075. top:0px;
  8076. width:47px;
  8077. height:35px;
  8078. background:inherit;
  8079. background-color:rgba(255, 255, 255, 0);
  8080. border:none;
  8081. border-top:0px;
  8082. border-right:0px;
  8083. border-bottom:0px;
  8084. border-radius:0px;
  8085. border-top-left-radius:0px;
  8086. border-bottom-left-radius:0px;
  8087. -moz-box-shadow:none;
  8088. -webkit-box-shadow:none;
  8089. box-shadow:none;
  8090. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8091. font-weight:500;
  8092. font-style:normal;
  8093. font-size:18px;
  8094. }
  8095. #u13748 {
  8096. border-width:0px;
  8097. position:absolute;
  8098. left:1019px;
  8099. top:722px;
  8100. width:47px;
  8101. height:35px;
  8102. display:flex;
  8103. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8104. font-weight:500;
  8105. font-style:normal;
  8106. font-size:18px;
  8107. }
  8108. #u13748 .text {
  8109. position:absolute;
  8110. align-self:center;
  8111. padding:5px 10px 5px 0px;
  8112. box-sizing:border-box;
  8113. width:100%;
  8114. }
  8115. #u13748_text {
  8116. border-width:0px;
  8117. white-space:nowrap;
  8118. text-transform:none;
  8119. }
  8120. #u13749 {
  8121. border-width:0px;
  8122. position:absolute;
  8123. left:0px;
  8124. top:0px;
  8125. width:0px;
  8126. height:0px;
  8127. }
  8128. #u13750_div {
  8129. border-width:0px;
  8130. position:absolute;
  8131. left:0px;
  8132. top:0px;
  8133. width:600px;
  8134. height:60px;
  8135. background:inherit;
  8136. background-color:rgba(255, 255, 255, 1);
  8137. box-sizing:border-box;
  8138. border-width:1px;
  8139. border-style:solid;
  8140. border-color:rgba(215, 215, 215, 1);
  8141. border-radius:0px;
  8142. -moz-box-shadow:none;
  8143. -webkit-box-shadow:none;
  8144. box-shadow:none;
  8145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8146. font-weight:400;
  8147. font-style:normal;
  8148. font-size:14px;
  8149. color:#AAAAAA;
  8150. text-align:center;
  8151. line-height:30px;
  8152. }
  8153. #u13750 {
  8154. border-width:0px;
  8155. position:absolute;
  8156. left:999px;
  8157. top:877px;
  8158. width:600px;
  8159. height:60px;
  8160. display:flex;
  8161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8162. font-weight:400;
  8163. font-style:normal;
  8164. font-size:14px;
  8165. color:#AAAAAA;
  8166. text-align:center;
  8167. line-height:30px;
  8168. }
  8169. #u13750 .text {
  8170. position:absolute;
  8171. align-self:center;
  8172. padding:5px 10px 5px 10px;
  8173. box-sizing:border-box;
  8174. width:100%;
  8175. }
  8176. #u13750_text {
  8177. border-width:0px;
  8178. word-wrap:break-word;
  8179. text-transform:none;
  8180. visibility:hidden;
  8181. }
  8182. #u13751_div {
  8183. border-width:0px;
  8184. position:absolute;
  8185. left:0px;
  8186. top:0px;
  8187. width:80px;
  8188. height:30px;
  8189. background:inherit;
  8190. background-color:rgba(24, 144, 255, 1);
  8191. border:none;
  8192. border-radius:4px;
  8193. -moz-box-shadow:none;
  8194. -webkit-box-shadow:none;
  8195. box-shadow:none;
  8196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8197. font-weight:400;
  8198. font-style:normal;
  8199. font-size:14px;
  8200. color:#FFFFFF;
  8201. }
  8202. #u13751 {
  8203. border-width:0px;
  8204. position:absolute;
  8205. left:1479px;
  8206. top:892px;
  8207. width:80px;
  8208. height:30px;
  8209. display:flex;
  8210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8211. font-weight:400;
  8212. font-style:normal;
  8213. font-size:14px;
  8214. color:#FFFFFF;
  8215. }
  8216. #u13751 .text {
  8217. position:absolute;
  8218. align-self:center;
  8219. padding:2px 2px 2px 2px;
  8220. box-sizing:border-box;
  8221. width:100%;
  8222. }
  8223. #u13751_text {
  8224. border-width:0px;
  8225. word-wrap:break-word;
  8226. text-transform:none;
  8227. }
  8228. #u13752_div {
  8229. border-width:0px;
  8230. position:absolute;
  8231. left:0px;
  8232. top:0px;
  8233. width:79px;
  8234. height:30px;
  8235. background:inherit;
  8236. background-color:rgba(255, 255, 255, 1);
  8237. box-sizing:border-box;
  8238. border-width:1px;
  8239. border-style:solid;
  8240. border-color:rgba(170, 170, 170, 1);
  8241. border-radius:4px;
  8242. -moz-box-shadow:none;
  8243. -webkit-box-shadow:none;
  8244. box-shadow:none;
  8245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8246. font-weight:400;
  8247. font-style:normal;
  8248. font-size:14px;
  8249. }
  8250. #u13752 {
  8251. border-width:0px;
  8252. position:absolute;
  8253. left:1380px;
  8254. top:892px;
  8255. width:79px;
  8256. height:30px;
  8257. display:flex;
  8258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8259. font-weight:400;
  8260. font-style:normal;
  8261. font-size:14px;
  8262. }
  8263. #u13752 .text {
  8264. position:absolute;
  8265. align-self:center;
  8266. padding:2px 2px 2px 2px;
  8267. box-sizing:border-box;
  8268. width:100%;
  8269. }
  8270. #u13752_text {
  8271. border-width:0px;
  8272. word-wrap:break-word;
  8273. text-transform:none;
  8274. }
  8275. #u13753 {
  8276. border-width:0px;
  8277. position:absolute;
  8278. left:0px;
  8279. top:0px;
  8280. width:0px;
  8281. height:0px;
  8282. }
  8283. #u13754_div {
  8284. border-width:0px;
  8285. position:absolute;
  8286. left:0px;
  8287. top:0px;
  8288. width:407px;
  8289. height:40px;
  8290. background:inherit;
  8291. background-color:rgba(255, 255, 255, 1);
  8292. box-sizing:border-box;
  8293. border-width:1px;
  8294. border-style:solid;
  8295. border-color:rgba(215, 215, 215, 1);
  8296. border-radius:4px;
  8297. -moz-box-shadow:none;
  8298. -webkit-box-shadow:none;
  8299. box-shadow:none;
  8300. font-size:14px;
  8301. }
  8302. #u13754 {
  8303. border-width:0px;
  8304. position:absolute;
  8305. left:1152px;
  8306. top:781px;
  8307. width:407px;
  8308. height:40px;
  8309. display:flex;
  8310. font-size:14px;
  8311. }
  8312. #u13754 .text {
  8313. position:absolute;
  8314. align-self:center;
  8315. padding:2px 2px 2px 2px;
  8316. box-sizing:border-box;
  8317. width:100%;
  8318. }
  8319. #u13754_text {
  8320. border-width:0px;
  8321. word-wrap:break-word;
  8322. text-transform:none;
  8323. visibility:hidden;
  8324. }
  8325. #u13755_input {
  8326. position:absolute;
  8327. left:0px;
  8328. top:0px;
  8329. width:390px;
  8330. height:31px;
  8331. padding:2px 2px 2px 2px;
  8332. font-family:'ArialMT', 'Arial', sans-serif;
  8333. font-weight:400;
  8334. font-style:normal;
  8335. font-size:14px;
  8336. letter-spacing:normal;
  8337. color:#AAAAAA;
  8338. vertical-align:none;
  8339. text-align:left;
  8340. text-transform:none;
  8341. background-color:transparent;
  8342. border-color:transparent;
  8343. }
  8344. #u13755_input.disabled {
  8345. position:absolute;
  8346. left:0px;
  8347. top:0px;
  8348. width:390px;
  8349. height:31px;
  8350. padding:2px 2px 2px 2px;
  8351. font-family:'ArialMT', 'Arial', sans-serif;
  8352. font-weight:400;
  8353. font-style:normal;
  8354. font-size:14px;
  8355. letter-spacing:normal;
  8356. color:#AAAAAA;
  8357. vertical-align:none;
  8358. text-align:left;
  8359. text-transform:none;
  8360. background-color:transparent;
  8361. border-color:transparent;
  8362. }
  8363. #u13755_div {
  8364. border-width:0px;
  8365. position:absolute;
  8366. left:0px;
  8367. top:0px;
  8368. width:390px;
  8369. height:31px;
  8370. background:inherit;
  8371. background-color:rgba(255, 255, 255, 1);
  8372. border:none;
  8373. border-radius:0px;
  8374. -moz-box-shadow:none;
  8375. -webkit-box-shadow:none;
  8376. box-shadow:none;
  8377. font-size:14px;
  8378. color:#AAAAAA;
  8379. }
  8380. #u13755 {
  8381. border-width:0px;
  8382. position:absolute;
  8383. left:1164px;
  8384. top:784px;
  8385. width:390px;
  8386. height:31px;
  8387. display:flex;
  8388. font-size:14px;
  8389. color:#AAAAAA;
  8390. }
  8391. #u13755 .text {
  8392. position:absolute;
  8393. align-self:flex-start;
  8394. padding:2px 2px 2px 2px;
  8395. box-sizing:border-box;
  8396. width:100%;
  8397. }
  8398. #u13755_div.disabled {
  8399. border-width:0px;
  8400. position:absolute;
  8401. left:0px;
  8402. top:0px;
  8403. width:390px;
  8404. height:31px;
  8405. background:inherit;
  8406. background-color:rgba(240, 240, 240, 1);
  8407. border:none;
  8408. border-radius:0px;
  8409. -moz-box-shadow:none;
  8410. -webkit-box-shadow:none;
  8411. box-shadow:none;
  8412. font-size:14px;
  8413. color:#AAAAAA;
  8414. }
  8415. #u13755.disabled {
  8416. }
  8417. .u13755_input_option {
  8418. font-size:14px;
  8419. }
  8420. #u13756_div {
  8421. border-width:0px;
  8422. position:absolute;
  8423. left:0px;
  8424. top:0px;
  8425. width:116px;
  8426. height:40px;
  8427. background:inherit;
  8428. background-color:rgba(255, 255, 255, 0);
  8429. border:none;
  8430. border-top:0px;
  8431. border-right:0px;
  8432. border-bottom:0px;
  8433. border-radius:0px;
  8434. border-top-left-radius:0px;
  8435. border-bottom-left-radius:0px;
  8436. -moz-box-shadow:none;
  8437. -webkit-box-shadow:none;
  8438. box-shadow:none;
  8439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8440. font-weight:400;
  8441. font-style:normal;
  8442. font-size:14px;
  8443. }
  8444. #u13756 {
  8445. border-width:0px;
  8446. position:absolute;
  8447. left:1043px;
  8448. top:781px;
  8449. width:116px;
  8450. height:40px;
  8451. display:flex;
  8452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8453. font-weight:400;
  8454. font-style:normal;
  8455. font-size:14px;
  8456. }
  8457. #u13756 .text {
  8458. position:absolute;
  8459. align-self:center;
  8460. padding:5px 10px 5px 0px;
  8461. box-sizing:border-box;
  8462. width:100%;
  8463. }
  8464. #u13756_text {
  8465. border-width:0px;
  8466. white-space:nowrap;
  8467. text-transform:none;
  8468. }
  8469. #u13757_div {
  8470. border-width:0px;
  8471. position:absolute;
  8472. left:0px;
  8473. top:0px;
  8474. width:60px;
  8475. height:30px;
  8476. background:inherit;
  8477. background-color:rgba(24, 144, 255, 1);
  8478. border:none;
  8479. border-radius:4px;
  8480. -moz-box-shadow:none;
  8481. -webkit-box-shadow:none;
  8482. box-shadow:none;
  8483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8484. font-weight:400;
  8485. font-style:normal;
  8486. font-size:14px;
  8487. color:#FFFFFF;
  8488. }
  8489. #u13757 {
  8490. border-width:0px;
  8491. position:absolute;
  8492. left:350px;
  8493. top:225px;
  8494. width:60px;
  8495. height:30px;
  8496. display:flex;
  8497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8498. font-weight:400;
  8499. font-style:normal;
  8500. font-size:14px;
  8501. color:#FFFFFF;
  8502. }
  8503. #u13757 .text {
  8504. position:absolute;
  8505. align-self:center;
  8506. padding:2px 2px 2px 2px;
  8507. box-sizing:border-box;
  8508. width:100%;
  8509. }
  8510. #u13757_text {
  8511. border-width:0px;
  8512. word-wrap:break-word;
  8513. text-transform:none;
  8514. }
  8515. #u13758 {
  8516. border-width:0px;
  8517. position:absolute;
  8518. left:0px;
  8519. top:0px;
  8520. width:0px;
  8521. height:0px;
  8522. }
  8523. #u13759_div {
  8524. border-width:0px;
  8525. position:absolute;
  8526. left:0px;
  8527. top:0px;
  8528. width:600px;
  8529. height:357px;
  8530. background:inherit;
  8531. background-color:rgba(255, 255, 255, 1);
  8532. box-sizing:border-box;
  8533. border-width:1px;
  8534. border-style:solid;
  8535. border-color:rgba(215, 215, 215, 1);
  8536. border-radius:0px;
  8537. -moz-box-shadow:none;
  8538. -webkit-box-shadow:none;
  8539. box-shadow:none;
  8540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8541. font-weight:400;
  8542. font-style:normal;
  8543. font-size:14px;
  8544. color:#AAAAAA;
  8545. text-align:center;
  8546. line-height:30px;
  8547. }
  8548. #u13759 {
  8549. border-width:0px;
  8550. position:absolute;
  8551. left:999px;
  8552. top:966px;
  8553. width:600px;
  8554. height:357px;
  8555. display:flex;
  8556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8557. font-weight:400;
  8558. font-style:normal;
  8559. font-size:14px;
  8560. color:#AAAAAA;
  8561. text-align:center;
  8562. line-height:30px;
  8563. }
  8564. #u13759 .text {
  8565. position:absolute;
  8566. align-self:center;
  8567. padding:5px 10px 5px 10px;
  8568. box-sizing:border-box;
  8569. width:100%;
  8570. }
  8571. #u13759_text {
  8572. border-width:0px;
  8573. word-wrap:break-word;
  8574. text-transform:none;
  8575. visibility:hidden;
  8576. }
  8577. #u13760_div {
  8578. border-width:0px;
  8579. position:absolute;
  8580. left:0px;
  8581. top:0px;
  8582. width:47px;
  8583. height:35px;
  8584. background:inherit;
  8585. background-color:rgba(255, 255, 255, 0);
  8586. border:none;
  8587. border-top:0px;
  8588. border-right:0px;
  8589. border-bottom:0px;
  8590. border-radius:0px;
  8591. border-top-left-radius:0px;
  8592. border-bottom-left-radius:0px;
  8593. -moz-box-shadow:none;
  8594. -webkit-box-shadow:none;
  8595. box-shadow:none;
  8596. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8597. font-weight:500;
  8598. font-style:normal;
  8599. font-size:18px;
  8600. }
  8601. #u13760 {
  8602. border-width:0px;
  8603. position:absolute;
  8604. left:1019px;
  8605. top:984px;
  8606. width:47px;
  8607. height:35px;
  8608. display:flex;
  8609. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8610. font-weight:500;
  8611. font-style:normal;
  8612. font-size:18px;
  8613. }
  8614. #u13760 .text {
  8615. position:absolute;
  8616. align-self:center;
  8617. padding:5px 10px 5px 0px;
  8618. box-sizing:border-box;
  8619. width:100%;
  8620. }
  8621. #u13760_text {
  8622. border-width:0px;
  8623. white-space:nowrap;
  8624. text-transform:none;
  8625. }
  8626. #u13761 {
  8627. border-width:0px;
  8628. position:absolute;
  8629. left:0px;
  8630. top:0px;
  8631. width:0px;
  8632. height:0px;
  8633. }
  8634. #u13762_div {
  8635. border-width:0px;
  8636. position:absolute;
  8637. left:0px;
  8638. top:0px;
  8639. width:600px;
  8640. height:60px;
  8641. background:inherit;
  8642. background-color:rgba(255, 255, 255, 1);
  8643. box-sizing:border-box;
  8644. border-width:1px;
  8645. border-style:solid;
  8646. border-color:rgba(215, 215, 215, 1);
  8647. border-radius:0px;
  8648. -moz-box-shadow:none;
  8649. -webkit-box-shadow:none;
  8650. box-shadow:none;
  8651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8652. font-weight:400;
  8653. font-style:normal;
  8654. font-size:14px;
  8655. color:#AAAAAA;
  8656. text-align:center;
  8657. line-height:30px;
  8658. }
  8659. #u13762 {
  8660. border-width:0px;
  8661. position:absolute;
  8662. left:999px;
  8663. top:1263px;
  8664. width:600px;
  8665. height:60px;
  8666. display:flex;
  8667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8668. font-weight:400;
  8669. font-style:normal;
  8670. font-size:14px;
  8671. color:#AAAAAA;
  8672. text-align:center;
  8673. line-height:30px;
  8674. }
  8675. #u13762 .text {
  8676. position:absolute;
  8677. align-self:center;
  8678. padding:5px 10px 5px 10px;
  8679. box-sizing:border-box;
  8680. width:100%;
  8681. }
  8682. #u13762_text {
  8683. border-width:0px;
  8684. word-wrap:break-word;
  8685. text-transform:none;
  8686. visibility:hidden;
  8687. }
  8688. #u13763_div {
  8689. border-width:0px;
  8690. position:absolute;
  8691. left:0px;
  8692. top:0px;
  8693. width:80px;
  8694. height:30px;
  8695. background:inherit;
  8696. background-color:rgba(24, 144, 255, 1);
  8697. border:none;
  8698. border-radius:4px;
  8699. -moz-box-shadow:none;
  8700. -webkit-box-shadow:none;
  8701. box-shadow:none;
  8702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8703. font-weight:400;
  8704. font-style:normal;
  8705. font-size:14px;
  8706. color:#FFFFFF;
  8707. }
  8708. #u13763 {
  8709. border-width:0px;
  8710. position:absolute;
  8711. left:1479px;
  8712. top:1278px;
  8713. width:80px;
  8714. height:30px;
  8715. display:flex;
  8716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8717. font-weight:400;
  8718. font-style:normal;
  8719. font-size:14px;
  8720. color:#FFFFFF;
  8721. }
  8722. #u13763 .text {
  8723. position:absolute;
  8724. align-self:center;
  8725. padding:2px 2px 2px 2px;
  8726. box-sizing:border-box;
  8727. width:100%;
  8728. }
  8729. #u13763_text {
  8730. border-width:0px;
  8731. word-wrap:break-word;
  8732. text-transform:none;
  8733. }
  8734. #u13764_div {
  8735. border-width:0px;
  8736. position:absolute;
  8737. left:0px;
  8738. top:0px;
  8739. width:79px;
  8740. height:30px;
  8741. background:inherit;
  8742. background-color:rgba(255, 255, 255, 1);
  8743. box-sizing:border-box;
  8744. border-width:1px;
  8745. border-style:solid;
  8746. border-color:rgba(170, 170, 170, 1);
  8747. border-radius:4px;
  8748. -moz-box-shadow:none;
  8749. -webkit-box-shadow:none;
  8750. box-shadow:none;
  8751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8752. font-weight:400;
  8753. font-style:normal;
  8754. font-size:14px;
  8755. }
  8756. #u13764 {
  8757. border-width:0px;
  8758. position:absolute;
  8759. left:1380px;
  8760. top:1278px;
  8761. width:79px;
  8762. height:30px;
  8763. display:flex;
  8764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8765. font-weight:400;
  8766. font-style:normal;
  8767. font-size:14px;
  8768. }
  8769. #u13764 .text {
  8770. position:absolute;
  8771. align-self:center;
  8772. padding:2px 2px 2px 2px;
  8773. box-sizing:border-box;
  8774. width:100%;
  8775. }
  8776. #u13764_text {
  8777. border-width:0px;
  8778. word-wrap:break-word;
  8779. text-transform:none;
  8780. }
  8781. #u13765 {
  8782. border-width:0px;
  8783. position:absolute;
  8784. left:0px;
  8785. top:0px;
  8786. width:0px;
  8787. height:0px;
  8788. }
  8789. #u13766_div {
  8790. border-width:0px;
  8791. position:absolute;
  8792. left:0px;
  8793. top:0px;
  8794. width:407px;
  8795. height:40px;
  8796. background:inherit;
  8797. background-color:rgba(242, 242, 242, 1);
  8798. box-sizing:border-box;
  8799. border-width:1px;
  8800. border-style:solid;
  8801. border-color:rgba(215, 215, 215, 1);
  8802. border-radius:4px;
  8803. -moz-box-shadow:none;
  8804. -webkit-box-shadow:none;
  8805. box-shadow:none;
  8806. font-size:14px;
  8807. }
  8808. #u13766 {
  8809. border-width:0px;
  8810. position:absolute;
  8811. left:1152px;
  8812. top:1083px;
  8813. width:407px;
  8814. height:40px;
  8815. display:flex;
  8816. font-size:14px;
  8817. }
  8818. #u13766 .text {
  8819. position:absolute;
  8820. align-self:center;
  8821. padding:2px 2px 2px 2px;
  8822. box-sizing:border-box;
  8823. width:100%;
  8824. }
  8825. #u13766_text {
  8826. border-width:0px;
  8827. word-wrap:break-word;
  8828. text-transform:none;
  8829. visibility:hidden;
  8830. }
  8831. #u13767_input {
  8832. position:absolute;
  8833. left:0px;
  8834. top:0px;
  8835. width:390px;
  8836. height:31px;
  8837. padding:2px 2px 2px 2px;
  8838. font-family:'ArialMT', 'Arial', sans-serif;
  8839. font-weight:400;
  8840. font-style:normal;
  8841. font-size:14px;
  8842. letter-spacing:normal;
  8843. color:#AAAAAA;
  8844. vertical-align:none;
  8845. text-align:left;
  8846. text-transform:none;
  8847. background-color:transparent;
  8848. border-color:transparent;
  8849. }
  8850. #u13767_input.disabled {
  8851. position:absolute;
  8852. left:0px;
  8853. top:0px;
  8854. width:390px;
  8855. height:31px;
  8856. padding:2px 2px 2px 2px;
  8857. font-family:'ArialMT', 'Arial', sans-serif;
  8858. font-weight:400;
  8859. font-style:normal;
  8860. font-size:14px;
  8861. letter-spacing:normal;
  8862. color:#AAAAAA;
  8863. vertical-align:none;
  8864. text-align:left;
  8865. text-transform:none;
  8866. background-color:transparent;
  8867. border-color:transparent;
  8868. }
  8869. #u13767_div {
  8870. border-width:0px;
  8871. position:absolute;
  8872. left:0px;
  8873. top:0px;
  8874. width:390px;
  8875. height:31px;
  8876. background:inherit;
  8877. background-color:rgba(242, 242, 242, 1);
  8878. border:none;
  8879. border-radius:0px;
  8880. -moz-box-shadow:none;
  8881. -webkit-box-shadow:none;
  8882. box-shadow:none;
  8883. font-size:14px;
  8884. color:#AAAAAA;
  8885. }
  8886. #u13767 {
  8887. border-width:0px;
  8888. position:absolute;
  8889. left:1164px;
  8890. top:1086px;
  8891. width:390px;
  8892. height:31px;
  8893. display:flex;
  8894. font-size:14px;
  8895. color:#AAAAAA;
  8896. }
  8897. #u13767 .text {
  8898. position:absolute;
  8899. align-self:flex-start;
  8900. padding:2px 2px 2px 2px;
  8901. box-sizing:border-box;
  8902. width:100%;
  8903. }
  8904. #u13767_div.disabled {
  8905. border-width:0px;
  8906. position:absolute;
  8907. left:0px;
  8908. top:0px;
  8909. width:390px;
  8910. height:31px;
  8911. background:inherit;
  8912. background-color:rgba(240, 240, 240, 1);
  8913. border:none;
  8914. border-radius:0px;
  8915. -moz-box-shadow:none;
  8916. -webkit-box-shadow:none;
  8917. box-shadow:none;
  8918. font-size:14px;
  8919. color:#AAAAAA;
  8920. }
  8921. #u13767.disabled {
  8922. }
  8923. .u13767_input_option {
  8924. font-size:14px;
  8925. }
  8926. #u13768_div {
  8927. border-width:0px;
  8928. position:absolute;
  8929. left:0px;
  8930. top:0px;
  8931. width:109px;
  8932. height:40px;
  8933. background:inherit;
  8934. background-color:rgba(255, 255, 255, 0);
  8935. border:none;
  8936. border-top:0px;
  8937. border-right:0px;
  8938. border-bottom:0px;
  8939. border-radius:0px;
  8940. border-top-left-radius:0px;
  8941. border-bottom-left-radius:0px;
  8942. -moz-box-shadow:none;
  8943. -webkit-box-shadow:none;
  8944. box-shadow:none;
  8945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8946. font-weight:400;
  8947. font-style:normal;
  8948. font-size:14px;
  8949. }
  8950. #u13768 {
  8951. border-width:0px;
  8952. position:absolute;
  8953. left:1043px;
  8954. top:1083px;
  8955. width:109px;
  8956. height:40px;
  8957. display:flex;
  8958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8959. font-weight:400;
  8960. font-style:normal;
  8961. font-size:14px;
  8962. }
  8963. #u13768 .text {
  8964. position:absolute;
  8965. align-self:center;
  8966. padding:5px 10px 5px 0px;
  8967. box-sizing:border-box;
  8968. width:100%;
  8969. }
  8970. #u13768_text {
  8971. border-width:0px;
  8972. white-space:nowrap;
  8973. text-transform:none;
  8974. }
  8975. #u13769 {
  8976. border-width:0px;
  8977. position:absolute;
  8978. left:0px;
  8979. top:0px;
  8980. width:0px;
  8981. height:0px;
  8982. }
  8983. #u13770_div {
  8984. border-width:0px;
  8985. position:absolute;
  8986. left:0px;
  8987. top:0px;
  8988. width:407px;
  8989. height:40px;
  8990. background:inherit;
  8991. background-color:rgba(255, 255, 255, 1);
  8992. box-sizing:border-box;
  8993. border-width:1px;
  8994. border-style:solid;
  8995. border-color:rgba(215, 215, 215, 1);
  8996. border-radius:4px;
  8997. -moz-box-shadow:none;
  8998. -webkit-box-shadow:none;
  8999. box-shadow:none;
  9000. font-size:14px;
  9001. }
  9002. #u13770 {
  9003. border-width:0px;
  9004. position:absolute;
  9005. left:1152px;
  9006. top:1133px;
  9007. width:407px;
  9008. height:40px;
  9009. display:flex;
  9010. font-size:14px;
  9011. }
  9012. #u13770 .text {
  9013. position:absolute;
  9014. align-self:center;
  9015. padding:2px 2px 2px 2px;
  9016. box-sizing:border-box;
  9017. width:100%;
  9018. }
  9019. #u13770_text {
  9020. border-width:0px;
  9021. word-wrap:break-word;
  9022. text-transform:none;
  9023. visibility:hidden;
  9024. }
  9025. #u13771_input {
  9026. position:absolute;
  9027. left:0px;
  9028. top:0px;
  9029. width:390px;
  9030. height:31px;
  9031. padding:2px 2px 2px 2px;
  9032. font-family:'ArialMT', 'Arial', sans-serif;
  9033. font-weight:400;
  9034. font-style:normal;
  9035. font-size:14px;
  9036. letter-spacing:normal;
  9037. color:#AAAAAA;
  9038. vertical-align:none;
  9039. text-align:left;
  9040. text-transform:none;
  9041. background-color:transparent;
  9042. border-color:transparent;
  9043. }
  9044. #u13771_input.disabled {
  9045. position:absolute;
  9046. left:0px;
  9047. top:0px;
  9048. width:390px;
  9049. height:31px;
  9050. padding:2px 2px 2px 2px;
  9051. font-family:'ArialMT', 'Arial', sans-serif;
  9052. font-weight:400;
  9053. font-style:normal;
  9054. font-size:14px;
  9055. letter-spacing:normal;
  9056. color:#AAAAAA;
  9057. vertical-align:none;
  9058. text-align:left;
  9059. text-transform:none;
  9060. background-color:transparent;
  9061. border-color:transparent;
  9062. }
  9063. #u13771_div {
  9064. border-width:0px;
  9065. position:absolute;
  9066. left:0px;
  9067. top:0px;
  9068. width:390px;
  9069. height:31px;
  9070. background:inherit;
  9071. background-color:rgba(255, 255, 255, 1);
  9072. border:none;
  9073. border-radius:0px;
  9074. -moz-box-shadow:none;
  9075. -webkit-box-shadow:none;
  9076. box-shadow:none;
  9077. font-size:14px;
  9078. color:#AAAAAA;
  9079. }
  9080. #u13771 {
  9081. border-width:0px;
  9082. position:absolute;
  9083. left:1164px;
  9084. top:1136px;
  9085. width:390px;
  9086. height:31px;
  9087. display:flex;
  9088. font-size:14px;
  9089. color:#AAAAAA;
  9090. }
  9091. #u13771 .text {
  9092. position:absolute;
  9093. align-self:flex-start;
  9094. padding:2px 2px 2px 2px;
  9095. box-sizing:border-box;
  9096. width:100%;
  9097. }
  9098. #u13771_div.disabled {
  9099. border-width:0px;
  9100. position:absolute;
  9101. left:0px;
  9102. top:0px;
  9103. width:390px;
  9104. height:31px;
  9105. background:inherit;
  9106. background-color:rgba(240, 240, 240, 1);
  9107. border:none;
  9108. border-radius:0px;
  9109. -moz-box-shadow:none;
  9110. -webkit-box-shadow:none;
  9111. box-shadow:none;
  9112. font-size:14px;
  9113. color:#AAAAAA;
  9114. }
  9115. #u13771.disabled {
  9116. }
  9117. .u13771_input_option {
  9118. font-size:14px;
  9119. }
  9120. #u13772_div {
  9121. border-width:0px;
  9122. position:absolute;
  9123. left:0px;
  9124. top:0px;
  9125. width:74px;
  9126. height:40px;
  9127. background:inherit;
  9128. background-color:rgba(255, 255, 255, 0);
  9129. border:none;
  9130. border-top:0px;
  9131. border-right:0px;
  9132. border-bottom:0px;
  9133. border-radius:0px;
  9134. border-top-left-radius:0px;
  9135. border-bottom-left-radius:0px;
  9136. -moz-box-shadow:none;
  9137. -webkit-box-shadow:none;
  9138. box-shadow:none;
  9139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9140. font-weight:400;
  9141. font-style:normal;
  9142. font-size:14px;
  9143. }
  9144. #u13772 {
  9145. border-width:0px;
  9146. position:absolute;
  9147. left:1043px;
  9148. top:1133px;
  9149. width:74px;
  9150. height:40px;
  9151. display:flex;
  9152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9153. font-weight:400;
  9154. font-style:normal;
  9155. font-size:14px;
  9156. }
  9157. #u13772 .text {
  9158. position:absolute;
  9159. align-self:center;
  9160. padding:5px 10px 5px 0px;
  9161. box-sizing:border-box;
  9162. width:100%;
  9163. }
  9164. #u13772_text {
  9165. border-width:0px;
  9166. white-space:nowrap;
  9167. text-transform:none;
  9168. }
  9169. #u13773_div {
  9170. border-width:0px;
  9171. position:absolute;
  9172. left:0px;
  9173. top:0px;
  9174. width:81px;
  9175. height:40px;
  9176. background:inherit;
  9177. background-color:rgba(255, 255, 255, 0);
  9178. border:none;
  9179. border-top:0px;
  9180. border-right:0px;
  9181. border-bottom:0px;
  9182. border-radius:0px;
  9183. border-top-left-radius:0px;
  9184. border-bottom-left-radius:0px;
  9185. -moz-box-shadow:none;
  9186. -webkit-box-shadow:none;
  9187. box-shadow:none;
  9188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9189. font-weight:400;
  9190. font-style:normal;
  9191. font-size:14px;
  9192. text-align:right;
  9193. }
  9194. #u13773 {
  9195. border-width:0px;
  9196. position:absolute;
  9197. left:1043px;
  9198. top:1183px;
  9199. width:81px;
  9200. height:40px;
  9201. display:flex;
  9202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9203. font-weight:400;
  9204. font-style:normal;
  9205. font-size:14px;
  9206. text-align:right;
  9207. }
  9208. #u13773 .text {
  9209. position:absolute;
  9210. align-self:center;
  9211. padding:5px 10px 5px 0px;
  9212. box-sizing:border-box;
  9213. width:100%;
  9214. }
  9215. #u13773_text {
  9216. border-width:0px;
  9217. white-space:nowrap;
  9218. text-transform:none;
  9219. }
  9220. #u13774 {
  9221. border-width:0px;
  9222. position:absolute;
  9223. left:0px;
  9224. top:0px;
  9225. width:0px;
  9226. height:0px;
  9227. }
  9228. #u13775_div {
  9229. border-width:0px;
  9230. position:absolute;
  9231. left:0px;
  9232. top:0px;
  9233. width:406px;
  9234. height:80px;
  9235. background:inherit;
  9236. background-color:rgba(255, 255, 255, 1);
  9237. box-sizing:border-box;
  9238. border-width:1px;
  9239. border-style:solid;
  9240. border-color:rgba(201, 201, 201, 1);
  9241. border-radius:4px;
  9242. -moz-box-shadow:none;
  9243. -webkit-box-shadow:none;
  9244. box-shadow:none;
  9245. font-family:'Microsoft YaHei', sans-serif;
  9246. font-weight:400;
  9247. font-style:normal;
  9248. font-size:14px;
  9249. color:#CCCCCC;
  9250. text-align:left;
  9251. }
  9252. #u13775 {
  9253. border-width:0px;
  9254. position:absolute;
  9255. left:1153px;
  9256. top:1183px;
  9257. width:406px;
  9258. height:80px;
  9259. display:flex;
  9260. font-family:'Microsoft YaHei', sans-serif;
  9261. font-weight:400;
  9262. font-style:normal;
  9263. font-size:14px;
  9264. color:#CCCCCC;
  9265. text-align:left;
  9266. }
  9267. #u13775 .text {
  9268. position:absolute;
  9269. align-self:center;
  9270. padding:2px 8px 2px 8px;
  9271. box-sizing:border-box;
  9272. width:100%;
  9273. }
  9274. #u13775_text {
  9275. border-width:0px;
  9276. word-wrap:break-word;
  9277. text-transform:none;
  9278. visibility:hidden;
  9279. }
  9280. #u13776_input {
  9281. position:absolute;
  9282. left:0px;
  9283. top:0px;
  9284. width:386px;
  9285. height:38px;
  9286. padding:2px 2px 2px 2px;
  9287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9288. font-weight:400;
  9289. font-style:normal;
  9290. font-size:14px;
  9291. letter-spacing:normal;
  9292. color:#000000;
  9293. vertical-align:none;
  9294. text-align:left;
  9295. text-transform:none;
  9296. background-color:transparent;
  9297. border-color:transparent;
  9298. }
  9299. #u13776_input.disabled {
  9300. position:absolute;
  9301. left:0px;
  9302. top:0px;
  9303. width:386px;
  9304. height:38px;
  9305. padding:2px 2px 2px 2px;
  9306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9307. font-weight:400;
  9308. font-style:normal;
  9309. font-size:14px;
  9310. letter-spacing:normal;
  9311. color:#000000;
  9312. vertical-align:none;
  9313. text-align:left;
  9314. text-transform:none;
  9315. background-color:transparent;
  9316. border-color:transparent;
  9317. }
  9318. #u13776_div {
  9319. border-width:0px;
  9320. position:absolute;
  9321. left:0px;
  9322. top:0px;
  9323. width:386px;
  9324. height:38px;
  9325. background:inherit;
  9326. background-color:rgba(255, 255, 255, 1);
  9327. border:none;
  9328. border-radius:0px;
  9329. -moz-box-shadow:none;
  9330. -webkit-box-shadow:none;
  9331. box-shadow:none;
  9332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9333. font-weight:400;
  9334. font-style:normal;
  9335. font-size:14px;
  9336. }
  9337. #u13776 {
  9338. border-width:0px;
  9339. position:absolute;
  9340. left:1164px;
  9341. top:1184px;
  9342. width:386px;
  9343. height:38px;
  9344. display:flex;
  9345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9346. font-weight:400;
  9347. font-style:normal;
  9348. font-size:14px;
  9349. }
  9350. #u13776 .text {
  9351. position:absolute;
  9352. align-self:center;
  9353. padding:2px 2px 2px 2px;
  9354. box-sizing:border-box;
  9355. width:100%;
  9356. }
  9357. #u13776_div.disabled {
  9358. border-width:0px;
  9359. position:absolute;
  9360. left:0px;
  9361. top:0px;
  9362. width:386px;
  9363. height:38px;
  9364. background:inherit;
  9365. background-color:rgba(240, 240, 240, 1);
  9366. border:none;
  9367. border-radius:0px;
  9368. -moz-box-shadow:none;
  9369. -webkit-box-shadow:none;
  9370. box-shadow:none;
  9371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9372. font-weight:400;
  9373. font-style:normal;
  9374. font-size:14px;
  9375. }
  9376. #u13776.disabled {
  9377. }
  9378. #u13777_div {
  9379. border-width:0px;
  9380. position:absolute;
  9381. left:0px;
  9382. top:0px;
  9383. width:520px;
  9384. height:40px;
  9385. background:inherit;
  9386. background-color:rgba(2, 167, 240, 0.0980392156862745);
  9387. border:none;
  9388. border-radius:5px;
  9389. -moz-box-shadow:none;
  9390. -webkit-box-shadow:none;
  9391. box-shadow:none;
  9392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9393. font-weight:400;
  9394. font-style:normal;
  9395. font-size:14px;
  9396. line-height:22px;
  9397. }
  9398. #u13777 {
  9399. border-width:0px;
  9400. position:absolute;
  9401. left:1039px;
  9402. top:1029px;
  9403. width:520px;
  9404. height:40px;
  9405. display:flex;
  9406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9407. font-weight:400;
  9408. font-style:normal;
  9409. font-size:14px;
  9410. line-height:22px;
  9411. }
  9412. #u13777 .text {
  9413. position:absolute;
  9414. align-self:center;
  9415. padding:0px 0px 0px 10px;
  9416. box-sizing:border-box;
  9417. width:100%;
  9418. }
  9419. #u13777_text {
  9420. border-width:0px;
  9421. word-wrap:break-word;
  9422. text-transform:none;
  9423. }
  9424. #u13779 {
  9425. border-width:0px;
  9426. position:absolute;
  9427. left:0px;
  9428. top:0px;
  9429. width:0px;
  9430. height:0px;
  9431. }
  9432. #u13780_div {
  9433. border-width:0px;
  9434. position:absolute;
  9435. left:0px;
  9436. top:0px;
  9437. width:200px;
  9438. height:1180px;
  9439. background:inherit;
  9440. background-color:rgba(255, 255, 255, 1);
  9441. border:none;
  9442. border-radius:0px;
  9443. -moz-box-shadow:none;
  9444. -webkit-box-shadow:none;
  9445. box-shadow:none;
  9446. }
  9447. #u13780 {
  9448. border-width:0px;
  9449. position:absolute;
  9450. left:120px;
  9451. top:50px;
  9452. width:200px;
  9453. height:1180px;
  9454. display:flex;
  9455. }
  9456. #u13780 .text {
  9457. position:absolute;
  9458. align-self:center;
  9459. padding:2px 2px 2px 2px;
  9460. box-sizing:border-box;
  9461. width:100%;
  9462. }
  9463. #u13780_text {
  9464. border-width:0px;
  9465. word-wrap:break-word;
  9466. text-transform:none;
  9467. visibility:hidden;
  9468. }
  9469. #u13781_div {
  9470. border-width:0px;
  9471. position:absolute;
  9472. left:0px;
  9473. top:0px;
  9474. width:200px;
  9475. height:60px;
  9476. background:inherit;
  9477. background-color:rgba(224, 231, 247, 1);
  9478. border:none;
  9479. border-radius:0px;
  9480. -moz-box-shadow:none;
  9481. -webkit-box-shadow:none;
  9482. box-shadow:none;
  9483. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9484. font-weight:500;
  9485. font-style:normal;
  9486. font-size:18px;
  9487. }
  9488. #u13781 {
  9489. border-width:0px;
  9490. position:absolute;
  9491. left:120px;
  9492. top:50px;
  9493. width:200px;
  9494. height:60px;
  9495. display:flex;
  9496. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9497. font-weight:500;
  9498. font-style:normal;
  9499. font-size:18px;
  9500. }
  9501. #u13781 .text {
  9502. position:absolute;
  9503. align-self:center;
  9504. padding:0px 0px 0px 20px;
  9505. box-sizing:border-box;
  9506. width:100%;
  9507. }
  9508. #u13781_text {
  9509. border-width:0px;
  9510. word-wrap:break-word;
  9511. text-transform:none;
  9512. }
  9513. #u13782_div {
  9514. border-width:0px;
  9515. position:absolute;
  9516. left:0px;
  9517. top:0px;
  9518. width:65px;
  9519. height:22px;
  9520. background:inherit;
  9521. background-color:rgba(255, 255, 255, 0);
  9522. border:none;
  9523. border-radius:0px;
  9524. -moz-box-shadow:none;
  9525. -webkit-box-shadow:none;
  9526. box-shadow:none;
  9527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9528. font-weight:400;
  9529. font-style:normal;
  9530. font-size:16px;
  9531. }
  9532. #u13782 {
  9533. border-width:0px;
  9534. position:absolute;
  9535. left:147px;
  9536. top:242px;
  9537. width:65px;
  9538. height:22px;
  9539. display:flex;
  9540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9541. font-weight:400;
  9542. font-style:normal;
  9543. font-size:16px;
  9544. }
  9545. #u13782 .text {
  9546. position:absolute;
  9547. align-self:flex-start;
  9548. padding:0px 0px 0px 0px;
  9549. box-sizing:border-box;
  9550. width:100%;
  9551. }
  9552. #u13782_text {
  9553. border-width:0px;
  9554. white-space:nowrap;
  9555. text-transform:none;
  9556. }
  9557. #u13783_div {
  9558. border-width:0px;
  9559. position:absolute;
  9560. left:0px;
  9561. top:0px;
  9562. width:49px;
  9563. height:17px;
  9564. background:inherit;
  9565. background-color:rgba(255, 255, 255, 0);
  9566. border:none;
  9567. border-radius:0px;
  9568. -moz-box-shadow:none;
  9569. -webkit-box-shadow:none;
  9570. box-shadow:none;
  9571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9572. font-weight:400;
  9573. font-style:normal;
  9574. font-size:12px;
  9575. color:#AAAAAA;
  9576. }
  9577. #u13783 {
  9578. border-width:0px;
  9579. position:absolute;
  9580. left:147px;
  9581. top:122px;
  9582. width:49px;
  9583. height:17px;
  9584. display:flex;
  9585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9586. font-weight:400;
  9587. font-style:normal;
  9588. font-size:12px;
  9589. color:#AAAAAA;
  9590. }
  9591. #u13783 .text {
  9592. position:absolute;
  9593. align-self:flex-start;
  9594. padding:0px 0px 0px 0px;
  9595. box-sizing:border-box;
  9596. width:100%;
  9597. }
  9598. #u13783_text {
  9599. border-width:0px;
  9600. white-space:nowrap;
  9601. text-transform:none;
  9602. }
  9603. #u13784_div {
  9604. border-width:0px;
  9605. position:absolute;
  9606. left:0px;
  9607. top:0px;
  9608. width:65px;
  9609. height:22px;
  9610. background:inherit;
  9611. background-color:rgba(255, 255, 255, 0);
  9612. border:none;
  9613. border-radius:0px;
  9614. -moz-box-shadow:none;
  9615. -webkit-box-shadow:none;
  9616. box-shadow:none;
  9617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9618. font-weight:400;
  9619. font-style:normal;
  9620. font-size:16px;
  9621. }
  9622. #u13784 {
  9623. border-width:0px;
  9624. position:absolute;
  9625. left:147px;
  9626. top:200px;
  9627. width:65px;
  9628. height:22px;
  9629. display:flex;
  9630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9631. font-weight:400;
  9632. font-style:normal;
  9633. font-size:16px;
  9634. }
  9635. #u13784 .text {
  9636. position:absolute;
  9637. align-self:flex-start;
  9638. padding:0px 0px 0px 0px;
  9639. box-sizing:border-box;
  9640. width:100%;
  9641. }
  9642. #u13784_text {
  9643. border-width:0px;
  9644. white-space:nowrap;
  9645. text-transform:none;
  9646. }
  9647. #u13785_div {
  9648. border-width:0px;
  9649. position:absolute;
  9650. left:0px;
  9651. top:0px;
  9652. width:81px;
  9653. height:22px;
  9654. background:inherit;
  9655. background-color:rgba(255, 255, 255, 0);
  9656. border:none;
  9657. border-radius:0px;
  9658. -moz-box-shadow:none;
  9659. -webkit-box-shadow:none;
  9660. box-shadow:none;
  9661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9662. font-weight:400;
  9663. font-style:normal;
  9664. font-size:16px;
  9665. }
  9666. #u13785 {
  9667. border-width:0px;
  9668. position:absolute;
  9669. left:147px;
  9670. top:484px;
  9671. width:81px;
  9672. height:22px;
  9673. display:flex;
  9674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9675. font-weight:400;
  9676. font-style:normal;
  9677. font-size:16px;
  9678. }
  9679. #u13785 .text {
  9680. position:absolute;
  9681. align-self:flex-start;
  9682. padding:0px 0px 0px 0px;
  9683. box-sizing:border-box;
  9684. width:100%;
  9685. }
  9686. #u13785_text {
  9687. border-width:0px;
  9688. white-space:nowrap;
  9689. text-transform:none;
  9690. }
  9691. #u13786_img {
  9692. border-width:0px;
  9693. position:absolute;
  9694. left:0px;
  9695. top:0px;
  9696. width:201px;
  9697. height:2px;
  9698. }
  9699. #u13786 {
  9700. border-width:0px;
  9701. position:absolute;
  9702. left:120px;
  9703. top:427px;
  9704. width:200px;
  9705. height:1px;
  9706. display:flex;
  9707. }
  9708. #u13786 .text {
  9709. position:absolute;
  9710. align-self:center;
  9711. padding:2px 2px 2px 2px;
  9712. box-sizing:border-box;
  9713. width:100%;
  9714. }
  9715. #u13786_text {
  9716. border-width:0px;
  9717. word-wrap:break-word;
  9718. text-transform:none;
  9719. visibility:hidden;
  9720. }
  9721. #u13787_div {
  9722. border-width:0px;
  9723. position:absolute;
  9724. left:0px;
  9725. top:0px;
  9726. width:65px;
  9727. height:22px;
  9728. background:inherit;
  9729. background-color:rgba(255, 255, 255, 0);
  9730. border:none;
  9731. border-radius:0px;
  9732. -moz-box-shadow:none;
  9733. -webkit-box-shadow:none;
  9734. box-shadow:none;
  9735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9736. font-weight:400;
  9737. font-style:normal;
  9738. font-size:16px;
  9739. }
  9740. #u13787 {
  9741. border-width:0px;
  9742. position:absolute;
  9743. left:147px;
  9744. top:526px;
  9745. width:65px;
  9746. height:22px;
  9747. display:flex;
  9748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9749. font-weight:400;
  9750. font-style:normal;
  9751. font-size:16px;
  9752. }
  9753. #u13787 .text {
  9754. position:absolute;
  9755. align-self:flex-start;
  9756. padding:0px 0px 0px 0px;
  9757. box-sizing:border-box;
  9758. width:100%;
  9759. }
  9760. #u13787_text {
  9761. border-width:0px;
  9762. white-space:nowrap;
  9763. text-transform:none;
  9764. }
  9765. #u13788_div {
  9766. border-width:0px;
  9767. position:absolute;
  9768. left:0px;
  9769. top:0px;
  9770. width:49px;
  9771. height:17px;
  9772. background:inherit;
  9773. background-color:rgba(255, 255, 255, 0);
  9774. border:none;
  9775. border-radius:0px;
  9776. -moz-box-shadow:none;
  9777. -webkit-box-shadow:none;
  9778. box-shadow:none;
  9779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9780. font-weight:400;
  9781. font-style:normal;
  9782. font-size:12px;
  9783. color:#AAAAAA;
  9784. }
  9785. #u13788 {
  9786. border-width:0px;
  9787. position:absolute;
  9788. left:147px;
  9789. top:447px;
  9790. width:49px;
  9791. height:17px;
  9792. display:flex;
  9793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9794. font-weight:400;
  9795. font-style:normal;
  9796. font-size:12px;
  9797. color:#AAAAAA;
  9798. }
  9799. #u13788 .text {
  9800. position:absolute;
  9801. align-self:flex-start;
  9802. padding:0px 0px 0px 0px;
  9803. box-sizing:border-box;
  9804. width:100%;
  9805. }
  9806. #u13788_text {
  9807. border-width:0px;
  9808. white-space:nowrap;
  9809. text-transform:none;
  9810. }
  9811. #u13789_div {
  9812. border-width:0px;
  9813. position:absolute;
  9814. left:0px;
  9815. top:0px;
  9816. width:81px;
  9817. height:22px;
  9818. background:inherit;
  9819. background-color:rgba(255, 255, 255, 0);
  9820. border:none;
  9821. border-radius:0px;
  9822. -moz-box-shadow:none;
  9823. -webkit-box-shadow:none;
  9824. box-shadow:none;
  9825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9826. font-weight:400;
  9827. font-style:normal;
  9828. font-size:16px;
  9829. }
  9830. #u13789 {
  9831. border-width:0px;
  9832. position:absolute;
  9833. left:147px;
  9834. top:652px;
  9835. width:81px;
  9836. height:22px;
  9837. display:flex;
  9838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9839. font-weight:400;
  9840. font-style:normal;
  9841. font-size:16px;
  9842. }
  9843. #u13789 .text {
  9844. position:absolute;
  9845. align-self:flex-start;
  9846. padding:0px 0px 0px 0px;
  9847. box-sizing:border-box;
  9848. width:100%;
  9849. }
  9850. #u13789_text {
  9851. border-width:0px;
  9852. white-space:nowrap;
  9853. text-transform:none;
  9854. }
  9855. #u13790_div {
  9856. border-width:0px;
  9857. position:absolute;
  9858. left:0px;
  9859. top:0px;
  9860. width:65px;
  9861. height:22px;
  9862. background:inherit;
  9863. background-color:rgba(255, 255, 255, 0);
  9864. border:none;
  9865. border-radius:0px;
  9866. -moz-box-shadow:none;
  9867. -webkit-box-shadow:none;
  9868. box-shadow:none;
  9869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9870. font-weight:400;
  9871. font-style:normal;
  9872. font-size:16px;
  9873. }
  9874. #u13790 {
  9875. border-width:0px;
  9876. position:absolute;
  9877. left:147px;
  9878. top:568px;
  9879. width:65px;
  9880. height:22px;
  9881. display:flex;
  9882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9883. font-weight:400;
  9884. font-style:normal;
  9885. font-size:16px;
  9886. }
  9887. #u13790 .text {
  9888. position:absolute;
  9889. align-self:flex-start;
  9890. padding:0px 0px 0px 0px;
  9891. box-sizing:border-box;
  9892. width:100%;
  9893. }
  9894. #u13790_text {
  9895. border-width:0px;
  9896. white-space:nowrap;
  9897. text-transform:none;
  9898. }
  9899. #u13791_div {
  9900. border-width:0px;
  9901. position:absolute;
  9902. left:0px;
  9903. top:0px;
  9904. width:65px;
  9905. height:22px;
  9906. background:inherit;
  9907. background-color:rgba(255, 255, 255, 0);
  9908. border:none;
  9909. border-radius:0px;
  9910. -moz-box-shadow:none;
  9911. -webkit-box-shadow:none;
  9912. box-shadow:none;
  9913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9914. font-weight:400;
  9915. font-style:normal;
  9916. font-size:16px;
  9917. }
  9918. #u13791 {
  9919. border-width:0px;
  9920. position:absolute;
  9921. left:147px;
  9922. top:610px;
  9923. width:65px;
  9924. height:22px;
  9925. display:flex;
  9926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9927. font-weight:400;
  9928. font-style:normal;
  9929. font-size:16px;
  9930. }
  9931. #u13791 .text {
  9932. position:absolute;
  9933. align-self:flex-start;
  9934. padding:0px 0px 0px 0px;
  9935. box-sizing:border-box;
  9936. width:100%;
  9937. }
  9938. #u13791_text {
  9939. border-width:0px;
  9940. white-space:nowrap;
  9941. text-transform:none;
  9942. }
  9943. #u13792_div {
  9944. border-width:0px;
  9945. position:absolute;
  9946. left:0px;
  9947. top:0px;
  9948. width:65px;
  9949. height:22px;
  9950. background:inherit;
  9951. background-color:rgba(255, 255, 255, 0);
  9952. border:none;
  9953. border-radius:0px;
  9954. -moz-box-shadow:none;
  9955. -webkit-box-shadow:none;
  9956. box-shadow:none;
  9957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9958. font-weight:400;
  9959. font-style:normal;
  9960. font-size:16px;
  9961. }
  9962. #u13792 {
  9963. border-width:0px;
  9964. position:absolute;
  9965. left:147px;
  9966. top:341px;
  9967. width:65px;
  9968. height:22px;
  9969. display:flex;
  9970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9971. font-weight:400;
  9972. font-style:normal;
  9973. font-size:16px;
  9974. }
  9975. #u13792 .text {
  9976. position:absolute;
  9977. align-self:flex-start;
  9978. padding:0px 0px 0px 0px;
  9979. box-sizing:border-box;
  9980. width:100%;
  9981. }
  9982. #u13792_text {
  9983. border-width:0px;
  9984. white-space:nowrap;
  9985. text-transform:none;
  9986. }
  9987. #u13793_img {
  9988. border-width:0px;
  9989. position:absolute;
  9990. left:0px;
  9991. top:0px;
  9992. width:201px;
  9993. height:2px;
  9994. }
  9995. #u13793 {
  9996. border-width:0px;
  9997. position:absolute;
  9998. left:120px;
  9999. top:284px;
  10000. width:200px;
  10001. height:1px;
  10002. display:flex;
  10003. }
  10004. #u13793 .text {
  10005. position:absolute;
  10006. align-self:center;
  10007. padding:2px 2px 2px 2px;
  10008. box-sizing:border-box;
  10009. width:100%;
  10010. }
  10011. #u13793_text {
  10012. border-width:0px;
  10013. word-wrap:break-word;
  10014. text-transform:none;
  10015. visibility:hidden;
  10016. }
  10017. #u13794_div {
  10018. border-width:0px;
  10019. position:absolute;
  10020. left:0px;
  10021. top:0px;
  10022. width:49px;
  10023. height:17px;
  10024. background:inherit;
  10025. background-color:rgba(255, 255, 255, 0);
  10026. border:none;
  10027. border-radius:0px;
  10028. -moz-box-shadow:none;
  10029. -webkit-box-shadow:none;
  10030. box-shadow:none;
  10031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10032. font-weight:400;
  10033. font-style:normal;
  10034. font-size:12px;
  10035. color:#AAAAAA;
  10036. }
  10037. #u13794 {
  10038. border-width:0px;
  10039. position:absolute;
  10040. left:147px;
  10041. top:304px;
  10042. width:49px;
  10043. height:17px;
  10044. display:flex;
  10045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10046. font-weight:400;
  10047. font-style:normal;
  10048. font-size:12px;
  10049. color:#AAAAAA;
  10050. }
  10051. #u13794 .text {
  10052. position:absolute;
  10053. align-self:flex-start;
  10054. padding:0px 0px 0px 0px;
  10055. box-sizing:border-box;
  10056. width:100%;
  10057. }
  10058. #u13794_text {
  10059. border-width:0px;
  10060. white-space:nowrap;
  10061. text-transform:none;
  10062. }
  10063. #u13795_div {
  10064. border-width:0px;
  10065. position:absolute;
  10066. left:0px;
  10067. top:0px;
  10068. width:65px;
  10069. height:22px;
  10070. background:inherit;
  10071. background-color:rgba(255, 255, 255, 0);
  10072. border:none;
  10073. border-radius:0px;
  10074. -moz-box-shadow:none;
  10075. -webkit-box-shadow:none;
  10076. box-shadow:none;
  10077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10078. font-weight:400;
  10079. font-style:normal;
  10080. font-size:16px;
  10081. }
  10082. #u13795 {
  10083. border-width:0px;
  10084. position:absolute;
  10085. left:147px;
  10086. top:383px;
  10087. width:65px;
  10088. height:22px;
  10089. display:flex;
  10090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10091. font-weight:400;
  10092. font-style:normal;
  10093. font-size:16px;
  10094. }
  10095. #u13795 .text {
  10096. position:absolute;
  10097. align-self:flex-start;
  10098. padding:0px 0px 0px 0px;
  10099. box-sizing:border-box;
  10100. width:100%;
  10101. }
  10102. #u13795_text {
  10103. border-width:0px;
  10104. white-space:nowrap;
  10105. text-transform:none;
  10106. }
  10107. #u13796_div {
  10108. border-width:0px;
  10109. position:absolute;
  10110. left:0px;
  10111. top:0px;
  10112. width:65px;
  10113. height:22px;
  10114. background:inherit;
  10115. background-color:rgba(255, 255, 255, 0);
  10116. border:none;
  10117. border-radius:0px;
  10118. -moz-box-shadow:none;
  10119. -webkit-box-shadow:none;
  10120. box-shadow:none;
  10121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10122. font-weight:400;
  10123. font-style:normal;
  10124. font-size:16px;
  10125. }
  10126. #u13796 {
  10127. border-width:0px;
  10128. position:absolute;
  10129. left:147px;
  10130. top:159px;
  10131. width:65px;
  10132. height:22px;
  10133. display:flex;
  10134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10135. font-weight:400;
  10136. font-style:normal;
  10137. font-size:16px;
  10138. }
  10139. #u13796 .text {
  10140. position:absolute;
  10141. align-self:flex-start;
  10142. padding:0px 0px 0px 0px;
  10143. box-sizing:border-box;
  10144. width:100%;
  10145. }
  10146. #u13796_text {
  10147. border-width:0px;
  10148. white-space:nowrap;
  10149. text-transform:none;
  10150. }
  10151. #u13797_div {
  10152. border-width:0px;
  10153. position:absolute;
  10154. left:0px;
  10155. top:0px;
  10156. width:794px;
  10157. height:20px;
  10158. background:inherit;
  10159. background-color:rgba(255, 255, 255, 0);
  10160. border:none;
  10161. border-left:0px;
  10162. border-top:0px;
  10163. border-right:0px;
  10164. border-radius:0px;
  10165. border-bottom-right-radius:0px;
  10166. border-bottom-left-radius:0px;
  10167. -moz-box-shadow:none;
  10168. -webkit-box-shadow:none;
  10169. box-shadow:none;
  10170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10171. font-weight:400;
  10172. font-style:normal;
  10173. font-size:14px;
  10174. color:#7F7F7F;
  10175. }
  10176. #u13797 {
  10177. border-width:0px;
  10178. position:absolute;
  10179. left:352px;
  10180. top:100px;
  10181. width:794px;
  10182. height:20px;
  10183. display:flex;
  10184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10185. font-weight:400;
  10186. font-style:normal;
  10187. font-size:14px;
  10188. color:#7F7F7F;
  10189. }
  10190. #u13797 .text {
  10191. position:absolute;
  10192. align-self:center;
  10193. padding:0px 0px 0px 0px;
  10194. box-sizing:border-box;
  10195. width:100%;
  10196. }
  10197. #u13797_text {
  10198. border-width:0px;
  10199. white-space:nowrap;
  10200. text-transform:none;
  10201. }
  10202. #u13798_div {
  10203. border-width:0px;
  10204. position:absolute;
  10205. left:0px;
  10206. top:0px;
  10207. width:479px;
  10208. height:40px;
  10209. background:inherit;
  10210. background-color:rgba(255, 255, 255, 0);
  10211. border:none;
  10212. border-top:0px;
  10213. border-right:0px;
  10214. border-bottom:0px;
  10215. border-radius:0px;
  10216. border-top-left-radius:0px;
  10217. border-bottom-left-radius:0px;
  10218. -moz-box-shadow:none;
  10219. -webkit-box-shadow:none;
  10220. box-shadow:none;
  10221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10222. font-weight:400;
  10223. font-style:normal;
  10224. font-size:14px;
  10225. color:#D9001B;
  10226. }
  10227. #u13798 {
  10228. border-width:0px;
  10229. position:absolute;
  10230. left:1084px;
  10231. top:732px;
  10232. width:479px;
  10233. height:40px;
  10234. display:flex;
  10235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10236. font-weight:400;
  10237. font-style:normal;
  10238. font-size:14px;
  10239. color:#D9001B;
  10240. }
  10241. #u13798 .text {
  10242. position:absolute;
  10243. align-self:center;
  10244. padding:5px 10px 5px 0px;
  10245. box-sizing:border-box;
  10246. width:100%;
  10247. }
  10248. #u13798_text {
  10249. border-width:0px;
  10250. white-space:nowrap;
  10251. text-transform:none;
  10252. }
  10253. #u13799_div {
  10254. border-width:0px;
  10255. position:absolute;
  10256. left:0px;
  10257. top:0px;
  10258. width:565px;
  10259. height:40px;
  10260. background:inherit;
  10261. background-color:rgba(255, 255, 255, 0);
  10262. border:none;
  10263. border-top:0px;
  10264. border-right:0px;
  10265. border-bottom:0px;
  10266. border-radius:0px;
  10267. border-top-left-radius:0px;
  10268. border-bottom-left-radius:0px;
  10269. -moz-box-shadow:none;
  10270. -webkit-box-shadow:none;
  10271. box-shadow:none;
  10272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10273. font-weight:400;
  10274. font-style:normal;
  10275. font-size:14px;
  10276. color:#D9001B;
  10277. }
  10278. #u13799 {
  10279. border-width:0px;
  10280. position:absolute;
  10281. left:1618px;
  10282. top:1063px;
  10283. width:565px;
  10284. height:40px;
  10285. display:flex;
  10286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10287. font-weight:400;
  10288. font-style:normal;
  10289. font-size:14px;
  10290. color:#D9001B;
  10291. }
  10292. #u13799 .text {
  10293. position:absolute;
  10294. align-self:center;
  10295. padding:5px 10px 5px 0px;
  10296. box-sizing:border-box;
  10297. width:100%;
  10298. }
  10299. #u13799_text {
  10300. border-width:0px;
  10301. white-space:nowrap;
  10302. text-transform:none;
  10303. }
  10304. #u13800 {
  10305. border-width:0px;
  10306. position:absolute;
  10307. left:0px;
  10308. top:0px;
  10309. width:0px;
  10310. height:0px;
  10311. }
  10312. #u13801 {
  10313. border-width:0px;
  10314. position:absolute;
  10315. left:0px;
  10316. top:0px;
  10317. width:0px;
  10318. height:0px;
  10319. }
  10320. #u13802_div {
  10321. border-width:0px;
  10322. position:absolute;
  10323. left:0px;
  10324. top:0px;
  10325. width:380px;
  10326. height:164px;
  10327. background:inherit;
  10328. background-color:rgba(255, 255, 255, 1);
  10329. box-sizing:border-box;
  10330. border-width:1px;
  10331. border-style:solid;
  10332. border-color:rgba(204, 204, 204, 1);
  10333. border-radius:4px;
  10334. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10335. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10336. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10337. font-family:'Microsoft YaHei', sans-serif;
  10338. font-weight:400;
  10339. font-style:normal;
  10340. }
  10341. #u13802 {
  10342. border-width:0px;
  10343. position:absolute;
  10344. left:1611px;
  10345. top:1117px;
  10346. width:380px;
  10347. height:164px;
  10348. display:flex;
  10349. font-family:'Microsoft YaHei', sans-serif;
  10350. font-weight:400;
  10351. font-style:normal;
  10352. }
  10353. #u13802 .text {
  10354. position:absolute;
  10355. align-self:center;
  10356. padding:2px 2px 2px 2px;
  10357. box-sizing:border-box;
  10358. width:100%;
  10359. }
  10360. #u13802_text {
  10361. border-width:0px;
  10362. word-wrap:break-word;
  10363. text-transform:none;
  10364. visibility:hidden;
  10365. }
  10366. #u13803_div {
  10367. border-width:0px;
  10368. position:absolute;
  10369. left:0px;
  10370. top:0px;
  10371. width:299px;
  10372. height:44px;
  10373. background:inherit;
  10374. background-color:rgba(255, 255, 255, 0);
  10375. border:none;
  10376. border-radius:0px;
  10377. -moz-box-shadow:none;
  10378. -webkit-box-shadow:none;
  10379. box-shadow:none;
  10380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10381. font-weight:400;
  10382. font-style:normal;
  10383. font-size:14px;
  10384. color:#666666;
  10385. line-height:22px;
  10386. }
  10387. #u13803 {
  10388. border-width:0px;
  10389. position:absolute;
  10390. left:1671px;
  10391. top:1172px;
  10392. width:299px;
  10393. height:44px;
  10394. display:flex;
  10395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10396. font-weight:400;
  10397. font-style:normal;
  10398. font-size:14px;
  10399. color:#666666;
  10400. line-height:22px;
  10401. }
  10402. #u13803 .text {
  10403. position:absolute;
  10404. align-self:flex-start;
  10405. padding:0px 0px 0px 0px;
  10406. box-sizing:border-box;
  10407. width:100%;
  10408. }
  10409. #u13803_text {
  10410. border-width:0px;
  10411. word-wrap:break-word;
  10412. text-transform:none;
  10413. }
  10414. #u13804_div {
  10415. border-width:0px;
  10416. position:absolute;
  10417. left:0px;
  10418. top:0px;
  10419. width:91px;
  10420. height:21px;
  10421. background:inherit;
  10422. background-color:rgba(255, 255, 255, 0);
  10423. border:none;
  10424. border-radius:0px;
  10425. -moz-box-shadow:none;
  10426. -webkit-box-shadow:none;
  10427. box-shadow:none;
  10428. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  10429. font-weight:650;
  10430. font-style:normal;
  10431. font-size:18px;
  10432. color:#000000;
  10433. line-height:22px;
  10434. }
  10435. #u13804 {
  10436. border-width:0px;
  10437. position:absolute;
  10438. left:1671px;
  10439. top:1145px;
  10440. width:91px;
  10441. height:21px;
  10442. display:flex;
  10443. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  10444. font-weight:650;
  10445. font-style:normal;
  10446. font-size:18px;
  10447. color:#000000;
  10448. line-height:22px;
  10449. }
  10450. #u13804 .text {
  10451. position:absolute;
  10452. align-self:flex-start;
  10453. padding:0px 0px 0px 0px;
  10454. box-sizing:border-box;
  10455. width:100%;
  10456. }
  10457. #u13804_text {
  10458. border-width:0px;
  10459. white-space:nowrap;
  10460. text-transform:none;
  10461. }
  10462. #u13805_div {
  10463. border-width:0px;
  10464. position:absolute;
  10465. left:0px;
  10466. top:0px;
  10467. width:61px;
  10468. height:30px;
  10469. background:inherit;
  10470. background-color:rgba(24, 144, 255, 1);
  10471. border:none;
  10472. border-radius:4px;
  10473. -moz-box-shadow:none;
  10474. -webkit-box-shadow:none;
  10475. box-shadow:none;
  10476. font-family:'Microsoft YaHei', sans-serif;
  10477. font-weight:400;
  10478. font-style:normal;
  10479. font-size:14px;
  10480. color:#FFFFFF;
  10481. }
  10482. #u13805 {
  10483. border-width:0px;
  10484. position:absolute;
  10485. left:1913px;
  10486. top:1232px;
  10487. width:61px;
  10488. height:30px;
  10489. display:flex;
  10490. font-family:'Microsoft YaHei', sans-serif;
  10491. font-weight:400;
  10492. font-style:normal;
  10493. font-size:14px;
  10494. color:#FFFFFF;
  10495. }
  10496. #u13805 .text {
  10497. position:absolute;
  10498. align-self:center;
  10499. padding:2px 16px 2px 16px;
  10500. box-sizing:border-box;
  10501. width:100%;
  10502. }
  10503. #u13805_text {
  10504. border-width:0px;
  10505. white-space:nowrap;
  10506. text-transform:none;
  10507. }
  10508. #u13806_div {
  10509. border-width:0px;
  10510. position:absolute;
  10511. left:0px;
  10512. top:0px;
  10513. width:66px;
  10514. height:30px;
  10515. background:inherit;
  10516. background-color:rgba(255, 255, 255, 1);
  10517. box-sizing:border-box;
  10518. border-width:1px;
  10519. border-style:solid;
  10520. border-color:rgba(217, 217, 217, 1);
  10521. border-radius:4px;
  10522. -moz-box-shadow:none;
  10523. -webkit-box-shadow:none;
  10524. box-shadow:none;
  10525. font-family:'Microsoft YaHei', sans-serif;
  10526. font-weight:400;
  10527. font-style:normal;
  10528. font-size:14px;
  10529. color:rgba(0, 0, 0, 0.647058823529412);
  10530. line-height:21px;
  10531. }
  10532. #u13806 {
  10533. border-width:0px;
  10534. position:absolute;
  10535. left:1831px;
  10536. top:1232px;
  10537. width:66px;
  10538. height:30px;
  10539. display:flex;
  10540. font-family:'Microsoft YaHei', sans-serif;
  10541. font-weight:400;
  10542. font-style:normal;
  10543. font-size:14px;
  10544. color:rgba(0, 0, 0, 0.647058823529412);
  10545. line-height:21px;
  10546. }
  10547. #u13806 .text {
  10548. position:absolute;
  10549. align-self:center;
  10550. padding:2px 16px 2px 16px;
  10551. box-sizing:border-box;
  10552. width:100%;
  10553. }
  10554. #u13806_text {
  10555. border-width:0px;
  10556. white-space:nowrap;
  10557. text-transform:none;
  10558. }
  10559. #u13807_img {
  10560. border-width:0px;
  10561. position:absolute;
  10562. left:0px;
  10563. top:0px;
  10564. width:20px;
  10565. height:20px;
  10566. }
  10567. #u13807 {
  10568. border-width:0px;
  10569. position:absolute;
  10570. left:1640px;
  10571. top:1146px;
  10572. width:20px;
  10573. height:20px;
  10574. display:flex;
  10575. }
  10576. #u13807 .text {
  10577. position:absolute;
  10578. align-self:center;
  10579. padding:2px 2px 2px 2px;
  10580. box-sizing:border-box;
  10581. width:100%;
  10582. }
  10583. #u13807_text {
  10584. border-width:0px;
  10585. word-wrap:break-word;
  10586. text-transform:none;
  10587. visibility:hidden;
  10588. }
  10589. #u13808 {
  10590. border-width:0px;
  10591. position:absolute;
  10592. left:0px;
  10593. top:0px;
  10594. width:0px;
  10595. height:0px;
  10596. }
  10597. #u13809 {
  10598. border-width:0px;
  10599. position:absolute;
  10600. left:0px;
  10601. top:0px;
  10602. width:0px;
  10603. height:0px;
  10604. }
  10605. #u13810_div {
  10606. border-width:0px;
  10607. position:absolute;
  10608. left:0px;
  10609. top:0px;
  10610. width:380px;
  10611. height:164px;
  10612. background:inherit;
  10613. background-color:rgba(255, 255, 255, 1);
  10614. box-sizing:border-box;
  10615. border-width:1px;
  10616. border-style:solid;
  10617. border-color:rgba(204, 204, 204, 1);
  10618. border-radius:4px;
  10619. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10620. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10621. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10622. font-family:'Microsoft YaHei', sans-serif;
  10623. font-weight:400;
  10624. font-style:normal;
  10625. }
  10626. #u13810 {
  10627. border-width:0px;
  10628. position:absolute;
  10629. left:374px;
  10630. top:1167px;
  10631. width:380px;
  10632. height:164px;
  10633. display:flex;
  10634. font-family:'Microsoft YaHei', sans-serif;
  10635. font-weight:400;
  10636. font-style:normal;
  10637. }
  10638. #u13810 .text {
  10639. position:absolute;
  10640. align-self:center;
  10641. padding:2px 2px 2px 2px;
  10642. box-sizing:border-box;
  10643. width:100%;
  10644. }
  10645. #u13810_text {
  10646. border-width:0px;
  10647. word-wrap:break-word;
  10648. text-transform:none;
  10649. visibility:hidden;
  10650. }
  10651. #u13811_div {
  10652. border-width:0px;
  10653. position:absolute;
  10654. left:0px;
  10655. top:0px;
  10656. width:299px;
  10657. height:44px;
  10658. background:inherit;
  10659. background-color:rgba(255, 255, 255, 0);
  10660. border:none;
  10661. border-radius:0px;
  10662. -moz-box-shadow:none;
  10663. -webkit-box-shadow:none;
  10664. box-shadow:none;
  10665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10666. font-weight:400;
  10667. font-style:normal;
  10668. font-size:14px;
  10669. color:#666666;
  10670. line-height:22px;
  10671. }
  10672. #u13811 {
  10673. border-width:0px;
  10674. position:absolute;
  10675. left:434px;
  10676. top:1222px;
  10677. width:299px;
  10678. height:44px;
  10679. display:flex;
  10680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10681. font-weight:400;
  10682. font-style:normal;
  10683. font-size:14px;
  10684. color:#666666;
  10685. line-height:22px;
  10686. }
  10687. #u13811 .text {
  10688. position:absolute;
  10689. align-self:flex-start;
  10690. padding:0px 0px 0px 0px;
  10691. box-sizing:border-box;
  10692. width:100%;
  10693. }
  10694. #u13811_text {
  10695. border-width:0px;
  10696. word-wrap:break-word;
  10697. text-transform:none;
  10698. }
  10699. #u13812_div {
  10700. border-width:0px;
  10701. position:absolute;
  10702. left:0px;
  10703. top:0px;
  10704. width:91px;
  10705. height:21px;
  10706. background:inherit;
  10707. background-color:rgba(255, 255, 255, 0);
  10708. border:none;
  10709. border-radius:0px;
  10710. -moz-box-shadow:none;
  10711. -webkit-box-shadow:none;
  10712. box-shadow:none;
  10713. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  10714. font-weight:650;
  10715. font-style:normal;
  10716. font-size:18px;
  10717. color:#000000;
  10718. line-height:22px;
  10719. }
  10720. #u13812 {
  10721. border-width:0px;
  10722. position:absolute;
  10723. left:434px;
  10724. top:1195px;
  10725. width:91px;
  10726. height:21px;
  10727. display:flex;
  10728. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  10729. font-weight:650;
  10730. font-style:normal;
  10731. font-size:18px;
  10732. color:#000000;
  10733. line-height:22px;
  10734. }
  10735. #u13812 .text {
  10736. position:absolute;
  10737. align-self:flex-start;
  10738. padding:0px 0px 0px 0px;
  10739. box-sizing:border-box;
  10740. width:100%;
  10741. }
  10742. #u13812_text {
  10743. border-width:0px;
  10744. white-space:nowrap;
  10745. text-transform:none;
  10746. }
  10747. #u13813_div {
  10748. border-width:0px;
  10749. position:absolute;
  10750. left:0px;
  10751. top:0px;
  10752. width:61px;
  10753. height:30px;
  10754. background:inherit;
  10755. background-color:rgba(24, 144, 255, 1);
  10756. border:none;
  10757. border-radius:4px;
  10758. -moz-box-shadow:none;
  10759. -webkit-box-shadow:none;
  10760. box-shadow:none;
  10761. font-family:'Microsoft YaHei', sans-serif;
  10762. font-weight:400;
  10763. font-style:normal;
  10764. font-size:14px;
  10765. color:#FFFFFF;
  10766. }
  10767. #u13813 {
  10768. border-width:0px;
  10769. position:absolute;
  10770. left:676px;
  10771. top:1282px;
  10772. width:61px;
  10773. height:30px;
  10774. display:flex;
  10775. font-family:'Microsoft YaHei', sans-serif;
  10776. font-weight:400;
  10777. font-style:normal;
  10778. font-size:14px;
  10779. color:#FFFFFF;
  10780. }
  10781. #u13813 .text {
  10782. position:absolute;
  10783. align-self:center;
  10784. padding:2px 16px 2px 16px;
  10785. box-sizing:border-box;
  10786. width:100%;
  10787. }
  10788. #u13813_text {
  10789. border-width:0px;
  10790. white-space:nowrap;
  10791. text-transform:none;
  10792. }
  10793. #u13814_div {
  10794. border-width:0px;
  10795. position:absolute;
  10796. left:0px;
  10797. top:0px;
  10798. width:66px;
  10799. height:30px;
  10800. background:inherit;
  10801. background-color:rgba(255, 255, 255, 1);
  10802. box-sizing:border-box;
  10803. border-width:1px;
  10804. border-style:solid;
  10805. border-color:rgba(217, 217, 217, 1);
  10806. border-radius:4px;
  10807. -moz-box-shadow:none;
  10808. -webkit-box-shadow:none;
  10809. box-shadow:none;
  10810. font-family:'Microsoft YaHei', sans-serif;
  10811. font-weight:400;
  10812. font-style:normal;
  10813. font-size:14px;
  10814. color:rgba(0, 0, 0, 0.647058823529412);
  10815. line-height:21px;
  10816. }
  10817. #u13814 {
  10818. border-width:0px;
  10819. position:absolute;
  10820. left:594px;
  10821. top:1282px;
  10822. width:66px;
  10823. height:30px;
  10824. display:flex;
  10825. font-family:'Microsoft YaHei', sans-serif;
  10826. font-weight:400;
  10827. font-style:normal;
  10828. font-size:14px;
  10829. color:rgba(0, 0, 0, 0.647058823529412);
  10830. line-height:21px;
  10831. }
  10832. #u13814 .text {
  10833. position:absolute;
  10834. align-self:center;
  10835. padding:2px 16px 2px 16px;
  10836. box-sizing:border-box;
  10837. width:100%;
  10838. }
  10839. #u13814_text {
  10840. border-width:0px;
  10841. white-space:nowrap;
  10842. text-transform:none;
  10843. }
  10844. #u13815_img {
  10845. border-width:0px;
  10846. position:absolute;
  10847. left:0px;
  10848. top:0px;
  10849. width:20px;
  10850. height:20px;
  10851. }
  10852. #u13815 {
  10853. border-width:0px;
  10854. position:absolute;
  10855. left:403px;
  10856. top:1196px;
  10857. width:20px;
  10858. height:20px;
  10859. display:flex;
  10860. }
  10861. #u13815 .text {
  10862. position:absolute;
  10863. align-self:center;
  10864. padding:2px 2px 2px 2px;
  10865. box-sizing:border-box;
  10866. width:100%;
  10867. }
  10868. #u13815_text {
  10869. border-width:0px;
  10870. word-wrap:break-word;
  10871. text-transform:none;
  10872. visibility:hidden;
  10873. }
  10874. #u13816_div {
  10875. border-width:0px;
  10876. position:absolute;
  10877. left:0px;
  10878. top:0px;
  10879. width:659px;
  10880. height:220px;
  10881. background:inherit;
  10882. background-color:rgba(255, 255, 255, 0);
  10883. border:none;
  10884. border-top:0px;
  10885. border-right:0px;
  10886. border-bottom:0px;
  10887. border-radius:0px;
  10888. border-top-left-radius:0px;
  10889. border-bottom-left-radius:0px;
  10890. -moz-box-shadow:none;
  10891. -webkit-box-shadow:none;
  10892. box-shadow:none;
  10893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10894. font-weight:400;
  10895. font-style:normal;
  10896. font-size:14px;
  10897. color:#D9001B;
  10898. line-height:30px;
  10899. }
  10900. #u13816 {
  10901. border-width:0px;
  10902. position:absolute;
  10903. left:1614px;
  10904. top:260px;
  10905. width:659px;
  10906. height:220px;
  10907. display:flex;
  10908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10909. font-weight:400;
  10910. font-style:normal;
  10911. font-size:14px;
  10912. color:#D9001B;
  10913. line-height:30px;
  10914. }
  10915. #u13816 .text {
  10916. position:absolute;
  10917. align-self:center;
  10918. padding:5px 10px 5px 0px;
  10919. box-sizing:border-box;
  10920. width:100%;
  10921. }
  10922. #u13816_text {
  10923. border-width:0px;
  10924. white-space:nowrap;
  10925. text-transform:none;
  10926. }