styles.css 157 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3229px;
  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. #u15515_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. #u15515 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u15515 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u15515_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u15516_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. #u15516 {
  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. #u15516 .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. #u15516_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u15517_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. #u15517 {
  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. #u15517 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u15517_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u15518 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u15519_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u15519 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u15519 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u15519_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u15520_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. #u15520 {
  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. #u15520 .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. #u15520_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u15521_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. #u15521 {
  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. #u15521 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u15521_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u15522 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u15523_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. #u15523 {
  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. #u15523 .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. #u15523_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u15524_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u15524 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u15524 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u15524_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u15525 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u15526_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. #u15526 {
  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. #u15526 .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. #u15526_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u15527_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u15527 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u15527 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u15527_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u15528 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u15529_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. #u15529 {
  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. #u15529 .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. #u15529_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u15530_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u15530 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u15530 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u15530_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u15531 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u15532_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. #u15532 {
  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. #u15532 .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. #u15532_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u15533_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u15533 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u15533 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u15533_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u15534 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u15535_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. #u15535 {
  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. #u15535 .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. #u15535_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u15536_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u15536 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u15536 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u15536_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u15537 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u15538_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. #u15538 {
  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. #u15538 .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. #u15538_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u15539_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u15539 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u15539 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u15539_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u15540 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u15541_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. #u15541 {
  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. #u15541 .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. #u15541_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u15542_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u15542 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u15542 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u15542_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u15543 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u15544_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. #u15544 {
  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. #u15544 .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. #u15544_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u15545_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u15545 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u15545 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u15545_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u15546 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u15547_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. #u15547 {
  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. #u15547 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u15547_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u15548_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u15548 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u15548 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u15548_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u15549 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u15550_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. #u15550 {
  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. #u15550 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u15550_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u15551_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u15551 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u15551 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u15551_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u15552 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u15553_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. #u15553 {
  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. #u15553 .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. #u15553_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u15554_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u15554 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u15554 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u15554_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u15555 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u15556_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. #u15556_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. #u15556_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. #u15556 {
  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. #u15556 .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. #u15556_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. #u15556.disabled {
  1276. }
  1277. .u15556_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u15557_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u15557 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u15557 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u15557_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u15558_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. #u15558 {
  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. #u15558 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u15558_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u15559_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u15559 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u15559 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u15559_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u15560 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u15561_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. #u15561 {
  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. #u15561 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u15561_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u15562_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u15562 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u15562 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u15562_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u15563_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u15563 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u15563 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u15563_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u15564_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u15564 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u15564 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u15564_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u15565_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u15565 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u15565 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u15565_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u15566 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u15567_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. #u15567 {
  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. #u15567 .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. #u15567_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u15568_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u15568 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u15568 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u15568_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u15569_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1265px;
  1648. height:1180px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. border:none;
  1652. border-radius:0px;
  1653. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1654. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1655. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1656. color:#1890FF;
  1657. }
  1658. #u15569 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:329px;
  1662. top:50px;
  1663. width:1265px;
  1664. height:1180px;
  1665. display:flex;
  1666. color:#1890FF;
  1667. }
  1668. #u15569 .text {
  1669. position:absolute;
  1670. align-self:center;
  1671. padding:2px 2px 2px 2px;
  1672. box-sizing:border-box;
  1673. width:100%;
  1674. }
  1675. #u15569_text {
  1676. border-width:0px;
  1677. word-wrap:break-word;
  1678. text-transform:none;
  1679. visibility:hidden;
  1680. }
  1681. #u15570_div {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:0px;
  1685. top:0px;
  1686. width:127px;
  1687. height:40px;
  1688. background:inherit;
  1689. background-color:rgba(255, 255, 255, 0);
  1690. border:none;
  1691. border-left:0px;
  1692. border-top:0px;
  1693. border-right:0px;
  1694. border-radius:0px;
  1695. border-bottom-right-radius:0px;
  1696. border-bottom-left-radius:0px;
  1697. -moz-box-shadow:none;
  1698. -webkit-box-shadow:none;
  1699. box-shadow:none;
  1700. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1701. font-weight:500;
  1702. font-style:normal;
  1703. font-size:18px;
  1704. }
  1705. #u15570 {
  1706. border-width:0px;
  1707. position:absolute;
  1708. left:672px;
  1709. top:132px;
  1710. width:127px;
  1711. height:40px;
  1712. display:flex;
  1713. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1714. font-weight:500;
  1715. font-style:normal;
  1716. font-size:18px;
  1717. }
  1718. #u15570 .text {
  1719. position:absolute;
  1720. align-self:center;
  1721. padding:0px 0px 0px 0px;
  1722. box-sizing:border-box;
  1723. width:100%;
  1724. }
  1725. #u15570_text {
  1726. border-width:0px;
  1727. white-space:nowrap;
  1728. text-transform:none;
  1729. }
  1730. #u15571_div {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:0px;
  1734. top:0px;
  1735. width:813px;
  1736. height:40px;
  1737. background:inherit;
  1738. background-color:rgba(255, 255, 255, 0);
  1739. border:none;
  1740. border-left:0px;
  1741. border-top:0px;
  1742. border-right:0px;
  1743. border-radius:0px;
  1744. border-bottom-right-radius:0px;
  1745. border-bottom-left-radius:0px;
  1746. -moz-box-shadow:none;
  1747. -webkit-box-shadow:none;
  1748. box-shadow:none;
  1749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1750. font-weight:400;
  1751. font-style:normal;
  1752. font-size:14px;
  1753. color:#AAAAAA;
  1754. }
  1755. #u15571 {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:672px;
  1759. top:167px;
  1760. width:813px;
  1761. height:40px;
  1762. display:flex;
  1763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1764. font-weight:400;
  1765. font-style:normal;
  1766. font-size:14px;
  1767. color:#AAAAAA;
  1768. }
  1769. #u15571 .text {
  1770. position:absolute;
  1771. align-self:center;
  1772. padding:0px 0px 0px 0px;
  1773. box-sizing:border-box;
  1774. width:100%;
  1775. }
  1776. #u15571_text {
  1777. border-width:0px;
  1778. white-space:nowrap;
  1779. text-transform:none;
  1780. }
  1781. #u15572_img {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:0px;
  1785. top:0px;
  1786. width:50px;
  1787. height:31px;
  1788. }
  1789. #u15572 {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:811px;
  1793. top:135px;
  1794. width:50px;
  1795. height:31px;
  1796. display:flex;
  1797. }
  1798. #u15572 .text {
  1799. position:absolute;
  1800. align-self:center;
  1801. padding:2px 2px 2px 2px;
  1802. box-sizing:border-box;
  1803. width:100%;
  1804. }
  1805. #u15572_text {
  1806. border-width:0px;
  1807. word-wrap:break-word;
  1808. text-transform:none;
  1809. visibility:hidden;
  1810. }
  1811. #u15573_div {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:0px;
  1815. top:0px;
  1816. width:109px;
  1817. height:40px;
  1818. background:inherit;
  1819. background-color:rgba(255, 255, 255, 0);
  1820. border:none;
  1821. border-left:0px;
  1822. border-top:0px;
  1823. border-right:0px;
  1824. border-radius:0px;
  1825. border-bottom-right-radius:0px;
  1826. border-bottom-left-radius:0px;
  1827. -moz-box-shadow:none;
  1828. -webkit-box-shadow:none;
  1829. box-shadow:none;
  1830. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1831. font-weight:500;
  1832. font-style:normal;
  1833. font-size:18px;
  1834. }
  1835. #u15573 {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:672px;
  1839. top:227px;
  1840. width:109px;
  1841. height:40px;
  1842. display:flex;
  1843. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1844. font-weight:500;
  1845. font-style:normal;
  1846. font-size:18px;
  1847. }
  1848. #u15573 .text {
  1849. position:absolute;
  1850. align-self:center;
  1851. padding:0px 0px 0px 0px;
  1852. box-sizing:border-box;
  1853. width:100%;
  1854. }
  1855. #u15573_text {
  1856. border-width:0px;
  1857. white-space:nowrap;
  1858. text-transform:none;
  1859. }
  1860. #u15574 label {
  1861. left:0px;
  1862. width:100%;
  1863. }
  1864. #u15574_img {
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:0px;
  1868. top:4px;
  1869. width:12px;
  1870. height:12px;
  1871. }
  1872. #u15574 {
  1873. border-width:0px;
  1874. position:absolute;
  1875. left:672px;
  1876. top:277px;
  1877. width:903px;
  1878. height:20px;
  1879. display:flex;
  1880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1881. font-weight:400;
  1882. font-style:normal;
  1883. font-size:14px;
  1884. }
  1885. #u15574 .text {
  1886. position:absolute;
  1887. align-self:center;
  1888. padding:0px 2px 0px 2px;
  1889. box-sizing:border-box;
  1890. }
  1891. #u15574_img.selected {
  1892. }
  1893. #u15574.selected {
  1894. }
  1895. #u15574_img.disabled {
  1896. }
  1897. #u15574.disabled {
  1898. }
  1899. #u15574_img.selectedDisabled {
  1900. }
  1901. #u15574.selectedDisabled {
  1902. }
  1903. #u15574_text {
  1904. border-width:0px;
  1905. position:absolute;
  1906. left:14px;
  1907. top:0px;
  1908. width:887px;
  1909. word-wrap:break-word;
  1910. text-transform:none;
  1911. }
  1912. #u15574_input {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:0px;
  1916. top:0px;
  1917. width:0px;
  1918. height:0px;
  1919. opacity:0;
  1920. }
  1921. #u15575 {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:0px;
  1925. top:0px;
  1926. width:0px;
  1927. height:0px;
  1928. }
  1929. #u15576_div {
  1930. border-width:0px;
  1931. position:absolute;
  1932. left:0px;
  1933. top:0px;
  1934. width:109px;
  1935. height:40px;
  1936. background:inherit;
  1937. background-color:rgba(255, 255, 255, 0);
  1938. border:none;
  1939. border-left:0px;
  1940. border-top:0px;
  1941. border-right:0px;
  1942. border-radius:0px;
  1943. border-bottom-right-radius:0px;
  1944. border-bottom-left-radius:0px;
  1945. -moz-box-shadow:none;
  1946. -webkit-box-shadow:none;
  1947. box-shadow:none;
  1948. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1949. font-weight:500;
  1950. font-style:normal;
  1951. font-size:18px;
  1952. }
  1953. #u15576 {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:672px;
  1957. top:450px;
  1958. width:109px;
  1959. height:40px;
  1960. display:flex;
  1961. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1962. font-weight:500;
  1963. font-style:normal;
  1964. font-size:18px;
  1965. }
  1966. #u15576 .text {
  1967. position:absolute;
  1968. align-self:center;
  1969. padding:0px 0px 0px 0px;
  1970. box-sizing:border-box;
  1971. width:100%;
  1972. }
  1973. #u15576_text {
  1974. border-width:0px;
  1975. white-space:nowrap;
  1976. text-transform:none;
  1977. }
  1978. #u15577_div {
  1979. border-width:0px;
  1980. position:absolute;
  1981. left:0px;
  1982. top:0px;
  1983. width:449px;
  1984. height:40px;
  1985. background:inherit;
  1986. background-color:rgba(255, 255, 255, 0);
  1987. border:none;
  1988. border-left:0px;
  1989. border-top:0px;
  1990. border-right:0px;
  1991. border-radius:0px;
  1992. border-bottom-right-radius:0px;
  1993. border-bottom-left-radius:0px;
  1994. -moz-box-shadow:none;
  1995. -webkit-box-shadow:none;
  1996. box-shadow:none;
  1997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1998. font-weight:400;
  1999. font-style:normal;
  2000. font-size:14px;
  2001. color:#AAAAAA;
  2002. }
  2003. #u15577 {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:791px;
  2007. top:451px;
  2008. width:449px;
  2009. height:40px;
  2010. display:flex;
  2011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2012. font-weight:400;
  2013. font-style:normal;
  2014. font-size:14px;
  2015. color:#AAAAAA;
  2016. }
  2017. #u15577 .text {
  2018. position:absolute;
  2019. align-self:center;
  2020. padding:0px 0px 0px 0px;
  2021. box-sizing:border-box;
  2022. width:100%;
  2023. }
  2024. #u15577_text {
  2025. border-width:0px;
  2026. white-space:nowrap;
  2027. text-transform:none;
  2028. }
  2029. #u15578 {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:0px;
  2033. top:0px;
  2034. width:0px;
  2035. height:0px;
  2036. }
  2037. #u15579_div {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:0px;
  2041. top:0px;
  2042. width:578px;
  2043. height:40px;
  2044. background:inherit;
  2045. background-color:rgba(255, 255, 255, 1);
  2046. box-sizing:border-box;
  2047. border-width:1px;
  2048. border-style:solid;
  2049. border-color:rgba(201, 201, 201, 1);
  2050. border-radius:4px;
  2051. -moz-box-shadow:none;
  2052. -webkit-box-shadow:none;
  2053. box-shadow:none;
  2054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2055. font-weight:400;
  2056. font-style:normal;
  2057. font-size:12px;
  2058. color:#CCCCCC;
  2059. text-align:right;
  2060. }
  2061. #u15579 {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:672px;
  2065. top:500px;
  2066. width:578px;
  2067. height:40px;
  2068. display:flex;
  2069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2070. font-weight:400;
  2071. font-style:normal;
  2072. font-size:12px;
  2073. color:#CCCCCC;
  2074. text-align:right;
  2075. }
  2076. #u15579 .text {
  2077. position:absolute;
  2078. align-self:center;
  2079. padding:2px 8px 2px 8px;
  2080. box-sizing:border-box;
  2081. width:100%;
  2082. }
  2083. #u15579_text {
  2084. border-width:0px;
  2085. word-wrap:break-word;
  2086. text-transform:none;
  2087. }
  2088. #u15580_input {
  2089. position:absolute;
  2090. left:0px;
  2091. top:0px;
  2092. width:524px;
  2093. height:33px;
  2094. padding:2px 2px 2px 2px;
  2095. font-family:'Microsoft YaHei', sans-serif;
  2096. font-weight:400;
  2097. font-style:normal;
  2098. font-size:10px;
  2099. letter-spacing:normal;
  2100. color:#000000;
  2101. vertical-align:none;
  2102. text-align:left;
  2103. text-transform:none;
  2104. background-color:transparent;
  2105. border-color:transparent;
  2106. }
  2107. #u15580_input.disabled {
  2108. position:absolute;
  2109. left:0px;
  2110. top:0px;
  2111. width:524px;
  2112. height:33px;
  2113. padding:2px 2px 2px 2px;
  2114. font-family:'Microsoft YaHei', sans-serif;
  2115. font-weight:400;
  2116. font-style:normal;
  2117. font-size:10px;
  2118. letter-spacing:normal;
  2119. color:#000000;
  2120. vertical-align:none;
  2121. text-align:left;
  2122. text-transform:none;
  2123. background-color:transparent;
  2124. border-color:transparent;
  2125. }
  2126. #u15580_div {
  2127. border-width:0px;
  2128. position:absolute;
  2129. left:0px;
  2130. top:0px;
  2131. width:524px;
  2132. height:33px;
  2133. background:inherit;
  2134. background-color:rgba(255, 255, 255, 1);
  2135. border:none;
  2136. border-radius:0px;
  2137. -moz-box-shadow:none;
  2138. -webkit-box-shadow:none;
  2139. box-shadow:none;
  2140. font-family:'Microsoft YaHei', sans-serif;
  2141. font-weight:400;
  2142. font-style:normal;
  2143. font-size:10px;
  2144. }
  2145. #u15580 {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:685px;
  2149. top:503px;
  2150. width:524px;
  2151. height:33px;
  2152. display:flex;
  2153. font-family:'Microsoft YaHei', sans-serif;
  2154. font-weight:400;
  2155. font-style:normal;
  2156. font-size:10px;
  2157. }
  2158. #u15580 .text {
  2159. position:absolute;
  2160. align-self:center;
  2161. padding:2px 2px 2px 2px;
  2162. box-sizing:border-box;
  2163. width:100%;
  2164. }
  2165. #u15580_div.disabled {
  2166. border-width:0px;
  2167. position:absolute;
  2168. left:0px;
  2169. top:0px;
  2170. width:524px;
  2171. height:33px;
  2172. background:inherit;
  2173. background-color:rgba(240, 240, 240, 1);
  2174. border:none;
  2175. border-radius:0px;
  2176. -moz-box-shadow:none;
  2177. -webkit-box-shadow:none;
  2178. box-shadow:none;
  2179. font-family:'Microsoft YaHei', sans-serif;
  2180. font-weight:400;
  2181. font-style:normal;
  2182. font-size:10px;
  2183. }
  2184. #u15580.disabled {
  2185. }
  2186. #u15581_div {
  2187. border-width:0px;
  2188. position:absolute;
  2189. left:0px;
  2190. top:0px;
  2191. width:80px;
  2192. height:40px;
  2193. background:inherit;
  2194. background-color:rgba(24, 144, 255, 1);
  2195. border:none;
  2196. border-radius:4px;
  2197. -moz-box-shadow:none;
  2198. -webkit-box-shadow:none;
  2199. box-shadow:none;
  2200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2201. font-weight:400;
  2202. font-style:normal;
  2203. font-size:14px;
  2204. color:#FFFFFF;
  2205. }
  2206. #u15581 {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:672px;
  2210. top:570px;
  2211. width:80px;
  2212. height:40px;
  2213. display:flex;
  2214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2215. font-weight:400;
  2216. font-style:normal;
  2217. font-size:14px;
  2218. color:#FFFFFF;
  2219. }
  2220. #u15581 .text {
  2221. position:absolute;
  2222. align-self:center;
  2223. padding:2px 2px 2px 2px;
  2224. box-sizing:border-box;
  2225. width:100%;
  2226. }
  2227. #u15581_text {
  2228. border-width:0px;
  2229. word-wrap:break-word;
  2230. text-transform:none;
  2231. }
  2232. #u15583 {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:0px;
  2236. top:0px;
  2237. width:0px;
  2238. height:0px;
  2239. }
  2240. #u15584_div {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:0px;
  2244. top:0px;
  2245. width:200px;
  2246. height:1180px;
  2247. background:inherit;
  2248. background-color:rgba(255, 255, 255, 1);
  2249. border:none;
  2250. border-radius:0px;
  2251. -moz-box-shadow:none;
  2252. -webkit-box-shadow:none;
  2253. box-shadow:none;
  2254. }
  2255. #u15584 {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:120px;
  2259. top:50px;
  2260. width:200px;
  2261. height:1180px;
  2262. display:flex;
  2263. }
  2264. #u15584 .text {
  2265. position:absolute;
  2266. align-self:center;
  2267. padding:2px 2px 2px 2px;
  2268. box-sizing:border-box;
  2269. width:100%;
  2270. }
  2271. #u15584_text {
  2272. border-width:0px;
  2273. word-wrap:break-word;
  2274. text-transform:none;
  2275. visibility:hidden;
  2276. }
  2277. #u15585_div {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:0px;
  2281. top:0px;
  2282. width:200px;
  2283. height:60px;
  2284. background:inherit;
  2285. background-color:rgba(224, 231, 247, 1);
  2286. border:none;
  2287. border-radius:0px;
  2288. -moz-box-shadow:none;
  2289. -webkit-box-shadow:none;
  2290. box-shadow:none;
  2291. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2292. font-weight:500;
  2293. font-style:normal;
  2294. font-size:18px;
  2295. }
  2296. #u15585 {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:120px;
  2300. top:50px;
  2301. width:200px;
  2302. height:60px;
  2303. display:flex;
  2304. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2305. font-weight:500;
  2306. font-style:normal;
  2307. font-size:18px;
  2308. }
  2309. #u15585 .text {
  2310. position:absolute;
  2311. align-self:center;
  2312. padding:0px 0px 0px 20px;
  2313. box-sizing:border-box;
  2314. width:100%;
  2315. }
  2316. #u15585_text {
  2317. border-width:0px;
  2318. word-wrap:break-word;
  2319. text-transform:none;
  2320. }
  2321. #u15586_div {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:0px;
  2325. top:0px;
  2326. width:65px;
  2327. height:22px;
  2328. background:inherit;
  2329. background-color:rgba(255, 255, 255, 0);
  2330. border:none;
  2331. border-radius:0px;
  2332. -moz-box-shadow:none;
  2333. -webkit-box-shadow:none;
  2334. box-shadow:none;
  2335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2336. font-weight:400;
  2337. font-style:normal;
  2338. font-size:16px;
  2339. }
  2340. #u15586 {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:147px;
  2344. top:242px;
  2345. width:65px;
  2346. height:22px;
  2347. display:flex;
  2348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2349. font-weight:400;
  2350. font-style:normal;
  2351. font-size:16px;
  2352. }
  2353. #u15586 .text {
  2354. position:absolute;
  2355. align-self:flex-start;
  2356. padding:0px 0px 0px 0px;
  2357. box-sizing:border-box;
  2358. width:100%;
  2359. }
  2360. #u15586_text {
  2361. border-width:0px;
  2362. white-space:nowrap;
  2363. text-transform:none;
  2364. }
  2365. #u15587_div {
  2366. border-width:0px;
  2367. position:absolute;
  2368. left:0px;
  2369. top:0px;
  2370. width:49px;
  2371. height:17px;
  2372. background:inherit;
  2373. background-color:rgba(255, 255, 255, 0);
  2374. border:none;
  2375. border-radius:0px;
  2376. -moz-box-shadow:none;
  2377. -webkit-box-shadow:none;
  2378. box-shadow:none;
  2379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2380. font-weight:400;
  2381. font-style:normal;
  2382. font-size:12px;
  2383. color:#AAAAAA;
  2384. }
  2385. #u15587 {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:147px;
  2389. top:122px;
  2390. width:49px;
  2391. height:17px;
  2392. display:flex;
  2393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2394. font-weight:400;
  2395. font-style:normal;
  2396. font-size:12px;
  2397. color:#AAAAAA;
  2398. }
  2399. #u15587 .text {
  2400. position:absolute;
  2401. align-self:flex-start;
  2402. padding:0px 0px 0px 0px;
  2403. box-sizing:border-box;
  2404. width:100%;
  2405. }
  2406. #u15587_text {
  2407. border-width:0px;
  2408. white-space:nowrap;
  2409. text-transform:none;
  2410. }
  2411. #u15588_div {
  2412. border-width:0px;
  2413. position:absolute;
  2414. left:0px;
  2415. top:0px;
  2416. width:65px;
  2417. height:22px;
  2418. background:inherit;
  2419. background-color:rgba(255, 255, 255, 0);
  2420. border:none;
  2421. border-radius:0px;
  2422. -moz-box-shadow:none;
  2423. -webkit-box-shadow:none;
  2424. box-shadow:none;
  2425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2426. font-weight:400;
  2427. font-style:normal;
  2428. font-size:16px;
  2429. }
  2430. #u15588 {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:147px;
  2434. top:200px;
  2435. width:65px;
  2436. height:22px;
  2437. display:flex;
  2438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2439. font-weight:400;
  2440. font-style:normal;
  2441. font-size:16px;
  2442. }
  2443. #u15588 .text {
  2444. position:absolute;
  2445. align-self:flex-start;
  2446. padding:0px 0px 0px 0px;
  2447. box-sizing:border-box;
  2448. width:100%;
  2449. }
  2450. #u15588_text {
  2451. border-width:0px;
  2452. white-space:nowrap;
  2453. text-transform:none;
  2454. }
  2455. #u15589_div {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:0px;
  2459. top:0px;
  2460. width:81px;
  2461. height:22px;
  2462. background:inherit;
  2463. background-color:rgba(255, 255, 255, 0);
  2464. border:none;
  2465. border-radius:0px;
  2466. -moz-box-shadow:none;
  2467. -webkit-box-shadow:none;
  2468. box-shadow:none;
  2469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2470. font-weight:400;
  2471. font-style:normal;
  2472. font-size:16px;
  2473. }
  2474. #u15589 {
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:147px;
  2478. top:484px;
  2479. width:81px;
  2480. height:22px;
  2481. display:flex;
  2482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2483. font-weight:400;
  2484. font-style:normal;
  2485. font-size:16px;
  2486. }
  2487. #u15589 .text {
  2488. position:absolute;
  2489. align-self:flex-start;
  2490. padding:0px 0px 0px 0px;
  2491. box-sizing:border-box;
  2492. width:100%;
  2493. }
  2494. #u15589_text {
  2495. border-width:0px;
  2496. white-space:nowrap;
  2497. text-transform:none;
  2498. }
  2499. #u15590_img {
  2500. border-width:0px;
  2501. position:absolute;
  2502. left:0px;
  2503. top:0px;
  2504. width:201px;
  2505. height:2px;
  2506. }
  2507. #u15590 {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:120px;
  2511. top:427px;
  2512. width:200px;
  2513. height:1px;
  2514. display:flex;
  2515. }
  2516. #u15590 .text {
  2517. position:absolute;
  2518. align-self:center;
  2519. padding:2px 2px 2px 2px;
  2520. box-sizing:border-box;
  2521. width:100%;
  2522. }
  2523. #u15590_text {
  2524. border-width:0px;
  2525. word-wrap:break-word;
  2526. text-transform:none;
  2527. visibility:hidden;
  2528. }
  2529. #u15591_div {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:0px;
  2533. top:0px;
  2534. width:65px;
  2535. height:22px;
  2536. background:inherit;
  2537. background-color:rgba(255, 255, 255, 0);
  2538. border:none;
  2539. border-radius:0px;
  2540. -moz-box-shadow:none;
  2541. -webkit-box-shadow:none;
  2542. box-shadow:none;
  2543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2544. font-weight:400;
  2545. font-style:normal;
  2546. font-size:16px;
  2547. }
  2548. #u15591 {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:147px;
  2552. top:526px;
  2553. width:65px;
  2554. height:22px;
  2555. display:flex;
  2556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2557. font-weight:400;
  2558. font-style:normal;
  2559. font-size:16px;
  2560. }
  2561. #u15591 .text {
  2562. position:absolute;
  2563. align-self:flex-start;
  2564. padding:0px 0px 0px 0px;
  2565. box-sizing:border-box;
  2566. width:100%;
  2567. }
  2568. #u15591_text {
  2569. border-width:0px;
  2570. white-space:nowrap;
  2571. text-transform:none;
  2572. }
  2573. #u15592_div {
  2574. border-width:0px;
  2575. position:absolute;
  2576. left:0px;
  2577. top:0px;
  2578. width:49px;
  2579. height:17px;
  2580. background:inherit;
  2581. background-color:rgba(255, 255, 255, 0);
  2582. border:none;
  2583. border-radius:0px;
  2584. -moz-box-shadow:none;
  2585. -webkit-box-shadow:none;
  2586. box-shadow:none;
  2587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2588. font-weight:400;
  2589. font-style:normal;
  2590. font-size:12px;
  2591. color:#AAAAAA;
  2592. }
  2593. #u15592 {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:147px;
  2597. top:447px;
  2598. width:49px;
  2599. height:17px;
  2600. display:flex;
  2601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2602. font-weight:400;
  2603. font-style:normal;
  2604. font-size:12px;
  2605. color:#AAAAAA;
  2606. }
  2607. #u15592 .text {
  2608. position:absolute;
  2609. align-self:flex-start;
  2610. padding:0px 0px 0px 0px;
  2611. box-sizing:border-box;
  2612. width:100%;
  2613. }
  2614. #u15592_text {
  2615. border-width:0px;
  2616. white-space:nowrap;
  2617. text-transform:none;
  2618. }
  2619. #u15593_div {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:0px;
  2623. top:0px;
  2624. width:81px;
  2625. height:22px;
  2626. background:inherit;
  2627. background-color:rgba(255, 255, 255, 0);
  2628. border:none;
  2629. border-radius:0px;
  2630. -moz-box-shadow:none;
  2631. -webkit-box-shadow:none;
  2632. box-shadow:none;
  2633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2634. font-weight:400;
  2635. font-style:normal;
  2636. font-size:16px;
  2637. }
  2638. #u15593 {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:147px;
  2642. top:652px;
  2643. width:81px;
  2644. height:22px;
  2645. display:flex;
  2646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2647. font-weight:400;
  2648. font-style:normal;
  2649. font-size:16px;
  2650. }
  2651. #u15593 .text {
  2652. position:absolute;
  2653. align-self:flex-start;
  2654. padding:0px 0px 0px 0px;
  2655. box-sizing:border-box;
  2656. width:100%;
  2657. }
  2658. #u15593_text {
  2659. border-width:0px;
  2660. white-space:nowrap;
  2661. text-transform:none;
  2662. }
  2663. #u15594_div {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:0px;
  2668. width:65px;
  2669. height:22px;
  2670. background:inherit;
  2671. background-color:rgba(255, 255, 255, 0);
  2672. border:none;
  2673. border-radius:0px;
  2674. -moz-box-shadow:none;
  2675. -webkit-box-shadow:none;
  2676. box-shadow:none;
  2677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2678. font-weight:400;
  2679. font-style:normal;
  2680. font-size:16px;
  2681. }
  2682. #u15594 {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:147px;
  2686. top:568px;
  2687. width:65px;
  2688. height:22px;
  2689. display:flex;
  2690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2691. font-weight:400;
  2692. font-style:normal;
  2693. font-size:16px;
  2694. }
  2695. #u15594 .text {
  2696. position:absolute;
  2697. align-self:flex-start;
  2698. padding:0px 0px 0px 0px;
  2699. box-sizing:border-box;
  2700. width:100%;
  2701. }
  2702. #u15594_text {
  2703. border-width:0px;
  2704. white-space:nowrap;
  2705. text-transform:none;
  2706. }
  2707. #u15595_div {
  2708. border-width:0px;
  2709. position:absolute;
  2710. left:0px;
  2711. top:0px;
  2712. width:65px;
  2713. height:22px;
  2714. background:inherit;
  2715. background-color:rgba(255, 255, 255, 0);
  2716. border:none;
  2717. border-radius:0px;
  2718. -moz-box-shadow:none;
  2719. -webkit-box-shadow:none;
  2720. box-shadow:none;
  2721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2722. font-weight:400;
  2723. font-style:normal;
  2724. font-size:16px;
  2725. }
  2726. #u15595 {
  2727. border-width:0px;
  2728. position:absolute;
  2729. left:147px;
  2730. top:610px;
  2731. width:65px;
  2732. height:22px;
  2733. display:flex;
  2734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2735. font-weight:400;
  2736. font-style:normal;
  2737. font-size:16px;
  2738. }
  2739. #u15595 .text {
  2740. position:absolute;
  2741. align-self:flex-start;
  2742. padding:0px 0px 0px 0px;
  2743. box-sizing:border-box;
  2744. width:100%;
  2745. }
  2746. #u15595_text {
  2747. border-width:0px;
  2748. white-space:nowrap;
  2749. text-transform:none;
  2750. }
  2751. #u15596_div {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:0px;
  2755. top:0px;
  2756. width:65px;
  2757. height:22px;
  2758. background:inherit;
  2759. background-color:rgba(255, 255, 255, 0);
  2760. border:none;
  2761. border-radius:0px;
  2762. -moz-box-shadow:none;
  2763. -webkit-box-shadow:none;
  2764. box-shadow:none;
  2765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2766. font-weight:400;
  2767. font-style:normal;
  2768. font-size:16px;
  2769. }
  2770. #u15596 {
  2771. border-width:0px;
  2772. position:absolute;
  2773. left:147px;
  2774. top:341px;
  2775. width:65px;
  2776. height:22px;
  2777. display:flex;
  2778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2779. font-weight:400;
  2780. font-style:normal;
  2781. font-size:16px;
  2782. }
  2783. #u15596 .text {
  2784. position:absolute;
  2785. align-self:flex-start;
  2786. padding:0px 0px 0px 0px;
  2787. box-sizing:border-box;
  2788. width:100%;
  2789. }
  2790. #u15596_text {
  2791. border-width:0px;
  2792. white-space:nowrap;
  2793. text-transform:none;
  2794. }
  2795. #u15597_img {
  2796. border-width:0px;
  2797. position:absolute;
  2798. left:0px;
  2799. top:0px;
  2800. width:201px;
  2801. height:2px;
  2802. }
  2803. #u15597 {
  2804. border-width:0px;
  2805. position:absolute;
  2806. left:120px;
  2807. top:284px;
  2808. width:200px;
  2809. height:1px;
  2810. display:flex;
  2811. }
  2812. #u15597 .text {
  2813. position:absolute;
  2814. align-self:center;
  2815. padding:2px 2px 2px 2px;
  2816. box-sizing:border-box;
  2817. width:100%;
  2818. }
  2819. #u15597_text {
  2820. border-width:0px;
  2821. word-wrap:break-word;
  2822. text-transform:none;
  2823. visibility:hidden;
  2824. }
  2825. #u15598_div {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:0px;
  2829. top:0px;
  2830. width:49px;
  2831. height:17px;
  2832. background:inherit;
  2833. background-color:rgba(255, 255, 255, 0);
  2834. border:none;
  2835. border-radius:0px;
  2836. -moz-box-shadow:none;
  2837. -webkit-box-shadow:none;
  2838. box-shadow:none;
  2839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2840. font-weight:400;
  2841. font-style:normal;
  2842. font-size:12px;
  2843. color:#AAAAAA;
  2844. }
  2845. #u15598 {
  2846. border-width:0px;
  2847. position:absolute;
  2848. left:147px;
  2849. top:304px;
  2850. width:49px;
  2851. height:17px;
  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:#AAAAAA;
  2858. }
  2859. #u15598 .text {
  2860. position:absolute;
  2861. align-self:flex-start;
  2862. padding:0px 0px 0px 0px;
  2863. box-sizing:border-box;
  2864. width:100%;
  2865. }
  2866. #u15598_text {
  2867. border-width:0px;
  2868. white-space:nowrap;
  2869. text-transform:none;
  2870. }
  2871. #u15599_div {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:0px;
  2875. top:0px;
  2876. width:65px;
  2877. height:22px;
  2878. background:inherit;
  2879. background-color:rgba(255, 255, 255, 0);
  2880. border:none;
  2881. border-radius:0px;
  2882. -moz-box-shadow:none;
  2883. -webkit-box-shadow:none;
  2884. box-shadow:none;
  2885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2886. font-weight:400;
  2887. font-style:normal;
  2888. font-size:16px;
  2889. }
  2890. #u15599 {
  2891. border-width:0px;
  2892. position:absolute;
  2893. left:147px;
  2894. top:383px;
  2895. width:65px;
  2896. height:22px;
  2897. display:flex;
  2898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2899. font-weight:400;
  2900. font-style:normal;
  2901. font-size:16px;
  2902. }
  2903. #u15599 .text {
  2904. position:absolute;
  2905. align-self:flex-start;
  2906. padding:0px 0px 0px 0px;
  2907. box-sizing:border-box;
  2908. width:100%;
  2909. }
  2910. #u15599_text {
  2911. border-width:0px;
  2912. white-space:nowrap;
  2913. text-transform:none;
  2914. }
  2915. #u15600_div {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:0px;
  2919. top:0px;
  2920. width:65px;
  2921. height:22px;
  2922. background:inherit;
  2923. background-color:rgba(255, 255, 255, 0);
  2924. border:none;
  2925. border-radius:0px;
  2926. -moz-box-shadow:none;
  2927. -webkit-box-shadow:none;
  2928. box-shadow:none;
  2929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2930. font-weight:400;
  2931. font-style:normal;
  2932. font-size:16px;
  2933. }
  2934. #u15600 {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:147px;
  2938. top:159px;
  2939. width:65px;
  2940. height:22px;
  2941. display:flex;
  2942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2943. font-weight:400;
  2944. font-style:normal;
  2945. font-size:16px;
  2946. }
  2947. #u15600 .text {
  2948. position:absolute;
  2949. align-self:flex-start;
  2950. padding:0px 0px 0px 0px;
  2951. box-sizing:border-box;
  2952. width:100%;
  2953. }
  2954. #u15600_text {
  2955. border-width:0px;
  2956. white-space:nowrap;
  2957. text-transform:none;
  2958. }
  2959. #u15601 {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:0px;
  2963. top:0px;
  2964. width:0px;
  2965. height:0px;
  2966. }
  2967. #u15602_div {
  2968. border-width:0px;
  2969. position:absolute;
  2970. left:0px;
  2971. top:0px;
  2972. width:300px;
  2973. height:1180px;
  2974. background:inherit;
  2975. background-color:rgba(240, 242, 245, 1);
  2976. border:none;
  2977. border-radius:0px;
  2978. -moz-box-shadow:none;
  2979. -webkit-box-shadow:none;
  2980. box-shadow:none;
  2981. }
  2982. #u15602 {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:330px;
  2986. top:50px;
  2987. width:300px;
  2988. height:1180px;
  2989. display:flex;
  2990. }
  2991. #u15602 .text {
  2992. position:absolute;
  2993. align-self:center;
  2994. padding:2px 2px 2px 2px;
  2995. box-sizing:border-box;
  2996. width:100%;
  2997. }
  2998. #u15602_text {
  2999. border-width:0px;
  3000. word-wrap:break-word;
  3001. text-transform:none;
  3002. visibility:hidden;
  3003. }
  3004. #u15603 {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:0px;
  3008. top:0px;
  3009. width:0px;
  3010. height:0px;
  3011. }
  3012. #u15604_div {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:0px;
  3016. top:0px;
  3017. width:260px;
  3018. height:40px;
  3019. background:inherit;
  3020. background-color:rgba(255, 255, 255, 1);
  3021. box-sizing:border-box;
  3022. border-width:1px;
  3023. border-style:solid;
  3024. border-color:rgba(242, 242, 242, 1);
  3025. border-radius:4px;
  3026. -moz-box-shadow:none;
  3027. -webkit-box-shadow:none;
  3028. box-shadow:none;
  3029. font-family:'Microsoft YaHei', sans-serif;
  3030. font-weight:400;
  3031. font-style:normal;
  3032. font-size:14px;
  3033. color:#CCCCCC;
  3034. text-align:left;
  3035. }
  3036. #u15604 {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:350px;
  3040. top:130px;
  3041. width:260px;
  3042. height:40px;
  3043. display:flex;
  3044. font-family:'Microsoft YaHei', sans-serif;
  3045. font-weight:400;
  3046. font-style:normal;
  3047. font-size:14px;
  3048. color:#CCCCCC;
  3049. text-align:left;
  3050. }
  3051. #u15604 .text {
  3052. position:absolute;
  3053. align-self:center;
  3054. padding:2px 8px 2px 8px;
  3055. box-sizing:border-box;
  3056. width:100%;
  3057. }
  3058. #u15604_text {
  3059. border-width:0px;
  3060. word-wrap:break-word;
  3061. text-transform:none;
  3062. visibility:hidden;
  3063. }
  3064. #u15605_input {
  3065. position:absolute;
  3066. left:0px;
  3067. top:0px;
  3068. width:217px;
  3069. height:33px;
  3070. padding:2px 2px 2px 2px;
  3071. font-family:'Microsoft YaHei', sans-serif;
  3072. font-weight:400;
  3073. font-style:normal;
  3074. font-size:14px;
  3075. letter-spacing:normal;
  3076. color:#000000;
  3077. vertical-align:none;
  3078. text-align:left;
  3079. text-transform:none;
  3080. background-color:transparent;
  3081. border-color:transparent;
  3082. }
  3083. #u15605_input.disabled {
  3084. position:absolute;
  3085. left:0px;
  3086. top:0px;
  3087. width:217px;
  3088. height:33px;
  3089. padding:2px 2px 2px 2px;
  3090. font-family:'Microsoft YaHei', sans-serif;
  3091. font-weight:400;
  3092. font-style:normal;
  3093. font-size:14px;
  3094. letter-spacing:normal;
  3095. color:#000000;
  3096. vertical-align:none;
  3097. text-align:left;
  3098. text-transform:none;
  3099. background-color:transparent;
  3100. border-color:transparent;
  3101. }
  3102. #u15605_div {
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:0px;
  3106. top:0px;
  3107. width:217px;
  3108. height:33px;
  3109. background:inherit;
  3110. background-color:rgba(255, 255, 255, 1);
  3111. border:none;
  3112. border-radius:0px;
  3113. -moz-box-shadow:none;
  3114. -webkit-box-shadow:none;
  3115. box-shadow:none;
  3116. font-family:'Microsoft YaHei', sans-serif;
  3117. font-weight:400;
  3118. font-style:normal;
  3119. font-size:14px;
  3120. }
  3121. #u15605 {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:358px;
  3125. top:131px;
  3126. width:217px;
  3127. height:33px;
  3128. display:flex;
  3129. font-family:'Microsoft YaHei', sans-serif;
  3130. font-weight:400;
  3131. font-style:normal;
  3132. font-size:14px;
  3133. }
  3134. #u15605 .text {
  3135. position:absolute;
  3136. align-self:center;
  3137. padding:2px 2px 2px 2px;
  3138. box-sizing:border-box;
  3139. width:100%;
  3140. }
  3141. #u15605_div.disabled {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:0px;
  3145. top:0px;
  3146. width:217px;
  3147. height:33px;
  3148. background:inherit;
  3149. background-color:rgba(240, 240, 240, 1);
  3150. border:none;
  3151. border-radius:0px;
  3152. -moz-box-shadow:none;
  3153. -webkit-box-shadow:none;
  3154. box-shadow:none;
  3155. font-family:'Microsoft YaHei', sans-serif;
  3156. font-weight:400;
  3157. font-style:normal;
  3158. font-size:14px;
  3159. }
  3160. #u15605.disabled {
  3161. }
  3162. #u15606_img {
  3163. border-width:0px;
  3164. position:absolute;
  3165. left:0px;
  3166. top:0px;
  3167. width:14px;
  3168. height:14px;
  3169. }
  3170. #u15606 {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:582px;
  3174. top:142px;
  3175. width:14px;
  3176. height:14px;
  3177. display:flex;
  3178. }
  3179. #u15606 .text {
  3180. position:absolute;
  3181. align-self:center;
  3182. padding:2px 2px 2px 2px;
  3183. box-sizing:border-box;
  3184. width:100%;
  3185. }
  3186. #u15606_text {
  3187. border-width:0px;
  3188. word-wrap:break-word;
  3189. text-transform:none;
  3190. visibility:hidden;
  3191. }
  3192. #u15607 {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:0px;
  3196. top:0px;
  3197. width:0px;
  3198. height:0px;
  3199. }
  3200. #u15608_div {
  3201. border-width:0px;
  3202. position:absolute;
  3203. left:0px;
  3204. top:0px;
  3205. width:260px;
  3206. height:60px;
  3207. background:inherit;
  3208. background-color:rgba(0, 153, 255, 0.0980392156862745);
  3209. border:none;
  3210. border-radius:4px;
  3211. -moz-box-shadow:none;
  3212. -webkit-box-shadow:none;
  3213. box-shadow:none;
  3214. font-family:'Microsoft YaHei', sans-serif;
  3215. font-weight:400;
  3216. font-style:normal;
  3217. font-size:14px;
  3218. color:#CCCCCC;
  3219. text-align:left;
  3220. }
  3221. #u15608 {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:350px;
  3225. top:190px;
  3226. width:260px;
  3227. height:60px;
  3228. display:flex;
  3229. font-family:'Microsoft YaHei', sans-serif;
  3230. font-weight:400;
  3231. font-style:normal;
  3232. font-size:14px;
  3233. color:#CCCCCC;
  3234. text-align:left;
  3235. }
  3236. #u15608 .text {
  3237. position:absolute;
  3238. align-self:center;
  3239. padding:2px 8px 2px 8px;
  3240. box-sizing:border-box;
  3241. width:100%;
  3242. }
  3243. #u15608_text {
  3244. border-width:0px;
  3245. word-wrap:break-word;
  3246. text-transform:none;
  3247. visibility:hidden;
  3248. }
  3249. #u15609_div {
  3250. border-width:0px;
  3251. position:absolute;
  3252. left:0px;
  3253. top:0px;
  3254. width:63px;
  3255. height:20px;
  3256. background:inherit;
  3257. background-color:rgba(51, 51, 51, 0);
  3258. border:none;
  3259. border-radius:4px;
  3260. -moz-box-shadow:none;
  3261. -webkit-box-shadow:none;
  3262. box-shadow:none;
  3263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3264. font-weight:400;
  3265. font-style:normal;
  3266. font-size:14px;
  3267. text-align:left;
  3268. }
  3269. #u15609 {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:367px;
  3273. top:213px;
  3274. width:63px;
  3275. height:20px;
  3276. display:flex;
  3277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3278. font-weight:400;
  3279. font-style:normal;
  3280. font-size:14px;
  3281. text-align:left;
  3282. }
  3283. #u15609 .text {
  3284. position:absolute;
  3285. align-self:center;
  3286. padding:0px 0px 0px 0px;
  3287. box-sizing:border-box;
  3288. width:100%;
  3289. }
  3290. #u15609_text {
  3291. border-width:0px;
  3292. white-space:nowrap;
  3293. text-transform:none;
  3294. }
  3295. #u15610 {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:0px;
  3299. top:0px;
  3300. width:0px;
  3301. height:0px;
  3302. }
  3303. #u15611_div {
  3304. border-width:0px;
  3305. position:absolute;
  3306. left:0px;
  3307. top:0px;
  3308. width:260px;
  3309. height:60px;
  3310. background:inherit;
  3311. background-color:rgba(255, 255, 255, 0.0980392156862745);
  3312. border:none;
  3313. border-radius:4px;
  3314. -moz-box-shadow:none;
  3315. -webkit-box-shadow:none;
  3316. box-shadow:none;
  3317. font-family:'Microsoft YaHei', sans-serif;
  3318. font-weight:400;
  3319. font-style:normal;
  3320. font-size:14px;
  3321. color:#CCCCCC;
  3322. text-align:left;
  3323. }
  3324. #u15611 {
  3325. border-width:0px;
  3326. position:absolute;
  3327. left:350px;
  3328. top:370px;
  3329. width:260px;
  3330. height:60px;
  3331. display:flex;
  3332. font-family:'Microsoft YaHei', sans-serif;
  3333. font-weight:400;
  3334. font-style:normal;
  3335. font-size:14px;
  3336. color:#CCCCCC;
  3337. text-align:left;
  3338. }
  3339. #u15611 .text {
  3340. position:absolute;
  3341. align-self:center;
  3342. padding:2px 8px 2px 8px;
  3343. box-sizing:border-box;
  3344. width:100%;
  3345. }
  3346. #u15611_text {
  3347. border-width:0px;
  3348. word-wrap:break-word;
  3349. text-transform:none;
  3350. visibility:hidden;
  3351. }
  3352. #u15612_div {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:0px;
  3356. top:0px;
  3357. width:65px;
  3358. height:20px;
  3359. background:inherit;
  3360. background-color:rgba(51, 51, 51, 0);
  3361. border:none;
  3362. border-radius:4px;
  3363. -moz-box-shadow:none;
  3364. -webkit-box-shadow:none;
  3365. box-shadow:none;
  3366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3367. font-weight:400;
  3368. font-style:normal;
  3369. font-size:14px;
  3370. text-align:left;
  3371. }
  3372. #u15612 {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:365px;
  3376. top:393px;
  3377. width:65px;
  3378. height:20px;
  3379. display:flex;
  3380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3381. font-weight:400;
  3382. font-style:normal;
  3383. font-size:14px;
  3384. text-align:left;
  3385. }
  3386. #u15612 .text {
  3387. position:absolute;
  3388. align-self:center;
  3389. padding:0px 0px 0px 0px;
  3390. box-sizing:border-box;
  3391. width:100%;
  3392. }
  3393. #u15612_text {
  3394. border-width:0px;
  3395. white-space:nowrap;
  3396. text-transform:none;
  3397. }
  3398. #u15613 {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:0px;
  3402. top:0px;
  3403. width:0px;
  3404. height:0px;
  3405. }
  3406. #u15614_div {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:0px;
  3410. top:0px;
  3411. width:260px;
  3412. height:60px;
  3413. background:inherit;
  3414. background-color:rgba(0, 153, 255, 0);
  3415. border:none;
  3416. border-radius:4px;
  3417. -moz-box-shadow:none;
  3418. -webkit-box-shadow:none;
  3419. box-shadow:none;
  3420. font-family:'Microsoft YaHei', sans-serif;
  3421. font-weight:400;
  3422. font-style:normal;
  3423. font-size:14px;
  3424. color:#CCCCCC;
  3425. text-align:left;
  3426. }
  3427. #u15614 {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:350px;
  3431. top:250px;
  3432. width:260px;
  3433. height:60px;
  3434. display:flex;
  3435. font-family:'Microsoft YaHei', sans-serif;
  3436. font-weight:400;
  3437. font-style:normal;
  3438. font-size:14px;
  3439. color:#CCCCCC;
  3440. text-align:left;
  3441. }
  3442. #u15614 .text {
  3443. position:absolute;
  3444. align-self:center;
  3445. padding:2px 8px 2px 8px;
  3446. box-sizing:border-box;
  3447. width:100%;
  3448. }
  3449. #u15614_text {
  3450. border-width:0px;
  3451. word-wrap:break-word;
  3452. text-transform:none;
  3453. visibility:hidden;
  3454. }
  3455. #u15615_div {
  3456. border-width:0px;
  3457. position:absolute;
  3458. left:0px;
  3459. top:0px;
  3460. width:65px;
  3461. height:20px;
  3462. background:inherit;
  3463. background-color:rgba(51, 51, 51, 0);
  3464. border:none;
  3465. border-radius:4px;
  3466. -moz-box-shadow:none;
  3467. -webkit-box-shadow:none;
  3468. box-shadow:none;
  3469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3470. font-weight:400;
  3471. font-style:normal;
  3472. font-size:14px;
  3473. text-align:left;
  3474. }
  3475. #u15615 {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:365px;
  3479. top:273px;
  3480. width:65px;
  3481. height:20px;
  3482. display:flex;
  3483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3484. font-weight:400;
  3485. font-style:normal;
  3486. font-size:14px;
  3487. text-align:left;
  3488. }
  3489. #u15615 .text {
  3490. position:absolute;
  3491. align-self:center;
  3492. padding:0px 0px 0px 0px;
  3493. box-sizing:border-box;
  3494. width:100%;
  3495. }
  3496. #u15615_text {
  3497. border-width:0px;
  3498. white-space:nowrap;
  3499. text-transform:none;
  3500. }
  3501. #u15616 {
  3502. border-width:0px;
  3503. position:absolute;
  3504. left:0px;
  3505. top:0px;
  3506. width:0px;
  3507. height:0px;
  3508. }
  3509. #u15617_div {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:0px;
  3513. top:0px;
  3514. width:260px;
  3515. height:60px;
  3516. background:inherit;
  3517. background-color:rgba(255, 255, 255, 0.0980392156862745);
  3518. border:none;
  3519. border-radius:4px;
  3520. -moz-box-shadow:none;
  3521. -webkit-box-shadow:none;
  3522. box-shadow:none;
  3523. font-family:'Microsoft YaHei', sans-serif;
  3524. font-weight:400;
  3525. font-style:normal;
  3526. font-size:14px;
  3527. color:#CCCCCC;
  3528. text-align:left;
  3529. }
  3530. #u15617 {
  3531. border-width:0px;
  3532. position:absolute;
  3533. left:350px;
  3534. top:310px;
  3535. width:260px;
  3536. height:60px;
  3537. display:flex;
  3538. font-family:'Microsoft YaHei', sans-serif;
  3539. font-weight:400;
  3540. font-style:normal;
  3541. font-size:14px;
  3542. color:#CCCCCC;
  3543. text-align:left;
  3544. }
  3545. #u15617 .text {
  3546. position:absolute;
  3547. align-self:center;
  3548. padding:2px 8px 2px 8px;
  3549. box-sizing:border-box;
  3550. width:100%;
  3551. }
  3552. #u15617_text {
  3553. border-width:0px;
  3554. word-wrap:break-word;
  3555. text-transform:none;
  3556. visibility:hidden;
  3557. }
  3558. #u15618_div {
  3559. border-width:0px;
  3560. position:absolute;
  3561. left:0px;
  3562. top:0px;
  3563. width:65px;
  3564. height:20px;
  3565. background:inherit;
  3566. background-color:rgba(51, 51, 51, 0);
  3567. border:none;
  3568. border-radius:4px;
  3569. -moz-box-shadow:none;
  3570. -webkit-box-shadow:none;
  3571. box-shadow:none;
  3572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3573. font-weight:400;
  3574. font-style:normal;
  3575. font-size:14px;
  3576. text-align:left;
  3577. }
  3578. #u15618 {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:365px;
  3582. top:333px;
  3583. width:65px;
  3584. height:20px;
  3585. display:flex;
  3586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3587. font-weight:400;
  3588. font-style:normal;
  3589. font-size:14px;
  3590. text-align:left;
  3591. }
  3592. #u15618 .text {
  3593. position:absolute;
  3594. align-self:center;
  3595. padding:0px 0px 0px 0px;
  3596. box-sizing:border-box;
  3597. width:100%;
  3598. }
  3599. #u15618_text {
  3600. border-width:0px;
  3601. white-space:nowrap;
  3602. text-transform:none;
  3603. }
  3604. #u15619_div {
  3605. border-width:0px;
  3606. position:absolute;
  3607. left:0px;
  3608. top:0px;
  3609. width:73px;
  3610. height:25px;
  3611. background:inherit;
  3612. background-color:rgba(255, 255, 255, 0);
  3613. border:none;
  3614. border-radius:0px;
  3615. -moz-box-shadow:none;
  3616. -webkit-box-shadow:none;
  3617. box-shadow:none;
  3618. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3619. font-weight:500;
  3620. font-style:normal;
  3621. font-size:18px;
  3622. }
  3623. #u15619 {
  3624. border-width:0px;
  3625. position:absolute;
  3626. left:350px;
  3627. top:77px;
  3628. width:73px;
  3629. height:25px;
  3630. display:flex;
  3631. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3632. font-weight:500;
  3633. font-style:normal;
  3634. font-size:18px;
  3635. }
  3636. #u15619 .text {
  3637. position:absolute;
  3638. align-self:flex-start;
  3639. padding:0px 0px 0px 0px;
  3640. box-sizing:border-box;
  3641. width:100%;
  3642. }
  3643. #u15619_text {
  3644. border-width:0px;
  3645. white-space:nowrap;
  3646. text-transform:none;
  3647. }
  3648. #u15620_div {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:0px;
  3652. top:0px;
  3653. width:80px;
  3654. height:25px;
  3655. background:inherit;
  3656. background-color:rgba(255, 255, 255, 0);
  3657. border:none;
  3658. border-radius:0px;
  3659. -moz-box-shadow:none;
  3660. -webkit-box-shadow:none;
  3661. box-shadow:none;
  3662. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3663. font-weight:500;
  3664. font-style:normal;
  3665. font-size:18px;
  3666. }
  3667. #u15620 {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:672px;
  3671. top:77px;
  3672. width:80px;
  3673. height:25px;
  3674. display:flex;
  3675. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3676. font-weight:500;
  3677. font-style:normal;
  3678. font-size:18px;
  3679. }
  3680. #u15620 .text {
  3681. position:absolute;
  3682. align-self:flex-start;
  3683. padding:0px 0px 0px 0px;
  3684. box-sizing:border-box;
  3685. width:100%;
  3686. }
  3687. #u15620_text {
  3688. border-width:0px;
  3689. white-space:nowrap;
  3690. text-transform:none;
  3691. }
  3692. #u15621 {
  3693. border-width:0px;
  3694. position:absolute;
  3695. left:0px;
  3696. top:0px;
  3697. width:0px;
  3698. height:0px;
  3699. }
  3700. #u15622 {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:0px;
  3704. top:0px;
  3705. width:0px;
  3706. height:0px;
  3707. }
  3708. #u15623_div {
  3709. border-width:0px;
  3710. position:absolute;
  3711. left:0px;
  3712. top:0px;
  3713. width:380px;
  3714. height:164px;
  3715. background:inherit;
  3716. background-color:rgba(255, 255, 255, 1);
  3717. box-sizing:border-box;
  3718. border-width:1px;
  3719. border-style:solid;
  3720. border-color:rgba(204, 204, 204, 1);
  3721. border-radius:4px;
  3722. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  3723. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  3724. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  3725. font-family:'Microsoft YaHei', sans-serif;
  3726. font-weight:400;
  3727. font-style:normal;
  3728. }
  3729. #u15623 {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:757px;
  3733. top:690px;
  3734. width:380px;
  3735. height:164px;
  3736. display:flex;
  3737. font-family:'Microsoft YaHei', sans-serif;
  3738. font-weight:400;
  3739. font-style:normal;
  3740. }
  3741. #u15623 .text {
  3742. position:absolute;
  3743. align-self:center;
  3744. padding:2px 2px 2px 2px;
  3745. box-sizing:border-box;
  3746. width:100%;
  3747. }
  3748. #u15623_text {
  3749. border-width:0px;
  3750. word-wrap:break-word;
  3751. text-transform:none;
  3752. visibility:hidden;
  3753. }
  3754. #u15624_div {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:0px;
  3758. top:0px;
  3759. width:299px;
  3760. height:44px;
  3761. background:inherit;
  3762. background-color:rgba(255, 255, 255, 0);
  3763. border:none;
  3764. border-radius:0px;
  3765. -moz-box-shadow:none;
  3766. -webkit-box-shadow:none;
  3767. box-shadow:none;
  3768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3769. font-weight:400;
  3770. font-style:normal;
  3771. font-size:14px;
  3772. color:#666666;
  3773. line-height:22px;
  3774. }
  3775. #u15624 {
  3776. border-width:0px;
  3777. position:absolute;
  3778. left:817px;
  3779. top:745px;
  3780. width:299px;
  3781. height:44px;
  3782. display:flex;
  3783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3784. font-weight:400;
  3785. font-style:normal;
  3786. font-size:14px;
  3787. color:#666666;
  3788. line-height:22px;
  3789. }
  3790. #u15624 .text {
  3791. position:absolute;
  3792. align-self:flex-start;
  3793. padding:0px 0px 0px 0px;
  3794. box-sizing:border-box;
  3795. width:100%;
  3796. }
  3797. #u15624_text {
  3798. border-width:0px;
  3799. word-wrap:break-word;
  3800. text-transform:none;
  3801. }
  3802. #u15625_div {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:0px;
  3806. top:0px;
  3807. width:163px;
  3808. height:21px;
  3809. background:inherit;
  3810. background-color:rgba(255, 255, 255, 0);
  3811. border:none;
  3812. border-radius:0px;
  3813. -moz-box-shadow:none;
  3814. -webkit-box-shadow:none;
  3815. box-shadow:none;
  3816. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  3817. font-weight:650;
  3818. font-style:normal;
  3819. font-size:18px;
  3820. color:#000000;
  3821. line-height:22px;
  3822. }
  3823. #u15625 {
  3824. border-width:0px;
  3825. position:absolute;
  3826. left:817px;
  3827. top:715px;
  3828. width:163px;
  3829. height:21px;
  3830. display:flex;
  3831. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  3832. font-weight:650;
  3833. font-style:normal;
  3834. font-size:18px;
  3835. color:#000000;
  3836. line-height:22px;
  3837. }
  3838. #u15625 .text {
  3839. position:absolute;
  3840. align-self:flex-start;
  3841. padding:0px 0px 0px 0px;
  3842. box-sizing:border-box;
  3843. width:100%;
  3844. }
  3845. #u15625_text {
  3846. border-width:0px;
  3847. white-space:nowrap;
  3848. text-transform:none;
  3849. }
  3850. #u15626_div {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:0px;
  3854. top:0px;
  3855. width:61px;
  3856. height:30px;
  3857. background:inherit;
  3858. background-color:rgba(24, 144, 255, 1);
  3859. border:none;
  3860. border-radius:4px;
  3861. -moz-box-shadow:none;
  3862. -webkit-box-shadow:none;
  3863. box-shadow:none;
  3864. font-family:'Microsoft YaHei', sans-serif;
  3865. font-weight:400;
  3866. font-style:normal;
  3867. font-size:14px;
  3868. color:#FFFFFF;
  3869. }
  3870. #u15626 {
  3871. border-width:0px;
  3872. position:absolute;
  3873. left:1059px;
  3874. top:805px;
  3875. width:61px;
  3876. height:30px;
  3877. display:flex;
  3878. font-family:'Microsoft YaHei', sans-serif;
  3879. font-weight:400;
  3880. font-style:normal;
  3881. font-size:14px;
  3882. color:#FFFFFF;
  3883. }
  3884. #u15626 .text {
  3885. position:absolute;
  3886. align-self:center;
  3887. padding:2px 16px 2px 16px;
  3888. box-sizing:border-box;
  3889. width:100%;
  3890. }
  3891. #u15626_text {
  3892. border-width:0px;
  3893. white-space:nowrap;
  3894. text-transform:none;
  3895. }
  3896. #u15627_div {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:0px;
  3900. top:0px;
  3901. width:66px;
  3902. height:30px;
  3903. background:inherit;
  3904. background-color:rgba(255, 255, 255, 1);
  3905. box-sizing:border-box;
  3906. border-width:1px;
  3907. border-style:solid;
  3908. border-color:rgba(217, 217, 217, 1);
  3909. border-radius:4px;
  3910. -moz-box-shadow:none;
  3911. -webkit-box-shadow:none;
  3912. box-shadow:none;
  3913. font-family:'Microsoft YaHei', sans-serif;
  3914. font-weight:400;
  3915. font-style:normal;
  3916. font-size:14px;
  3917. color:rgba(0, 0, 0, 0.647058823529412);
  3918. line-height:21px;
  3919. }
  3920. #u15627 {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:977px;
  3924. top:805px;
  3925. width:66px;
  3926. height:30px;
  3927. display:flex;
  3928. font-family:'Microsoft YaHei', sans-serif;
  3929. font-weight:400;
  3930. font-style:normal;
  3931. font-size:14px;
  3932. color:rgba(0, 0, 0, 0.647058823529412);
  3933. line-height:21px;
  3934. }
  3935. #u15627 .text {
  3936. position:absolute;
  3937. align-self:center;
  3938. padding:2px 16px 2px 16px;
  3939. box-sizing:border-box;
  3940. width:100%;
  3941. }
  3942. #u15627_text {
  3943. border-width:0px;
  3944. white-space:nowrap;
  3945. text-transform:none;
  3946. }
  3947. #u15628_img {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:0px;
  3951. top:0px;
  3952. width:20px;
  3953. height:20px;
  3954. }
  3955. #u15628 {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:786px;
  3959. top:719px;
  3960. width:20px;
  3961. height:20px;
  3962. display:flex;
  3963. }
  3964. #u15628 .text {
  3965. position:absolute;
  3966. align-self:center;
  3967. padding:2px 2px 2px 2px;
  3968. box-sizing:border-box;
  3969. width:100%;
  3970. }
  3971. #u15628_text {
  3972. border-width:0px;
  3973. word-wrap:break-word;
  3974. text-transform:none;
  3975. visibility:hidden;
  3976. }
  3977. #u15629_div {
  3978. border-width:0px;
  3979. position:absolute;
  3980. left:0px;
  3981. top:0px;
  3982. width:497px;
  3983. height:22px;
  3984. background:inherit;
  3985. background-color:rgba(255, 255, 255, 0);
  3986. border:none;
  3987. border-radius:0px;
  3988. -moz-box-shadow:none;
  3989. -webkit-box-shadow:none;
  3990. box-shadow:none;
  3991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3992. font-weight:400;
  3993. font-style:normal;
  3994. font-size:14px;
  3995. color:#D9001B;
  3996. line-height:22px;
  3997. }
  3998. #u15629 {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:777px;
  4002. top:101px;
  4003. width:497px;
  4004. height:22px;
  4005. display:flex;
  4006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4007. font-weight:400;
  4008. font-style:normal;
  4009. font-size:14px;
  4010. color:#D9001B;
  4011. line-height:22px;
  4012. }
  4013. #u15629 .text {
  4014. position:absolute;
  4015. align-self:flex-start;
  4016. padding:0px 0px 0px 0px;
  4017. box-sizing:border-box;
  4018. width:100%;
  4019. }
  4020. #u15629_text {
  4021. border-width:0px;
  4022. white-space:nowrap;
  4023. text-transform:none;
  4024. }
  4025. #u15631_div {
  4026. border-width:0px;
  4027. position:absolute;
  4028. left:0px;
  4029. top:0px;
  4030. width:1480px;
  4031. height:1200px;
  4032. background:inherit;
  4033. background-color:rgba(242, 242, 242, 1);
  4034. border:none;
  4035. border-radius:0px;
  4036. -moz-box-shadow:none;
  4037. -webkit-box-shadow:none;
  4038. box-shadow:none;
  4039. }
  4040. #u15631 {
  4041. border-width:0px;
  4042. position:absolute;
  4043. left:1749px;
  4044. top:50px;
  4045. width:1480px;
  4046. height:1200px;
  4047. display:flex;
  4048. }
  4049. #u15631 .text {
  4050. position:absolute;
  4051. align-self:center;
  4052. padding:2px 2px 2px 2px;
  4053. box-sizing:border-box;
  4054. width:100%;
  4055. }
  4056. #u15631_text {
  4057. border-width:0px;
  4058. word-wrap:break-word;
  4059. text-transform:none;
  4060. visibility:hidden;
  4061. }
  4062. #u15632_div {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:0px;
  4066. top:0px;
  4067. width:129px;
  4068. height:22px;
  4069. background:inherit;
  4070. background-color:rgba(255, 255, 255, 0);
  4071. border:none;
  4072. border-radius:0px;
  4073. -moz-box-shadow:none;
  4074. -webkit-box-shadow:none;
  4075. box-shadow:none;
  4076. font-size:16px;
  4077. color:#FFFFFF;
  4078. }
  4079. #u15632 {
  4080. border-width:0px;
  4081. position:absolute;
  4082. left:1678px;
  4083. top:14px;
  4084. width:129px;
  4085. height:22px;
  4086. display:flex;
  4087. font-size:16px;
  4088. color:#FFFFFF;
  4089. }
  4090. #u15632 .text {
  4091. position:absolute;
  4092. align-self:flex-start;
  4093. padding:0px 0px 0px 0px;
  4094. box-sizing:border-box;
  4095. width:100%;
  4096. }
  4097. #u15632_text {
  4098. border-width:0px;
  4099. white-space:nowrap;
  4100. text-transform:none;
  4101. }
  4102. #u15633_div {
  4103. border-width:0px;
  4104. position:absolute;
  4105. left:0px;
  4106. top:0px;
  4107. width:1600px;
  4108. height:50px;
  4109. background:inherit;
  4110. background-color:rgba(30, 42, 68, 1);
  4111. border:none;
  4112. border-radius:0px;
  4113. -moz-box-shadow:none;
  4114. -webkit-box-shadow:none;
  4115. box-shadow:none;
  4116. color:#AFB3B6;
  4117. }
  4118. #u15633 {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:1629px;
  4122. top:0px;
  4123. width:1600px;
  4124. height:50px;
  4125. display:flex;
  4126. color:#AFB3B6;
  4127. }
  4128. #u15633 .text {
  4129. position:absolute;
  4130. align-self:center;
  4131. padding:2px 2px 2px 2px;
  4132. box-sizing:border-box;
  4133. width:100%;
  4134. }
  4135. #u15633_text {
  4136. border-width:0px;
  4137. word-wrap:break-word;
  4138. text-transform:none;
  4139. visibility:hidden;
  4140. }
  4141. #u15634 {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:0px;
  4145. top:0px;
  4146. width:0px;
  4147. height:0px;
  4148. }
  4149. #u15635_img {
  4150. border-width:0px;
  4151. position:absolute;
  4152. left:0px;
  4153. top:0px;
  4154. width:31px;
  4155. height:31px;
  4156. }
  4157. #u15635 {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:1648px;
  4161. top:10px;
  4162. width:31px;
  4163. height:31px;
  4164. display:flex;
  4165. }
  4166. #u15635 .text {
  4167. position:absolute;
  4168. align-self:center;
  4169. padding:2px 2px 2px 2px;
  4170. box-sizing:border-box;
  4171. width:100%;
  4172. }
  4173. #u15635_text {
  4174. border-width:0px;
  4175. word-wrap:break-word;
  4176. text-transform:none;
  4177. }
  4178. #u15636_div {
  4179. border-width:0px;
  4180. position:absolute;
  4181. left:0px;
  4182. top:0px;
  4183. width:161px;
  4184. height:22px;
  4185. background:inherit;
  4186. background-color:rgba(255, 255, 255, 0);
  4187. border:none;
  4188. border-radius:0px;
  4189. -moz-box-shadow:none;
  4190. -webkit-box-shadow:none;
  4191. box-shadow:none;
  4192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4193. font-weight:400;
  4194. font-style:normal;
  4195. font-size:16px;
  4196. color:#FFFFFF;
  4197. }
  4198. #u15636 {
  4199. border-width:0px;
  4200. position:absolute;
  4201. left:1691px;
  4202. top:14px;
  4203. width:161px;
  4204. height:22px;
  4205. display:flex;
  4206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4207. font-weight:400;
  4208. font-style:normal;
  4209. font-size:16px;
  4210. color:#FFFFFF;
  4211. }
  4212. #u15636 .text {
  4213. position:absolute;
  4214. align-self:flex-start;
  4215. padding:0px 0px 0px 0px;
  4216. box-sizing:border-box;
  4217. width:100%;
  4218. }
  4219. #u15636_text {
  4220. border-width:0px;
  4221. white-space:nowrap;
  4222. text-transform:none;
  4223. }
  4224. #u15637_div {
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:0px;
  4228. top:0px;
  4229. width:120px;
  4230. height:1200px;
  4231. background:inherit;
  4232. background-color:rgba(30, 42, 68, 1);
  4233. border:none;
  4234. border-radius:0px;
  4235. -moz-box-shadow:none;
  4236. -webkit-box-shadow:none;
  4237. box-shadow:none;
  4238. color:#AFB3B6;
  4239. }
  4240. #u15637 {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:1629px;
  4244. top:47px;
  4245. width:120px;
  4246. height:1200px;
  4247. display:flex;
  4248. color:#AFB3B6;
  4249. }
  4250. #u15637 .text {
  4251. position:absolute;
  4252. align-self:center;
  4253. padding:2px 2px 2px 2px;
  4254. box-sizing:border-box;
  4255. width:100%;
  4256. }
  4257. #u15637_text {
  4258. border-width:0px;
  4259. word-wrap:break-word;
  4260. text-transform:none;
  4261. visibility:hidden;
  4262. }
  4263. #u15638 {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:0px;
  4267. top:0px;
  4268. width:0px;
  4269. height:0px;
  4270. }
  4271. #u15639_div {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:0px;
  4275. top:0px;
  4276. width:33px;
  4277. height:22px;
  4278. background:inherit;
  4279. background-color:rgba(255, 255, 255, 0);
  4280. border:none;
  4281. border-radius:0px;
  4282. -moz-box-shadow:none;
  4283. -webkit-box-shadow:none;
  4284. box-shadow:none;
  4285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4286. font-weight:400;
  4287. font-style:normal;
  4288. font-size:16px;
  4289. color:#FFFFFF;
  4290. }
  4291. #u15639 {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:1668px;
  4295. top:171px;
  4296. width:33px;
  4297. height:22px;
  4298. display:flex;
  4299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4300. font-weight:400;
  4301. font-style:normal;
  4302. font-size:16px;
  4303. color:#FFFFFF;
  4304. }
  4305. #u15639 .text {
  4306. position:absolute;
  4307. align-self:flex-start;
  4308. padding:0px 0px 0px 0px;
  4309. box-sizing:border-box;
  4310. width:100%;
  4311. }
  4312. #u15639_text {
  4313. border-width:0px;
  4314. white-space:nowrap;
  4315. text-transform:none;
  4316. }
  4317. #u15640_img {
  4318. border-width:0px;
  4319. position:absolute;
  4320. left:0px;
  4321. top:0px;
  4322. width:14px;
  4323. height:14px;
  4324. }
  4325. #u15640 {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:1649px;
  4329. top:175px;
  4330. width:14px;
  4331. height:14px;
  4332. display:flex;
  4333. }
  4334. #u15640 .text {
  4335. position:absolute;
  4336. align-self:center;
  4337. padding:2px 2px 2px 2px;
  4338. box-sizing:border-box;
  4339. width:100%;
  4340. }
  4341. #u15640_text {
  4342. border-width:0px;
  4343. word-wrap:break-word;
  4344. text-transform:none;
  4345. visibility:hidden;
  4346. }
  4347. #u15641 {
  4348. border-width:0px;
  4349. position:absolute;
  4350. left:0px;
  4351. top:0px;
  4352. width:0px;
  4353. height:0px;
  4354. }
  4355. #u15642_div {
  4356. border-width:0px;
  4357. position:absolute;
  4358. left:0px;
  4359. top:0px;
  4360. width:33px;
  4361. height:22px;
  4362. background:inherit;
  4363. background-color:rgba(255, 255, 255, 0);
  4364. border:none;
  4365. border-radius:0px;
  4366. -moz-box-shadow:none;
  4367. -webkit-box-shadow:none;
  4368. box-shadow:none;
  4369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4370. font-weight:400;
  4371. font-style:normal;
  4372. font-size:16px;
  4373. color:#FFFFFF;
  4374. }
  4375. #u15642 {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:1668px;
  4379. top:381px;
  4380. width:33px;
  4381. height:22px;
  4382. display:flex;
  4383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4384. font-weight:400;
  4385. font-style:normal;
  4386. font-size:16px;
  4387. color:#FFFFFF;
  4388. }
  4389. #u15642 .text {
  4390. position:absolute;
  4391. align-self:flex-start;
  4392. padding:0px 0px 0px 0px;
  4393. box-sizing:border-box;
  4394. width:100%;
  4395. }
  4396. #u15642_text {
  4397. border-width:0px;
  4398. white-space:nowrap;
  4399. text-transform:none;
  4400. }
  4401. #u15643_img {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:0px;
  4405. top:0px;
  4406. width:14px;
  4407. height:14px;
  4408. }
  4409. #u15643 {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:1649px;
  4413. top:385px;
  4414. width:14px;
  4415. height:14px;
  4416. display:flex;
  4417. }
  4418. #u15643 .text {
  4419. position:absolute;
  4420. align-self:center;
  4421. padding:2px 2px 2px 2px;
  4422. box-sizing:border-box;
  4423. width:100%;
  4424. }
  4425. #u15643_text {
  4426. border-width:0px;
  4427. word-wrap:break-word;
  4428. text-transform:none;
  4429. visibility:hidden;
  4430. }
  4431. #u15644 {
  4432. border-width:0px;
  4433. position:absolute;
  4434. left:0px;
  4435. top:0px;
  4436. width:0px;
  4437. height:0px;
  4438. }
  4439. #u15645_div {
  4440. border-width:0px;
  4441. position:absolute;
  4442. left:0px;
  4443. top:0px;
  4444. width:49px;
  4445. height:22px;
  4446. background:inherit;
  4447. background-color:rgba(255, 255, 255, 0);
  4448. border:none;
  4449. border-radius:0px;
  4450. -moz-box-shadow:none;
  4451. -webkit-box-shadow:none;
  4452. box-shadow:none;
  4453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4454. font-weight:400;
  4455. font-style:normal;
  4456. font-size:16px;
  4457. color:#FFFFFF;
  4458. }
  4459. #u15645 {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:1668px;
  4463. top:133px;
  4464. width:49px;
  4465. height:22px;
  4466. display:flex;
  4467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4468. font-weight:400;
  4469. font-style:normal;
  4470. font-size:16px;
  4471. color:#FFFFFF;
  4472. }
  4473. #u15645 .text {
  4474. position:absolute;
  4475. align-self:flex-start;
  4476. padding:0px 0px 0px 0px;
  4477. box-sizing:border-box;
  4478. width:100%;
  4479. }
  4480. #u15645_text {
  4481. border-width:0px;
  4482. white-space:nowrap;
  4483. text-transform:none;
  4484. }
  4485. #u15646_img {
  4486. border-width:0px;
  4487. position:absolute;
  4488. left:0px;
  4489. top:0px;
  4490. width:14px;
  4491. height:14px;
  4492. }
  4493. #u15646 {
  4494. border-width:0px;
  4495. position:absolute;
  4496. left:1649px;
  4497. top:137px;
  4498. width:14px;
  4499. height:14px;
  4500. display:flex;
  4501. }
  4502. #u15646 .text {
  4503. position:absolute;
  4504. align-self:center;
  4505. padding:2px 2px 2px 2px;
  4506. box-sizing:border-box;
  4507. width:100%;
  4508. }
  4509. #u15646_text {
  4510. border-width:0px;
  4511. word-wrap:break-word;
  4512. text-transform:none;
  4513. visibility:hidden;
  4514. }
  4515. #u15647 {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:0px;
  4519. top:0px;
  4520. width:0px;
  4521. height:0px;
  4522. }
  4523. #u15648_div {
  4524. border-width:0px;
  4525. position:absolute;
  4526. left:0px;
  4527. top:0px;
  4528. width:33px;
  4529. height:22px;
  4530. background:inherit;
  4531. background-color:rgba(255, 255, 255, 0);
  4532. border:none;
  4533. border-radius:0px;
  4534. -moz-box-shadow:none;
  4535. -webkit-box-shadow:none;
  4536. box-shadow:none;
  4537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4538. font-weight:400;
  4539. font-style:normal;
  4540. font-size:16px;
  4541. color:#FFFFFF;
  4542. }
  4543. #u15648 {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:1668px;
  4547. top:423px;
  4548. width:33px;
  4549. height:22px;
  4550. display:flex;
  4551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4552. font-weight:400;
  4553. font-style:normal;
  4554. font-size:16px;
  4555. color:#FFFFFF;
  4556. }
  4557. #u15648 .text {
  4558. position:absolute;
  4559. align-self:flex-start;
  4560. padding:0px 0px 0px 0px;
  4561. box-sizing:border-box;
  4562. width:100%;
  4563. }
  4564. #u15648_text {
  4565. border-width:0px;
  4566. white-space:nowrap;
  4567. text-transform:none;
  4568. }
  4569. #u15649_img {
  4570. border-width:0px;
  4571. position:absolute;
  4572. left:0px;
  4573. top:0px;
  4574. width:14px;
  4575. height:14px;
  4576. }
  4577. #u15649 {
  4578. border-width:0px;
  4579. position:absolute;
  4580. left:1649px;
  4581. top:427px;
  4582. width:14px;
  4583. height:14px;
  4584. display:flex;
  4585. }
  4586. #u15649 .text {
  4587. position:absolute;
  4588. align-self:center;
  4589. padding:2px 2px 2px 2px;
  4590. box-sizing:border-box;
  4591. width:100%;
  4592. }
  4593. #u15649_text {
  4594. border-width:0px;
  4595. word-wrap:break-word;
  4596. text-transform:none;
  4597. visibility:hidden;
  4598. }
  4599. #u15650 {
  4600. border-width:0px;
  4601. position:absolute;
  4602. left:0px;
  4603. top:0px;
  4604. width:0px;
  4605. height:0px;
  4606. }
  4607. #u15651_div {
  4608. border-width:0px;
  4609. position:absolute;
  4610. left:0px;
  4611. top:0px;
  4612. width:33px;
  4613. height:22px;
  4614. background:inherit;
  4615. background-color:rgba(255, 255, 255, 0);
  4616. border:none;
  4617. border-radius:0px;
  4618. -moz-box-shadow:none;
  4619. -webkit-box-shadow:none;
  4620. box-shadow:none;
  4621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4622. font-weight:400;
  4623. font-style:normal;
  4624. font-size:16px;
  4625. color:#FFFFFF;
  4626. }
  4627. #u15651 {
  4628. border-width:0px;
  4629. position:absolute;
  4630. left:1668px;
  4631. top:297px;
  4632. width:33px;
  4633. height:22px;
  4634. display:flex;
  4635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4636. font-weight:400;
  4637. font-style:normal;
  4638. font-size:16px;
  4639. color:#FFFFFF;
  4640. }
  4641. #u15651 .text {
  4642. position:absolute;
  4643. align-self:flex-start;
  4644. padding:0px 0px 0px 0px;
  4645. box-sizing:border-box;
  4646. width:100%;
  4647. }
  4648. #u15651_text {
  4649. border-width:0px;
  4650. white-space:nowrap;
  4651. text-transform:none;
  4652. }
  4653. #u15652_img {
  4654. border-width:0px;
  4655. position:absolute;
  4656. left:0px;
  4657. top:0px;
  4658. width:14px;
  4659. height:14px;
  4660. }
  4661. #u15652 {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:1649px;
  4665. top:301px;
  4666. width:14px;
  4667. height:14px;
  4668. display:flex;
  4669. }
  4670. #u15652 .text {
  4671. position:absolute;
  4672. align-self:center;
  4673. padding:2px 2px 2px 2px;
  4674. box-sizing:border-box;
  4675. width:100%;
  4676. }
  4677. #u15652_text {
  4678. border-width:0px;
  4679. word-wrap:break-word;
  4680. text-transform:none;
  4681. visibility:hidden;
  4682. }
  4683. #u15653 {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:0px;
  4687. top:0px;
  4688. width:0px;
  4689. height:0px;
  4690. }
  4691. #u15654_div {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:0px;
  4695. top:0px;
  4696. width:33px;
  4697. height:22px;
  4698. background:inherit;
  4699. background-color:rgba(255, 255, 255, 0);
  4700. border:none;
  4701. border-radius:0px;
  4702. -moz-box-shadow:none;
  4703. -webkit-box-shadow:none;
  4704. box-shadow:none;
  4705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4706. font-weight:400;
  4707. font-style:normal;
  4708. font-size:16px;
  4709. color:#FFFFFF;
  4710. }
  4711. #u15654 {
  4712. border-width:0px;
  4713. position:absolute;
  4714. left:1668px;
  4715. top:213px;
  4716. width:33px;
  4717. height:22px;
  4718. display:flex;
  4719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4720. font-weight:400;
  4721. font-style:normal;
  4722. font-size:16px;
  4723. color:#FFFFFF;
  4724. }
  4725. #u15654 .text {
  4726. position:absolute;
  4727. align-self:flex-start;
  4728. padding:0px 0px 0px 0px;
  4729. box-sizing:border-box;
  4730. width:100%;
  4731. }
  4732. #u15654_text {
  4733. border-width:0px;
  4734. white-space:nowrap;
  4735. text-transform:none;
  4736. }
  4737. #u15655_img {
  4738. border-width:0px;
  4739. position:absolute;
  4740. left:0px;
  4741. top:0px;
  4742. width:14px;
  4743. height:14px;
  4744. }
  4745. #u15655 {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:1649px;
  4749. top:217px;
  4750. width:14px;
  4751. height:14px;
  4752. display:flex;
  4753. }
  4754. #u15655 .text {
  4755. position:absolute;
  4756. align-self:center;
  4757. padding:2px 2px 2px 2px;
  4758. box-sizing:border-box;
  4759. width:100%;
  4760. }
  4761. #u15655_text {
  4762. border-width:0px;
  4763. word-wrap:break-word;
  4764. text-transform:none;
  4765. visibility:hidden;
  4766. }
  4767. #u15656 {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:0px;
  4771. top:0px;
  4772. width:0px;
  4773. height:0px;
  4774. }
  4775. #u15657_div {
  4776. border-width:0px;
  4777. position:absolute;
  4778. left:0px;
  4779. top:0px;
  4780. width:33px;
  4781. height:22px;
  4782. background:inherit;
  4783. background-color:rgba(255, 255, 255, 0);
  4784. border:none;
  4785. border-radius:0px;
  4786. -moz-box-shadow:none;
  4787. -webkit-box-shadow:none;
  4788. box-shadow:none;
  4789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4790. font-weight:400;
  4791. font-style:normal;
  4792. font-size:16px;
  4793. color:#FFFFFF;
  4794. }
  4795. #u15657 {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:1668px;
  4799. top:339px;
  4800. width:33px;
  4801. height:22px;
  4802. display:flex;
  4803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4804. font-weight:400;
  4805. font-style:normal;
  4806. font-size:16px;
  4807. color:#FFFFFF;
  4808. }
  4809. #u15657 .text {
  4810. position:absolute;
  4811. align-self:flex-start;
  4812. padding:0px 0px 0px 0px;
  4813. box-sizing:border-box;
  4814. width:100%;
  4815. }
  4816. #u15657_text {
  4817. border-width:0px;
  4818. white-space:nowrap;
  4819. text-transform:none;
  4820. }
  4821. #u15658_img {
  4822. border-width:0px;
  4823. position:absolute;
  4824. left:0px;
  4825. top:0px;
  4826. width:14px;
  4827. height:14px;
  4828. }
  4829. #u15658 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:1649px;
  4833. top:343px;
  4834. width:14px;
  4835. height:14px;
  4836. display:flex;
  4837. }
  4838. #u15658 .text {
  4839. position:absolute;
  4840. align-self:center;
  4841. padding:2px 2px 2px 2px;
  4842. box-sizing:border-box;
  4843. width:100%;
  4844. }
  4845. #u15658_text {
  4846. border-width:0px;
  4847. word-wrap:break-word;
  4848. text-transform:none;
  4849. visibility:hidden;
  4850. }
  4851. #u15659 {
  4852. border-width:0px;
  4853. position:absolute;
  4854. left:0px;
  4855. top:0px;
  4856. width:0px;
  4857. height:0px;
  4858. }
  4859. #u15660_div {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:0px;
  4863. top:0px;
  4864. width:33px;
  4865. height:22px;
  4866. background:inherit;
  4867. background-color:rgba(255, 255, 255, 0);
  4868. border:none;
  4869. border-radius:0px;
  4870. -moz-box-shadow:none;
  4871. -webkit-box-shadow:none;
  4872. box-shadow:none;
  4873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4874. font-weight:400;
  4875. font-style:normal;
  4876. font-size:16px;
  4877. color:#FFFFFF;
  4878. }
  4879. #u15660 {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:1668px;
  4883. top:465px;
  4884. width:33px;
  4885. height:22px;
  4886. display:flex;
  4887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4888. font-weight:400;
  4889. font-style:normal;
  4890. font-size:16px;
  4891. color:#FFFFFF;
  4892. }
  4893. #u15660 .text {
  4894. position:absolute;
  4895. align-self:flex-start;
  4896. padding:0px 0px 0px 0px;
  4897. box-sizing:border-box;
  4898. width:100%;
  4899. }
  4900. #u15660_text {
  4901. border-width:0px;
  4902. white-space:nowrap;
  4903. text-transform:none;
  4904. }
  4905. #u15661_img {
  4906. border-width:0px;
  4907. position:absolute;
  4908. left:0px;
  4909. top:0px;
  4910. width:14px;
  4911. height:14px;
  4912. }
  4913. #u15661 {
  4914. border-width:0px;
  4915. position:absolute;
  4916. left:1649px;
  4917. top:469px;
  4918. width:14px;
  4919. height:14px;
  4920. display:flex;
  4921. }
  4922. #u15661 .text {
  4923. position:absolute;
  4924. align-self:center;
  4925. padding:2px 2px 2px 2px;
  4926. box-sizing:border-box;
  4927. width:100%;
  4928. }
  4929. #u15661_text {
  4930. border-width:0px;
  4931. word-wrap:break-word;
  4932. text-transform:none;
  4933. visibility:hidden;
  4934. }
  4935. #u15662 {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:0px;
  4939. top:0px;
  4940. width:0px;
  4941. height:0px;
  4942. }
  4943. #u15663_div {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:0px;
  4947. top:0px;
  4948. width:29px;
  4949. height:20px;
  4950. background:inherit;
  4951. background-color:rgba(255, 255, 255, 0);
  4952. border:none;
  4953. border-radius:25px;
  4954. -moz-box-shadow:none;
  4955. -webkit-box-shadow:none;
  4956. box-shadow:none;
  4957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4958. font-weight:400;
  4959. font-style:normal;
  4960. color:#FFFFFF;
  4961. }
  4962. #u15663 {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:1681px;
  4966. top:1145px;
  4967. width:29px;
  4968. height:20px;
  4969. display:flex;
  4970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4971. font-weight:400;
  4972. font-style:normal;
  4973. color:#FFFFFF;
  4974. }
  4975. #u15663 .text {
  4976. position:absolute;
  4977. align-self:center;
  4978. padding:0px 0px 0px 0px;
  4979. box-sizing:border-box;
  4980. width:100%;
  4981. }
  4982. #u15663_text {
  4983. border-width:0px;
  4984. white-space:nowrap;
  4985. text-transform:none;
  4986. }
  4987. #u15664_img {
  4988. border-width:0px;
  4989. position:absolute;
  4990. left:0px;
  4991. top:0px;
  4992. width:22px;
  4993. height:22px;
  4994. }
  4995. #u15664 {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:1649px;
  4999. top:1144px;
  5000. width:22px;
  5001. height:22px;
  5002. display:flex;
  5003. }
  5004. #u15664 .text {
  5005. position:absolute;
  5006. align-self:center;
  5007. padding:2px 2px 2px 2px;
  5008. box-sizing:border-box;
  5009. width:100%;
  5010. }
  5011. #u15664_text {
  5012. border-width:0px;
  5013. word-wrap:break-word;
  5014. text-transform:none;
  5015. visibility:hidden;
  5016. }
  5017. #u15665 {
  5018. border-width:0px;
  5019. position:absolute;
  5020. left:0px;
  5021. top:0px;
  5022. width:0px;
  5023. height:0px;
  5024. }
  5025. #u15666_div {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:0px;
  5029. top:0px;
  5030. width:29px;
  5031. height:20px;
  5032. background:inherit;
  5033. background-color:rgba(255, 255, 255, 0);
  5034. border:none;
  5035. border-radius:25px;
  5036. -moz-box-shadow:none;
  5037. -webkit-box-shadow:none;
  5038. box-shadow:none;
  5039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5040. font-weight:400;
  5041. font-style:normal;
  5042. color:#FFFFFF;
  5043. }
  5044. #u15666 {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:1681px;
  5048. top:1187px;
  5049. width:29px;
  5050. height:20px;
  5051. display:flex;
  5052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5053. font-weight:400;
  5054. font-style:normal;
  5055. color:#FFFFFF;
  5056. }
  5057. #u15666 .text {
  5058. position:absolute;
  5059. align-self:center;
  5060. padding:0px 0px 0px 0px;
  5061. box-sizing:border-box;
  5062. width:100%;
  5063. }
  5064. #u15666_text {
  5065. border-width:0px;
  5066. white-space:nowrap;
  5067. text-transform:none;
  5068. }
  5069. #u15667_img {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:0px;
  5073. top:0px;
  5074. width:22px;
  5075. height:22px;
  5076. }
  5077. #u15667 {
  5078. border-width:0px;
  5079. position:absolute;
  5080. left:1649px;
  5081. top:1186px;
  5082. width:22px;
  5083. height:22px;
  5084. display:flex;
  5085. }
  5086. #u15667 .text {
  5087. position:absolute;
  5088. align-self:center;
  5089. padding:2px 2px 2px 2px;
  5090. box-sizing:border-box;
  5091. width:100%;
  5092. }
  5093. #u15667_text {
  5094. border-width:0px;
  5095. word-wrap:break-word;
  5096. text-transform:none;
  5097. visibility:hidden;
  5098. }
  5099. #u15668 {
  5100. border-width:0px;
  5101. position:absolute;
  5102. left:0px;
  5103. top:0px;
  5104. width:0px;
  5105. height:0px;
  5106. }
  5107. #u15669_div {
  5108. border-width:0px;
  5109. position:absolute;
  5110. left:0px;
  5111. top:0px;
  5112. width:33px;
  5113. height:22px;
  5114. background:inherit;
  5115. background-color:rgba(255, 255, 255, 0);
  5116. border:none;
  5117. border-radius:0px;
  5118. -moz-box-shadow:none;
  5119. -webkit-box-shadow:none;
  5120. box-shadow:none;
  5121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5122. font-weight:400;
  5123. font-style:normal;
  5124. font-size:16px;
  5125. color:#FFFFFF;
  5126. }
  5127. #u15669 {
  5128. border-width:0px;
  5129. position:absolute;
  5130. left:1668px;
  5131. top:255px;
  5132. width:33px;
  5133. height:22px;
  5134. display:flex;
  5135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5136. font-weight:400;
  5137. font-style:normal;
  5138. font-size:16px;
  5139. color:#FFFFFF;
  5140. }
  5141. #u15669 .text {
  5142. position:absolute;
  5143. align-self:flex-start;
  5144. padding:0px 0px 0px 0px;
  5145. box-sizing:border-box;
  5146. width:100%;
  5147. }
  5148. #u15669_text {
  5149. border-width:0px;
  5150. white-space:nowrap;
  5151. text-transform:none;
  5152. }
  5153. #u15670_img {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:0px;
  5157. top:0px;
  5158. width:14px;
  5159. height:14px;
  5160. }
  5161. #u15670 {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:1649px;
  5165. top:259px;
  5166. width:14px;
  5167. height:14px;
  5168. display:flex;
  5169. }
  5170. #u15670 .text {
  5171. position:absolute;
  5172. align-self:center;
  5173. padding:2px 2px 2px 2px;
  5174. box-sizing:border-box;
  5175. width:100%;
  5176. }
  5177. #u15670_text {
  5178. border-width:0px;
  5179. word-wrap:break-word;
  5180. text-transform:none;
  5181. visibility:hidden;
  5182. }
  5183. #u15671 {
  5184. border-width:0px;
  5185. position:absolute;
  5186. left:0px;
  5187. top:0px;
  5188. width:0px;
  5189. height:0px;
  5190. }
  5191. #u15672_input {
  5192. position:absolute;
  5193. left:0px;
  5194. top:0px;
  5195. width:214px;
  5196. height:27px;
  5197. padding:2px 2px 2px 2px;
  5198. font-family:'ArialMT', 'Arial', sans-serif;
  5199. font-weight:400;
  5200. font-style:normal;
  5201. font-size:14px;
  5202. letter-spacing:normal;
  5203. color:#FFFFFF;
  5204. vertical-align:none;
  5205. text-align:left;
  5206. text-transform:none;
  5207. background-color:transparent;
  5208. border-color:transparent;
  5209. }
  5210. #u15672_input.disabled {
  5211. position:absolute;
  5212. left:0px;
  5213. top:0px;
  5214. width:214px;
  5215. height:27px;
  5216. padding:2px 2px 2px 2px;
  5217. font-family:'ArialMT', 'Arial', sans-serif;
  5218. font-weight:400;
  5219. font-style:normal;
  5220. font-size:14px;
  5221. letter-spacing:normal;
  5222. color:#FFFFFF;
  5223. vertical-align:none;
  5224. text-align:left;
  5225. text-transform:none;
  5226. background-color:transparent;
  5227. border-color:transparent;
  5228. }
  5229. #u15672_div {
  5230. border-width:0px;
  5231. position:absolute;
  5232. left:0px;
  5233. top:0px;
  5234. width:214px;
  5235. height:27px;
  5236. background:inherit;
  5237. background-color:rgba(255, 255, 255, 0);
  5238. border:none;
  5239. border-radius:0px;
  5240. -moz-box-shadow:none;
  5241. -webkit-box-shadow:none;
  5242. box-shadow:none;
  5243. font-size:14px;
  5244. color:#FFFFFF;
  5245. }
  5246. #u15672 {
  5247. border-width:0px;
  5248. position:absolute;
  5249. left:2850px;
  5250. top:11px;
  5251. width:214px;
  5252. height:27px;
  5253. display:flex;
  5254. font-size:14px;
  5255. color:#FFFFFF;
  5256. }
  5257. #u15672 .text {
  5258. position:absolute;
  5259. align-self:flex-start;
  5260. padding:2px 2px 2px 2px;
  5261. box-sizing:border-box;
  5262. width:100%;
  5263. }
  5264. #u15672_div.disabled {
  5265. border-width:0px;
  5266. position:absolute;
  5267. left:0px;
  5268. top:0px;
  5269. width:214px;
  5270. height:27px;
  5271. background:inherit;
  5272. background-color:rgba(240, 240, 240, 1);
  5273. border:none;
  5274. border-radius:0px;
  5275. -moz-box-shadow:none;
  5276. -webkit-box-shadow:none;
  5277. box-shadow:none;
  5278. font-size:14px;
  5279. color:#FFFFFF;
  5280. }
  5281. #u15672.disabled {
  5282. }
  5283. .u15672_input_option {
  5284. font-size:14px;
  5285. }
  5286. #u15673_img {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:0px;
  5290. top:0px;
  5291. width:22px;
  5292. height:22px;
  5293. }
  5294. #u15673 {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:2823px;
  5298. top:14px;
  5299. width:22px;
  5300. height:22px;
  5301. display:flex;
  5302. }
  5303. #u15673 .text {
  5304. position:absolute;
  5305. align-self:center;
  5306. padding:2px 2px 2px 2px;
  5307. box-sizing:border-box;
  5308. width:100%;
  5309. }
  5310. #u15673_text {
  5311. border-width:0px;
  5312. word-wrap:break-word;
  5313. text-transform:none;
  5314. visibility:hidden;
  5315. }
  5316. #u15674_div {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:0px;
  5320. top:0px;
  5321. width:100px;
  5322. height:24px;
  5323. background:inherit;
  5324. background-color:rgba(242, 242, 242, 0.2);
  5325. border:none;
  5326. border-radius:25px;
  5327. -moz-box-shadow:none;
  5328. -webkit-box-shadow:none;
  5329. box-shadow:none;
  5330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5331. font-weight:400;
  5332. font-style:normal;
  5333. color:#FFFFFF;
  5334. text-align:center;
  5335. }
  5336. #u15674 {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:3109px;
  5340. top:13px;
  5341. width:100px;
  5342. height:24px;
  5343. display:flex;
  5344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5345. font-weight:400;
  5346. font-style:normal;
  5347. color:#FFFFFF;
  5348. text-align:center;
  5349. }
  5350. #u15674 .text {
  5351. position:absolute;
  5352. align-self:center;
  5353. padding:0px 0px 0px 0px;
  5354. box-sizing:border-box;
  5355. width:100%;
  5356. }
  5357. #u15674_text {
  5358. border-width:0px;
  5359. word-wrap:break-word;
  5360. text-transform:none;
  5361. }
  5362. #u15675_img {
  5363. border-width:0px;
  5364. position:absolute;
  5365. left:0px;
  5366. top:0px;
  5367. width:2px;
  5368. height:12px;
  5369. }
  5370. #u15675 {
  5371. border-width:0px;
  5372. position:absolute;
  5373. left:3081px;
  5374. top:19px;
  5375. width:1px;
  5376. height:11px;
  5377. display:flex;
  5378. }
  5379. #u15675 .text {
  5380. position:absolute;
  5381. align-self:center;
  5382. padding:2px 2px 2px 2px;
  5383. box-sizing:border-box;
  5384. width:100%;
  5385. }
  5386. #u15675_text {
  5387. border-width:0px;
  5388. word-wrap:break-word;
  5389. text-transform:none;
  5390. visibility:hidden;
  5391. }
  5392. #u15676 {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:0px;
  5396. top:0px;
  5397. width:0px;
  5398. height:0px;
  5399. }
  5400. #u15677_div {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:0px;
  5404. top:0px;
  5405. width:29px;
  5406. height:20px;
  5407. background:inherit;
  5408. background-color:rgba(255, 255, 255, 0);
  5409. border:none;
  5410. border-radius:25px;
  5411. -moz-box-shadow:none;
  5412. -webkit-box-shadow:none;
  5413. box-shadow:none;
  5414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5415. font-weight:400;
  5416. font-style:normal;
  5417. color:#FFFFFF;
  5418. }
  5419. #u15677 {
  5420. border-width:0px;
  5421. position:absolute;
  5422. left:1681px;
  5423. top:1082px;
  5424. width:29px;
  5425. height:20px;
  5426. display:flex;
  5427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5428. font-weight:400;
  5429. font-style:normal;
  5430. color:#FFFFFF;
  5431. }
  5432. #u15677 .text {
  5433. position:absolute;
  5434. align-self:center;
  5435. padding:0px 0px 0px 0px;
  5436. box-sizing:border-box;
  5437. width:100%;
  5438. }
  5439. #u15677_text {
  5440. border-width:0px;
  5441. white-space:nowrap;
  5442. text-transform:none;
  5443. }
  5444. #u15678_img {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:0px;
  5448. top:0px;
  5449. width:22px;
  5450. height:22px;
  5451. }
  5452. #u15678 {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:1649px;
  5456. top:1081px;
  5457. width:22px;
  5458. height:22px;
  5459. display:flex;
  5460. }
  5461. #u15678 .text {
  5462. position:absolute;
  5463. align-self:center;
  5464. padding:2px 2px 2px 2px;
  5465. box-sizing:border-box;
  5466. width:100%;
  5467. }
  5468. #u15678_text {
  5469. border-width:0px;
  5470. word-wrap:break-word;
  5471. text-transform:none;
  5472. visibility:hidden;
  5473. }
  5474. #u15679_img {
  5475. border-width:0px;
  5476. position:absolute;
  5477. left:0px;
  5478. top:0px;
  5479. width:69px;
  5480. height:2px;
  5481. }
  5482. #u15679 {
  5483. border-width:0px;
  5484. position:absolute;
  5485. left:1649px;
  5486. top:1123px;
  5487. width:68px;
  5488. height:1px;
  5489. display:flex;
  5490. }
  5491. #u15679 .text {
  5492. position:absolute;
  5493. align-self:center;
  5494. padding:2px 2px 2px 2px;
  5495. box-sizing:border-box;
  5496. width:100%;
  5497. }
  5498. #u15679_text {
  5499. border-width:0px;
  5500. word-wrap:break-word;
  5501. text-transform:none;
  5502. visibility:hidden;
  5503. }
  5504. #u15680_img {
  5505. border-width:0px;
  5506. position:absolute;
  5507. left:0px;
  5508. top:0px;
  5509. width:69px;
  5510. height:2px;
  5511. }
  5512. #u15680 {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:1649px;
  5516. top:1061px;
  5517. width:68px;
  5518. height:1px;
  5519. display:flex;
  5520. }
  5521. #u15680 .text {
  5522. position:absolute;
  5523. align-self:center;
  5524. padding:2px 2px 2px 2px;
  5525. box-sizing:border-box;
  5526. width:100%;
  5527. }
  5528. #u15680_text {
  5529. border-width:0px;
  5530. word-wrap:break-word;
  5531. text-transform:none;
  5532. visibility:hidden;
  5533. }
  5534. #u15681_img {
  5535. border-width:0px;
  5536. position:absolute;
  5537. left:0px;
  5538. top:0px;
  5539. width:57px;
  5540. height:2px;
  5541. }
  5542. #u15681 {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:1649px;
  5546. top:112px;
  5547. width:56px;
  5548. height:1px;
  5549. display:flex;
  5550. }
  5551. #u15681 .text {
  5552. position:absolute;
  5553. align-self:center;
  5554. padding:2px 2px 2px 2px;
  5555. box-sizing:border-box;
  5556. width:100%;
  5557. }
  5558. #u15681_text {
  5559. border-width:0px;
  5560. word-wrap:break-word;
  5561. text-transform:none;
  5562. visibility:hidden;
  5563. }
  5564. #u15682 {
  5565. border-width:0px;
  5566. position:absolute;
  5567. left:0px;
  5568. top:0px;
  5569. width:0px;
  5570. height:0px;
  5571. }
  5572. #u15683_div {
  5573. border-width:0px;
  5574. position:absolute;
  5575. left:0px;
  5576. top:0px;
  5577. width:33px;
  5578. height:22px;
  5579. background:inherit;
  5580. background-color:rgba(255, 255, 255, 0);
  5581. border:none;
  5582. border-radius:0px;
  5583. -moz-box-shadow:none;
  5584. -webkit-box-shadow:none;
  5585. box-shadow:none;
  5586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5587. font-weight:400;
  5588. font-style:normal;
  5589. font-size:16px;
  5590. color:#FFFFFF;
  5591. }
  5592. #u15683 {
  5593. border-width:0px;
  5594. position:absolute;
  5595. left:1672px;
  5596. top:71px;
  5597. width:33px;
  5598. height:22px;
  5599. display:flex;
  5600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5601. font-weight:400;
  5602. font-style:normal;
  5603. font-size:16px;
  5604. color:#FFFFFF;
  5605. }
  5606. #u15683 .text {
  5607. position:absolute;
  5608. align-self:flex-start;
  5609. padding:0px 0px 0px 0px;
  5610. box-sizing:border-box;
  5611. width:100%;
  5612. }
  5613. #u15683_text {
  5614. border-width:0px;
  5615. white-space:nowrap;
  5616. text-transform:none;
  5617. }
  5618. #u15684_img {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:0px;
  5622. top:0px;
  5623. width:18px;
  5624. height:14px;
  5625. }
  5626. #u15684 {
  5627. border-width:0px;
  5628. position:absolute;
  5629. left:1649px;
  5630. top:75px;
  5631. width:18px;
  5632. height:14px;
  5633. display:flex;
  5634. }
  5635. #u15684 .text {
  5636. position:absolute;
  5637. align-self:center;
  5638. padding:2px 2px 2px 2px;
  5639. box-sizing:border-box;
  5640. width:100%;
  5641. }
  5642. #u15684_text {
  5643. border-width:0px;
  5644. word-wrap:break-word;
  5645. text-transform:none;
  5646. visibility:hidden;
  5647. }
  5648. #u15685_div {
  5649. border-width:0px;
  5650. position:absolute;
  5651. left:0px;
  5652. top:0px;
  5653. width:1265px;
  5654. height:1180px;
  5655. background:inherit;
  5656. background-color:rgba(255, 255, 255, 1);
  5657. border:none;
  5658. border-radius:0px;
  5659. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5660. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5661. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5662. color:#1890FF;
  5663. }
  5664. #u15685 {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:1958px;
  5668. top:50px;
  5669. width:1265px;
  5670. height:1180px;
  5671. display:flex;
  5672. color:#1890FF;
  5673. }
  5674. #u15685 .text {
  5675. position:absolute;
  5676. align-self:center;
  5677. padding:2px 2px 2px 2px;
  5678. box-sizing:border-box;
  5679. width:100%;
  5680. }
  5681. #u15685_text {
  5682. border-width:0px;
  5683. word-wrap:break-word;
  5684. text-transform:none;
  5685. visibility:hidden;
  5686. }
  5687. #u15686_div {
  5688. border-width:0px;
  5689. position:absolute;
  5690. left:0px;
  5691. top:0px;
  5692. width:127px;
  5693. height:40px;
  5694. background:inherit;
  5695. background-color:rgba(255, 255, 255, 0);
  5696. border:none;
  5697. border-left:0px;
  5698. border-top:0px;
  5699. border-right:0px;
  5700. border-radius:0px;
  5701. border-bottom-right-radius:0px;
  5702. border-bottom-left-radius:0px;
  5703. -moz-box-shadow:none;
  5704. -webkit-box-shadow:none;
  5705. box-shadow:none;
  5706. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5707. font-weight:500;
  5708. font-style:normal;
  5709. font-size:18px;
  5710. }
  5711. #u15686 {
  5712. border-width:0px;
  5713. position:absolute;
  5714. left:2301px;
  5715. top:132px;
  5716. width:127px;
  5717. height:40px;
  5718. display:flex;
  5719. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5720. font-weight:500;
  5721. font-style:normal;
  5722. font-size:18px;
  5723. }
  5724. #u15686 .text {
  5725. position:absolute;
  5726. align-self:center;
  5727. padding:0px 0px 0px 0px;
  5728. box-sizing:border-box;
  5729. width:100%;
  5730. }
  5731. #u15686_text {
  5732. border-width:0px;
  5733. white-space:nowrap;
  5734. text-transform:none;
  5735. }
  5736. #u15687_div {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:0px;
  5740. top:0px;
  5741. width:827px;
  5742. height:40px;
  5743. background:inherit;
  5744. background-color:rgba(255, 255, 255, 0);
  5745. border:none;
  5746. border-left:0px;
  5747. border-top:0px;
  5748. border-right:0px;
  5749. border-radius:0px;
  5750. border-bottom-right-radius:0px;
  5751. border-bottom-left-radius:0px;
  5752. -moz-box-shadow:none;
  5753. -webkit-box-shadow:none;
  5754. box-shadow:none;
  5755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5756. font-weight:400;
  5757. font-style:normal;
  5758. font-size:14px;
  5759. color:#AAAAAA;
  5760. }
  5761. #u15687 {
  5762. border-width:0px;
  5763. position:absolute;
  5764. left:2301px;
  5765. top:167px;
  5766. width:827px;
  5767. height:40px;
  5768. display:flex;
  5769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5770. font-weight:400;
  5771. font-style:normal;
  5772. font-size:14px;
  5773. color:#AAAAAA;
  5774. }
  5775. #u15687 .text {
  5776. position:absolute;
  5777. align-self:center;
  5778. padding:0px 0px 0px 0px;
  5779. box-sizing:border-box;
  5780. width:100%;
  5781. }
  5782. #u15687_text {
  5783. border-width:0px;
  5784. white-space:nowrap;
  5785. text-transform:none;
  5786. }
  5787. #u15688_div {
  5788. border-width:0px;
  5789. position:absolute;
  5790. left:0px;
  5791. top:0px;
  5792. width:109px;
  5793. height:40px;
  5794. background:inherit;
  5795. background-color:rgba(255, 255, 255, 0);
  5796. border:none;
  5797. border-left:0px;
  5798. border-top:0px;
  5799. border-right:0px;
  5800. border-radius:0px;
  5801. border-bottom-right-radius:0px;
  5802. border-bottom-left-radius:0px;
  5803. -moz-box-shadow:none;
  5804. -webkit-box-shadow:none;
  5805. box-shadow:none;
  5806. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5807. font-weight:500;
  5808. font-style:normal;
  5809. font-size:18px;
  5810. }
  5811. #u15688 {
  5812. border-width:0px;
  5813. position:absolute;
  5814. left:2301px;
  5815. top:227px;
  5816. width:109px;
  5817. height:40px;
  5818. display:flex;
  5819. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5820. font-weight:500;
  5821. font-style:normal;
  5822. font-size:18px;
  5823. }
  5824. #u15688 .text {
  5825. position:absolute;
  5826. align-self:center;
  5827. padding:0px 0px 0px 0px;
  5828. box-sizing:border-box;
  5829. width:100%;
  5830. }
  5831. #u15688_text {
  5832. border-width:0px;
  5833. white-space:nowrap;
  5834. text-transform:none;
  5835. }
  5836. #u15689 label {
  5837. left:0px;
  5838. width:100%;
  5839. }
  5840. #u15689_img {
  5841. border-width:0px;
  5842. position:absolute;
  5843. left:0px;
  5844. top:4px;
  5845. width:12px;
  5846. height:12px;
  5847. }
  5848. #u15689 {
  5849. border-width:0px;
  5850. position:absolute;
  5851. left:2301px;
  5852. top:277px;
  5853. width:903px;
  5854. height:20px;
  5855. display:flex;
  5856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5857. font-weight:400;
  5858. font-style:normal;
  5859. font-size:14px;
  5860. }
  5861. #u15689 .text {
  5862. position:absolute;
  5863. align-self:center;
  5864. padding:0px 2px 0px 2px;
  5865. box-sizing:border-box;
  5866. }
  5867. #u15689_img.selected {
  5868. }
  5869. #u15689.selected {
  5870. }
  5871. #u15689_img.disabled {
  5872. }
  5873. #u15689.disabled {
  5874. }
  5875. #u15689_img.selectedDisabled {
  5876. }
  5877. #u15689.selectedDisabled {
  5878. }
  5879. #u15689_text {
  5880. border-width:0px;
  5881. position:absolute;
  5882. left:14px;
  5883. top:0px;
  5884. width:887px;
  5885. word-wrap:break-word;
  5886. text-transform:none;
  5887. }
  5888. #u15689_input {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:0px;
  5892. top:0px;
  5893. width:0px;
  5894. height:0px;
  5895. opacity:0;
  5896. }
  5897. #u15690_div {
  5898. border-width:0px;
  5899. position:absolute;
  5900. left:0px;
  5901. top:0px;
  5902. width:109px;
  5903. height:40px;
  5904. background:inherit;
  5905. background-color:rgba(255, 255, 255, 0);
  5906. border:none;
  5907. border-left:0px;
  5908. border-top:0px;
  5909. border-right:0px;
  5910. border-radius:0px;
  5911. border-bottom-right-radius:0px;
  5912. border-bottom-left-radius:0px;
  5913. -moz-box-shadow:none;
  5914. -webkit-box-shadow:none;
  5915. box-shadow:none;
  5916. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5917. font-weight:500;
  5918. font-style:normal;
  5919. font-size:18px;
  5920. }
  5921. #u15690 {
  5922. border-width:0px;
  5923. position:absolute;
  5924. left:2301px;
  5925. top:453px;
  5926. width:109px;
  5927. height:40px;
  5928. display:flex;
  5929. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5930. font-weight:500;
  5931. font-style:normal;
  5932. font-size:18px;
  5933. }
  5934. #u15690 .text {
  5935. position:absolute;
  5936. align-self:center;
  5937. padding:0px 0px 0px 0px;
  5938. box-sizing:border-box;
  5939. width:100%;
  5940. }
  5941. #u15690_text {
  5942. border-width:0px;
  5943. white-space:nowrap;
  5944. text-transform:none;
  5945. }
  5946. #u15691_div {
  5947. border-width:0px;
  5948. position:absolute;
  5949. left:0px;
  5950. top:0px;
  5951. width:449px;
  5952. height:40px;
  5953. background:inherit;
  5954. background-color:rgba(255, 255, 255, 0);
  5955. border:none;
  5956. border-left:0px;
  5957. border-top:0px;
  5958. border-right:0px;
  5959. border-radius:0px;
  5960. border-bottom-right-radius:0px;
  5961. border-bottom-left-radius:0px;
  5962. -moz-box-shadow:none;
  5963. -webkit-box-shadow:none;
  5964. box-shadow:none;
  5965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5966. font-weight:400;
  5967. font-style:normal;
  5968. font-size:14px;
  5969. color:#AAAAAA;
  5970. }
  5971. #u15691 {
  5972. border-width:0px;
  5973. position:absolute;
  5974. left:2430px;
  5975. top:454px;
  5976. width:449px;
  5977. height:40px;
  5978. display:flex;
  5979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5980. font-weight:400;
  5981. font-style:normal;
  5982. font-size:14px;
  5983. color:#AAAAAA;
  5984. }
  5985. #u15691 .text {
  5986. position:absolute;
  5987. align-self:center;
  5988. padding:0px 0px 0px 0px;
  5989. box-sizing:border-box;
  5990. width:100%;
  5991. }
  5992. #u15691_text {
  5993. border-width:0px;
  5994. white-space:nowrap;
  5995. text-transform:none;
  5996. }
  5997. #u15692 {
  5998. border-width:0px;
  5999. position:absolute;
  6000. left:0px;
  6001. top:0px;
  6002. width:0px;
  6003. height:0px;
  6004. }
  6005. #u15693_div {
  6006. border-width:0px;
  6007. position:absolute;
  6008. left:0px;
  6009. top:0px;
  6010. width:578px;
  6011. height:40px;
  6012. background:inherit;
  6013. background-color:rgba(255, 255, 255, 1);
  6014. box-sizing:border-box;
  6015. border-width:1px;
  6016. border-style:solid;
  6017. border-color:rgba(201, 201, 201, 1);
  6018. border-radius:4px;
  6019. -moz-box-shadow:none;
  6020. -webkit-box-shadow:none;
  6021. box-shadow:none;
  6022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6023. font-weight:400;
  6024. font-style:normal;
  6025. font-size:12px;
  6026. color:#CCCCCC;
  6027. text-align:right;
  6028. }
  6029. #u15693 {
  6030. border-width:0px;
  6031. position:absolute;
  6032. left:2301px;
  6033. top:503px;
  6034. width:578px;
  6035. height:40px;
  6036. display:flex;
  6037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6038. font-weight:400;
  6039. font-style:normal;
  6040. font-size:12px;
  6041. color:#CCCCCC;
  6042. text-align:right;
  6043. }
  6044. #u15693 .text {
  6045. position:absolute;
  6046. align-self:center;
  6047. padding:2px 8px 2px 8px;
  6048. box-sizing:border-box;
  6049. width:100%;
  6050. }
  6051. #u15693_text {
  6052. border-width:0px;
  6053. word-wrap:break-word;
  6054. text-transform:none;
  6055. }
  6056. #u15694_input {
  6057. position:absolute;
  6058. left:0px;
  6059. top:0px;
  6060. width:524px;
  6061. height:33px;
  6062. padding:2px 2px 2px 2px;
  6063. font-family:'Microsoft YaHei', sans-serif;
  6064. font-weight:400;
  6065. font-style:normal;
  6066. font-size:10px;
  6067. letter-spacing:normal;
  6068. color:#000000;
  6069. vertical-align:none;
  6070. text-align:left;
  6071. text-transform:none;
  6072. background-color:transparent;
  6073. border-color:transparent;
  6074. }
  6075. #u15694_input.disabled {
  6076. position:absolute;
  6077. left:0px;
  6078. top:0px;
  6079. width:524px;
  6080. height:33px;
  6081. padding:2px 2px 2px 2px;
  6082. font-family:'Microsoft YaHei', sans-serif;
  6083. font-weight:400;
  6084. font-style:normal;
  6085. font-size:10px;
  6086. letter-spacing:normal;
  6087. color:#000000;
  6088. vertical-align:none;
  6089. text-align:left;
  6090. text-transform:none;
  6091. background-color:transparent;
  6092. border-color:transparent;
  6093. }
  6094. #u15694_div {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:0px;
  6098. top:0px;
  6099. width:524px;
  6100. height:33px;
  6101. background:inherit;
  6102. background-color:rgba(255, 255, 255, 1);
  6103. border:none;
  6104. border-radius:0px;
  6105. -moz-box-shadow:none;
  6106. -webkit-box-shadow:none;
  6107. box-shadow:none;
  6108. font-family:'Microsoft YaHei', sans-serif;
  6109. font-weight:400;
  6110. font-style:normal;
  6111. font-size:10px;
  6112. }
  6113. #u15694 {
  6114. border-width:0px;
  6115. position:absolute;
  6116. left:2314px;
  6117. top:506px;
  6118. width:524px;
  6119. height:33px;
  6120. display:flex;
  6121. font-family:'Microsoft YaHei', sans-serif;
  6122. font-weight:400;
  6123. font-style:normal;
  6124. font-size:10px;
  6125. }
  6126. #u15694 .text {
  6127. position:absolute;
  6128. align-self:center;
  6129. padding:2px 2px 2px 2px;
  6130. box-sizing:border-box;
  6131. width:100%;
  6132. }
  6133. #u15694_div.disabled {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:0px;
  6137. top:0px;
  6138. width:524px;
  6139. height:33px;
  6140. background:inherit;
  6141. background-color:rgba(240, 240, 240, 1);
  6142. border:none;
  6143. border-radius:0px;
  6144. -moz-box-shadow:none;
  6145. -webkit-box-shadow:none;
  6146. box-shadow:none;
  6147. font-family:'Microsoft YaHei', sans-serif;
  6148. font-weight:400;
  6149. font-style:normal;
  6150. font-size:10px;
  6151. }
  6152. #u15694.disabled {
  6153. }
  6154. #u15695_div {
  6155. border-width:0px;
  6156. position:absolute;
  6157. left:0px;
  6158. top:0px;
  6159. width:80px;
  6160. height:40px;
  6161. background:inherit;
  6162. background-color:rgba(24, 144, 255, 1);
  6163. border:none;
  6164. border-radius:4px;
  6165. -moz-box-shadow:none;
  6166. -webkit-box-shadow:none;
  6167. box-shadow:none;
  6168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6169. font-weight:400;
  6170. font-style:normal;
  6171. font-size:14px;
  6172. color:#FFFFFF;
  6173. }
  6174. #u15695 {
  6175. border-width:0px;
  6176. position:absolute;
  6177. left:2301px;
  6178. top:573px;
  6179. width:80px;
  6180. height:40px;
  6181. display:flex;
  6182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6183. font-weight:400;
  6184. font-style:normal;
  6185. font-size:14px;
  6186. color:#FFFFFF;
  6187. }
  6188. #u15695 .text {
  6189. position:absolute;
  6190. align-self:center;
  6191. padding:2px 2px 2px 2px;
  6192. box-sizing:border-box;
  6193. width:100%;
  6194. }
  6195. #u15695_text {
  6196. border-width:0px;
  6197. word-wrap:break-word;
  6198. text-transform:none;
  6199. }
  6200. #u15697 {
  6201. border-width:0px;
  6202. position:absolute;
  6203. left:0px;
  6204. top:0px;
  6205. width:0px;
  6206. height:0px;
  6207. }
  6208. #u15698_div {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:0px;
  6212. top:0px;
  6213. width:200px;
  6214. height:1180px;
  6215. background:inherit;
  6216. background-color:rgba(255, 255, 255, 1);
  6217. border:none;
  6218. border-radius:0px;
  6219. -moz-box-shadow:none;
  6220. -webkit-box-shadow:none;
  6221. box-shadow:none;
  6222. }
  6223. #u15698 {
  6224. border-width:0px;
  6225. position:absolute;
  6226. left:1749px;
  6227. top:50px;
  6228. width:200px;
  6229. height:1180px;
  6230. display:flex;
  6231. }
  6232. #u15698 .text {
  6233. position:absolute;
  6234. align-self:center;
  6235. padding:2px 2px 2px 2px;
  6236. box-sizing:border-box;
  6237. width:100%;
  6238. }
  6239. #u15698_text {
  6240. border-width:0px;
  6241. word-wrap:break-word;
  6242. text-transform:none;
  6243. visibility:hidden;
  6244. }
  6245. #u15699_div {
  6246. border-width:0px;
  6247. position:absolute;
  6248. left:0px;
  6249. top:0px;
  6250. width:200px;
  6251. height:60px;
  6252. background:inherit;
  6253. background-color:rgba(224, 231, 247, 1);
  6254. border:none;
  6255. border-radius:0px;
  6256. -moz-box-shadow:none;
  6257. -webkit-box-shadow:none;
  6258. box-shadow:none;
  6259. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6260. font-weight:500;
  6261. font-style:normal;
  6262. font-size:18px;
  6263. }
  6264. #u15699 {
  6265. border-width:0px;
  6266. position:absolute;
  6267. left:1749px;
  6268. top:50px;
  6269. width:200px;
  6270. height:60px;
  6271. display:flex;
  6272. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6273. font-weight:500;
  6274. font-style:normal;
  6275. font-size:18px;
  6276. }
  6277. #u15699 .text {
  6278. position:absolute;
  6279. align-self:center;
  6280. padding:0px 0px 0px 20px;
  6281. box-sizing:border-box;
  6282. width:100%;
  6283. }
  6284. #u15699_text {
  6285. border-width:0px;
  6286. word-wrap:break-word;
  6287. text-transform:none;
  6288. }
  6289. #u15700_div {
  6290. border-width:0px;
  6291. position:absolute;
  6292. left:0px;
  6293. top:0px;
  6294. width:65px;
  6295. height:22px;
  6296. background:inherit;
  6297. background-color:rgba(255, 255, 255, 0);
  6298. border:none;
  6299. border-radius:0px;
  6300. -moz-box-shadow:none;
  6301. -webkit-box-shadow:none;
  6302. box-shadow:none;
  6303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6304. font-weight:400;
  6305. font-style:normal;
  6306. font-size:16px;
  6307. }
  6308. #u15700 {
  6309. border-width:0px;
  6310. position:absolute;
  6311. left:1776px;
  6312. top:242px;
  6313. width:65px;
  6314. height:22px;
  6315. display:flex;
  6316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6317. font-weight:400;
  6318. font-style:normal;
  6319. font-size:16px;
  6320. }
  6321. #u15700 .text {
  6322. position:absolute;
  6323. align-self:flex-start;
  6324. padding:0px 0px 0px 0px;
  6325. box-sizing:border-box;
  6326. width:100%;
  6327. }
  6328. #u15700_text {
  6329. border-width:0px;
  6330. white-space:nowrap;
  6331. text-transform:none;
  6332. }
  6333. #u15701_div {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:0px;
  6337. top:0px;
  6338. width:49px;
  6339. height:17px;
  6340. background:inherit;
  6341. background-color:rgba(255, 255, 255, 0);
  6342. border:none;
  6343. border-radius:0px;
  6344. -moz-box-shadow:none;
  6345. -webkit-box-shadow:none;
  6346. box-shadow:none;
  6347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6348. font-weight:400;
  6349. font-style:normal;
  6350. font-size:12px;
  6351. color:#AAAAAA;
  6352. }
  6353. #u15701 {
  6354. border-width:0px;
  6355. position:absolute;
  6356. left:1776px;
  6357. top:122px;
  6358. width:49px;
  6359. height:17px;
  6360. display:flex;
  6361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6362. font-weight:400;
  6363. font-style:normal;
  6364. font-size:12px;
  6365. color:#AAAAAA;
  6366. }
  6367. #u15701 .text {
  6368. position:absolute;
  6369. align-self:flex-start;
  6370. padding:0px 0px 0px 0px;
  6371. box-sizing:border-box;
  6372. width:100%;
  6373. }
  6374. #u15701_text {
  6375. border-width:0px;
  6376. white-space:nowrap;
  6377. text-transform:none;
  6378. }
  6379. #u15702_div {
  6380. border-width:0px;
  6381. position:absolute;
  6382. left:0px;
  6383. top:0px;
  6384. width:65px;
  6385. height:22px;
  6386. background:inherit;
  6387. background-color:rgba(255, 255, 255, 0);
  6388. border:none;
  6389. border-radius:0px;
  6390. -moz-box-shadow:none;
  6391. -webkit-box-shadow:none;
  6392. box-shadow:none;
  6393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6394. font-weight:400;
  6395. font-style:normal;
  6396. font-size:16px;
  6397. }
  6398. #u15702 {
  6399. border-width:0px;
  6400. position:absolute;
  6401. left:1776px;
  6402. top:200px;
  6403. width:65px;
  6404. height:22px;
  6405. display:flex;
  6406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6407. font-weight:400;
  6408. font-style:normal;
  6409. font-size:16px;
  6410. }
  6411. #u15702 .text {
  6412. position:absolute;
  6413. align-self:flex-start;
  6414. padding:0px 0px 0px 0px;
  6415. box-sizing:border-box;
  6416. width:100%;
  6417. }
  6418. #u15702_text {
  6419. border-width:0px;
  6420. white-space:nowrap;
  6421. text-transform:none;
  6422. }
  6423. #u15703_div {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:0px;
  6427. top:0px;
  6428. width:81px;
  6429. height:22px;
  6430. background:inherit;
  6431. background-color:rgba(255, 255, 255, 0);
  6432. border:none;
  6433. border-radius:0px;
  6434. -moz-box-shadow:none;
  6435. -webkit-box-shadow:none;
  6436. box-shadow:none;
  6437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6438. font-weight:400;
  6439. font-style:normal;
  6440. font-size:16px;
  6441. }
  6442. #u15703 {
  6443. border-width:0px;
  6444. position:absolute;
  6445. left:1776px;
  6446. top:484px;
  6447. width:81px;
  6448. height:22px;
  6449. display:flex;
  6450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6451. font-weight:400;
  6452. font-style:normal;
  6453. font-size:16px;
  6454. }
  6455. #u15703 .text {
  6456. position:absolute;
  6457. align-self:flex-start;
  6458. padding:0px 0px 0px 0px;
  6459. box-sizing:border-box;
  6460. width:100%;
  6461. }
  6462. #u15703_text {
  6463. border-width:0px;
  6464. white-space:nowrap;
  6465. text-transform:none;
  6466. }
  6467. #u15704_img {
  6468. border-width:0px;
  6469. position:absolute;
  6470. left:0px;
  6471. top:0px;
  6472. width:201px;
  6473. height:2px;
  6474. }
  6475. #u15704 {
  6476. border-width:0px;
  6477. position:absolute;
  6478. left:1749px;
  6479. top:427px;
  6480. width:200px;
  6481. height:1px;
  6482. display:flex;
  6483. }
  6484. #u15704 .text {
  6485. position:absolute;
  6486. align-self:center;
  6487. padding:2px 2px 2px 2px;
  6488. box-sizing:border-box;
  6489. width:100%;
  6490. }
  6491. #u15704_text {
  6492. border-width:0px;
  6493. word-wrap:break-word;
  6494. text-transform:none;
  6495. visibility:hidden;
  6496. }
  6497. #u15705_div {
  6498. border-width:0px;
  6499. position:absolute;
  6500. left:0px;
  6501. top:0px;
  6502. width:65px;
  6503. height:22px;
  6504. background:inherit;
  6505. background-color:rgba(255, 255, 255, 0);
  6506. border:none;
  6507. border-radius:0px;
  6508. -moz-box-shadow:none;
  6509. -webkit-box-shadow:none;
  6510. box-shadow:none;
  6511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6512. font-weight:400;
  6513. font-style:normal;
  6514. font-size:16px;
  6515. }
  6516. #u15705 {
  6517. border-width:0px;
  6518. position:absolute;
  6519. left:1776px;
  6520. top:526px;
  6521. width:65px;
  6522. height:22px;
  6523. display:flex;
  6524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6525. font-weight:400;
  6526. font-style:normal;
  6527. font-size:16px;
  6528. }
  6529. #u15705 .text {
  6530. position:absolute;
  6531. align-self:flex-start;
  6532. padding:0px 0px 0px 0px;
  6533. box-sizing:border-box;
  6534. width:100%;
  6535. }
  6536. #u15705_text {
  6537. border-width:0px;
  6538. white-space:nowrap;
  6539. text-transform:none;
  6540. }
  6541. #u15706_div {
  6542. border-width:0px;
  6543. position:absolute;
  6544. left:0px;
  6545. top:0px;
  6546. width:49px;
  6547. height:17px;
  6548. background:inherit;
  6549. background-color:rgba(255, 255, 255, 0);
  6550. border:none;
  6551. border-radius:0px;
  6552. -moz-box-shadow:none;
  6553. -webkit-box-shadow:none;
  6554. box-shadow:none;
  6555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6556. font-weight:400;
  6557. font-style:normal;
  6558. font-size:12px;
  6559. color:#AAAAAA;
  6560. }
  6561. #u15706 {
  6562. border-width:0px;
  6563. position:absolute;
  6564. left:1776px;
  6565. top:447px;
  6566. width:49px;
  6567. height:17px;
  6568. display:flex;
  6569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6570. font-weight:400;
  6571. font-style:normal;
  6572. font-size:12px;
  6573. color:#AAAAAA;
  6574. }
  6575. #u15706 .text {
  6576. position:absolute;
  6577. align-self:flex-start;
  6578. padding:0px 0px 0px 0px;
  6579. box-sizing:border-box;
  6580. width:100%;
  6581. }
  6582. #u15706_text {
  6583. border-width:0px;
  6584. white-space:nowrap;
  6585. text-transform:none;
  6586. }
  6587. #u15707_div {
  6588. border-width:0px;
  6589. position:absolute;
  6590. left:0px;
  6591. top:0px;
  6592. width:81px;
  6593. height:22px;
  6594. background:inherit;
  6595. background-color:rgba(255, 255, 255, 0);
  6596. border:none;
  6597. border-radius:0px;
  6598. -moz-box-shadow:none;
  6599. -webkit-box-shadow:none;
  6600. box-shadow:none;
  6601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6602. font-weight:400;
  6603. font-style:normal;
  6604. font-size:16px;
  6605. }
  6606. #u15707 {
  6607. border-width:0px;
  6608. position:absolute;
  6609. left:1776px;
  6610. top:652px;
  6611. width:81px;
  6612. height:22px;
  6613. display:flex;
  6614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6615. font-weight:400;
  6616. font-style:normal;
  6617. font-size:16px;
  6618. }
  6619. #u15707 .text {
  6620. position:absolute;
  6621. align-self:flex-start;
  6622. padding:0px 0px 0px 0px;
  6623. box-sizing:border-box;
  6624. width:100%;
  6625. }
  6626. #u15707_text {
  6627. border-width:0px;
  6628. white-space:nowrap;
  6629. text-transform:none;
  6630. }
  6631. #u15708_div {
  6632. border-width:0px;
  6633. position:absolute;
  6634. left:0px;
  6635. top:0px;
  6636. width:65px;
  6637. height:22px;
  6638. background:inherit;
  6639. background-color:rgba(255, 255, 255, 0);
  6640. border:none;
  6641. border-radius:0px;
  6642. -moz-box-shadow:none;
  6643. -webkit-box-shadow:none;
  6644. box-shadow:none;
  6645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6646. font-weight:400;
  6647. font-style:normal;
  6648. font-size:16px;
  6649. }
  6650. #u15708 {
  6651. border-width:0px;
  6652. position:absolute;
  6653. left:1776px;
  6654. top:568px;
  6655. width:65px;
  6656. height:22px;
  6657. display:flex;
  6658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6659. font-weight:400;
  6660. font-style:normal;
  6661. font-size:16px;
  6662. }
  6663. #u15708 .text {
  6664. position:absolute;
  6665. align-self:flex-start;
  6666. padding:0px 0px 0px 0px;
  6667. box-sizing:border-box;
  6668. width:100%;
  6669. }
  6670. #u15708_text {
  6671. border-width:0px;
  6672. white-space:nowrap;
  6673. text-transform:none;
  6674. }
  6675. #u15709_div {
  6676. border-width:0px;
  6677. position:absolute;
  6678. left:0px;
  6679. top:0px;
  6680. width:65px;
  6681. height:22px;
  6682. background:inherit;
  6683. background-color:rgba(255, 255, 255, 0);
  6684. border:none;
  6685. border-radius:0px;
  6686. -moz-box-shadow:none;
  6687. -webkit-box-shadow:none;
  6688. box-shadow:none;
  6689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6690. font-weight:400;
  6691. font-style:normal;
  6692. font-size:16px;
  6693. }
  6694. #u15709 {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:1776px;
  6698. top:610px;
  6699. width:65px;
  6700. height:22px;
  6701. display:flex;
  6702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6703. font-weight:400;
  6704. font-style:normal;
  6705. font-size:16px;
  6706. }
  6707. #u15709 .text {
  6708. position:absolute;
  6709. align-self:flex-start;
  6710. padding:0px 0px 0px 0px;
  6711. box-sizing:border-box;
  6712. width:100%;
  6713. }
  6714. #u15709_text {
  6715. border-width:0px;
  6716. white-space:nowrap;
  6717. text-transform:none;
  6718. }
  6719. #u15710_div {
  6720. border-width:0px;
  6721. position:absolute;
  6722. left:0px;
  6723. top:0px;
  6724. width:65px;
  6725. height:22px;
  6726. background:inherit;
  6727. background-color:rgba(255, 255, 255, 0);
  6728. border:none;
  6729. border-radius:0px;
  6730. -moz-box-shadow:none;
  6731. -webkit-box-shadow:none;
  6732. box-shadow:none;
  6733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6734. font-weight:400;
  6735. font-style:normal;
  6736. font-size:16px;
  6737. }
  6738. #u15710 {
  6739. border-width:0px;
  6740. position:absolute;
  6741. left:1776px;
  6742. top:341px;
  6743. width:65px;
  6744. height:22px;
  6745. display:flex;
  6746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6747. font-weight:400;
  6748. font-style:normal;
  6749. font-size:16px;
  6750. }
  6751. #u15710 .text {
  6752. position:absolute;
  6753. align-self:flex-start;
  6754. padding:0px 0px 0px 0px;
  6755. box-sizing:border-box;
  6756. width:100%;
  6757. }
  6758. #u15710_text {
  6759. border-width:0px;
  6760. white-space:nowrap;
  6761. text-transform:none;
  6762. }
  6763. #u15711_img {
  6764. border-width:0px;
  6765. position:absolute;
  6766. left:0px;
  6767. top:0px;
  6768. width:201px;
  6769. height:2px;
  6770. }
  6771. #u15711 {
  6772. border-width:0px;
  6773. position:absolute;
  6774. left:1749px;
  6775. top:284px;
  6776. width:200px;
  6777. height:1px;
  6778. display:flex;
  6779. }
  6780. #u15711 .text {
  6781. position:absolute;
  6782. align-self:center;
  6783. padding:2px 2px 2px 2px;
  6784. box-sizing:border-box;
  6785. width:100%;
  6786. }
  6787. #u15711_text {
  6788. border-width:0px;
  6789. word-wrap:break-word;
  6790. text-transform:none;
  6791. visibility:hidden;
  6792. }
  6793. #u15712_div {
  6794. border-width:0px;
  6795. position:absolute;
  6796. left:0px;
  6797. top:0px;
  6798. width:49px;
  6799. height:17px;
  6800. background:inherit;
  6801. background-color:rgba(255, 255, 255, 0);
  6802. border:none;
  6803. border-radius:0px;
  6804. -moz-box-shadow:none;
  6805. -webkit-box-shadow:none;
  6806. box-shadow:none;
  6807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6808. font-weight:400;
  6809. font-style:normal;
  6810. font-size:12px;
  6811. color:#AAAAAA;
  6812. }
  6813. #u15712 {
  6814. border-width:0px;
  6815. position:absolute;
  6816. left:1776px;
  6817. top:304px;
  6818. width:49px;
  6819. height:17px;
  6820. display:flex;
  6821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6822. font-weight:400;
  6823. font-style:normal;
  6824. font-size:12px;
  6825. color:#AAAAAA;
  6826. }
  6827. #u15712 .text {
  6828. position:absolute;
  6829. align-self:flex-start;
  6830. padding:0px 0px 0px 0px;
  6831. box-sizing:border-box;
  6832. width:100%;
  6833. }
  6834. #u15712_text {
  6835. border-width:0px;
  6836. white-space:nowrap;
  6837. text-transform:none;
  6838. }
  6839. #u15713_div {
  6840. border-width:0px;
  6841. position:absolute;
  6842. left:0px;
  6843. top:0px;
  6844. width:65px;
  6845. height:22px;
  6846. background:inherit;
  6847. background-color:rgba(255, 255, 255, 0);
  6848. border:none;
  6849. border-radius:0px;
  6850. -moz-box-shadow:none;
  6851. -webkit-box-shadow:none;
  6852. box-shadow:none;
  6853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6854. font-weight:400;
  6855. font-style:normal;
  6856. font-size:16px;
  6857. }
  6858. #u15713 {
  6859. border-width:0px;
  6860. position:absolute;
  6861. left:1776px;
  6862. top:383px;
  6863. width:65px;
  6864. height:22px;
  6865. display:flex;
  6866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6867. font-weight:400;
  6868. font-style:normal;
  6869. font-size:16px;
  6870. }
  6871. #u15713 .text {
  6872. position:absolute;
  6873. align-self:flex-start;
  6874. padding:0px 0px 0px 0px;
  6875. box-sizing:border-box;
  6876. width:100%;
  6877. }
  6878. #u15713_text {
  6879. border-width:0px;
  6880. white-space:nowrap;
  6881. text-transform:none;
  6882. }
  6883. #u15714_div {
  6884. border-width:0px;
  6885. position:absolute;
  6886. left:0px;
  6887. top:0px;
  6888. width:65px;
  6889. height:22px;
  6890. background:inherit;
  6891. background-color:rgba(255, 255, 255, 0);
  6892. border:none;
  6893. border-radius:0px;
  6894. -moz-box-shadow:none;
  6895. -webkit-box-shadow:none;
  6896. box-shadow:none;
  6897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6898. font-weight:400;
  6899. font-style:normal;
  6900. font-size:16px;
  6901. }
  6902. #u15714 {
  6903. border-width:0px;
  6904. position:absolute;
  6905. left:1776px;
  6906. top:159px;
  6907. width:65px;
  6908. height:22px;
  6909. display:flex;
  6910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6911. font-weight:400;
  6912. font-style:normal;
  6913. font-size:16px;
  6914. }
  6915. #u15714 .text {
  6916. position:absolute;
  6917. align-self:flex-start;
  6918. padding:0px 0px 0px 0px;
  6919. box-sizing:border-box;
  6920. width:100%;
  6921. }
  6922. #u15714_text {
  6923. border-width:0px;
  6924. white-space:nowrap;
  6925. text-transform:none;
  6926. }
  6927. #u15715 {
  6928. border-width:0px;
  6929. position:absolute;
  6930. left:0px;
  6931. top:0px;
  6932. width:0px;
  6933. height:0px;
  6934. }
  6935. #u15716_div {
  6936. border-width:0px;
  6937. position:absolute;
  6938. left:0px;
  6939. top:0px;
  6940. width:300px;
  6941. height:1180px;
  6942. background:inherit;
  6943. background-color:rgba(240, 242, 245, 1);
  6944. border:none;
  6945. border-radius:0px;
  6946. -moz-box-shadow:none;
  6947. -webkit-box-shadow:none;
  6948. box-shadow:none;
  6949. }
  6950. #u15716 {
  6951. border-width:0px;
  6952. position:absolute;
  6953. left:1959px;
  6954. top:50px;
  6955. width:300px;
  6956. height:1180px;
  6957. display:flex;
  6958. }
  6959. #u15716 .text {
  6960. position:absolute;
  6961. align-self:center;
  6962. padding:2px 2px 2px 2px;
  6963. box-sizing:border-box;
  6964. width:100%;
  6965. }
  6966. #u15716_text {
  6967. border-width:0px;
  6968. word-wrap:break-word;
  6969. text-transform:none;
  6970. visibility:hidden;
  6971. }
  6972. #u15717 {
  6973. border-width:0px;
  6974. position:absolute;
  6975. left:0px;
  6976. top:0px;
  6977. width:0px;
  6978. height:0px;
  6979. }
  6980. #u15718_div {
  6981. border-width:0px;
  6982. position:absolute;
  6983. left:0px;
  6984. top:0px;
  6985. width:260px;
  6986. height:40px;
  6987. background:inherit;
  6988. background-color:rgba(255, 255, 255, 1);
  6989. box-sizing:border-box;
  6990. border-width:1px;
  6991. border-style:solid;
  6992. border-color:rgba(242, 242, 242, 1);
  6993. border-radius:4px;
  6994. -moz-box-shadow:none;
  6995. -webkit-box-shadow:none;
  6996. box-shadow:none;
  6997. font-family:'Microsoft YaHei', sans-serif;
  6998. font-weight:400;
  6999. font-style:normal;
  7000. font-size:14px;
  7001. color:#CCCCCC;
  7002. text-align:left;
  7003. }
  7004. #u15718 {
  7005. border-width:0px;
  7006. position:absolute;
  7007. left:1979px;
  7008. top:130px;
  7009. width:260px;
  7010. height:40px;
  7011. display:flex;
  7012. font-family:'Microsoft YaHei', sans-serif;
  7013. font-weight:400;
  7014. font-style:normal;
  7015. font-size:14px;
  7016. color:#CCCCCC;
  7017. text-align:left;
  7018. }
  7019. #u15718 .text {
  7020. position:absolute;
  7021. align-self:center;
  7022. padding:2px 8px 2px 8px;
  7023. box-sizing:border-box;
  7024. width:100%;
  7025. }
  7026. #u15718_text {
  7027. border-width:0px;
  7028. word-wrap:break-word;
  7029. text-transform:none;
  7030. visibility:hidden;
  7031. }
  7032. #u15719_input {
  7033. position:absolute;
  7034. left:0px;
  7035. top:0px;
  7036. width:217px;
  7037. height:33px;
  7038. padding:2px 2px 2px 2px;
  7039. font-family:'Microsoft YaHei', sans-serif;
  7040. font-weight:400;
  7041. font-style:normal;
  7042. font-size:14px;
  7043. letter-spacing:normal;
  7044. color:#000000;
  7045. vertical-align:none;
  7046. text-align:left;
  7047. text-transform:none;
  7048. background-color:transparent;
  7049. border-color:transparent;
  7050. }
  7051. #u15719_input.disabled {
  7052. position:absolute;
  7053. left:0px;
  7054. top:0px;
  7055. width:217px;
  7056. height:33px;
  7057. padding:2px 2px 2px 2px;
  7058. font-family:'Microsoft YaHei', sans-serif;
  7059. font-weight:400;
  7060. font-style:normal;
  7061. font-size:14px;
  7062. letter-spacing:normal;
  7063. color:#000000;
  7064. vertical-align:none;
  7065. text-align:left;
  7066. text-transform:none;
  7067. background-color:transparent;
  7068. border-color:transparent;
  7069. }
  7070. #u15719_div {
  7071. border-width:0px;
  7072. position:absolute;
  7073. left:0px;
  7074. top:0px;
  7075. width:217px;
  7076. height:33px;
  7077. background:inherit;
  7078. background-color:rgba(255, 255, 255, 1);
  7079. border:none;
  7080. border-radius:0px;
  7081. -moz-box-shadow:none;
  7082. -webkit-box-shadow:none;
  7083. box-shadow:none;
  7084. font-family:'Microsoft YaHei', sans-serif;
  7085. font-weight:400;
  7086. font-style:normal;
  7087. font-size:14px;
  7088. }
  7089. #u15719 {
  7090. border-width:0px;
  7091. position:absolute;
  7092. left:1987px;
  7093. top:131px;
  7094. width:217px;
  7095. height:33px;
  7096. display:flex;
  7097. font-family:'Microsoft YaHei', sans-serif;
  7098. font-weight:400;
  7099. font-style:normal;
  7100. font-size:14px;
  7101. }
  7102. #u15719 .text {
  7103. position:absolute;
  7104. align-self:center;
  7105. padding:2px 2px 2px 2px;
  7106. box-sizing:border-box;
  7107. width:100%;
  7108. }
  7109. #u15719_div.disabled {
  7110. border-width:0px;
  7111. position:absolute;
  7112. left:0px;
  7113. top:0px;
  7114. width:217px;
  7115. height:33px;
  7116. background:inherit;
  7117. background-color:rgba(240, 240, 240, 1);
  7118. border:none;
  7119. border-radius:0px;
  7120. -moz-box-shadow:none;
  7121. -webkit-box-shadow:none;
  7122. box-shadow:none;
  7123. font-family:'Microsoft YaHei', sans-serif;
  7124. font-weight:400;
  7125. font-style:normal;
  7126. font-size:14px;
  7127. }
  7128. #u15719.disabled {
  7129. }
  7130. #u15720_img {
  7131. border-width:0px;
  7132. position:absolute;
  7133. left:0px;
  7134. top:0px;
  7135. width:14px;
  7136. height:14px;
  7137. }
  7138. #u15720 {
  7139. border-width:0px;
  7140. position:absolute;
  7141. left:2211px;
  7142. top:142px;
  7143. width:14px;
  7144. height:14px;
  7145. display:flex;
  7146. }
  7147. #u15720 .text {
  7148. position:absolute;
  7149. align-self:center;
  7150. padding:2px 2px 2px 2px;
  7151. box-sizing:border-box;
  7152. width:100%;
  7153. }
  7154. #u15720_text {
  7155. border-width:0px;
  7156. word-wrap:break-word;
  7157. text-transform:none;
  7158. visibility:hidden;
  7159. }
  7160. #u15721 {
  7161. border-width:0px;
  7162. position:absolute;
  7163. left:0px;
  7164. top:0px;
  7165. width:0px;
  7166. height:0px;
  7167. }
  7168. #u15722_div {
  7169. border-width:0px;
  7170. position:absolute;
  7171. left:0px;
  7172. top:0px;
  7173. width:260px;
  7174. height:60px;
  7175. background:inherit;
  7176. background-color:rgba(0, 153, 255, 0.0980392156862745);
  7177. border:none;
  7178. border-radius:4px;
  7179. -moz-box-shadow:none;
  7180. -webkit-box-shadow:none;
  7181. box-shadow:none;
  7182. font-family:'Microsoft YaHei', sans-serif;
  7183. font-weight:400;
  7184. font-style:normal;
  7185. font-size:14px;
  7186. color:#CCCCCC;
  7187. text-align:left;
  7188. }
  7189. #u15722 {
  7190. border-width:0px;
  7191. position:absolute;
  7192. left:1979px;
  7193. top:190px;
  7194. width:260px;
  7195. height:60px;
  7196. display:flex;
  7197. font-family:'Microsoft YaHei', sans-serif;
  7198. font-weight:400;
  7199. font-style:normal;
  7200. font-size:14px;
  7201. color:#CCCCCC;
  7202. text-align:left;
  7203. }
  7204. #u15722 .text {
  7205. position:absolute;
  7206. align-self:center;
  7207. padding:2px 8px 2px 8px;
  7208. box-sizing:border-box;
  7209. width:100%;
  7210. }
  7211. #u15722_text {
  7212. border-width:0px;
  7213. word-wrap:break-word;
  7214. text-transform:none;
  7215. visibility:hidden;
  7216. }
  7217. #u15723_div {
  7218. border-width:0px;
  7219. position:absolute;
  7220. left:0px;
  7221. top:0px;
  7222. width:63px;
  7223. height:20px;
  7224. background:inherit;
  7225. background-color:rgba(51, 51, 51, 0);
  7226. border:none;
  7227. border-radius:4px;
  7228. -moz-box-shadow:none;
  7229. -webkit-box-shadow:none;
  7230. box-shadow:none;
  7231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7232. font-weight:400;
  7233. font-style:normal;
  7234. font-size:14px;
  7235. text-align:left;
  7236. }
  7237. #u15723 {
  7238. border-width:0px;
  7239. position:absolute;
  7240. left:1996px;
  7241. top:213px;
  7242. width:63px;
  7243. height:20px;
  7244. display:flex;
  7245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7246. font-weight:400;
  7247. font-style:normal;
  7248. font-size:14px;
  7249. text-align:left;
  7250. }
  7251. #u15723 .text {
  7252. position:absolute;
  7253. align-self:center;
  7254. padding:0px 0px 0px 0px;
  7255. box-sizing:border-box;
  7256. width:100%;
  7257. }
  7258. #u15723_text {
  7259. border-width:0px;
  7260. white-space:nowrap;
  7261. text-transform:none;
  7262. }
  7263. #u15724 {
  7264. border-width:0px;
  7265. position:absolute;
  7266. left:0px;
  7267. top:0px;
  7268. width:0px;
  7269. height:0px;
  7270. }
  7271. #u15725_div {
  7272. border-width:0px;
  7273. position:absolute;
  7274. left:0px;
  7275. top:0px;
  7276. width:260px;
  7277. height:60px;
  7278. background:inherit;
  7279. background-color:rgba(255, 255, 255, 0.0980392156862745);
  7280. border:none;
  7281. border-radius:4px;
  7282. -moz-box-shadow:none;
  7283. -webkit-box-shadow:none;
  7284. box-shadow:none;
  7285. font-family:'Microsoft YaHei', sans-serif;
  7286. font-weight:400;
  7287. font-style:normal;
  7288. font-size:14px;
  7289. color:#CCCCCC;
  7290. text-align:left;
  7291. }
  7292. #u15725 {
  7293. border-width:0px;
  7294. position:absolute;
  7295. left:1979px;
  7296. top:370px;
  7297. width:260px;
  7298. height:60px;
  7299. display:flex;
  7300. font-family:'Microsoft YaHei', sans-serif;
  7301. font-weight:400;
  7302. font-style:normal;
  7303. font-size:14px;
  7304. color:#CCCCCC;
  7305. text-align:left;
  7306. }
  7307. #u15725 .text {
  7308. position:absolute;
  7309. align-self:center;
  7310. padding:2px 8px 2px 8px;
  7311. box-sizing:border-box;
  7312. width:100%;
  7313. }
  7314. #u15725_text {
  7315. border-width:0px;
  7316. word-wrap:break-word;
  7317. text-transform:none;
  7318. visibility:hidden;
  7319. }
  7320. #u15726_div {
  7321. border-width:0px;
  7322. position:absolute;
  7323. left:0px;
  7324. top:0px;
  7325. width:65px;
  7326. height:20px;
  7327. background:inherit;
  7328. background-color:rgba(51, 51, 51, 0);
  7329. border:none;
  7330. border-radius:4px;
  7331. -moz-box-shadow:none;
  7332. -webkit-box-shadow:none;
  7333. box-shadow:none;
  7334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7335. font-weight:400;
  7336. font-style:normal;
  7337. font-size:14px;
  7338. text-align:left;
  7339. }
  7340. #u15726 {
  7341. border-width:0px;
  7342. position:absolute;
  7343. left:1994px;
  7344. top:393px;
  7345. width:65px;
  7346. height:20px;
  7347. display:flex;
  7348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7349. font-weight:400;
  7350. font-style:normal;
  7351. font-size:14px;
  7352. text-align:left;
  7353. }
  7354. #u15726 .text {
  7355. position:absolute;
  7356. align-self:center;
  7357. padding:0px 0px 0px 0px;
  7358. box-sizing:border-box;
  7359. width:100%;
  7360. }
  7361. #u15726_text {
  7362. border-width:0px;
  7363. white-space:nowrap;
  7364. text-transform:none;
  7365. }
  7366. #u15727 {
  7367. border-width:0px;
  7368. position:absolute;
  7369. left:0px;
  7370. top:0px;
  7371. width:0px;
  7372. height:0px;
  7373. }
  7374. #u15728_div {
  7375. border-width:0px;
  7376. position:absolute;
  7377. left:0px;
  7378. top:0px;
  7379. width:260px;
  7380. height:60px;
  7381. background:inherit;
  7382. background-color:rgba(0, 153, 255, 0);
  7383. border:none;
  7384. border-radius:4px;
  7385. -moz-box-shadow:none;
  7386. -webkit-box-shadow:none;
  7387. box-shadow:none;
  7388. font-family:'Microsoft YaHei', sans-serif;
  7389. font-weight:400;
  7390. font-style:normal;
  7391. font-size:14px;
  7392. color:#CCCCCC;
  7393. text-align:left;
  7394. }
  7395. #u15728 {
  7396. border-width:0px;
  7397. position:absolute;
  7398. left:1979px;
  7399. top:250px;
  7400. width:260px;
  7401. height:60px;
  7402. display:flex;
  7403. font-family:'Microsoft YaHei', sans-serif;
  7404. font-weight:400;
  7405. font-style:normal;
  7406. font-size:14px;
  7407. color:#CCCCCC;
  7408. text-align:left;
  7409. }
  7410. #u15728 .text {
  7411. position:absolute;
  7412. align-self:center;
  7413. padding:2px 8px 2px 8px;
  7414. box-sizing:border-box;
  7415. width:100%;
  7416. }
  7417. #u15728_text {
  7418. border-width:0px;
  7419. word-wrap:break-word;
  7420. text-transform:none;
  7421. visibility:hidden;
  7422. }
  7423. #u15729_div {
  7424. border-width:0px;
  7425. position:absolute;
  7426. left:0px;
  7427. top:0px;
  7428. width:65px;
  7429. height:20px;
  7430. background:inherit;
  7431. background-color:rgba(51, 51, 51, 0);
  7432. border:none;
  7433. border-radius:4px;
  7434. -moz-box-shadow:none;
  7435. -webkit-box-shadow:none;
  7436. box-shadow:none;
  7437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7438. font-weight:400;
  7439. font-style:normal;
  7440. font-size:14px;
  7441. text-align:left;
  7442. }
  7443. #u15729 {
  7444. border-width:0px;
  7445. position:absolute;
  7446. left:1994px;
  7447. top:273px;
  7448. width:65px;
  7449. height:20px;
  7450. display:flex;
  7451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7452. font-weight:400;
  7453. font-style:normal;
  7454. font-size:14px;
  7455. text-align:left;
  7456. }
  7457. #u15729 .text {
  7458. position:absolute;
  7459. align-self:center;
  7460. padding:0px 0px 0px 0px;
  7461. box-sizing:border-box;
  7462. width:100%;
  7463. }
  7464. #u15729_text {
  7465. border-width:0px;
  7466. white-space:nowrap;
  7467. text-transform:none;
  7468. }
  7469. #u15730 {
  7470. border-width:0px;
  7471. position:absolute;
  7472. left:0px;
  7473. top:0px;
  7474. width:0px;
  7475. height:0px;
  7476. }
  7477. #u15731_div {
  7478. border-width:0px;
  7479. position:absolute;
  7480. left:0px;
  7481. top:0px;
  7482. width:260px;
  7483. height:60px;
  7484. background:inherit;
  7485. background-color:rgba(255, 255, 255, 0.0980392156862745);
  7486. border:none;
  7487. border-radius:4px;
  7488. -moz-box-shadow:none;
  7489. -webkit-box-shadow:none;
  7490. box-shadow:none;
  7491. font-family:'Microsoft YaHei', sans-serif;
  7492. font-weight:400;
  7493. font-style:normal;
  7494. font-size:14px;
  7495. color:#CCCCCC;
  7496. text-align:left;
  7497. }
  7498. #u15731 {
  7499. border-width:0px;
  7500. position:absolute;
  7501. left:1979px;
  7502. top:310px;
  7503. width:260px;
  7504. height:60px;
  7505. display:flex;
  7506. font-family:'Microsoft YaHei', sans-serif;
  7507. font-weight:400;
  7508. font-style:normal;
  7509. font-size:14px;
  7510. color:#CCCCCC;
  7511. text-align:left;
  7512. }
  7513. #u15731 .text {
  7514. position:absolute;
  7515. align-self:center;
  7516. padding:2px 8px 2px 8px;
  7517. box-sizing:border-box;
  7518. width:100%;
  7519. }
  7520. #u15731_text {
  7521. border-width:0px;
  7522. word-wrap:break-word;
  7523. text-transform:none;
  7524. visibility:hidden;
  7525. }
  7526. #u15732_div {
  7527. border-width:0px;
  7528. position:absolute;
  7529. left:0px;
  7530. top:0px;
  7531. width:65px;
  7532. height:20px;
  7533. background:inherit;
  7534. background-color:rgba(51, 51, 51, 0);
  7535. border:none;
  7536. border-radius:4px;
  7537. -moz-box-shadow:none;
  7538. -webkit-box-shadow:none;
  7539. box-shadow:none;
  7540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7541. font-weight:400;
  7542. font-style:normal;
  7543. font-size:14px;
  7544. text-align:left;
  7545. }
  7546. #u15732 {
  7547. border-width:0px;
  7548. position:absolute;
  7549. left:1994px;
  7550. top:333px;
  7551. width:65px;
  7552. height:20px;
  7553. display:flex;
  7554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7555. font-weight:400;
  7556. font-style:normal;
  7557. font-size:14px;
  7558. text-align:left;
  7559. }
  7560. #u15732 .text {
  7561. position:absolute;
  7562. align-self:center;
  7563. padding:0px 0px 0px 0px;
  7564. box-sizing:border-box;
  7565. width:100%;
  7566. }
  7567. #u15732_text {
  7568. border-width:0px;
  7569. white-space:nowrap;
  7570. text-transform:none;
  7571. }
  7572. #u15733_div {
  7573. border-width:0px;
  7574. position:absolute;
  7575. left:0px;
  7576. top:0px;
  7577. width:73px;
  7578. height:25px;
  7579. background:inherit;
  7580. background-color:rgba(255, 255, 255, 0);
  7581. border:none;
  7582. border-radius:0px;
  7583. -moz-box-shadow:none;
  7584. -webkit-box-shadow:none;
  7585. box-shadow:none;
  7586. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7587. font-weight:500;
  7588. font-style:normal;
  7589. font-size:18px;
  7590. }
  7591. #u15733 {
  7592. border-width:0px;
  7593. position:absolute;
  7594. left:1979px;
  7595. top:77px;
  7596. width:73px;
  7597. height:25px;
  7598. display:flex;
  7599. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7600. font-weight:500;
  7601. font-style:normal;
  7602. font-size:18px;
  7603. }
  7604. #u15733 .text {
  7605. position:absolute;
  7606. align-self:flex-start;
  7607. padding:0px 0px 0px 0px;
  7608. box-sizing:border-box;
  7609. width:100%;
  7610. }
  7611. #u15733_text {
  7612. border-width:0px;
  7613. white-space:nowrap;
  7614. text-transform:none;
  7615. }
  7616. #u15734_div {
  7617. border-width:0px;
  7618. position:absolute;
  7619. left:0px;
  7620. top:0px;
  7621. width:80px;
  7622. height:25px;
  7623. background:inherit;
  7624. background-color:rgba(255, 255, 255, 0);
  7625. border:none;
  7626. border-radius:0px;
  7627. -moz-box-shadow:none;
  7628. -webkit-box-shadow:none;
  7629. box-shadow:none;
  7630. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7631. font-weight:500;
  7632. font-style:normal;
  7633. font-size:18px;
  7634. }
  7635. #u15734 {
  7636. border-width:0px;
  7637. position:absolute;
  7638. left:2301px;
  7639. top:77px;
  7640. width:80px;
  7641. height:25px;
  7642. display:flex;
  7643. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7644. font-weight:500;
  7645. font-style:normal;
  7646. font-size:18px;
  7647. }
  7648. #u15734 .text {
  7649. position:absolute;
  7650. align-self:flex-start;
  7651. padding:0px 0px 0px 0px;
  7652. box-sizing:border-box;
  7653. width:100%;
  7654. }
  7655. #u15734_text {
  7656. border-width:0px;
  7657. white-space:nowrap;
  7658. text-transform:none;
  7659. }
  7660. #u15735_div {
  7661. border-width:0px;
  7662. position:absolute;
  7663. left:0px;
  7664. top:0px;
  7665. width:497px;
  7666. height:22px;
  7667. background:inherit;
  7668. background-color:rgba(255, 255, 255, 0);
  7669. border:none;
  7670. border-radius:0px;
  7671. -moz-box-shadow:none;
  7672. -webkit-box-shadow:none;
  7673. box-shadow:none;
  7674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7675. font-weight:400;
  7676. font-style:normal;
  7677. font-size:14px;
  7678. color:#D9001B;
  7679. line-height:22px;
  7680. }
  7681. #u15735 {
  7682. border-width:0px;
  7683. position:absolute;
  7684. left:2406px;
  7685. top:101px;
  7686. width:497px;
  7687. height:22px;
  7688. display:flex;
  7689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7690. font-weight:400;
  7691. font-style:normal;
  7692. font-size:14px;
  7693. color:#D9001B;
  7694. line-height:22px;
  7695. }
  7696. #u15735 .text {
  7697. position:absolute;
  7698. align-self:flex-start;
  7699. padding:0px 0px 0px 0px;
  7700. box-sizing:border-box;
  7701. width:100%;
  7702. }
  7703. #u15735_text {
  7704. border-width:0px;
  7705. white-space:nowrap;
  7706. text-transform:none;
  7707. }
  7708. #u15736_img {
  7709. border-width:0px;
  7710. position:absolute;
  7711. left:0px;
  7712. top:0px;
  7713. width:50px;
  7714. height:31px;
  7715. }
  7716. #u15736 {
  7717. border-width:0px;
  7718. position:absolute;
  7719. left:2446px;
  7720. top:139px;
  7721. width:50px;
  7722. height:31px;
  7723. display:flex;
  7724. }
  7725. #u15736 .text {
  7726. position:absolute;
  7727. align-self:center;
  7728. padding:2px 2px 2px 2px;
  7729. box-sizing:border-box;
  7730. width:100%;
  7731. }
  7732. #u15736_text {
  7733. border-width:0px;
  7734. word-wrap:break-word;
  7735. text-transform:none;
  7736. visibility:hidden;
  7737. }
  7738. #u15737_div {
  7739. border-width:0px;
  7740. position:absolute;
  7741. left:0px;
  7742. top:0px;
  7743. width:359px;
  7744. height:22px;
  7745. background:inherit;
  7746. background-color:rgba(255, 255, 255, 0);
  7747. border:none;
  7748. border-radius:0px;
  7749. -moz-box-shadow:none;
  7750. -webkit-box-shadow:none;
  7751. box-shadow:none;
  7752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7753. font-weight:400;
  7754. font-style:normal;
  7755. font-size:14px;
  7756. color:#D9001B;
  7757. line-height:22px;
  7758. }
  7759. #u15737 {
  7760. border-width:0px;
  7761. position:absolute;
  7762. left:794px;
  7763. top:245px;
  7764. width:359px;
  7765. height:22px;
  7766. display:flex;
  7767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7768. font-weight:400;
  7769. font-style:normal;
  7770. font-size:14px;
  7771. color:#D9001B;
  7772. line-height:22px;
  7773. }
  7774. #u15737 .text {
  7775. position:absolute;
  7776. align-self:flex-start;
  7777. padding:0px 0px 0px 0px;
  7778. box-sizing:border-box;
  7779. width:100%;
  7780. }
  7781. #u15737_text {
  7782. border-width:0px;
  7783. white-space:nowrap;
  7784. text-transform:none;
  7785. }
  7786. #u15738_div {
  7787. border-width:0px;
  7788. position:absolute;
  7789. left:0px;
  7790. top:0px;
  7791. width:718px;
  7792. height:22px;
  7793. background:inherit;
  7794. background-color:rgba(255, 255, 255, 0);
  7795. border:none;
  7796. border-radius:0px;
  7797. -moz-box-shadow:none;
  7798. -webkit-box-shadow:none;
  7799. box-shadow:none;
  7800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7801. font-weight:400;
  7802. font-style:normal;
  7803. font-size:14px;
  7804. color:#D9001B;
  7805. line-height:22px;
  7806. }
  7807. #u15738 {
  7808. border-width:0px;
  7809. position:absolute;
  7810. left:794px;
  7811. top:309px;
  7812. width:718px;
  7813. height:22px;
  7814. display:flex;
  7815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7816. font-weight:400;
  7817. font-style:normal;
  7818. font-size:14px;
  7819. color:#D9001B;
  7820. line-height:22px;
  7821. }
  7822. #u15738 .text {
  7823. position:absolute;
  7824. align-self:flex-start;
  7825. padding:0px 0px 0px 0px;
  7826. box-sizing:border-box;
  7827. width:100%;
  7828. }
  7829. #u15738_text {
  7830. border-width:0px;
  7831. white-space:nowrap;
  7832. text-transform:none;
  7833. }
  7834. #u15739 {
  7835. border-width:0px;
  7836. position:absolute;
  7837. left:0px;
  7838. top:0px;
  7839. width:0px;
  7840. height:0px;
  7841. }
  7842. #u15740 {
  7843. border-width:0px;
  7844. position:absolute;
  7845. left:0px;
  7846. top:0px;
  7847. width:0px;
  7848. height:0px;
  7849. }
  7850. #u15741_div {
  7851. border-width:0px;
  7852. position:absolute;
  7853. left:0px;
  7854. top:0px;
  7855. width:380px;
  7856. height:164px;
  7857. background:inherit;
  7858. background-color:rgba(255, 255, 255, 1);
  7859. box-sizing:border-box;
  7860. border-width:1px;
  7861. border-style:solid;
  7862. border-color:rgba(204, 204, 204, 1);
  7863. border-radius:4px;
  7864. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7865. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7866. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7867. font-family:'Microsoft YaHei', sans-serif;
  7868. font-weight:400;
  7869. font-style:normal;
  7870. }
  7871. #u15741 {
  7872. border-width:0px;
  7873. position:absolute;
  7874. left:2520px;
  7875. top:588px;
  7876. width:380px;
  7877. height:164px;
  7878. display:flex;
  7879. font-family:'Microsoft YaHei', sans-serif;
  7880. font-weight:400;
  7881. font-style:normal;
  7882. }
  7883. #u15741 .text {
  7884. position:absolute;
  7885. align-self:center;
  7886. padding:2px 2px 2px 2px;
  7887. box-sizing:border-box;
  7888. width:100%;
  7889. }
  7890. #u15741_text {
  7891. border-width:0px;
  7892. word-wrap:break-word;
  7893. text-transform:none;
  7894. visibility:hidden;
  7895. }
  7896. #u15742_div {
  7897. border-width:0px;
  7898. position:absolute;
  7899. left:0px;
  7900. top:0px;
  7901. width:299px;
  7902. height:44px;
  7903. background:inherit;
  7904. background-color:rgba(255, 255, 255, 0);
  7905. border:none;
  7906. border-radius:0px;
  7907. -moz-box-shadow:none;
  7908. -webkit-box-shadow:none;
  7909. box-shadow:none;
  7910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7911. font-weight:400;
  7912. font-style:normal;
  7913. font-size:14px;
  7914. line-height:22px;
  7915. }
  7916. #u15742 {
  7917. border-width:0px;
  7918. position:absolute;
  7919. left:2580px;
  7920. top:643px;
  7921. width:299px;
  7922. height:44px;
  7923. display:flex;
  7924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7925. font-weight:400;
  7926. font-style:normal;
  7927. font-size:14px;
  7928. line-height:22px;
  7929. }
  7930. #u15742 .text {
  7931. position:absolute;
  7932. align-self:flex-start;
  7933. padding:0px 0px 0px 0px;
  7934. box-sizing:border-box;
  7935. width:100%;
  7936. }
  7937. #u15742_text {
  7938. border-width:0px;
  7939. word-wrap:break-word;
  7940. text-transform:none;
  7941. }
  7942. #u15743_div {
  7943. border-width:0px;
  7944. position:absolute;
  7945. left:0px;
  7946. top:0px;
  7947. width:163px;
  7948. height:21px;
  7949. background:inherit;
  7950. background-color:rgba(255, 255, 255, 0);
  7951. border:none;
  7952. border-radius:0px;
  7953. -moz-box-shadow:none;
  7954. -webkit-box-shadow:none;
  7955. box-shadow:none;
  7956. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7957. font-weight:650;
  7958. font-style:normal;
  7959. font-size:18px;
  7960. color:#000000;
  7961. line-height:22px;
  7962. }
  7963. #u15743 {
  7964. border-width:0px;
  7965. position:absolute;
  7966. left:2580px;
  7967. top:613px;
  7968. width:163px;
  7969. height:21px;
  7970. display:flex;
  7971. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7972. font-weight:650;
  7973. font-style:normal;
  7974. font-size:18px;
  7975. color:#000000;
  7976. line-height:22px;
  7977. }
  7978. #u15743 .text {
  7979. position:absolute;
  7980. align-self:flex-start;
  7981. padding:0px 0px 0px 0px;
  7982. box-sizing:border-box;
  7983. width:100%;
  7984. }
  7985. #u15743_text {
  7986. border-width:0px;
  7987. white-space:nowrap;
  7988. text-transform:none;
  7989. }
  7990. #u15744_div {
  7991. border-width:0px;
  7992. position:absolute;
  7993. left:0px;
  7994. top:0px;
  7995. width:61px;
  7996. height:30px;
  7997. background:inherit;
  7998. background-color:rgba(24, 144, 255, 1);
  7999. border:none;
  8000. border-radius:4px;
  8001. -moz-box-shadow:none;
  8002. -webkit-box-shadow:none;
  8003. box-shadow:none;
  8004. font-family:'Microsoft YaHei', sans-serif;
  8005. font-weight:400;
  8006. font-style:normal;
  8007. font-size:14px;
  8008. color:#FFFFFF;
  8009. }
  8010. #u15744 {
  8011. border-width:0px;
  8012. position:absolute;
  8013. left:2822px;
  8014. top:703px;
  8015. width:61px;
  8016. height:30px;
  8017. display:flex;
  8018. font-family:'Microsoft YaHei', sans-serif;
  8019. font-weight:400;
  8020. font-style:normal;
  8021. font-size:14px;
  8022. color:#FFFFFF;
  8023. }
  8024. #u15744 .text {
  8025. position:absolute;
  8026. align-self:center;
  8027. padding:2px 16px 2px 16px;
  8028. box-sizing:border-box;
  8029. width:100%;
  8030. }
  8031. #u15744_text {
  8032. border-width:0px;
  8033. white-space:nowrap;
  8034. text-transform:none;
  8035. }
  8036. #u15745_div {
  8037. border-width:0px;
  8038. position:absolute;
  8039. left:0px;
  8040. top:0px;
  8041. width:66px;
  8042. height:30px;
  8043. background:inherit;
  8044. background-color:rgba(255, 255, 255, 1);
  8045. box-sizing:border-box;
  8046. border-width:1px;
  8047. border-style:solid;
  8048. border-color:rgba(217, 217, 217, 1);
  8049. border-radius:4px;
  8050. -moz-box-shadow:none;
  8051. -webkit-box-shadow:none;
  8052. box-shadow:none;
  8053. font-family:'Microsoft YaHei', sans-serif;
  8054. font-weight:400;
  8055. font-style:normal;
  8056. font-size:14px;
  8057. color:rgba(0, 0, 0, 0.647058823529412);
  8058. line-height:21px;
  8059. }
  8060. #u15745 {
  8061. border-width:0px;
  8062. position:absolute;
  8063. left:2740px;
  8064. top:703px;
  8065. width:66px;
  8066. height:30px;
  8067. display:flex;
  8068. font-family:'Microsoft YaHei', sans-serif;
  8069. font-weight:400;
  8070. font-style:normal;
  8071. font-size:14px;
  8072. color:rgba(0, 0, 0, 0.647058823529412);
  8073. line-height:21px;
  8074. }
  8075. #u15745 .text {
  8076. position:absolute;
  8077. align-self:center;
  8078. padding:2px 16px 2px 16px;
  8079. box-sizing:border-box;
  8080. width:100%;
  8081. }
  8082. #u15745_text {
  8083. border-width:0px;
  8084. white-space:nowrap;
  8085. text-transform:none;
  8086. }
  8087. #u15746_img {
  8088. border-width:0px;
  8089. position:absolute;
  8090. left:0px;
  8091. top:0px;
  8092. width:20px;
  8093. height:20px;
  8094. }
  8095. #u15746 {
  8096. border-width:0px;
  8097. position:absolute;
  8098. left:2549px;
  8099. top:617px;
  8100. width:20px;
  8101. height:20px;
  8102. display:flex;
  8103. }
  8104. #u15746 .text {
  8105. position:absolute;
  8106. align-self:center;
  8107. padding:2px 2px 2px 2px;
  8108. box-sizing:border-box;
  8109. width:100%;
  8110. }
  8111. #u15746_text {
  8112. border-width:0px;
  8113. word-wrap:break-word;
  8114. text-transform:none;
  8115. visibility:hidden;
  8116. }
  8117. #u15747_div {
  8118. border-width:0px;
  8119. position:absolute;
  8120. left:0px;
  8121. top:0px;
  8122. width:427px;
  8123. height:22px;
  8124. background:inherit;
  8125. background-color:rgba(255, 255, 255, 0);
  8126. border:none;
  8127. border-radius:0px;
  8128. -moz-box-shadow:none;
  8129. -webkit-box-shadow:none;
  8130. box-shadow:none;
  8131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8132. font-weight:400;
  8133. font-style:normal;
  8134. font-size:14px;
  8135. color:#D9001B;
  8136. line-height:22px;
  8137. }
  8138. #u15747 {
  8139. border-width:0px;
  8140. position:absolute;
  8141. left:2559px;
  8142. top:767px;
  8143. width:427px;
  8144. height:22px;
  8145. display:flex;
  8146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8147. font-weight:400;
  8148. font-style:normal;
  8149. font-size:14px;
  8150. color:#D9001B;
  8151. line-height:22px;
  8152. }
  8153. #u15747 .text {
  8154. position:absolute;
  8155. align-self:flex-start;
  8156. padding:0px 0px 0px 0px;
  8157. box-sizing:border-box;
  8158. width:100%;
  8159. }
  8160. #u15747_text {
  8161. border-width:0px;
  8162. white-space:nowrap;
  8163. text-transform:none;
  8164. }
  8165. #u15748 {
  8166. border-width:0px;
  8167. position:absolute;
  8168. left:0px;
  8169. top:0px;
  8170. width:0px;
  8171. height:0px;
  8172. }
  8173. #u15749 {
  8174. border-width:0px;
  8175. position:absolute;
  8176. left:0px;
  8177. top:0px;
  8178. width:0px;
  8179. height:0px;
  8180. }
  8181. #u15750_div {
  8182. border-width:0px;
  8183. position:absolute;
  8184. left:0px;
  8185. top:0px;
  8186. width:578px;
  8187. height:40px;
  8188. background:inherit;
  8189. background-color:rgba(255, 255, 255, 1);
  8190. box-sizing:border-box;
  8191. border-width:1px;
  8192. border-style:solid;
  8193. border-color:rgba(201, 201, 201, 1);
  8194. border-radius:4px;
  8195. -moz-box-shadow:none;
  8196. -webkit-box-shadow:none;
  8197. box-shadow:none;
  8198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8199. font-weight:400;
  8200. font-style:normal;
  8201. font-size:12px;
  8202. color:#CCCCCC;
  8203. text-align:right;
  8204. }
  8205. #u15750 {
  8206. border-width:0px;
  8207. position:absolute;
  8208. left:672px;
  8209. top:390px;
  8210. width:578px;
  8211. height:40px;
  8212. display:flex;
  8213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8214. font-weight:400;
  8215. font-style:normal;
  8216. font-size:12px;
  8217. color:#CCCCCC;
  8218. text-align:right;
  8219. }
  8220. #u15750 .text {
  8221. position:absolute;
  8222. align-self:center;
  8223. padding:2px 8px 2px 8px;
  8224. box-sizing:border-box;
  8225. width:100%;
  8226. }
  8227. #u15750_text {
  8228. border-width:0px;
  8229. word-wrap:break-word;
  8230. text-transform:none;
  8231. }
  8232. #u15751_input {
  8233. position:absolute;
  8234. left:0px;
  8235. top:0px;
  8236. width:528px;
  8237. height:33px;
  8238. padding:2px 2px 2px 2px;
  8239. font-family:'Microsoft YaHei', sans-serif;
  8240. font-weight:400;
  8241. font-style:normal;
  8242. font-size:10px;
  8243. letter-spacing:normal;
  8244. color:#000000;
  8245. vertical-align:none;
  8246. text-align:left;
  8247. text-transform:none;
  8248. background-color:transparent;
  8249. border-color:transparent;
  8250. }
  8251. #u15751_input.disabled {
  8252. position:absolute;
  8253. left:0px;
  8254. top:0px;
  8255. width:528px;
  8256. height:33px;
  8257. padding:2px 2px 2px 2px;
  8258. font-family:'Microsoft YaHei', sans-serif;
  8259. font-weight:400;
  8260. font-style:normal;
  8261. font-size:10px;
  8262. letter-spacing:normal;
  8263. color:#000000;
  8264. vertical-align:none;
  8265. text-align:left;
  8266. text-transform:none;
  8267. background-color:transparent;
  8268. border-color:transparent;
  8269. }
  8270. #u15751_div {
  8271. border-width:0px;
  8272. position:absolute;
  8273. left:0px;
  8274. top:0px;
  8275. width:528px;
  8276. height:33px;
  8277. background:inherit;
  8278. background-color:rgba(255, 255, 255, 1);
  8279. border:none;
  8280. border-radius:0px;
  8281. -moz-box-shadow:none;
  8282. -webkit-box-shadow:none;
  8283. box-shadow:none;
  8284. font-family:'Microsoft YaHei', sans-serif;
  8285. font-weight:400;
  8286. font-style:normal;
  8287. font-size:10px;
  8288. }
  8289. #u15751 {
  8290. border-width:0px;
  8291. position:absolute;
  8292. left:683px;
  8293. top:393px;
  8294. width:528px;
  8295. height:33px;
  8296. display:flex;
  8297. font-family:'Microsoft YaHei', sans-serif;
  8298. font-weight:400;
  8299. font-style:normal;
  8300. font-size:10px;
  8301. }
  8302. #u15751 .text {
  8303. position:absolute;
  8304. align-self:center;
  8305. padding:2px 2px 2px 2px;
  8306. box-sizing:border-box;
  8307. width:100%;
  8308. }
  8309. #u15751_div.disabled {
  8310. border-width:0px;
  8311. position:absolute;
  8312. left:0px;
  8313. top:0px;
  8314. width:528px;
  8315. height:33px;
  8316. background:inherit;
  8317. background-color:rgba(240, 240, 240, 1);
  8318. border:none;
  8319. border-radius:0px;
  8320. -moz-box-shadow:none;
  8321. -webkit-box-shadow:none;
  8322. box-shadow:none;
  8323. font-family:'Microsoft YaHei', sans-serif;
  8324. font-weight:400;
  8325. font-style:normal;
  8326. font-size:10px;
  8327. }
  8328. #u15751.disabled {
  8329. }
  8330. #u15752_div {
  8331. border-width:0px;
  8332. position:absolute;
  8333. left:0px;
  8334. top:0px;
  8335. width:109px;
  8336. height:40px;
  8337. background:inherit;
  8338. background-color:rgba(255, 255, 255, 0);
  8339. border:none;
  8340. border-left:0px;
  8341. border-top:0px;
  8342. border-right:0px;
  8343. border-radius:0px;
  8344. border-bottom-right-radius:0px;
  8345. border-bottom-left-radius:0px;
  8346. -moz-box-shadow:none;
  8347. -webkit-box-shadow:none;
  8348. box-shadow:none;
  8349. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8350. font-weight:500;
  8351. font-style:normal;
  8352. font-size:18px;
  8353. }
  8354. #u15752 {
  8355. border-width:0px;
  8356. position:absolute;
  8357. left:672px;
  8358. top:340px;
  8359. width:109px;
  8360. height:40px;
  8361. display:flex;
  8362. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8363. font-weight:500;
  8364. font-style:normal;
  8365. font-size:18px;
  8366. }
  8367. #u15752 .text {
  8368. position:absolute;
  8369. align-self:center;
  8370. padding:0px 0px 0px 0px;
  8371. box-sizing:border-box;
  8372. width:100%;
  8373. }
  8374. #u15752_text {
  8375. border-width:0px;
  8376. white-space:nowrap;
  8377. text-transform:none;
  8378. }
  8379. #u15753_div {
  8380. border-width:0px;
  8381. position:absolute;
  8382. left:0px;
  8383. top:0px;
  8384. width:421px;
  8385. height:40px;
  8386. background:inherit;
  8387. background-color:rgba(255, 255, 255, 0);
  8388. border:none;
  8389. border-left:0px;
  8390. border-top:0px;
  8391. border-right:0px;
  8392. border-radius:0px;
  8393. border-bottom-right-radius:0px;
  8394. border-bottom-left-radius:0px;
  8395. -moz-box-shadow:none;
  8396. -webkit-box-shadow:none;
  8397. box-shadow:none;
  8398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8399. font-weight:400;
  8400. font-style:normal;
  8401. font-size:14px;
  8402. color:#AAAAAA;
  8403. }
  8404. #u15753 {
  8405. border-width:0px;
  8406. position:absolute;
  8407. left:791px;
  8408. top:340px;
  8409. width:421px;
  8410. height:40px;
  8411. display:flex;
  8412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8413. font-weight:400;
  8414. font-style:normal;
  8415. font-size:14px;
  8416. color:#AAAAAA;
  8417. }
  8418. #u15753 .text {
  8419. position:absolute;
  8420. align-self:center;
  8421. padding:0px 0px 0px 0px;
  8422. box-sizing:border-box;
  8423. width:100%;
  8424. }
  8425. #u15753_text {
  8426. border-width:0px;
  8427. white-space:nowrap;
  8428. text-transform:none;
  8429. }
  8430. #u15754 {
  8431. border-width:0px;
  8432. position:absolute;
  8433. left:0px;
  8434. top:0px;
  8435. width:0px;
  8436. height:0px;
  8437. }
  8438. #u15755 {
  8439. border-width:0px;
  8440. position:absolute;
  8441. left:0px;
  8442. top:0px;
  8443. width:0px;
  8444. height:0px;
  8445. }
  8446. #u15756_div {
  8447. border-width:0px;
  8448. position:absolute;
  8449. left:0px;
  8450. top:0px;
  8451. width:578px;
  8452. height:40px;
  8453. background:inherit;
  8454. background-color:rgba(255, 255, 255, 1);
  8455. box-sizing:border-box;
  8456. border-width:1px;
  8457. border-style:solid;
  8458. border-color:rgba(201, 201, 201, 1);
  8459. border-radius:4px;
  8460. -moz-box-shadow:none;
  8461. -webkit-box-shadow:none;
  8462. box-shadow:none;
  8463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8464. font-weight:400;
  8465. font-style:normal;
  8466. font-size:12px;
  8467. color:#CCCCCC;
  8468. text-align:right;
  8469. }
  8470. #u15756 {
  8471. border-width:0px;
  8472. position:absolute;
  8473. left:2301px;
  8474. top:383px;
  8475. width:578px;
  8476. height:40px;
  8477. display:flex;
  8478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8479. font-weight:400;
  8480. font-style:normal;
  8481. font-size:12px;
  8482. color:#CCCCCC;
  8483. text-align:right;
  8484. }
  8485. #u15756 .text {
  8486. position:absolute;
  8487. align-self:center;
  8488. padding:2px 8px 2px 8px;
  8489. box-sizing:border-box;
  8490. width:100%;
  8491. }
  8492. #u15756_text {
  8493. border-width:0px;
  8494. word-wrap:break-word;
  8495. text-transform:none;
  8496. }
  8497. #u15757_input {
  8498. position:absolute;
  8499. left:0px;
  8500. top:0px;
  8501. width:528px;
  8502. height:33px;
  8503. padding:2px 2px 2px 2px;
  8504. font-family:'Microsoft YaHei', sans-serif;
  8505. font-weight:400;
  8506. font-style:normal;
  8507. font-size:10px;
  8508. letter-spacing:normal;
  8509. color:#000000;
  8510. vertical-align:none;
  8511. text-align:left;
  8512. text-transform:none;
  8513. background-color:transparent;
  8514. border-color:transparent;
  8515. }
  8516. #u15757_input.disabled {
  8517. position:absolute;
  8518. left:0px;
  8519. top:0px;
  8520. width:528px;
  8521. height:33px;
  8522. padding:2px 2px 2px 2px;
  8523. font-family:'Microsoft YaHei', sans-serif;
  8524. font-weight:400;
  8525. font-style:normal;
  8526. font-size:10px;
  8527. letter-spacing:normal;
  8528. color:#000000;
  8529. vertical-align:none;
  8530. text-align:left;
  8531. text-transform:none;
  8532. background-color:transparent;
  8533. border-color:transparent;
  8534. }
  8535. #u15757_div {
  8536. border-width:0px;
  8537. position:absolute;
  8538. left:0px;
  8539. top:0px;
  8540. width:528px;
  8541. height:33px;
  8542. background:inherit;
  8543. background-color:rgba(255, 255, 255, 1);
  8544. border:none;
  8545. border-radius:0px;
  8546. -moz-box-shadow:none;
  8547. -webkit-box-shadow:none;
  8548. box-shadow:none;
  8549. font-family:'Microsoft YaHei', sans-serif;
  8550. font-weight:400;
  8551. font-style:normal;
  8552. font-size:10px;
  8553. }
  8554. #u15757 {
  8555. border-width:0px;
  8556. position:absolute;
  8557. left:2312px;
  8558. top:386px;
  8559. width:528px;
  8560. height:33px;
  8561. display:flex;
  8562. font-family:'Microsoft YaHei', sans-serif;
  8563. font-weight:400;
  8564. font-style:normal;
  8565. font-size:10px;
  8566. }
  8567. #u15757 .text {
  8568. position:absolute;
  8569. align-self:center;
  8570. padding:2px 2px 2px 2px;
  8571. box-sizing:border-box;
  8572. width:100%;
  8573. }
  8574. #u15757_div.disabled {
  8575. border-width:0px;
  8576. position:absolute;
  8577. left:0px;
  8578. top:0px;
  8579. width:528px;
  8580. height:33px;
  8581. background:inherit;
  8582. background-color:rgba(240, 240, 240, 1);
  8583. border:none;
  8584. border-radius:0px;
  8585. -moz-box-shadow:none;
  8586. -webkit-box-shadow:none;
  8587. box-shadow:none;
  8588. font-family:'Microsoft YaHei', sans-serif;
  8589. font-weight:400;
  8590. font-style:normal;
  8591. font-size:10px;
  8592. }
  8593. #u15757.disabled {
  8594. }
  8595. #u15758_div {
  8596. border-width:0px;
  8597. position:absolute;
  8598. left:0px;
  8599. top:0px;
  8600. width:109px;
  8601. height:40px;
  8602. background:inherit;
  8603. background-color:rgba(255, 255, 255, 0);
  8604. border:none;
  8605. border-left:0px;
  8606. border-top:0px;
  8607. border-right:0px;
  8608. border-radius:0px;
  8609. border-bottom-right-radius:0px;
  8610. border-bottom-left-radius:0px;
  8611. -moz-box-shadow:none;
  8612. -webkit-box-shadow:none;
  8613. box-shadow:none;
  8614. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8615. font-weight:500;
  8616. font-style:normal;
  8617. font-size:18px;
  8618. }
  8619. #u15758 {
  8620. border-width:0px;
  8621. position:absolute;
  8622. left:2301px;
  8623. top:333px;
  8624. width:109px;
  8625. height:40px;
  8626. display:flex;
  8627. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8628. font-weight:500;
  8629. font-style:normal;
  8630. font-size:18px;
  8631. }
  8632. #u15758 .text {
  8633. position:absolute;
  8634. align-self:center;
  8635. padding:0px 0px 0px 0px;
  8636. box-sizing:border-box;
  8637. width:100%;
  8638. }
  8639. #u15758_text {
  8640. border-width:0px;
  8641. white-space:nowrap;
  8642. text-transform:none;
  8643. }
  8644. #u15759_div {
  8645. border-width:0px;
  8646. position:absolute;
  8647. left:0px;
  8648. top:0px;
  8649. width:421px;
  8650. height:40px;
  8651. background:inherit;
  8652. background-color:rgba(255, 255, 255, 0);
  8653. border:none;
  8654. border-left:0px;
  8655. border-top:0px;
  8656. border-right:0px;
  8657. border-radius:0px;
  8658. border-bottom-right-radius:0px;
  8659. border-bottom-left-radius:0px;
  8660. -moz-box-shadow:none;
  8661. -webkit-box-shadow:none;
  8662. box-shadow:none;
  8663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8664. font-weight:400;
  8665. font-style:normal;
  8666. font-size:14px;
  8667. color:#AAAAAA;
  8668. }
  8669. #u15759 {
  8670. border-width:0px;
  8671. position:absolute;
  8672. left:2420px;
  8673. top:333px;
  8674. width:421px;
  8675. height:40px;
  8676. display:flex;
  8677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8678. font-weight:400;
  8679. font-style:normal;
  8680. font-size:14px;
  8681. color:#AAAAAA;
  8682. }
  8683. #u15759 .text {
  8684. position:absolute;
  8685. align-self:center;
  8686. padding:0px 0px 0px 0px;
  8687. box-sizing:border-box;
  8688. width:100%;
  8689. }
  8690. #u15759_text {
  8691. border-width:0px;
  8692. white-space:nowrap;
  8693. text-transform:none;
  8694. }