styles.css 135 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2464px;
  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. #u8574_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:129px;
  25. height:22px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. color:#FFFFFF;
  35. }
  36. #u8574 {
  37. border-width:0px;
  38. position:absolute;
  39. left:49px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u8574 .text {
  48. position:absolute;
  49. align-self:flex-start;
  50. padding:0px 0px 0px 0px;
  51. box-sizing:border-box;
  52. width:100%;
  53. }
  54. #u8574_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u8575_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:1600px;
  65. height:50px;
  66. background:inherit;
  67. background-color:rgba(30, 42, 68, 1);
  68. border:none;
  69. border-radius:0px;
  70. -moz-box-shadow:none;
  71. -webkit-box-shadow:none;
  72. box-shadow:none;
  73. color:#AFB3B6;
  74. }
  75. #u8575 {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u8575 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u8575_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u8576 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u8577_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u8577 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u8577 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u8577_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u8578_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:161px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:16px;
  153. color:#FFFFFF;
  154. }
  155. #u8578 {
  156. border-width:0px;
  157. position:absolute;
  158. left:62px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u8578 .text {
  170. position:absolute;
  171. align-self:flex-start;
  172. padding:0px 0px 0px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u8578_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u8579_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:120px;
  187. height:1200px;
  188. background:inherit;
  189. background-color:rgba(30, 42, 68, 1);
  190. border:none;
  191. border-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. color:#AFB3B6;
  196. }
  197. #u8579 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u8579 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u8579_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u8580_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:1480px;
  226. height:1200px;
  227. background:inherit;
  228. background-color:rgba(242, 242, 242, 1);
  229. border:none;
  230. border-radius:0px;
  231. -moz-box-shadow:none;
  232. -webkit-box-shadow:none;
  233. box-shadow:none;
  234. }
  235. #u8580 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u8580 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u8580_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u8581 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u8582_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. #u8582 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:67px;
  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. #u8582 .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. #u8582_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u8583_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u8583 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u8583 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u8583_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u8584 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u8585_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. #u8585 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:109px;
  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. #u8585 .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. #u8585_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u8586_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u8586 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u8586 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u8586_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u8587 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u8588_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:29px;
  439. height:20px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:25px;
  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. color:#FFFFFF;
  451. }
  452. #u8588 {
  453. border-width:0px;
  454. position:absolute;
  455. left:59px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u8588 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u8588_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u8589_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u8589 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u8589 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u8589_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u8590 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u8591_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:29px;
  521. height:20px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-radius:25px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  530. font-weight:400;
  531. font-style:normal;
  532. color:#FFFFFF;
  533. }
  534. #u8591 {
  535. border-width:0px;
  536. position:absolute;
  537. left:59px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u8591 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u8591_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u8592_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u8592 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u8592 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u8592_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u8593 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u8594_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:33px;
  603. height:22px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. font-size:16px;
  615. color:#FFFFFF;
  616. }
  617. #u8594 {
  618. border-width:0px;
  619. position:absolute;
  620. left:39px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u8594 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 0px 0px 0px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u8594_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u8595_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u8595 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u8595 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u8595_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u8596 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u8597_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:33px;
  687. height:22px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FFFFFF;
  700. }
  701. #u8597 {
  702. border-width:0px;
  703. position:absolute;
  704. left:39px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u8597 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u8597_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u8598_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u8598 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u8598 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u8598_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u8599 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u8600_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:33px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u8600 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:445px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u8600 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u8600_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u8601_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u8601 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:449px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u8601 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u8601_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u8602 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u8603_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:33px;
  855. height:22px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 0);
  858. border:none;
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:16px;
  867. color:#FFFFFF;
  868. }
  869. #u8603 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:487px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u8603 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u8603_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u8604_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u8604 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:491px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u8604 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u8604_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u8605 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u8606_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:33px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u8606 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:571px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u8606 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u8606_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u8607_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u8607 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:575px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u8607 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u8607_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u8608 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u8609_input {
  1018. position:absolute;
  1019. left:0px;
  1020. top:0px;
  1021. width:214px;
  1022. height:27px;
  1023. padding:2px 2px 2px 2px;
  1024. font-family:'ArialMT', 'Arial', sans-serif;
  1025. font-weight:400;
  1026. font-style:normal;
  1027. font-size:14px;
  1028. letter-spacing:normal;
  1029. color:#FFFFFF;
  1030. vertical-align:none;
  1031. text-align:left;
  1032. text-transform:none;
  1033. background-color:transparent;
  1034. border-color:transparent;
  1035. }
  1036. #u8609_input.disabled {
  1037. position:absolute;
  1038. left:0px;
  1039. top:0px;
  1040. width:214px;
  1041. height:27px;
  1042. padding:2px 2px 2px 2px;
  1043. font-family:'ArialMT', 'Arial', sans-serif;
  1044. font-weight:400;
  1045. font-style:normal;
  1046. font-size:14px;
  1047. letter-spacing:normal;
  1048. color:#FFFFFF;
  1049. vertical-align:none;
  1050. text-align:left;
  1051. text-transform:none;
  1052. background-color:transparent;
  1053. border-color:transparent;
  1054. }
  1055. #u8609_div {
  1056. border-width:0px;
  1057. position:absolute;
  1058. left:0px;
  1059. top:0px;
  1060. width:214px;
  1061. height:27px;
  1062. background:inherit;
  1063. background-color:rgba(255, 255, 255, 0);
  1064. border:none;
  1065. border-radius:0px;
  1066. -moz-box-shadow:none;
  1067. -webkit-box-shadow:none;
  1068. box-shadow:none;
  1069. font-size:14px;
  1070. color:#FFFFFF;
  1071. }
  1072. #u8609 {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:1221px;
  1076. top:11px;
  1077. width:214px;
  1078. height:27px;
  1079. display:flex;
  1080. font-size:14px;
  1081. color:#FFFFFF;
  1082. }
  1083. #u8609 .text {
  1084. position:absolute;
  1085. align-self:flex-start;
  1086. padding:2px 2px 2px 2px;
  1087. box-sizing:border-box;
  1088. width:100%;
  1089. }
  1090. #u8609_div.disabled {
  1091. border-width:0px;
  1092. position:absolute;
  1093. left:0px;
  1094. top:0px;
  1095. width:214px;
  1096. height:27px;
  1097. background:inherit;
  1098. background-color:rgba(240, 240, 240, 1);
  1099. border:none;
  1100. border-radius:0px;
  1101. -moz-box-shadow:none;
  1102. -webkit-box-shadow:none;
  1103. box-shadow:none;
  1104. font-size:14px;
  1105. color:#FFFFFF;
  1106. }
  1107. #u8609.disabled {
  1108. }
  1109. .u8609_input_option {
  1110. font-size:14px;
  1111. }
  1112. #u8610_img {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:22px;
  1118. height:22px;
  1119. }
  1120. #u8610 {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:1194px;
  1124. top:14px;
  1125. width:22px;
  1126. height:22px;
  1127. display:flex;
  1128. }
  1129. #u8610 .text {
  1130. position:absolute;
  1131. align-self:center;
  1132. padding:2px 2px 2px 2px;
  1133. box-sizing:border-box;
  1134. width:100%;
  1135. }
  1136. #u8610_text {
  1137. border-width:0px;
  1138. word-wrap:break-word;
  1139. text-transform:none;
  1140. visibility:hidden;
  1141. }
  1142. #u8611_div {
  1143. border-width:0px;
  1144. position:absolute;
  1145. left:0px;
  1146. top:0px;
  1147. width:100px;
  1148. height:24px;
  1149. background:inherit;
  1150. background-color:rgba(242, 242, 242, 0.2);
  1151. border:none;
  1152. border-radius:25px;
  1153. -moz-box-shadow:none;
  1154. -webkit-box-shadow:none;
  1155. box-shadow:none;
  1156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1157. font-weight:400;
  1158. font-style:normal;
  1159. color:#FFFFFF;
  1160. text-align:center;
  1161. }
  1162. #u8611 {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:1480px;
  1166. top:13px;
  1167. width:100px;
  1168. height:24px;
  1169. display:flex;
  1170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1171. font-weight:400;
  1172. font-style:normal;
  1173. color:#FFFFFF;
  1174. text-align:center;
  1175. }
  1176. #u8611 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:0px 0px 0px 0px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u8611_text {
  1184. border-width:0px;
  1185. word-wrap:break-word;
  1186. text-transform:none;
  1187. }
  1188. #u8612_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:2px;
  1194. height:12px;
  1195. }
  1196. #u8612 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1452px;
  1200. top:19px;
  1201. width:1px;
  1202. height:11px;
  1203. display:flex;
  1204. }
  1205. #u8612 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u8612_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u8613 {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:0px;
  1224. height:0px;
  1225. }
  1226. #u8614_div {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:0px;
  1230. top:0px;
  1231. width:33px;
  1232. height:22px;
  1233. background:inherit;
  1234. background-color:rgba(255, 255, 255, 0);
  1235. border:none;
  1236. border-radius:0px;
  1237. -moz-box-shadow:none;
  1238. -webkit-box-shadow:none;
  1239. box-shadow:none;
  1240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1241. font-weight:400;
  1242. font-style:normal;
  1243. font-size:16px;
  1244. color:#FFFFFF;
  1245. }
  1246. #u8614 {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:39px;
  1250. top:361px;
  1251. width:33px;
  1252. height:22px;
  1253. display:flex;
  1254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1255. font-weight:400;
  1256. font-style:normal;
  1257. font-size:16px;
  1258. color:#FFFFFF;
  1259. }
  1260. #u8614 .text {
  1261. position:absolute;
  1262. align-self:flex-start;
  1263. padding:0px 0px 0px 0px;
  1264. box-sizing:border-box;
  1265. width:100%;
  1266. }
  1267. #u8614_text {
  1268. border-width:0px;
  1269. white-space:nowrap;
  1270. text-transform:none;
  1271. }
  1272. #u8615_img {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:0px;
  1276. top:0px;
  1277. width:14px;
  1278. height:14px;
  1279. }
  1280. #u8615 {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:20px;
  1284. top:365px;
  1285. width:14px;
  1286. height:14px;
  1287. display:flex;
  1288. }
  1289. #u8615 .text {
  1290. position:absolute;
  1291. align-self:center;
  1292. padding:2px 2px 2px 2px;
  1293. box-sizing:border-box;
  1294. width:100%;
  1295. }
  1296. #u8615_text {
  1297. border-width:0px;
  1298. word-wrap:break-word;
  1299. text-transform:none;
  1300. visibility:hidden;
  1301. }
  1302. #u8616 {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:0px;
  1308. height:0px;
  1309. }
  1310. #u8617_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:33px;
  1316. height:22px;
  1317. background:inherit;
  1318. background-color:rgba(255, 255, 255, 0);
  1319. border:none;
  1320. border-radius:0px;
  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. font-size:16px;
  1328. color:#FFFFFF;
  1329. }
  1330. #u8617 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:39px;
  1334. top:319px;
  1335. width:33px;
  1336. height:22px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. font-size:16px;
  1342. color:#FFFFFF;
  1343. }
  1344. #u8617 .text {
  1345. position:absolute;
  1346. align-self:flex-start;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u8617_text {
  1352. border-width:0px;
  1353. white-space:nowrap;
  1354. text-transform:none;
  1355. }
  1356. #u8618_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:14px;
  1362. height:14px;
  1363. }
  1364. #u8618 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:20px;
  1368. top:323px;
  1369. width:14px;
  1370. height:14px;
  1371. display:flex;
  1372. }
  1373. #u8618 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u8618_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u8619 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u8620_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:33px;
  1400. height:22px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:0px;
  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. font-size:16px;
  1412. color:#FFFFFF;
  1413. }
  1414. #u8620 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:39px;
  1418. top:151px;
  1419. width:33px;
  1420. height:22px;
  1421. display:flex;
  1422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1423. font-weight:400;
  1424. font-style:normal;
  1425. font-size:16px;
  1426. color:#FFFFFF;
  1427. }
  1428. #u8620 .text {
  1429. position:absolute;
  1430. align-self:flex-start;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u8620_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u8621_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:14px;
  1446. height:14px;
  1447. }
  1448. #u8621 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:155px;
  1453. width:14px;
  1454. height:14px;
  1455. display:flex;
  1456. }
  1457. #u8621 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u8621_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u8622 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u8623_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u8623 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:529px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u8623 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u8623_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u8624_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u8624 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:533px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u8624 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u8624_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u8625 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u8626_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u8626 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:193px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u8626 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u8626_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u8627_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u8627 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:197px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u8627 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u8627_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u8628 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u8629_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:33px;
  1652. height:22px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 0);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:16px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u8629 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:39px;
  1670. top:403px;
  1671. width:33px;
  1672. height:22px;
  1673. display:flex;
  1674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1675. font-weight:400;
  1676. font-style:normal;
  1677. font-size:16px;
  1678. color:#FFFFFF;
  1679. }
  1680. #u8629 .text {
  1681. position:absolute;
  1682. align-self:flex-start;
  1683. padding:0px 0px 0px 0px;
  1684. box-sizing:border-box;
  1685. width:100%;
  1686. }
  1687. #u8629_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u8630_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u8630 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:407px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u8630 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u8630_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u8631_img {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:2px;
  1728. height:12px;
  1729. }
  1730. #u8631 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:1375px;
  1734. top:22px;
  1735. width:1px;
  1736. height:11px;
  1737. display:flex;
  1738. }
  1739. #u8631 .text {
  1740. position:absolute;
  1741. align-self:center;
  1742. padding:2px 2px 2px 2px;
  1743. box-sizing:border-box;
  1744. width:100%;
  1745. }
  1746. #u8631_text {
  1747. border-width:0px;
  1748. word-wrap:break-word;
  1749. text-transform:none;
  1750. visibility:hidden;
  1751. }
  1752. #u8632_div {
  1753. border-width:0px;
  1754. position:absolute;
  1755. left:0px;
  1756. top:0px;
  1757. width:1252px;
  1758. height:1179px;
  1759. background:inherit;
  1760. background-color:rgba(255, 255, 255, 1);
  1761. border:none;
  1762. border-radius:0px;
  1763. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1764. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1765. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1766. }
  1767. #u8632 {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:335px;
  1771. top:49px;
  1772. width:1252px;
  1773. height:1179px;
  1774. display:flex;
  1775. }
  1776. #u8632 .text {
  1777. position:absolute;
  1778. align-self:center;
  1779. padding:2px 2px 2px 2px;
  1780. box-sizing:border-box;
  1781. width:100%;
  1782. }
  1783. #u8632_text {
  1784. border-width:0px;
  1785. word-wrap:break-word;
  1786. text-transform:none;
  1787. visibility:hidden;
  1788. }
  1789. #u8633_div {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:0px;
  1793. top:0px;
  1794. width:91px;
  1795. height:50px;
  1796. background:inherit;
  1797. background-color:rgba(255, 255, 255, 0);
  1798. border:none;
  1799. border-left:0px;
  1800. border-top:0px;
  1801. border-right:0px;
  1802. border-radius:0px;
  1803. border-bottom-right-radius:0px;
  1804. border-bottom-left-radius:0px;
  1805. -moz-box-shadow:none;
  1806. -webkit-box-shadow:none;
  1807. box-shadow:none;
  1808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1809. font-weight:400;
  1810. font-style:normal;
  1811. font-size:18px;
  1812. }
  1813. #u8633 {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:365px;
  1817. top:54px;
  1818. width:91px;
  1819. height:50px;
  1820. display:flex;
  1821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1822. font-weight:400;
  1823. font-style:normal;
  1824. font-size:18px;
  1825. }
  1826. #u8633 .text {
  1827. position:absolute;
  1828. align-self:center;
  1829. padding:0px 0px 0px 0px;
  1830. box-sizing:border-box;
  1831. width:100%;
  1832. }
  1833. #u8633_text {
  1834. border-width:0px;
  1835. white-space:nowrap;
  1836. text-transform:none;
  1837. }
  1838. #u8634_div {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:0px;
  1842. top:0px;
  1843. width:55px;
  1844. height:30px;
  1845. background:inherit;
  1846. background-color:rgba(25, 140, 251, 1);
  1847. border:none;
  1848. border-radius:4px;
  1849. -moz-box-shadow:none;
  1850. -webkit-box-shadow:none;
  1851. box-shadow:none;
  1852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1853. font-weight:400;
  1854. font-style:normal;
  1855. font-size:12px;
  1856. color:#FFFFFF;
  1857. }
  1858. #u8634 {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:365px;
  1862. top:154px;
  1863. width:55px;
  1864. height:30px;
  1865. display:flex;
  1866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1867. font-weight:400;
  1868. font-style:normal;
  1869. font-size:12px;
  1870. color:#FFFFFF;
  1871. }
  1872. #u8634 .text {
  1873. position:absolute;
  1874. align-self:center;
  1875. padding:5px 15px 5px 15px;
  1876. box-sizing:border-box;
  1877. width:100%;
  1878. }
  1879. #u8634_text {
  1880. border-width:0px;
  1881. white-space:nowrap;
  1882. text-transform:none;
  1883. }
  1884. #u8635_div {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:0px;
  1888. top:0px;
  1889. width:59px;
  1890. height:30px;
  1891. background:inherit;
  1892. background-color:rgba(41, 143, 255, 1);
  1893. border:none;
  1894. border-radius:4px;
  1895. -moz-box-shadow:none;
  1896. -webkit-box-shadow:none;
  1897. box-shadow:none;
  1898. font-family:'Microsoft YaHei', sans-serif;
  1899. font-weight:400;
  1900. font-style:normal;
  1901. font-size:14px;
  1902. color:#FFFFFF;
  1903. }
  1904. #u8635 {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:665px;
  1908. top:111px;
  1909. width:59px;
  1910. height:30px;
  1911. display:flex;
  1912. font-family:'Microsoft YaHei', sans-serif;
  1913. font-weight:400;
  1914. font-style:normal;
  1915. font-size:14px;
  1916. color:#FFFFFF;
  1917. }
  1918. #u8635 .text {
  1919. position:absolute;
  1920. align-self:center;
  1921. padding:5px 15px 5px 15px;
  1922. box-sizing:border-box;
  1923. width:100%;
  1924. }
  1925. #u8635_text {
  1926. border-width:0px;
  1927. white-space:nowrap;
  1928. text-transform:none;
  1929. }
  1930. #u8636_div {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:0px;
  1934. top:0px;
  1935. width:55px;
  1936. height:30px;
  1937. background:inherit;
  1938. background-color:rgba(255, 255, 255, 1);
  1939. box-sizing:border-box;
  1940. border-width:1px;
  1941. border-style:solid;
  1942. border-color:rgba(170, 170, 170, 1);
  1943. border-radius:4px;
  1944. -moz-box-shadow:none;
  1945. -webkit-box-shadow:none;
  1946. box-shadow:none;
  1947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1948. font-weight:400;
  1949. font-style:normal;
  1950. font-size:12px;
  1951. color:#555555;
  1952. }
  1953. #u8636 {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:734px;
  1957. top:111px;
  1958. width:55px;
  1959. height:30px;
  1960. display:flex;
  1961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1962. font-weight:400;
  1963. font-style:normal;
  1964. font-size:12px;
  1965. color:#555555;
  1966. }
  1967. #u8636 .text {
  1968. position:absolute;
  1969. align-self:center;
  1970. padding:5px 15px 5px 15px;
  1971. box-sizing:border-box;
  1972. width:100%;
  1973. }
  1974. #u8636_text {
  1975. border-width:0px;
  1976. white-space:nowrap;
  1977. text-transform:none;
  1978. }
  1979. #u8637 {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:0px;
  1985. height:0px;
  1986. }
  1987. #u8638_div {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:0px;
  1991. top:0px;
  1992. width:140px;
  1993. height:30px;
  1994. background:inherit;
  1995. background-color:rgba(255, 255, 255, 1);
  1996. box-sizing:border-box;
  1997. border-width:1px;
  1998. border-style:solid;
  1999. border-color:rgba(201, 201, 201, 1);
  2000. border-radius:4px;
  2001. -moz-box-shadow:none;
  2002. -webkit-box-shadow:none;
  2003. box-shadow:none;
  2004. font-family:'Microsoft YaHei', sans-serif;
  2005. font-weight:400;
  2006. font-style:normal;
  2007. font-size:14px;
  2008. color:#CCCCCC;
  2009. text-align:left;
  2010. }
  2011. #u8638 {
  2012. border-width:0px;
  2013. position:absolute;
  2014. left:515px;
  2015. top:111px;
  2016. width:140px;
  2017. height:30px;
  2018. display:flex;
  2019. font-family:'Microsoft YaHei', sans-serif;
  2020. font-weight:400;
  2021. font-style:normal;
  2022. font-size:14px;
  2023. color:#CCCCCC;
  2024. text-align:left;
  2025. }
  2026. #u8638 .text {
  2027. position:absolute;
  2028. align-self:center;
  2029. padding:2px 8px 2px 8px;
  2030. box-sizing:border-box;
  2031. width:100%;
  2032. }
  2033. #u8638_text {
  2034. border-width:0px;
  2035. word-wrap:break-word;
  2036. text-transform:none;
  2037. visibility:hidden;
  2038. }
  2039. #u8639_input {
  2040. position:absolute;
  2041. left:0px;
  2042. top:0px;
  2043. width:127px;
  2044. height:25px;
  2045. padding:2px 2px 2px 2px;
  2046. font-family:'Microsoft YaHei', sans-serif;
  2047. font-weight:400;
  2048. font-style:normal;
  2049. font-size:10px;
  2050. letter-spacing:normal;
  2051. color:#000000;
  2052. vertical-align:none;
  2053. text-align:left;
  2054. text-transform:none;
  2055. background-color:transparent;
  2056. border-color:transparent;
  2057. }
  2058. #u8639_input.disabled {
  2059. position:absolute;
  2060. left:0px;
  2061. top:0px;
  2062. width:127px;
  2063. height:25px;
  2064. padding:2px 2px 2px 2px;
  2065. font-family:'Microsoft YaHei', sans-serif;
  2066. font-weight:400;
  2067. font-style:normal;
  2068. font-size:10px;
  2069. letter-spacing:normal;
  2070. color:#000000;
  2071. vertical-align:none;
  2072. text-align:left;
  2073. text-transform:none;
  2074. background-color:transparent;
  2075. border-color:transparent;
  2076. }
  2077. #u8639_div {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:0px;
  2081. top:0px;
  2082. width:127px;
  2083. height:25px;
  2084. background:inherit;
  2085. background-color:rgba(255, 255, 255, 1);
  2086. border:none;
  2087. border-radius:0px;
  2088. -moz-box-shadow:none;
  2089. -webkit-box-shadow:none;
  2090. box-shadow:none;
  2091. font-family:'Microsoft YaHei', sans-serif;
  2092. font-weight:400;
  2093. font-style:normal;
  2094. font-size:10px;
  2095. }
  2096. #u8639 {
  2097. border-width:0px;
  2098. position:absolute;
  2099. left:523px;
  2100. top:112px;
  2101. width:127px;
  2102. height:25px;
  2103. display:flex;
  2104. font-family:'Microsoft YaHei', sans-serif;
  2105. font-weight:400;
  2106. font-style:normal;
  2107. font-size:10px;
  2108. }
  2109. #u8639 .text {
  2110. position:absolute;
  2111. align-self:center;
  2112. padding:2px 2px 2px 2px;
  2113. box-sizing:border-box;
  2114. width:100%;
  2115. }
  2116. #u8639_div.disabled {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:0px;
  2120. top:0px;
  2121. width:127px;
  2122. height:25px;
  2123. background:inherit;
  2124. background-color:rgba(240, 240, 240, 1);
  2125. border:none;
  2126. border-radius:0px;
  2127. -moz-box-shadow:none;
  2128. -webkit-box-shadow:none;
  2129. box-shadow:none;
  2130. font-family:'Microsoft YaHei', sans-serif;
  2131. font-weight:400;
  2132. font-style:normal;
  2133. font-size:10px;
  2134. }
  2135. #u8639.disabled {
  2136. }
  2137. #u8640 {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:0px;
  2141. top:0px;
  2142. width:0px;
  2143. height:0px;
  2144. }
  2145. #u8641_div {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:0px;
  2149. top:0px;
  2150. width:140px;
  2151. height:30px;
  2152. background:inherit;
  2153. background-color:rgba(255, 255, 255, 1);
  2154. box-sizing:border-box;
  2155. border-width:1px;
  2156. border-style:solid;
  2157. border-color:rgba(215, 215, 215, 1);
  2158. border-radius:4px;
  2159. -moz-box-shadow:none;
  2160. -webkit-box-shadow:none;
  2161. box-shadow:none;
  2162. font-size:11px;
  2163. }
  2164. #u8641 {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:365px;
  2168. top:111px;
  2169. width:140px;
  2170. height:30px;
  2171. display:flex;
  2172. font-size:11px;
  2173. }
  2174. #u8641 .text {
  2175. position:absolute;
  2176. align-self:center;
  2177. padding:2px 2px 2px 2px;
  2178. box-sizing:border-box;
  2179. width:100%;
  2180. }
  2181. #u8641_text {
  2182. border-width:0px;
  2183. word-wrap:break-word;
  2184. text-transform:none;
  2185. visibility:hidden;
  2186. }
  2187. #u8642_input {
  2188. position:absolute;
  2189. left:0px;
  2190. top:0px;
  2191. width:120px;
  2192. height:23px;
  2193. padding:2px 2px 2px 2px;
  2194. font-family:'ArialMT', 'Arial', sans-serif;
  2195. font-weight:400;
  2196. font-style:normal;
  2197. font-size:11px;
  2198. letter-spacing:normal;
  2199. color:#AAAAAA;
  2200. vertical-align:none;
  2201. text-align:left;
  2202. text-transform:none;
  2203. background-color:transparent;
  2204. border-color:transparent;
  2205. }
  2206. #u8642_input.disabled {
  2207. position:absolute;
  2208. left:0px;
  2209. top:0px;
  2210. width:120px;
  2211. height:23px;
  2212. padding:2px 2px 2px 2px;
  2213. font-family:'ArialMT', 'Arial', sans-serif;
  2214. font-weight:400;
  2215. font-style:normal;
  2216. font-size:11px;
  2217. letter-spacing:normal;
  2218. color:#AAAAAA;
  2219. vertical-align:none;
  2220. text-align:left;
  2221. text-transform:none;
  2222. background-color:transparent;
  2223. border-color:transparent;
  2224. }
  2225. #u8642_div {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:0px;
  2229. top:0px;
  2230. width:120px;
  2231. height:23px;
  2232. background:inherit;
  2233. background-color:rgba(255, 255, 255, 1);
  2234. border:none;
  2235. border-radius:0px;
  2236. -moz-box-shadow:none;
  2237. -webkit-box-shadow:none;
  2238. box-shadow:none;
  2239. font-size:11px;
  2240. color:#AAAAAA;
  2241. }
  2242. #u8642 {
  2243. border-width:0px;
  2244. position:absolute;
  2245. left:372px;
  2246. top:113px;
  2247. width:120px;
  2248. height:23px;
  2249. display:flex;
  2250. font-size:11px;
  2251. color:#AAAAAA;
  2252. }
  2253. #u8642 .text {
  2254. position:absolute;
  2255. align-self:flex-start;
  2256. padding:2px 2px 2px 2px;
  2257. box-sizing:border-box;
  2258. width:100%;
  2259. }
  2260. #u8642_div.disabled {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:0px;
  2264. top:0px;
  2265. width:120px;
  2266. height:23px;
  2267. background:inherit;
  2268. background-color:rgba(240, 240, 240, 1);
  2269. border:none;
  2270. border-radius:0px;
  2271. -moz-box-shadow:none;
  2272. -webkit-box-shadow:none;
  2273. box-shadow:none;
  2274. font-size:11px;
  2275. color:#AAAAAA;
  2276. }
  2277. #u8642.disabled {
  2278. }
  2279. .u8642_input_option {
  2280. font-size:11px;
  2281. }
  2282. #u8643 {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:365px;
  2286. top:194px;
  2287. width:1206px;
  2288. height:170px;
  2289. }
  2290. #u8644_img {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:0px;
  2294. top:0px;
  2295. width:75px;
  2296. height:38px;
  2297. }
  2298. #u8644 {
  2299. border-width:0px;
  2300. position:absolute;
  2301. left:0px;
  2302. top:0px;
  2303. width:75px;
  2304. height:38px;
  2305. display:flex;
  2306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2307. font-weight:400;
  2308. font-style:normal;
  2309. font-size:14px;
  2310. color:#FFFFFF;
  2311. }
  2312. #u8644 .text {
  2313. position:absolute;
  2314. align-self:center;
  2315. padding:2px 2px 2px 0px;
  2316. box-sizing:border-box;
  2317. width:100%;
  2318. }
  2319. #u8644_text {
  2320. border-width:0px;
  2321. word-wrap:break-word;
  2322. text-transform:none;
  2323. }
  2324. #u8645_img {
  2325. border-width:0px;
  2326. position:absolute;
  2327. left:0px;
  2328. top:0px;
  2329. width:132px;
  2330. height:38px;
  2331. }
  2332. #u8645 {
  2333. border-width:0px;
  2334. position:absolute;
  2335. left:75px;
  2336. top:0px;
  2337. width:132px;
  2338. height:38px;
  2339. display:flex;
  2340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2341. font-weight:400;
  2342. font-style:normal;
  2343. font-size:14px;
  2344. color:#FFFFFF;
  2345. }
  2346. #u8645 .text {
  2347. position:absolute;
  2348. align-self:center;
  2349. padding:2px 2px 2px 0px;
  2350. box-sizing:border-box;
  2351. width:100%;
  2352. }
  2353. #u8645_text {
  2354. border-width:0px;
  2355. word-wrap:break-word;
  2356. text-transform:none;
  2357. }
  2358. #u8646_img {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:0px;
  2362. top:0px;
  2363. width:75px;
  2364. height:38px;
  2365. }
  2366. #u8646 {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:207px;
  2370. top:0px;
  2371. width:75px;
  2372. height:38px;
  2373. display:flex;
  2374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2375. font-weight:400;
  2376. font-style:normal;
  2377. font-size:14px;
  2378. color:#FFFFFF;
  2379. }
  2380. #u8646 .text {
  2381. position:absolute;
  2382. align-self:center;
  2383. padding:2px 2px 2px 0px;
  2384. box-sizing:border-box;
  2385. width:100%;
  2386. }
  2387. #u8646_text {
  2388. border-width:0px;
  2389. word-wrap:break-word;
  2390. text-transform:none;
  2391. }
  2392. #u8647_img {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:0px;
  2396. top:0px;
  2397. width:75px;
  2398. height:38px;
  2399. }
  2400. #u8647 {
  2401. border-width:0px;
  2402. position:absolute;
  2403. left:282px;
  2404. top:0px;
  2405. width:75px;
  2406. height:38px;
  2407. display:flex;
  2408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2409. font-weight:400;
  2410. font-style:normal;
  2411. font-size:14px;
  2412. color:#FFFFFF;
  2413. }
  2414. #u8647 .text {
  2415. position:absolute;
  2416. align-self:center;
  2417. padding:2px 2px 2px 0px;
  2418. box-sizing:border-box;
  2419. width:100%;
  2420. }
  2421. #u8647_text {
  2422. border-width:0px;
  2423. word-wrap:break-word;
  2424. text-transform:none;
  2425. }
  2426. #u8648_img {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:0px;
  2430. top:0px;
  2431. width:132px;
  2432. height:38px;
  2433. }
  2434. #u8648 {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:357px;
  2438. top:0px;
  2439. width:132px;
  2440. height:38px;
  2441. display:flex;
  2442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2443. font-weight:400;
  2444. font-style:normal;
  2445. font-size:14px;
  2446. color:#FFFFFF;
  2447. }
  2448. #u8648 .text {
  2449. position:absolute;
  2450. align-self:center;
  2451. padding:2px 2px 2px 0px;
  2452. box-sizing:border-box;
  2453. width:100%;
  2454. }
  2455. #u8648_text {
  2456. border-width:0px;
  2457. word-wrap:break-word;
  2458. text-transform:none;
  2459. }
  2460. #u8649_img {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:0px;
  2464. top:0px;
  2465. width:170px;
  2466. height:38px;
  2467. }
  2468. #u8649 {
  2469. border-width:0px;
  2470. position:absolute;
  2471. left:489px;
  2472. top:0px;
  2473. width:170px;
  2474. height:38px;
  2475. display:flex;
  2476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2477. font-weight:400;
  2478. font-style:normal;
  2479. font-size:14px;
  2480. color:#FFFFFF;
  2481. }
  2482. #u8649 .text {
  2483. position:absolute;
  2484. align-self:center;
  2485. padding:2px 2px 2px 0px;
  2486. box-sizing:border-box;
  2487. width:100%;
  2488. }
  2489. #u8649_text {
  2490. border-width:0px;
  2491. word-wrap:break-word;
  2492. text-transform:none;
  2493. }
  2494. #u8650_img {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:0px;
  2498. top:0px;
  2499. width:170px;
  2500. height:38px;
  2501. }
  2502. #u8650 {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:659px;
  2506. top:0px;
  2507. width:170px;
  2508. height:38px;
  2509. display:flex;
  2510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2511. font-weight:400;
  2512. font-style:normal;
  2513. font-size:14px;
  2514. color:#FFFFFF;
  2515. }
  2516. #u8650 .text {
  2517. position:absolute;
  2518. align-self:center;
  2519. padding:2px 2px 2px 0px;
  2520. box-sizing:border-box;
  2521. width:100%;
  2522. }
  2523. #u8650_text {
  2524. border-width:0px;
  2525. word-wrap:break-word;
  2526. text-transform:none;
  2527. }
  2528. #u8651_img {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:0px;
  2532. top:0px;
  2533. width:132px;
  2534. height:38px;
  2535. }
  2536. #u8651 {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:829px;
  2540. top:0px;
  2541. width:132px;
  2542. height:38px;
  2543. display:flex;
  2544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2545. font-weight:400;
  2546. font-style:normal;
  2547. font-size:14px;
  2548. color:#FFFFFF;
  2549. }
  2550. #u8651 .text {
  2551. position:absolute;
  2552. align-self:center;
  2553. padding:2px 2px 2px 0px;
  2554. box-sizing:border-box;
  2555. width:100%;
  2556. }
  2557. #u8651_text {
  2558. border-width:0px;
  2559. word-wrap:break-word;
  2560. text-transform:none;
  2561. }
  2562. #u8652_img {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:0px;
  2566. top:0px;
  2567. width:245px;
  2568. height:38px;
  2569. }
  2570. #u8652 {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:961px;
  2574. top:0px;
  2575. width:245px;
  2576. height:38px;
  2577. display:flex;
  2578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2579. font-weight:400;
  2580. font-style:normal;
  2581. font-size:14px;
  2582. color:#FFFFFF;
  2583. }
  2584. #u8652 .text {
  2585. position:absolute;
  2586. align-self:center;
  2587. padding:2px 2px 2px 0px;
  2588. box-sizing:border-box;
  2589. width:100%;
  2590. }
  2591. #u8652_text {
  2592. border-width:0px;
  2593. word-wrap:break-word;
  2594. text-transform:none;
  2595. }
  2596. #u8653_img {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:0px;
  2600. top:0px;
  2601. width:75px;
  2602. height:44px;
  2603. }
  2604. #u8653 {
  2605. border-width:0px;
  2606. position:absolute;
  2607. left:0px;
  2608. top:38px;
  2609. width:75px;
  2610. height:44px;
  2611. display:flex;
  2612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2613. font-weight:400;
  2614. font-style:normal;
  2615. font-size:14px;
  2616. color:#333333;
  2617. }
  2618. #u8653 .text {
  2619. position:absolute;
  2620. align-self:center;
  2621. padding:2px 2px 2px 0px;
  2622. box-sizing:border-box;
  2623. width:100%;
  2624. }
  2625. #u8653_text {
  2626. border-width:0px;
  2627. word-wrap:break-word;
  2628. text-transform:none;
  2629. }
  2630. #u8654_img {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:0px;
  2634. top:0px;
  2635. width:132px;
  2636. height:44px;
  2637. }
  2638. #u8654 {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:75px;
  2642. top:38px;
  2643. width:132px;
  2644. height:44px;
  2645. display:flex;
  2646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2647. font-weight:400;
  2648. font-style:normal;
  2649. font-size:14px;
  2650. color:#333333;
  2651. }
  2652. #u8654 .text {
  2653. position:absolute;
  2654. align-self:center;
  2655. padding:2px 2px 2px 0px;
  2656. box-sizing:border-box;
  2657. width:100%;
  2658. }
  2659. #u8654_text {
  2660. border-width:0px;
  2661. word-wrap:break-word;
  2662. text-transform:none;
  2663. }
  2664. #u8655_img {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:0px;
  2668. top:0px;
  2669. width:75px;
  2670. height:44px;
  2671. }
  2672. #u8655 {
  2673. border-width:0px;
  2674. position:absolute;
  2675. left:207px;
  2676. top:38px;
  2677. width:75px;
  2678. height:44px;
  2679. display:flex;
  2680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2681. font-weight:400;
  2682. font-style:normal;
  2683. font-size:14px;
  2684. color:#333333;
  2685. }
  2686. #u8655 .text {
  2687. position:absolute;
  2688. align-self:center;
  2689. padding:2px 2px 2px 0px;
  2690. box-sizing:border-box;
  2691. width:100%;
  2692. }
  2693. #u8655_text {
  2694. border-width:0px;
  2695. word-wrap:break-word;
  2696. text-transform:none;
  2697. }
  2698. #u8656_img {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:0px;
  2702. top:0px;
  2703. width:75px;
  2704. height:44px;
  2705. }
  2706. #u8656 {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:282px;
  2710. top:38px;
  2711. width:75px;
  2712. height:44px;
  2713. display:flex;
  2714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2715. font-weight:400;
  2716. font-style:normal;
  2717. font-size:14px;
  2718. color:#333333;
  2719. }
  2720. #u8656 .text {
  2721. position:absolute;
  2722. align-self:center;
  2723. padding:2px 2px 2px 0px;
  2724. box-sizing:border-box;
  2725. width:100%;
  2726. }
  2727. #u8656_text {
  2728. border-width:0px;
  2729. word-wrap:break-word;
  2730. text-transform:none;
  2731. }
  2732. #u8657_img {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:0px;
  2736. top:0px;
  2737. width:132px;
  2738. height:44px;
  2739. }
  2740. #u8657 {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:357px;
  2744. top:38px;
  2745. width:132px;
  2746. height:44px;
  2747. display:flex;
  2748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2749. font-weight:400;
  2750. font-style:normal;
  2751. font-size:14px;
  2752. color:#333333;
  2753. }
  2754. #u8657 .text {
  2755. position:absolute;
  2756. align-self:center;
  2757. padding:2px 2px 2px 0px;
  2758. box-sizing:border-box;
  2759. width:100%;
  2760. }
  2761. #u8657_text {
  2762. border-width:0px;
  2763. word-wrap:break-word;
  2764. text-transform:none;
  2765. visibility:hidden;
  2766. }
  2767. #u8658_img {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:0px;
  2771. top:0px;
  2772. width:170px;
  2773. height:44px;
  2774. }
  2775. #u8658 {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:489px;
  2779. top:38px;
  2780. width:170px;
  2781. height:44px;
  2782. display:flex;
  2783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2784. font-weight:400;
  2785. font-style:normal;
  2786. font-size:14px;
  2787. color:#333333;
  2788. }
  2789. #u8658 .text {
  2790. position:absolute;
  2791. align-self:center;
  2792. padding:2px 2px 2px 0px;
  2793. box-sizing:border-box;
  2794. width:100%;
  2795. }
  2796. #u8658_text {
  2797. border-width:0px;
  2798. word-wrap:break-word;
  2799. text-transform:none;
  2800. }
  2801. #u8659_img {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:0px;
  2805. top:0px;
  2806. width:170px;
  2807. height:44px;
  2808. }
  2809. #u8659 {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:659px;
  2813. top:38px;
  2814. width:170px;
  2815. height:44px;
  2816. display:flex;
  2817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2818. font-weight:400;
  2819. font-style:normal;
  2820. font-size:14px;
  2821. color:#333333;
  2822. }
  2823. #u8659 .text {
  2824. position:absolute;
  2825. align-self:center;
  2826. padding:2px 2px 2px 0px;
  2827. box-sizing:border-box;
  2828. width:100%;
  2829. }
  2830. #u8659_text {
  2831. border-width:0px;
  2832. word-wrap:break-word;
  2833. text-transform:none;
  2834. }
  2835. #u8660_img {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:0px;
  2839. top:0px;
  2840. width:132px;
  2841. height:44px;
  2842. }
  2843. #u8660 {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:829px;
  2847. top:38px;
  2848. width:132px;
  2849. height:44px;
  2850. display:flex;
  2851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2852. font-weight:400;
  2853. font-style:normal;
  2854. font-size:14px;
  2855. color:#1890FF;
  2856. }
  2857. #u8660 .text {
  2858. position:absolute;
  2859. align-self:center;
  2860. padding:2px 2px 2px 0px;
  2861. box-sizing:border-box;
  2862. width:100%;
  2863. }
  2864. #u8660_text {
  2865. border-width:0px;
  2866. word-wrap:break-word;
  2867. text-transform:none;
  2868. }
  2869. #u8661_img {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:0px;
  2873. top:0px;
  2874. width:245px;
  2875. height:44px;
  2876. }
  2877. #u8661 {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:961px;
  2881. top:38px;
  2882. width:245px;
  2883. height:44px;
  2884. display:flex;
  2885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2886. font-weight:400;
  2887. font-style:normal;
  2888. font-size:14px;
  2889. color:#1890FF;
  2890. }
  2891. #u8661 .text {
  2892. position:absolute;
  2893. align-self:center;
  2894. padding:2px 2px 2px 0px;
  2895. box-sizing:border-box;
  2896. width:100%;
  2897. }
  2898. #u8661_text {
  2899. border-width:0px;
  2900. word-wrap:break-word;
  2901. text-transform:none;
  2902. }
  2903. #u8662_img {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:0px;
  2907. top:0px;
  2908. width:75px;
  2909. height:44px;
  2910. }
  2911. #u8662 {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:0px;
  2915. top:82px;
  2916. width:75px;
  2917. height:44px;
  2918. display:flex;
  2919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2920. font-weight:400;
  2921. font-style:normal;
  2922. font-size:14px;
  2923. color:#333333;
  2924. }
  2925. #u8662 .text {
  2926. position:absolute;
  2927. align-self:center;
  2928. padding:2px 2px 2px 0px;
  2929. box-sizing:border-box;
  2930. width:100%;
  2931. }
  2932. #u8662_text {
  2933. border-width:0px;
  2934. word-wrap:break-word;
  2935. text-transform:none;
  2936. }
  2937. #u8663_img {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:0px;
  2941. top:0px;
  2942. width:132px;
  2943. height:44px;
  2944. }
  2945. #u8663 {
  2946. border-width:0px;
  2947. position:absolute;
  2948. left:75px;
  2949. top:82px;
  2950. width:132px;
  2951. height:44px;
  2952. display:flex;
  2953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2954. font-weight:400;
  2955. font-style:normal;
  2956. font-size:14px;
  2957. color:#333333;
  2958. }
  2959. #u8663 .text {
  2960. position:absolute;
  2961. align-self:center;
  2962. padding:2px 2px 2px 0px;
  2963. box-sizing:border-box;
  2964. width:100%;
  2965. }
  2966. #u8663_text {
  2967. border-width:0px;
  2968. word-wrap:break-word;
  2969. text-transform:none;
  2970. }
  2971. #u8664_img {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:0px;
  2975. top:0px;
  2976. width:75px;
  2977. height:44px;
  2978. }
  2979. #u8664 {
  2980. border-width:0px;
  2981. position:absolute;
  2982. left:207px;
  2983. top:82px;
  2984. width:75px;
  2985. height:44px;
  2986. display:flex;
  2987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2988. font-weight:400;
  2989. font-style:normal;
  2990. font-size:14px;
  2991. color:#333333;
  2992. }
  2993. #u8664 .text {
  2994. position:absolute;
  2995. align-self:center;
  2996. padding:2px 2px 2px 0px;
  2997. box-sizing:border-box;
  2998. width:100%;
  2999. }
  3000. #u8664_text {
  3001. border-width:0px;
  3002. word-wrap:break-word;
  3003. text-transform:none;
  3004. }
  3005. #u8665_img {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:0px;
  3009. top:0px;
  3010. width:75px;
  3011. height:44px;
  3012. }
  3013. #u8665 {
  3014. border-width:0px;
  3015. position:absolute;
  3016. left:282px;
  3017. top:82px;
  3018. width:75px;
  3019. height:44px;
  3020. display:flex;
  3021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3022. font-weight:400;
  3023. font-style:normal;
  3024. font-size:14px;
  3025. color:#333333;
  3026. }
  3027. #u8665 .text {
  3028. position:absolute;
  3029. align-self:center;
  3030. padding:2px 2px 2px 0px;
  3031. box-sizing:border-box;
  3032. width:100%;
  3033. }
  3034. #u8665_text {
  3035. border-width:0px;
  3036. word-wrap:break-word;
  3037. text-transform:none;
  3038. }
  3039. #u8666_img {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:0px;
  3043. top:0px;
  3044. width:132px;
  3045. height:44px;
  3046. }
  3047. #u8666 {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:357px;
  3051. top:82px;
  3052. width:132px;
  3053. height:44px;
  3054. display:flex;
  3055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3056. font-weight:400;
  3057. font-style:normal;
  3058. font-size:14px;
  3059. color:#333333;
  3060. }
  3061. #u8666 .text {
  3062. position:absolute;
  3063. align-self:center;
  3064. padding:2px 2px 2px 0px;
  3065. box-sizing:border-box;
  3066. width:100%;
  3067. }
  3068. #u8666_text {
  3069. border-width:0px;
  3070. word-wrap:break-word;
  3071. text-transform:none;
  3072. visibility:hidden;
  3073. }
  3074. #u8667_img {
  3075. border-width:0px;
  3076. position:absolute;
  3077. left:0px;
  3078. top:0px;
  3079. width:170px;
  3080. height:44px;
  3081. }
  3082. #u8667 {
  3083. border-width:0px;
  3084. position:absolute;
  3085. left:489px;
  3086. top:82px;
  3087. width:170px;
  3088. height:44px;
  3089. display:flex;
  3090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3091. font-weight:400;
  3092. font-style:normal;
  3093. font-size:14px;
  3094. color:#333333;
  3095. }
  3096. #u8667 .text {
  3097. position:absolute;
  3098. align-self:center;
  3099. padding:2px 2px 2px 0px;
  3100. box-sizing:border-box;
  3101. width:100%;
  3102. }
  3103. #u8667_text {
  3104. border-width:0px;
  3105. word-wrap:break-word;
  3106. text-transform:none;
  3107. }
  3108. #u8668_img {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:0px;
  3112. top:0px;
  3113. width:170px;
  3114. height:44px;
  3115. }
  3116. #u8668 {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:659px;
  3120. top:82px;
  3121. width:170px;
  3122. height:44px;
  3123. display:flex;
  3124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3125. font-weight:400;
  3126. font-style:normal;
  3127. font-size:14px;
  3128. color:#333333;
  3129. }
  3130. #u8668 .text {
  3131. position:absolute;
  3132. align-self:center;
  3133. padding:2px 2px 2px 0px;
  3134. box-sizing:border-box;
  3135. width:100%;
  3136. }
  3137. #u8668_text {
  3138. border-width:0px;
  3139. word-wrap:break-word;
  3140. text-transform:none;
  3141. }
  3142. #u8669_img {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:0px;
  3146. top:0px;
  3147. width:132px;
  3148. height:44px;
  3149. }
  3150. #u8669 {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:829px;
  3154. top:82px;
  3155. width:132px;
  3156. height:44px;
  3157. display:flex;
  3158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3159. font-weight:400;
  3160. font-style:normal;
  3161. font-size:14px;
  3162. color:#1890FF;
  3163. }
  3164. #u8669 .text {
  3165. position:absolute;
  3166. align-self:center;
  3167. padding:2px 2px 2px 0px;
  3168. box-sizing:border-box;
  3169. width:100%;
  3170. }
  3171. #u8669_text {
  3172. border-width:0px;
  3173. word-wrap:break-word;
  3174. text-transform:none;
  3175. }
  3176. #u8670_img {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:0px;
  3180. top:0px;
  3181. width:245px;
  3182. height:44px;
  3183. }
  3184. #u8670 {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:961px;
  3188. top:82px;
  3189. width:245px;
  3190. height:44px;
  3191. display:flex;
  3192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3193. font-weight:400;
  3194. font-style:normal;
  3195. font-size:14px;
  3196. color:#1890FF;
  3197. }
  3198. #u8670 .text {
  3199. position:absolute;
  3200. align-self:center;
  3201. padding:2px 2px 2px 0px;
  3202. box-sizing:border-box;
  3203. width:100%;
  3204. }
  3205. #u8670_text {
  3206. border-width:0px;
  3207. word-wrap:break-word;
  3208. text-transform:none;
  3209. }
  3210. #u8671_img {
  3211. border-width:0px;
  3212. position:absolute;
  3213. left:0px;
  3214. top:0px;
  3215. width:75px;
  3216. height:44px;
  3217. }
  3218. #u8671 {
  3219. border-width:0px;
  3220. position:absolute;
  3221. left:0px;
  3222. top:126px;
  3223. width:75px;
  3224. height:44px;
  3225. display:flex;
  3226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3227. font-weight:400;
  3228. font-style:normal;
  3229. font-size:14px;
  3230. color:#333333;
  3231. }
  3232. #u8671 .text {
  3233. position:absolute;
  3234. align-self:center;
  3235. padding:2px 2px 2px 0px;
  3236. box-sizing:border-box;
  3237. width:100%;
  3238. }
  3239. #u8671_text {
  3240. border-width:0px;
  3241. word-wrap:break-word;
  3242. text-transform:none;
  3243. }
  3244. #u8672_img {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:0px;
  3248. top:0px;
  3249. width:132px;
  3250. height:44px;
  3251. }
  3252. #u8672 {
  3253. border-width:0px;
  3254. position:absolute;
  3255. left:75px;
  3256. top:126px;
  3257. width:132px;
  3258. height:44px;
  3259. display:flex;
  3260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3261. font-weight:400;
  3262. font-style:normal;
  3263. font-size:14px;
  3264. color:#333333;
  3265. }
  3266. #u8672 .text {
  3267. position:absolute;
  3268. align-self:center;
  3269. padding:2px 2px 2px 0px;
  3270. box-sizing:border-box;
  3271. width:100%;
  3272. }
  3273. #u8672_text {
  3274. border-width:0px;
  3275. word-wrap:break-word;
  3276. text-transform:none;
  3277. }
  3278. #u8673_img {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:0px;
  3282. top:0px;
  3283. width:75px;
  3284. height:44px;
  3285. }
  3286. #u8673 {
  3287. border-width:0px;
  3288. position:absolute;
  3289. left:207px;
  3290. top:126px;
  3291. width:75px;
  3292. height:44px;
  3293. display:flex;
  3294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3295. font-weight:400;
  3296. font-style:normal;
  3297. font-size:14px;
  3298. color:#333333;
  3299. }
  3300. #u8673 .text {
  3301. position:absolute;
  3302. align-self:center;
  3303. padding:2px 2px 2px 0px;
  3304. box-sizing:border-box;
  3305. width:100%;
  3306. }
  3307. #u8673_text {
  3308. border-width:0px;
  3309. word-wrap:break-word;
  3310. text-transform:none;
  3311. }
  3312. #u8674_img {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:0px;
  3316. top:0px;
  3317. width:75px;
  3318. height:44px;
  3319. }
  3320. #u8674 {
  3321. border-width:0px;
  3322. position:absolute;
  3323. left:282px;
  3324. top:126px;
  3325. width:75px;
  3326. height:44px;
  3327. display:flex;
  3328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3329. font-weight:400;
  3330. font-style:normal;
  3331. font-size:14px;
  3332. color:#333333;
  3333. }
  3334. #u8674 .text {
  3335. position:absolute;
  3336. align-self:center;
  3337. padding:2px 2px 2px 0px;
  3338. box-sizing:border-box;
  3339. width:100%;
  3340. }
  3341. #u8674_text {
  3342. border-width:0px;
  3343. word-wrap:break-word;
  3344. text-transform:none;
  3345. }
  3346. #u8675_img {
  3347. border-width:0px;
  3348. position:absolute;
  3349. left:0px;
  3350. top:0px;
  3351. width:132px;
  3352. height:44px;
  3353. }
  3354. #u8675 {
  3355. border-width:0px;
  3356. position:absolute;
  3357. left:357px;
  3358. top:126px;
  3359. width:132px;
  3360. height:44px;
  3361. display:flex;
  3362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3363. font-weight:400;
  3364. font-style:normal;
  3365. font-size:14px;
  3366. color:#333333;
  3367. }
  3368. #u8675 .text {
  3369. position:absolute;
  3370. align-self:center;
  3371. padding:2px 2px 2px 0px;
  3372. box-sizing:border-box;
  3373. width:100%;
  3374. }
  3375. #u8675_text {
  3376. border-width:0px;
  3377. word-wrap:break-word;
  3378. text-transform:none;
  3379. visibility:hidden;
  3380. }
  3381. #u8676_img {
  3382. border-width:0px;
  3383. position:absolute;
  3384. left:0px;
  3385. top:0px;
  3386. width:170px;
  3387. height:44px;
  3388. }
  3389. #u8676 {
  3390. border-width:0px;
  3391. position:absolute;
  3392. left:489px;
  3393. top:126px;
  3394. width:170px;
  3395. height:44px;
  3396. display:flex;
  3397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3398. font-weight:400;
  3399. font-style:normal;
  3400. font-size:14px;
  3401. color:#333333;
  3402. }
  3403. #u8676 .text {
  3404. position:absolute;
  3405. align-self:center;
  3406. padding:2px 2px 2px 0px;
  3407. box-sizing:border-box;
  3408. width:100%;
  3409. }
  3410. #u8676_text {
  3411. border-width:0px;
  3412. word-wrap:break-word;
  3413. text-transform:none;
  3414. }
  3415. #u8677_img {
  3416. border-width:0px;
  3417. position:absolute;
  3418. left:0px;
  3419. top:0px;
  3420. width:170px;
  3421. height:44px;
  3422. }
  3423. #u8677 {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:659px;
  3427. top:126px;
  3428. width:170px;
  3429. height:44px;
  3430. display:flex;
  3431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3432. font-weight:400;
  3433. font-style:normal;
  3434. font-size:14px;
  3435. color:#333333;
  3436. }
  3437. #u8677 .text {
  3438. position:absolute;
  3439. align-self:center;
  3440. padding:2px 2px 2px 0px;
  3441. box-sizing:border-box;
  3442. width:100%;
  3443. }
  3444. #u8677_text {
  3445. border-width:0px;
  3446. word-wrap:break-word;
  3447. text-transform:none;
  3448. }
  3449. #u8678_img {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:0px;
  3453. top:0px;
  3454. width:132px;
  3455. height:44px;
  3456. }
  3457. #u8678 {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:829px;
  3461. top:126px;
  3462. width:132px;
  3463. height:44px;
  3464. display:flex;
  3465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3466. font-weight:400;
  3467. font-style:normal;
  3468. font-size:14px;
  3469. color:#1890FF;
  3470. }
  3471. #u8678 .text {
  3472. position:absolute;
  3473. align-self:center;
  3474. padding:2px 2px 2px 0px;
  3475. box-sizing:border-box;
  3476. width:100%;
  3477. }
  3478. #u8678_text {
  3479. border-width:0px;
  3480. word-wrap:break-word;
  3481. text-transform:none;
  3482. }
  3483. #u8679_img {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:0px;
  3487. top:0px;
  3488. width:245px;
  3489. height:44px;
  3490. }
  3491. #u8679 {
  3492. border-width:0px;
  3493. position:absolute;
  3494. left:961px;
  3495. top:126px;
  3496. width:245px;
  3497. height:44px;
  3498. display:flex;
  3499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3500. font-weight:400;
  3501. font-style:normal;
  3502. font-size:14px;
  3503. color:#1890FF;
  3504. }
  3505. #u8679 .text {
  3506. position:absolute;
  3507. align-self:center;
  3508. padding:2px 2px 2px 0px;
  3509. box-sizing:border-box;
  3510. width:100%;
  3511. }
  3512. #u8679_text {
  3513. border-width:0px;
  3514. word-wrap:break-word;
  3515. text-transform:none;
  3516. }
  3517. #u8680 {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:0px;
  3521. top:0px;
  3522. width:0px;
  3523. height:0px;
  3524. }
  3525. #u8681_div {
  3526. border-width:0px;
  3527. position:absolute;
  3528. left:0px;
  3529. top:0px;
  3530. width:100px;
  3531. height:100px;
  3532. background:inherit;
  3533. background-color:rgba(255, 255, 255, 1);
  3534. box-sizing:border-box;
  3535. border-width:1px;
  3536. border-style:solid;
  3537. border-color:rgba(242, 242, 242, 1);
  3538. border-radius:4px;
  3539. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3540. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3541. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3543. font-weight:400;
  3544. font-style:normal;
  3545. font-size:14px;
  3546. text-align:left;
  3547. }
  3548. #u8681 {
  3549. border-width:0px;
  3550. position:absolute;
  3551. left:1449px;
  3552. top:352px;
  3553. width:100px;
  3554. height:100px;
  3555. display:flex;
  3556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3557. font-weight:400;
  3558. font-style:normal;
  3559. font-size:14px;
  3560. text-align:left;
  3561. }
  3562. #u8681 .text {
  3563. position:absolute;
  3564. align-self:center;
  3565. padding:2px 2px 2px 2px;
  3566. box-sizing:border-box;
  3567. width:100%;
  3568. }
  3569. #u8681_text {
  3570. border-width:0px;
  3571. word-wrap:break-word;
  3572. text-transform:none;
  3573. visibility:hidden;
  3574. }
  3575. #u8682_div {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:0px;
  3579. top:0px;
  3580. width:85px;
  3581. height:40px;
  3582. background:inherit;
  3583. background-color:rgba(255, 255, 255, 1);
  3584. box-sizing:border-box;
  3585. border-width:1px;
  3586. border-style:solid;
  3587. border-color:rgba(215, 215, 215, 1);
  3588. border-left:0px;
  3589. border-top:0px;
  3590. border-right:0px;
  3591. border-radius:0px;
  3592. border-bottom-right-radius:0px;
  3593. border-bottom-left-radius:0px;
  3594. -moz-box-shadow:none;
  3595. -webkit-box-shadow:none;
  3596. box-shadow:none;
  3597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3598. font-weight:400;
  3599. font-style:normal;
  3600. font-size:14px;
  3601. }
  3602. #u8682 {
  3603. border-width:0px;
  3604. position:absolute;
  3605. left:1457px;
  3606. top:362px;
  3607. width:85px;
  3608. height:40px;
  3609. display:flex;
  3610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3611. font-weight:400;
  3612. font-style:normal;
  3613. font-size:14px;
  3614. }
  3615. #u8682 .text {
  3616. position:absolute;
  3617. align-self:center;
  3618. padding:2px 2px 2px 2px;
  3619. box-sizing:border-box;
  3620. width:100%;
  3621. }
  3622. #u8682_text {
  3623. border-width:0px;
  3624. word-wrap:break-word;
  3625. text-transform:none;
  3626. }
  3627. #u8683_div {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:0px;
  3631. top:0px;
  3632. width:85px;
  3633. height:40px;
  3634. background:inherit;
  3635. background-color:rgba(255, 255, 255, 1);
  3636. border:none;
  3637. border-left:0px;
  3638. border-top:0px;
  3639. border-right:0px;
  3640. border-radius:0px;
  3641. border-bottom-right-radius:0px;
  3642. border-bottom-left-radius:0px;
  3643. -moz-box-shadow:none;
  3644. -webkit-box-shadow:none;
  3645. box-shadow:none;
  3646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3647. font-weight:400;
  3648. font-style:normal;
  3649. font-size:14px;
  3650. color:#D9001B;
  3651. }
  3652. #u8683 {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:1457px;
  3656. top:402px;
  3657. width:85px;
  3658. height:40px;
  3659. display:flex;
  3660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3661. font-weight:400;
  3662. font-style:normal;
  3663. font-size:14px;
  3664. color:#D9001B;
  3665. }
  3666. #u8683 .text {
  3667. position:absolute;
  3668. align-self:center;
  3669. padding:2px 2px 2px 2px;
  3670. box-sizing:border-box;
  3671. width:100%;
  3672. }
  3673. #u8683_text {
  3674. border-width:0px;
  3675. word-wrap:break-word;
  3676. text-transform:none;
  3677. }
  3678. #u8684 {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:0px;
  3682. top:0px;
  3683. width:0px;
  3684. height:0px;
  3685. }
  3686. #u8685_div {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:0px;
  3690. top:0px;
  3691. width:800px;
  3692. height:60px;
  3693. background:inherit;
  3694. background-color:rgba(255, 255, 255, 1);
  3695. box-sizing:border-box;
  3696. border-width:1px;
  3697. border-style:solid;
  3698. border-color:rgba(242, 242, 242, 1);
  3699. border-radius:0px;
  3700. -moz-box-shadow:none;
  3701. -webkit-box-shadow:none;
  3702. box-shadow:none;
  3703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3704. font-weight:400;
  3705. font-style:normal;
  3706. font-size:14px;
  3707. color:#AAAAAA;
  3708. text-align:center;
  3709. line-height:30px;
  3710. }
  3711. #u8685 {
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:1664px;
  3715. top:50px;
  3716. width:800px;
  3717. height:60px;
  3718. display:flex;
  3719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3720. font-weight:400;
  3721. font-style:normal;
  3722. font-size:14px;
  3723. color:#AAAAAA;
  3724. text-align:center;
  3725. line-height:30px;
  3726. }
  3727. #u8685 .text {
  3728. position:absolute;
  3729. align-self:center;
  3730. padding:5px 10px 5px 10px;
  3731. box-sizing:border-box;
  3732. width:100%;
  3733. }
  3734. #u8685_text {
  3735. border-width:0px;
  3736. word-wrap:break-word;
  3737. text-transform:none;
  3738. visibility:hidden;
  3739. }
  3740. #u8686_div {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:0px;
  3744. top:0px;
  3745. width:137px;
  3746. height:35px;
  3747. background:inherit;
  3748. background-color:rgba(255, 255, 255, 0);
  3749. border:none;
  3750. border-top:0px;
  3751. border-right:0px;
  3752. border-bottom:0px;
  3753. border-radius:0px;
  3754. border-top-left-radius:0px;
  3755. border-bottom-left-radius:0px;
  3756. -moz-box-shadow:none;
  3757. -webkit-box-shadow:none;
  3758. box-shadow:none;
  3759. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3760. font-weight:500;
  3761. font-style:normal;
  3762. font-size:18px;
  3763. }
  3764. #u8686 {
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:1695px;
  3768. top:63px;
  3769. width:137px;
  3770. height:35px;
  3771. display:flex;
  3772. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3773. font-weight:500;
  3774. font-style:normal;
  3775. font-size:18px;
  3776. }
  3777. #u8686 .text {
  3778. position:absolute;
  3779. align-self:center;
  3780. padding:5px 10px 5px 0px;
  3781. box-sizing:border-box;
  3782. width:100%;
  3783. }
  3784. #u8686_text {
  3785. border-width:0px;
  3786. white-space:nowrap;
  3787. text-transform:none;
  3788. }
  3789. #u8687_div {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:0px;
  3793. top:0px;
  3794. width:40px;
  3795. height:40px;
  3796. background:inherit;
  3797. background-color:rgba(255, 255, 255, 0);
  3798. border:none;
  3799. border-top:0px;
  3800. border-right:0px;
  3801. border-bottom:0px;
  3802. border-radius:0px;
  3803. border-top-left-radius:0px;
  3804. border-bottom-left-radius:0px;
  3805. -moz-box-shadow:none;
  3806. -webkit-box-shadow:none;
  3807. box-shadow:none;
  3808. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3809. font-weight:500;
  3810. font-style:normal;
  3811. font-size:24px;
  3812. text-align:center;
  3813. }
  3814. #u8687 {
  3815. border-width:0px;
  3816. position:absolute;
  3817. left:2424px;
  3818. top:50px;
  3819. width:40px;
  3820. height:40px;
  3821. display:flex;
  3822. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3823. font-weight:500;
  3824. font-style:normal;
  3825. font-size:24px;
  3826. text-align:center;
  3827. }
  3828. #u8687 .text {
  3829. position:absolute;
  3830. align-self:center;
  3831. padding:5px 10px 5px 0px;
  3832. box-sizing:border-box;
  3833. width:100%;
  3834. }
  3835. #u8687_text {
  3836. border-width:0px;
  3837. word-wrap:break-word;
  3838. text-transform:none;
  3839. }
  3840. #u8688_div {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:0px;
  3844. top:0px;
  3845. width:800px;
  3846. height:1140px;
  3847. background:inherit;
  3848. background-color:rgba(255, 255, 255, 1);
  3849. box-sizing:border-box;
  3850. border-width:1px;
  3851. border-style:solid;
  3852. border-color:rgba(242, 242, 242, 1);
  3853. border-radius:0px;
  3854. -moz-box-shadow:none;
  3855. -webkit-box-shadow:none;
  3856. box-shadow:none;
  3857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3858. font-weight:400;
  3859. font-style:normal;
  3860. font-size:14px;
  3861. color:#AAAAAA;
  3862. text-align:center;
  3863. line-height:30px;
  3864. }
  3865. #u8688 {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:1664px;
  3869. top:110px;
  3870. width:800px;
  3871. height:1140px;
  3872. display:flex;
  3873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3874. font-weight:400;
  3875. font-style:normal;
  3876. font-size:14px;
  3877. color:#AAAAAA;
  3878. text-align:center;
  3879. line-height:30px;
  3880. }
  3881. #u8688 .text {
  3882. position:absolute;
  3883. align-self:center;
  3884. padding:5px 10px 5px 10px;
  3885. box-sizing:border-box;
  3886. width:100%;
  3887. }
  3888. #u8688_text {
  3889. border-width:0px;
  3890. word-wrap:break-word;
  3891. text-transform:none;
  3892. visibility:hidden;
  3893. }
  3894. #u8689 {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:0px;
  3898. top:0px;
  3899. width:0px;
  3900. height:0px;
  3901. }
  3902. #u8690_div {
  3903. border-width:0px;
  3904. position:absolute;
  3905. left:0px;
  3906. top:0px;
  3907. width:800px;
  3908. height:60px;
  3909. background:inherit;
  3910. background-color:rgba(255, 255, 255, 1);
  3911. box-sizing:border-box;
  3912. border-width:1px;
  3913. border-style:solid;
  3914. border-color:rgba(215, 215, 215, 1);
  3915. border-radius:0px;
  3916. -moz-box-shadow:none;
  3917. -webkit-box-shadow:none;
  3918. box-shadow:none;
  3919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3920. font-weight:400;
  3921. font-style:normal;
  3922. font-size:14px;
  3923. color:#AAAAAA;
  3924. text-align:center;
  3925. line-height:30px;
  3926. }
  3927. #u8690 {
  3928. border-width:0px;
  3929. position:absolute;
  3930. left:1664px;
  3931. top:1190px;
  3932. width:800px;
  3933. height:60px;
  3934. display:flex;
  3935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3936. font-weight:400;
  3937. font-style:normal;
  3938. font-size:14px;
  3939. color:#AAAAAA;
  3940. text-align:center;
  3941. line-height:30px;
  3942. }
  3943. #u8690 .text {
  3944. position:absolute;
  3945. align-self:center;
  3946. padding:5px 10px 5px 10px;
  3947. box-sizing:border-box;
  3948. width:100%;
  3949. }
  3950. #u8690_text {
  3951. border-width:0px;
  3952. word-wrap:break-word;
  3953. text-transform:none;
  3954. visibility:hidden;
  3955. }
  3956. #u8691_div {
  3957. border-width:0px;
  3958. position:absolute;
  3959. left:0px;
  3960. top:0px;
  3961. width:80px;
  3962. height:30px;
  3963. background:inherit;
  3964. background-color:rgba(24, 144, 255, 1);
  3965. border:none;
  3966. border-radius:4px;
  3967. -moz-box-shadow:none;
  3968. -webkit-box-shadow:none;
  3969. box-shadow:none;
  3970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3971. font-weight:400;
  3972. font-style:normal;
  3973. font-size:14px;
  3974. color:#FFFFFF;
  3975. }
  3976. #u8691 {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:2344px;
  3980. top:1205px;
  3981. width:80px;
  3982. height:30px;
  3983. display:flex;
  3984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3985. font-weight:400;
  3986. font-style:normal;
  3987. font-size:14px;
  3988. color:#FFFFFF;
  3989. }
  3990. #u8691 .text {
  3991. position:absolute;
  3992. align-self:center;
  3993. padding:2px 2px 2px 2px;
  3994. box-sizing:border-box;
  3995. width:100%;
  3996. }
  3997. #u8691_text {
  3998. border-width:0px;
  3999. word-wrap:break-word;
  4000. text-transform:none;
  4001. }
  4002. #u8692_div {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:0px;
  4006. top:0px;
  4007. width:80px;
  4008. height:30px;
  4009. background:inherit;
  4010. background-color:rgba(255, 255, 255, 1);
  4011. box-sizing:border-box;
  4012. border-width:1px;
  4013. border-style:solid;
  4014. border-color:rgba(170, 170, 170, 1);
  4015. border-radius:4px;
  4016. -moz-box-shadow:none;
  4017. -webkit-box-shadow:none;
  4018. box-shadow:none;
  4019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4020. font-weight:400;
  4021. font-style:normal;
  4022. font-size:14px;
  4023. }
  4024. #u8692 {
  4025. border-width:0px;
  4026. position:absolute;
  4027. left:2254px;
  4028. top:1205px;
  4029. width:80px;
  4030. height:30px;
  4031. display:flex;
  4032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4033. font-weight:400;
  4034. font-style:normal;
  4035. font-size:14px;
  4036. }
  4037. #u8692 .text {
  4038. position:absolute;
  4039. align-self:center;
  4040. padding:2px 2px 2px 2px;
  4041. box-sizing:border-box;
  4042. width:100%;
  4043. }
  4044. #u8692_text {
  4045. border-width:0px;
  4046. word-wrap:break-word;
  4047. text-transform:none;
  4048. }
  4049. #u8693 {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:0px;
  4053. top:0px;
  4054. width:0px;
  4055. height:0px;
  4056. }
  4057. #u8694 {
  4058. border-width:0px;
  4059. position:absolute;
  4060. left:0px;
  4061. top:0px;
  4062. width:0px;
  4063. height:0px;
  4064. }
  4065. #u8695_div {
  4066. border-width:0px;
  4067. position:absolute;
  4068. left:0px;
  4069. top:0px;
  4070. width:300px;
  4071. height:40px;
  4072. background:inherit;
  4073. background-color:rgba(255, 255, 255, 1);
  4074. box-sizing:border-box;
  4075. border-width:1px;
  4076. border-style:solid;
  4077. border-color:rgba(201, 201, 201, 1);
  4078. border-radius:4px;
  4079. -moz-box-shadow:none;
  4080. -webkit-box-shadow:none;
  4081. box-shadow:none;
  4082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4083. font-weight:400;
  4084. font-style:normal;
  4085. font-size:14px;
  4086. text-align:right;
  4087. }
  4088. #u8695 {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:2057px;
  4092. top:218px;
  4093. width:300px;
  4094. height:40px;
  4095. display:flex;
  4096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4097. font-weight:400;
  4098. font-style:normal;
  4099. font-size:14px;
  4100. text-align:right;
  4101. }
  4102. #u8695 .text {
  4103. position:absolute;
  4104. align-self:center;
  4105. padding:2px 8px 2px 8px;
  4106. box-sizing:border-box;
  4107. width:100%;
  4108. }
  4109. #u8695_text {
  4110. border-width:0px;
  4111. word-wrap:break-word;
  4112. text-transform:none;
  4113. visibility:hidden;
  4114. }
  4115. #u8696_input {
  4116. position:absolute;
  4117. left:0px;
  4118. top:0px;
  4119. width:279px;
  4120. height:33px;
  4121. padding:2px 2px 2px 2px;
  4122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4123. font-weight:400;
  4124. font-style:normal;
  4125. font-size:14px;
  4126. letter-spacing:normal;
  4127. color:#D7D7D7;
  4128. vertical-align:none;
  4129. text-align:left;
  4130. text-transform:none;
  4131. background-color:transparent;
  4132. border-color:transparent;
  4133. }
  4134. #u8696_input.disabled {
  4135. position:absolute;
  4136. left:0px;
  4137. top:0px;
  4138. width:279px;
  4139. height:33px;
  4140. padding:2px 2px 2px 2px;
  4141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4142. font-weight:400;
  4143. font-style:normal;
  4144. font-size:14px;
  4145. letter-spacing:normal;
  4146. color:#D7D7D7;
  4147. vertical-align:none;
  4148. text-align:left;
  4149. text-transform:none;
  4150. background-color:transparent;
  4151. border-color:transparent;
  4152. }
  4153. #u8696_div {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:0px;
  4157. top:0px;
  4158. width:279px;
  4159. height:33px;
  4160. background:inherit;
  4161. background-color:rgba(255, 255, 255, 0);
  4162. border:none;
  4163. border-radius:0px;
  4164. -moz-box-shadow:none;
  4165. -webkit-box-shadow:none;
  4166. box-shadow:none;
  4167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4168. font-weight:400;
  4169. font-style:normal;
  4170. font-size:14px;
  4171. color:#D7D7D7;
  4172. }
  4173. #u8696 {
  4174. border-width:0px;
  4175. position:absolute;
  4176. left:2062px;
  4177. top:221px;
  4178. width:279px;
  4179. height:33px;
  4180. display:flex;
  4181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4182. font-weight:400;
  4183. font-style:normal;
  4184. font-size:14px;
  4185. color:#D7D7D7;
  4186. }
  4187. #u8696 .text {
  4188. position:absolute;
  4189. align-self:center;
  4190. padding:2px 2px 2px 2px;
  4191. box-sizing:border-box;
  4192. width:100%;
  4193. }
  4194. #u8696_div.disabled {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:0px;
  4198. top:0px;
  4199. width:279px;
  4200. height:33px;
  4201. background:inherit;
  4202. background-color:rgba(240, 240, 240, 1);
  4203. border:none;
  4204. border-radius:0px;
  4205. -moz-box-shadow:none;
  4206. -webkit-box-shadow:none;
  4207. box-shadow:none;
  4208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4209. font-weight:400;
  4210. font-style:normal;
  4211. font-size:14px;
  4212. color:#D7D7D7;
  4213. }
  4214. #u8696.disabled {
  4215. }
  4216. #u8697_div {
  4217. border-width:0px;
  4218. position:absolute;
  4219. left:0px;
  4220. top:0px;
  4221. width:92px;
  4222. height:40px;
  4223. background:inherit;
  4224. background-color:rgba(255, 255, 255, 0);
  4225. border:none;
  4226. border-left:0px;
  4227. border-top:0px;
  4228. border-right:0px;
  4229. border-radius:0px;
  4230. border-bottom-right-radius:0px;
  4231. border-bottom-left-radius:0px;
  4232. -moz-box-shadow:none;
  4233. -webkit-box-shadow:none;
  4234. box-shadow:none;
  4235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4236. font-weight:400;
  4237. font-style:normal;
  4238. font-size:14px;
  4239. }
  4240. #u8697 {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:2057px;
  4244. top:178px;
  4245. width:92px;
  4246. height:40px;
  4247. display:flex;
  4248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4249. font-weight:400;
  4250. font-style:normal;
  4251. font-size:14px;
  4252. }
  4253. #u8697 .text {
  4254. position:absolute;
  4255. align-self:center;
  4256. padding:0px 0px 0px 0px;
  4257. box-sizing:border-box;
  4258. width:100%;
  4259. }
  4260. #u8697_text {
  4261. border-width:0px;
  4262. white-space:nowrap;
  4263. text-transform:none;
  4264. }
  4265. #u8698 {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:0px;
  4269. top:0px;
  4270. width:0px;
  4271. height:0px;
  4272. }
  4273. #u8699_div {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:0px;
  4277. top:0px;
  4278. width:300px;
  4279. height:80px;
  4280. background:inherit;
  4281. background-color:rgba(255, 255, 255, 1);
  4282. box-sizing:border-box;
  4283. border-width:1px;
  4284. border-style:solid;
  4285. border-color:rgba(201, 201, 201, 1);
  4286. border-radius:4px;
  4287. -moz-box-shadow:none;
  4288. -webkit-box-shadow:none;
  4289. box-shadow:none;
  4290. font-family:'Microsoft YaHei', sans-serif;
  4291. font-weight:400;
  4292. font-style:normal;
  4293. font-size:14px;
  4294. color:#CCCCCC;
  4295. text-align:left;
  4296. }
  4297. #u8699 {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:2057px;
  4301. top:462px;
  4302. width:300px;
  4303. height:80px;
  4304. display:flex;
  4305. font-family:'Microsoft YaHei', sans-serif;
  4306. font-weight:400;
  4307. font-style:normal;
  4308. font-size:14px;
  4309. color:#CCCCCC;
  4310. text-align:left;
  4311. }
  4312. #u8699 .text {
  4313. position:absolute;
  4314. align-self:center;
  4315. padding:2px 8px 2px 8px;
  4316. box-sizing:border-box;
  4317. width:100%;
  4318. }
  4319. #u8699_text {
  4320. border-width:0px;
  4321. word-wrap:break-word;
  4322. text-transform:none;
  4323. visibility:hidden;
  4324. }
  4325. #u8700_input {
  4326. position:absolute;
  4327. left:0px;
  4328. top:0px;
  4329. width:279px;
  4330. height:33px;
  4331. padding:2px 2px 2px 2px;
  4332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4333. font-weight:400;
  4334. font-style:normal;
  4335. font-size:14px;
  4336. letter-spacing:normal;
  4337. color:#D7D7D7;
  4338. vertical-align:none;
  4339. text-align:left;
  4340. text-transform:none;
  4341. background-color:transparent;
  4342. border-color:transparent;
  4343. }
  4344. #u8700_input.disabled {
  4345. position:absolute;
  4346. left:0px;
  4347. top:0px;
  4348. width:279px;
  4349. height:33px;
  4350. padding:2px 2px 2px 2px;
  4351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4352. font-weight:400;
  4353. font-style:normal;
  4354. font-size:14px;
  4355. letter-spacing:normal;
  4356. color:#D7D7D7;
  4357. vertical-align:none;
  4358. text-align:left;
  4359. text-transform:none;
  4360. background-color:transparent;
  4361. border-color:transparent;
  4362. }
  4363. #u8700_div {
  4364. border-width:0px;
  4365. position:absolute;
  4366. left:0px;
  4367. top:0px;
  4368. width:279px;
  4369. height:33px;
  4370. background:inherit;
  4371. background-color:rgba(255, 255, 255, 0);
  4372. border:none;
  4373. border-radius:0px;
  4374. -moz-box-shadow:none;
  4375. -webkit-box-shadow:none;
  4376. box-shadow:none;
  4377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4378. font-weight:400;
  4379. font-style:normal;
  4380. font-size:14px;
  4381. color:#D7D7D7;
  4382. }
  4383. #u8700 {
  4384. border-width:0px;
  4385. position:absolute;
  4386. left:2062px;
  4387. top:465px;
  4388. width:279px;
  4389. height:33px;
  4390. display:flex;
  4391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4392. font-weight:400;
  4393. font-style:normal;
  4394. font-size:14px;
  4395. color:#D7D7D7;
  4396. }
  4397. #u8700 .text {
  4398. position:absolute;
  4399. align-self:center;
  4400. padding:2px 2px 2px 2px;
  4401. box-sizing:border-box;
  4402. width:100%;
  4403. }
  4404. #u8700_div.disabled {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:0px;
  4408. top:0px;
  4409. width:279px;
  4410. height:33px;
  4411. background:inherit;
  4412. background-color:rgba(240, 240, 240, 1);
  4413. border:none;
  4414. border-radius:0px;
  4415. -moz-box-shadow:none;
  4416. -webkit-box-shadow:none;
  4417. box-shadow:none;
  4418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4419. font-weight:400;
  4420. font-style:normal;
  4421. font-size:14px;
  4422. color:#D7D7D7;
  4423. }
  4424. #u8700.disabled {
  4425. }
  4426. #u8701_div {
  4427. border-width:0px;
  4428. position:absolute;
  4429. left:0px;
  4430. top:0px;
  4431. width:64px;
  4432. height:40px;
  4433. background:inherit;
  4434. background-color:rgba(255, 255, 255, 0);
  4435. border:none;
  4436. border-left:0px;
  4437. border-top:0px;
  4438. border-right:0px;
  4439. border-radius:0px;
  4440. border-bottom-right-radius:0px;
  4441. border-bottom-left-radius:0px;
  4442. -moz-box-shadow:none;
  4443. -webkit-box-shadow:none;
  4444. box-shadow:none;
  4445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4446. font-weight:400;
  4447. font-style:normal;
  4448. font-size:14px;
  4449. }
  4450. #u8701 {
  4451. border-width:0px;
  4452. position:absolute;
  4453. left:1717px;
  4454. top:340px;
  4455. width:64px;
  4456. height:40px;
  4457. display:flex;
  4458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4459. font-weight:400;
  4460. font-style:normal;
  4461. font-size:14px;
  4462. }
  4463. #u8701 .text {
  4464. position:absolute;
  4465. align-self:center;
  4466. padding:0px 0px 0px 0px;
  4467. box-sizing:border-box;
  4468. width:100%;
  4469. }
  4470. #u8701_text {
  4471. border-width:0px;
  4472. white-space:nowrap;
  4473. text-transform:none;
  4474. }
  4475. #u8702_div {
  4476. border-width:0px;
  4477. position:absolute;
  4478. left:0px;
  4479. top:0px;
  4480. width:57px;
  4481. height:40px;
  4482. background:inherit;
  4483. background-color:rgba(255, 255, 255, 0);
  4484. border:none;
  4485. border-left:0px;
  4486. border-top:0px;
  4487. border-right:0px;
  4488. border-radius:0px;
  4489. border-bottom-right-radius:0px;
  4490. border-bottom-left-radius:0px;
  4491. -moz-box-shadow:none;
  4492. -webkit-box-shadow:none;
  4493. box-shadow:none;
  4494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4495. font-weight:400;
  4496. font-style:normal;
  4497. font-size:14px;
  4498. }
  4499. #u8702 {
  4500. border-width:0px;
  4501. position:absolute;
  4502. left:2057px;
  4503. top:422px;
  4504. width:57px;
  4505. height:40px;
  4506. display:flex;
  4507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4508. font-weight:400;
  4509. font-style:normal;
  4510. font-size:14px;
  4511. }
  4512. #u8702 .text {
  4513. position:absolute;
  4514. align-self:center;
  4515. padding:0px 0px 0px 0px;
  4516. box-sizing:border-box;
  4517. width:100%;
  4518. }
  4519. #u8702_text {
  4520. border-width:0px;
  4521. white-space:nowrap;
  4522. text-transform:none;
  4523. }
  4524. #u8703_div {
  4525. border-width:0px;
  4526. position:absolute;
  4527. left:0px;
  4528. top:0px;
  4529. width:80px;
  4530. height:80px;
  4531. background:inherit;
  4532. background-color:rgba(255, 255, 255, 1);
  4533. box-sizing:border-box;
  4534. border-width:1px;
  4535. border-style:solid;
  4536. border-color:rgba(201, 201, 201, 1);
  4537. border-radius:4px;
  4538. -moz-box-shadow:none;
  4539. -webkit-box-shadow:none;
  4540. box-shadow:none;
  4541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4542. font-weight:400;
  4543. font-style:normal;
  4544. font-size:28px;
  4545. }
  4546. #u8703 {
  4547. border-width:0px;
  4548. position:absolute;
  4549. left:1717px;
  4550. top:460px;
  4551. width:80px;
  4552. height:80px;
  4553. display:flex;
  4554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4555. font-weight:400;
  4556. font-style:normal;
  4557. font-size:28px;
  4558. }
  4559. #u8703 .text {
  4560. position:absolute;
  4561. align-self:center;
  4562. padding:2px 8px 2px 8px;
  4563. box-sizing:border-box;
  4564. width:100%;
  4565. }
  4566. #u8703_text {
  4567. border-width:0px;
  4568. word-wrap:break-word;
  4569. text-transform:none;
  4570. }
  4571. #u8704_div {
  4572. border-width:0px;
  4573. position:absolute;
  4574. left:0px;
  4575. top:0px;
  4576. width:85px;
  4577. height:40px;
  4578. background:inherit;
  4579. background-color:rgba(255, 255, 255, 0);
  4580. border:none;
  4581. border-left:0px;
  4582. border-top:0px;
  4583. border-right:0px;
  4584. border-radius:0px;
  4585. border-bottom-right-radius:0px;
  4586. border-bottom-left-radius:0px;
  4587. -moz-box-shadow:none;
  4588. -webkit-box-shadow:none;
  4589. box-shadow:none;
  4590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4591. font-weight:400;
  4592. font-style:normal;
  4593. font-size:14px;
  4594. }
  4595. #u8704 {
  4596. border-width:0px;
  4597. position:absolute;
  4598. left:1717px;
  4599. top:420px;
  4600. width:85px;
  4601. height:40px;
  4602. display:flex;
  4603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4604. font-weight:400;
  4605. font-style:normal;
  4606. font-size:14px;
  4607. }
  4608. #u8704 .text {
  4609. position:absolute;
  4610. align-self:center;
  4611. padding:0px 0px 0px 0px;
  4612. box-sizing:border-box;
  4613. width:100%;
  4614. }
  4615. #u8704_text {
  4616. border-width:0px;
  4617. white-space:nowrap;
  4618. text-transform:none;
  4619. }
  4620. #u8705_div {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:0px;
  4624. top:0px;
  4625. width:171px;
  4626. height:40px;
  4627. background:inherit;
  4628. background-color:rgba(255, 255, 255, 0);
  4629. border:none;
  4630. border-left:0px;
  4631. border-top:0px;
  4632. border-right:0px;
  4633. border-radius:0px;
  4634. border-bottom-right-radius:0px;
  4635. border-bottom-left-radius:0px;
  4636. -moz-box-shadow:none;
  4637. -webkit-box-shadow:none;
  4638. box-shadow:none;
  4639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4640. font-weight:400;
  4641. font-style:normal;
  4642. font-size:12px;
  4643. color:#7F7F7F;
  4644. }
  4645. #u8705 {
  4646. border-width:0px;
  4647. position:absolute;
  4648. left:1807px;
  4649. top:462px;
  4650. width:171px;
  4651. height:40px;
  4652. display:flex;
  4653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4654. font-weight:400;
  4655. font-style:normal;
  4656. font-size:12px;
  4657. color:#7F7F7F;
  4658. }
  4659. #u8705 .text {
  4660. position:absolute;
  4661. align-self:center;
  4662. padding:0px 0px 0px 0px;
  4663. box-sizing:border-box;
  4664. width:100%;
  4665. }
  4666. #u8705_text {
  4667. border-width:0px;
  4668. word-wrap:break-word;
  4669. text-transform:none;
  4670. }
  4671. #u8706_div {
  4672. border-width:0px;
  4673. position:absolute;
  4674. left:0px;
  4675. top:0px;
  4676. width:64px;
  4677. height:40px;
  4678. background:inherit;
  4679. background-color:rgba(255, 255, 255, 0);
  4680. border:none;
  4681. border-left:0px;
  4682. border-top:0px;
  4683. border-right:0px;
  4684. border-radius:0px;
  4685. border-bottom-right-radius:0px;
  4686. border-bottom-left-radius:0px;
  4687. -moz-box-shadow:none;
  4688. -webkit-box-shadow:none;
  4689. box-shadow:none;
  4690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4691. font-weight:400;
  4692. font-style:normal;
  4693. font-size:14px;
  4694. }
  4695. #u8706 {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:1717px;
  4699. top:176px;
  4700. width:64px;
  4701. height:40px;
  4702. display:flex;
  4703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4704. font-weight:400;
  4705. font-style:normal;
  4706. font-size:14px;
  4707. }
  4708. #u8706 .text {
  4709. position:absolute;
  4710. align-self:center;
  4711. padding:0px 0px 0px 0px;
  4712. box-sizing:border-box;
  4713. width:100%;
  4714. }
  4715. #u8706_text {
  4716. border-width:0px;
  4717. white-space:nowrap;
  4718. text-transform:none;
  4719. }
  4720. #u8707 {
  4721. border-width:0px;
  4722. position:absolute;
  4723. left:0px;
  4724. top:0px;
  4725. width:0px;
  4726. height:0px;
  4727. }
  4728. #u8708_div {
  4729. border-width:0px;
  4730. position:absolute;
  4731. left:0px;
  4732. top:0px;
  4733. width:300px;
  4734. height:40px;
  4735. background:inherit;
  4736. background-color:rgba(255, 255, 255, 1);
  4737. box-sizing:border-box;
  4738. border-width:1px;
  4739. border-style:solid;
  4740. border-color:rgba(215, 215, 215, 1);
  4741. border-radius:4px;
  4742. -moz-box-shadow:none;
  4743. -webkit-box-shadow:none;
  4744. box-shadow:none;
  4745. font-size:11px;
  4746. }
  4747. #u8708 {
  4748. border-width:0px;
  4749. position:absolute;
  4750. left:1717px;
  4751. top:218px;
  4752. width:300px;
  4753. height:40px;
  4754. display:flex;
  4755. font-size:11px;
  4756. }
  4757. #u8708 .text {
  4758. position:absolute;
  4759. align-self:center;
  4760. padding:2px 2px 2px 2px;
  4761. box-sizing:border-box;
  4762. width:100%;
  4763. }
  4764. #u8708_text {
  4765. border-width:0px;
  4766. word-wrap:break-word;
  4767. text-transform:none;
  4768. visibility:hidden;
  4769. }
  4770. #u8709_input {
  4771. position:absolute;
  4772. left:0px;
  4773. top:0px;
  4774. width:280px;
  4775. height:31px;
  4776. padding:2px 2px 2px 2px;
  4777. font-family:'ArialMT', 'Arial', sans-serif;
  4778. font-weight:400;
  4779. font-style:normal;
  4780. font-size:11px;
  4781. letter-spacing:normal;
  4782. color:#AAAAAA;
  4783. vertical-align:none;
  4784. text-align:left;
  4785. text-transform:none;
  4786. background-color:transparent;
  4787. border-color:transparent;
  4788. }
  4789. #u8709_input.disabled {
  4790. position:absolute;
  4791. left:0px;
  4792. top:0px;
  4793. width:280px;
  4794. height:31px;
  4795. padding:2px 2px 2px 2px;
  4796. font-family:'ArialMT', 'Arial', sans-serif;
  4797. font-weight:400;
  4798. font-style:normal;
  4799. font-size:11px;
  4800. letter-spacing:normal;
  4801. color:#AAAAAA;
  4802. vertical-align:none;
  4803. text-align:left;
  4804. text-transform:none;
  4805. background-color:transparent;
  4806. border-color:transparent;
  4807. }
  4808. #u8709_div {
  4809. border-width:0px;
  4810. position:absolute;
  4811. left:0px;
  4812. top:0px;
  4813. width:280px;
  4814. height:31px;
  4815. background:inherit;
  4816. background-color:rgba(255, 255, 255, 1);
  4817. border:none;
  4818. border-radius:0px;
  4819. -moz-box-shadow:none;
  4820. -webkit-box-shadow:none;
  4821. box-shadow:none;
  4822. font-size:11px;
  4823. color:#AAAAAA;
  4824. }
  4825. #u8709 {
  4826. border-width:0px;
  4827. position:absolute;
  4828. left:1726px;
  4829. top:221px;
  4830. width:280px;
  4831. height:31px;
  4832. display:flex;
  4833. font-size:11px;
  4834. color:#AAAAAA;
  4835. }
  4836. #u8709 .text {
  4837. position:absolute;
  4838. align-self:flex-start;
  4839. padding:2px 2px 2px 2px;
  4840. box-sizing:border-box;
  4841. width:100%;
  4842. }
  4843. #u8709_div.disabled {
  4844. border-width:0px;
  4845. position:absolute;
  4846. left:0px;
  4847. top:0px;
  4848. width:280px;
  4849. height:31px;
  4850. background:inherit;
  4851. background-color:rgba(240, 240, 240, 1);
  4852. border:none;
  4853. border-radius:0px;
  4854. -moz-box-shadow:none;
  4855. -webkit-box-shadow:none;
  4856. box-shadow:none;
  4857. font-size:11px;
  4858. color:#AAAAAA;
  4859. }
  4860. #u8709.disabled {
  4861. }
  4862. .u8709_input_option {
  4863. font-size:11px;
  4864. }
  4865. #u8710_div {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:0px;
  4869. top:0px;
  4870. width:64px;
  4871. height:40px;
  4872. background:inherit;
  4873. background-color:rgba(255, 255, 255, 0);
  4874. border:none;
  4875. border-left:0px;
  4876. border-top:0px;
  4877. border-right:0px;
  4878. border-radius:0px;
  4879. border-bottom-right-radius:0px;
  4880. border-bottom-left-radius:0px;
  4881. -moz-box-shadow:none;
  4882. -webkit-box-shadow:none;
  4883. box-shadow:none;
  4884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4885. font-weight:400;
  4886. font-style:normal;
  4887. font-size:14px;
  4888. }
  4889. #u8710 {
  4890. border-width:0px;
  4891. position:absolute;
  4892. left:1717px;
  4893. top:258px;
  4894. width:64px;
  4895. height:40px;
  4896. display:flex;
  4897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4898. font-weight:400;
  4899. font-style:normal;
  4900. font-size:14px;
  4901. }
  4902. #u8710 .text {
  4903. position:absolute;
  4904. align-self:center;
  4905. padding:0px 0px 0px 0px;
  4906. box-sizing:border-box;
  4907. width:100%;
  4908. }
  4909. #u8710_text {
  4910. border-width:0px;
  4911. white-space:nowrap;
  4912. text-transform:none;
  4913. }
  4914. #u8711 {
  4915. border-width:0px;
  4916. position:absolute;
  4917. left:0px;
  4918. top:0px;
  4919. width:0px;
  4920. height:0px;
  4921. }
  4922. #u8712_div {
  4923. border-width:0px;
  4924. position:absolute;
  4925. left:0px;
  4926. top:0px;
  4927. width:300px;
  4928. height:40px;
  4929. background:inherit;
  4930. background-color:rgba(255, 255, 255, 1);
  4931. box-sizing:border-box;
  4932. border-width:1px;
  4933. border-style:solid;
  4934. border-color:rgba(215, 215, 215, 1);
  4935. border-radius:4px;
  4936. -moz-box-shadow:none;
  4937. -webkit-box-shadow:none;
  4938. box-shadow:none;
  4939. font-size:11px;
  4940. }
  4941. #u8712 {
  4942. border-width:0px;
  4943. position:absolute;
  4944. left:1717px;
  4945. top:300px;
  4946. width:300px;
  4947. height:40px;
  4948. display:flex;
  4949. font-size:11px;
  4950. }
  4951. #u8712 .text {
  4952. position:absolute;
  4953. align-self:center;
  4954. padding:2px 2px 2px 2px;
  4955. box-sizing:border-box;
  4956. width:100%;
  4957. }
  4958. #u8712_text {
  4959. border-width:0px;
  4960. word-wrap:break-word;
  4961. text-transform:none;
  4962. visibility:hidden;
  4963. }
  4964. #u8713_input {
  4965. position:absolute;
  4966. left:0px;
  4967. top:0px;
  4968. width:280px;
  4969. height:31px;
  4970. padding:2px 2px 2px 2px;
  4971. font-family:'ArialMT', 'Arial', sans-serif;
  4972. font-weight:400;
  4973. font-style:normal;
  4974. font-size:11px;
  4975. letter-spacing:normal;
  4976. color:#AAAAAA;
  4977. vertical-align:none;
  4978. text-align:left;
  4979. text-transform:none;
  4980. background-color:transparent;
  4981. border-color:transparent;
  4982. }
  4983. #u8713_input.disabled {
  4984. position:absolute;
  4985. left:0px;
  4986. top:0px;
  4987. width:280px;
  4988. height:31px;
  4989. padding:2px 2px 2px 2px;
  4990. font-family:'ArialMT', 'Arial', sans-serif;
  4991. font-weight:400;
  4992. font-style:normal;
  4993. font-size:11px;
  4994. letter-spacing:normal;
  4995. color:#AAAAAA;
  4996. vertical-align:none;
  4997. text-align:left;
  4998. text-transform:none;
  4999. background-color:transparent;
  5000. border-color:transparent;
  5001. }
  5002. #u8713_div {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:0px;
  5006. top:0px;
  5007. width:280px;
  5008. height:31px;
  5009. background:inherit;
  5010. background-color:rgba(255, 255, 255, 1);
  5011. border:none;
  5012. border-radius:0px;
  5013. -moz-box-shadow:none;
  5014. -webkit-box-shadow:none;
  5015. box-shadow:none;
  5016. font-size:11px;
  5017. color:#AAAAAA;
  5018. }
  5019. #u8713 {
  5020. border-width:0px;
  5021. position:absolute;
  5022. left:1726px;
  5023. top:303px;
  5024. width:280px;
  5025. height:31px;
  5026. display:flex;
  5027. font-size:11px;
  5028. color:#AAAAAA;
  5029. }
  5030. #u8713 .text {
  5031. position:absolute;
  5032. align-self:flex-start;
  5033. padding:2px 2px 2px 2px;
  5034. box-sizing:border-box;
  5035. width:100%;
  5036. }
  5037. #u8713_div.disabled {
  5038. border-width:0px;
  5039. position:absolute;
  5040. left:0px;
  5041. top:0px;
  5042. width:280px;
  5043. height:31px;
  5044. background:inherit;
  5045. background-color:rgba(240, 240, 240, 1);
  5046. border:none;
  5047. border-radius:0px;
  5048. -moz-box-shadow:none;
  5049. -webkit-box-shadow:none;
  5050. box-shadow:none;
  5051. font-size:11px;
  5052. color:#AAAAAA;
  5053. }
  5054. #u8713.disabled {
  5055. }
  5056. .u8713_input_option {
  5057. font-size:11px;
  5058. }
  5059. #u8714_div {
  5060. border-width:0px;
  5061. position:absolute;
  5062. left:0px;
  5063. top:0px;
  5064. width:64px;
  5065. height:40px;
  5066. background:inherit;
  5067. background-color:rgba(255, 255, 255, 0);
  5068. border:none;
  5069. border-left:0px;
  5070. border-top:0px;
  5071. border-right:0px;
  5072. border-radius:0px;
  5073. border-bottom-right-radius:0px;
  5074. border-bottom-left-radius:0px;
  5075. -moz-box-shadow:none;
  5076. -webkit-box-shadow:none;
  5077. box-shadow:none;
  5078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5079. font-weight:400;
  5080. font-style:normal;
  5081. font-size:14px;
  5082. }
  5083. #u8714 {
  5084. border-width:0px;
  5085. position:absolute;
  5086. left:2057px;
  5087. top:258px;
  5088. width:64px;
  5089. height:40px;
  5090. display:flex;
  5091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5092. font-weight:400;
  5093. font-style:normal;
  5094. font-size:14px;
  5095. }
  5096. #u8714 .text {
  5097. position:absolute;
  5098. align-self:center;
  5099. padding:0px 0px 0px 0px;
  5100. box-sizing:border-box;
  5101. width:100%;
  5102. }
  5103. #u8714_text {
  5104. border-width:0px;
  5105. white-space:nowrap;
  5106. text-transform:none;
  5107. }
  5108. #u8715 {
  5109. border-width:0px;
  5110. position:absolute;
  5111. left:0px;
  5112. top:0px;
  5113. width:0px;
  5114. height:0px;
  5115. }
  5116. #u8716_div {
  5117. border-width:0px;
  5118. position:absolute;
  5119. left:0px;
  5120. top:0px;
  5121. width:300px;
  5122. height:40px;
  5123. background:inherit;
  5124. background-color:rgba(255, 255, 255, 1);
  5125. box-sizing:border-box;
  5126. border-width:1px;
  5127. border-style:solid;
  5128. border-color:rgba(215, 215, 215, 1);
  5129. border-radius:4px;
  5130. -moz-box-shadow:none;
  5131. -webkit-box-shadow:none;
  5132. box-shadow:none;
  5133. font-size:11px;
  5134. }
  5135. #u8716 {
  5136. border-width:0px;
  5137. position:absolute;
  5138. left:2057px;
  5139. top:300px;
  5140. width:300px;
  5141. height:40px;
  5142. display:flex;
  5143. font-size:11px;
  5144. }
  5145. #u8716 .text {
  5146. position:absolute;
  5147. align-self:center;
  5148. padding:2px 2px 2px 2px;
  5149. box-sizing:border-box;
  5150. width:100%;
  5151. }
  5152. #u8716_text {
  5153. border-width:0px;
  5154. word-wrap:break-word;
  5155. text-transform:none;
  5156. visibility:hidden;
  5157. }
  5158. #u8717_input {
  5159. position:absolute;
  5160. left:0px;
  5161. top:0px;
  5162. width:280px;
  5163. height:31px;
  5164. padding:2px 2px 2px 2px;
  5165. font-family:'ArialMT', 'Arial', sans-serif;
  5166. font-weight:400;
  5167. font-style:normal;
  5168. font-size:11px;
  5169. letter-spacing:normal;
  5170. color:#AAAAAA;
  5171. vertical-align:none;
  5172. text-align:left;
  5173. text-transform:none;
  5174. background-color:transparent;
  5175. border-color:transparent;
  5176. }
  5177. #u8717_input.disabled {
  5178. position:absolute;
  5179. left:0px;
  5180. top:0px;
  5181. width:280px;
  5182. height:31px;
  5183. padding:2px 2px 2px 2px;
  5184. font-family:'ArialMT', 'Arial', sans-serif;
  5185. font-weight:400;
  5186. font-style:normal;
  5187. font-size:11px;
  5188. letter-spacing:normal;
  5189. color:#AAAAAA;
  5190. vertical-align:none;
  5191. text-align:left;
  5192. text-transform:none;
  5193. background-color:transparent;
  5194. border-color:transparent;
  5195. }
  5196. #u8717_div {
  5197. border-width:0px;
  5198. position:absolute;
  5199. left:0px;
  5200. top:0px;
  5201. width:280px;
  5202. height:31px;
  5203. background:inherit;
  5204. background-color:rgba(255, 255, 255, 1);
  5205. border:none;
  5206. border-radius:0px;
  5207. -moz-box-shadow:none;
  5208. -webkit-box-shadow:none;
  5209. box-shadow:none;
  5210. font-size:11px;
  5211. color:#AAAAAA;
  5212. }
  5213. #u8717 {
  5214. border-width:0px;
  5215. position:absolute;
  5216. left:2066px;
  5217. top:303px;
  5218. width:280px;
  5219. height:31px;
  5220. display:flex;
  5221. font-size:11px;
  5222. color:#AAAAAA;
  5223. }
  5224. #u8717 .text {
  5225. position:absolute;
  5226. align-self:flex-start;
  5227. padding:2px 2px 2px 2px;
  5228. box-sizing:border-box;
  5229. width:100%;
  5230. }
  5231. #u8717_div.disabled {
  5232. border-width:0px;
  5233. position:absolute;
  5234. left:0px;
  5235. top:0px;
  5236. width:280px;
  5237. height:31px;
  5238. background:inherit;
  5239. background-color:rgba(240, 240, 240, 1);
  5240. border:none;
  5241. border-radius:0px;
  5242. -moz-box-shadow:none;
  5243. -webkit-box-shadow:none;
  5244. box-shadow:none;
  5245. font-size:11px;
  5246. color:#AAAAAA;
  5247. }
  5248. #u8717.disabled {
  5249. }
  5250. .u8717_input_option {
  5251. font-size:11px;
  5252. }
  5253. #u8718 {
  5254. border-width:0px;
  5255. position:absolute;
  5256. left:0px;
  5257. top:0px;
  5258. width:0px;
  5259. height:0px;
  5260. }
  5261. #u8719_div {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:0px;
  5265. top:0px;
  5266. width:300px;
  5267. height:40px;
  5268. background:inherit;
  5269. background-color:rgba(255, 255, 255, 1);
  5270. box-sizing:border-box;
  5271. border-width:1px;
  5272. border-style:solid;
  5273. border-color:rgba(201, 201, 201, 1);
  5274. border-radius:4px;
  5275. -moz-box-shadow:none;
  5276. -webkit-box-shadow:none;
  5277. box-shadow:none;
  5278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5279. font-weight:400;
  5280. font-style:normal;
  5281. font-size:14px;
  5282. text-align:right;
  5283. }
  5284. #u8719 {
  5285. border-width:0px;
  5286. position:absolute;
  5287. left:1717px;
  5288. top:380px;
  5289. width:300px;
  5290. height:40px;
  5291. display:flex;
  5292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5293. font-weight:400;
  5294. font-style:normal;
  5295. font-size:14px;
  5296. text-align:right;
  5297. }
  5298. #u8719 .text {
  5299. position:absolute;
  5300. align-self:center;
  5301. padding:2px 8px 2px 8px;
  5302. box-sizing:border-box;
  5303. width:100%;
  5304. }
  5305. #u8719_text {
  5306. border-width:0px;
  5307. word-wrap:break-word;
  5308. text-transform:none;
  5309. visibility:hidden;
  5310. }
  5311. #u8720_input {
  5312. position:absolute;
  5313. left:0px;
  5314. top:0px;
  5315. width:242px;
  5316. height:33px;
  5317. padding:2px 2px 2px 2px;
  5318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5319. font-weight:400;
  5320. font-style:normal;
  5321. font-size:14px;
  5322. letter-spacing:normal;
  5323. color:#D7D7D7;
  5324. vertical-align:none;
  5325. text-align:left;
  5326. text-transform:none;
  5327. background-color:transparent;
  5328. border-color:transparent;
  5329. }
  5330. #u8720_input.disabled {
  5331. position:absolute;
  5332. left:0px;
  5333. top:0px;
  5334. width:242px;
  5335. height:33px;
  5336. padding:2px 2px 2px 2px;
  5337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5338. font-weight:400;
  5339. font-style:normal;
  5340. font-size:14px;
  5341. letter-spacing:normal;
  5342. color:#D7D7D7;
  5343. vertical-align:none;
  5344. text-align:left;
  5345. text-transform:none;
  5346. background-color:transparent;
  5347. border-color:transparent;
  5348. }
  5349. #u8720_div {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:0px;
  5353. top:0px;
  5354. width:242px;
  5355. height:33px;
  5356. background:inherit;
  5357. background-color:rgba(255, 255, 255, 0);
  5358. border:none;
  5359. border-radius:0px;
  5360. -moz-box-shadow:none;
  5361. -webkit-box-shadow:none;
  5362. box-shadow:none;
  5363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5364. font-weight:400;
  5365. font-style:normal;
  5366. font-size:14px;
  5367. color:#D7D7D7;
  5368. }
  5369. #u8720 {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:1729px;
  5373. top:383px;
  5374. width:242px;
  5375. height:33px;
  5376. display:flex;
  5377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5378. font-weight:400;
  5379. font-style:normal;
  5380. font-size:14px;
  5381. color:#D7D7D7;
  5382. }
  5383. #u8720 .text {
  5384. position:absolute;
  5385. align-self:center;
  5386. padding:2px 2px 2px 2px;
  5387. box-sizing:border-box;
  5388. width:100%;
  5389. }
  5390. #u8720_div.disabled {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:0px;
  5394. top:0px;
  5395. width:242px;
  5396. height:33px;
  5397. background:inherit;
  5398. background-color:rgba(240, 240, 240, 1);
  5399. border:none;
  5400. border-radius:0px;
  5401. -moz-box-shadow:none;
  5402. -webkit-box-shadow:none;
  5403. box-shadow:none;
  5404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5405. font-weight:400;
  5406. font-style:normal;
  5407. font-size:14px;
  5408. color:#D7D7D7;
  5409. }
  5410. #u8720.disabled {
  5411. }
  5412. #u8721_div {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:0px;
  5416. top:0px;
  5417. width:83px;
  5418. height:35px;
  5419. background:inherit;
  5420. background-color:rgba(255, 255, 255, 0);
  5421. border:none;
  5422. border-top:0px;
  5423. border-right:0px;
  5424. border-bottom:0px;
  5425. border-radius:0px;
  5426. border-top-left-radius:0px;
  5427. border-bottom-left-radius:0px;
  5428. -moz-box-shadow:none;
  5429. -webkit-box-shadow:none;
  5430. box-shadow:none;
  5431. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5432. font-weight:500;
  5433. font-style:normal;
  5434. font-size:18px;
  5435. }
  5436. #u8721 {
  5437. border-width:0px;
  5438. position:absolute;
  5439. left:1717px;
  5440. top:131px;
  5441. width:83px;
  5442. height:35px;
  5443. display:flex;
  5444. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5445. font-weight:500;
  5446. font-style:normal;
  5447. font-size:18px;
  5448. }
  5449. #u8721 .text {
  5450. position:absolute;
  5451. align-self:center;
  5452. padding:5px 10px 5px 0px;
  5453. box-sizing:border-box;
  5454. width:100%;
  5455. }
  5456. #u8721_text {
  5457. border-width:0px;
  5458. white-space:nowrap;
  5459. text-transform:none;
  5460. }
  5461. #u8722_div {
  5462. border-width:0px;
  5463. position:absolute;
  5464. left:0px;
  5465. top:0px;
  5466. width:99px;
  5467. height:40px;
  5468. background:inherit;
  5469. background-color:rgba(255, 255, 255, 0);
  5470. border:none;
  5471. border-left:0px;
  5472. border-top:0px;
  5473. border-right:0px;
  5474. border-radius:0px;
  5475. border-bottom-right-radius:0px;
  5476. border-bottom-left-radius:0px;
  5477. -moz-box-shadow:none;
  5478. -webkit-box-shadow:none;
  5479. box-shadow:none;
  5480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5481. font-weight:400;
  5482. font-style:normal;
  5483. font-size:14px;
  5484. }
  5485. #u8722 {
  5486. border-width:0px;
  5487. position:absolute;
  5488. left:2057px;
  5489. top:340px;
  5490. width:99px;
  5491. height:40px;
  5492. display:flex;
  5493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5494. font-weight:400;
  5495. font-style:normal;
  5496. font-size:14px;
  5497. }
  5498. #u8722 .text {
  5499. position:absolute;
  5500. align-self:center;
  5501. padding:0px 0px 0px 0px;
  5502. box-sizing:border-box;
  5503. width:100%;
  5504. }
  5505. #u8722_text {
  5506. border-width:0px;
  5507. white-space:nowrap;
  5508. text-transform:none;
  5509. }
  5510. #u8723 {
  5511. border-width:0px;
  5512. position:absolute;
  5513. left:0px;
  5514. top:0px;
  5515. width:0px;
  5516. height:0px;
  5517. }
  5518. #u8724_div {
  5519. border-width:0px;
  5520. position:absolute;
  5521. left:0px;
  5522. top:0px;
  5523. width:300px;
  5524. height:40px;
  5525. background:inherit;
  5526. background-color:rgba(242, 242, 242, 1);
  5527. box-sizing:border-box;
  5528. border-width:1px;
  5529. border-style:solid;
  5530. border-color:rgba(215, 215, 215, 1);
  5531. border-radius:4px;
  5532. -moz-box-shadow:none;
  5533. -webkit-box-shadow:none;
  5534. box-shadow:none;
  5535. font-size:11px;
  5536. }
  5537. #u8724 {
  5538. border-width:0px;
  5539. position:absolute;
  5540. left:2057px;
  5541. top:382px;
  5542. width:300px;
  5543. height:40px;
  5544. display:flex;
  5545. font-size:11px;
  5546. }
  5547. #u8724 .text {
  5548. position:absolute;
  5549. align-self:center;
  5550. padding:2px 2px 2px 2px;
  5551. box-sizing:border-box;
  5552. width:100%;
  5553. }
  5554. #u8724_text {
  5555. border-width:0px;
  5556. word-wrap:break-word;
  5557. text-transform:none;
  5558. visibility:hidden;
  5559. }
  5560. #u8725_input {
  5561. position:absolute;
  5562. left:0px;
  5563. top:0px;
  5564. width:291px;
  5565. height:31px;
  5566. padding:2px 2px 2px 2px;
  5567. font-family:'ArialMT', 'Arial', sans-serif;
  5568. font-weight:400;
  5569. font-style:normal;
  5570. font-size:11px;
  5571. letter-spacing:normal;
  5572. color:#AAAAAA;
  5573. vertical-align:none;
  5574. text-align:left;
  5575. text-transform:none;
  5576. background-color:transparent;
  5577. border-color:transparent;
  5578. }
  5579. #u8725_input.disabled {
  5580. position:absolute;
  5581. left:0px;
  5582. top:0px;
  5583. width:291px;
  5584. height:31px;
  5585. padding:2px 2px 2px 2px;
  5586. font-family:'ArialMT', 'Arial', sans-serif;
  5587. font-weight:400;
  5588. font-style:normal;
  5589. font-size:11px;
  5590. letter-spacing:normal;
  5591. color:#AAAAAA;
  5592. vertical-align:none;
  5593. text-align:left;
  5594. text-transform:none;
  5595. background-color:transparent;
  5596. border-color:transparent;
  5597. }
  5598. #u8725_div {
  5599. border-width:0px;
  5600. position:absolute;
  5601. left:0px;
  5602. top:0px;
  5603. width:291px;
  5604. height:31px;
  5605. background:inherit;
  5606. background-color:rgba(242, 242, 242, 1);
  5607. border:none;
  5608. border-radius:0px;
  5609. -moz-box-shadow:none;
  5610. -webkit-box-shadow:none;
  5611. box-shadow:none;
  5612. font-size:11px;
  5613. color:#AAAAAA;
  5614. }
  5615. #u8725 {
  5616. border-width:0px;
  5617. position:absolute;
  5618. left:2061px;
  5619. top:385px;
  5620. width:291px;
  5621. height:31px;
  5622. display:flex;
  5623. font-size:11px;
  5624. color:#AAAAAA;
  5625. }
  5626. #u8725 .text {
  5627. position:absolute;
  5628. align-self:flex-start;
  5629. padding:2px 2px 2px 2px;
  5630. box-sizing:border-box;
  5631. width:100%;
  5632. }
  5633. #u8725_div.disabled {
  5634. border-width:0px;
  5635. position:absolute;
  5636. left:0px;
  5637. top:0px;
  5638. width:291px;
  5639. height:31px;
  5640. background:inherit;
  5641. background-color:rgba(240, 240, 240, 1);
  5642. border:none;
  5643. border-radius:0px;
  5644. -moz-box-shadow:none;
  5645. -webkit-box-shadow:none;
  5646. box-shadow:none;
  5647. font-size:11px;
  5648. color:#AAAAAA;
  5649. }
  5650. #u8725.disabled {
  5651. }
  5652. .u8725_input_option {
  5653. font-size:11px;
  5654. }
  5655. #u8726_div {
  5656. border-width:0px;
  5657. position:absolute;
  5658. left:0px;
  5659. top:0px;
  5660. width:50px;
  5661. height:40px;
  5662. background:inherit;
  5663. background-color:rgba(255, 255, 255, 0);
  5664. border:none;
  5665. border-top:0px;
  5666. border-right:0px;
  5667. border-bottom:0px;
  5668. border-radius:0px;
  5669. border-top-left-radius:0px;
  5670. border-bottom-left-radius:0px;
  5671. -moz-box-shadow:none;
  5672. -webkit-box-shadow:none;
  5673. box-shadow:none;
  5674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5675. font-weight:400;
  5676. font-style:normal;
  5677. font-size:14px;
  5678. }
  5679. #u8726 {
  5680. border-width:0px;
  5681. position:absolute;
  5682. left:1717px;
  5683. top:699px;
  5684. width:50px;
  5685. height:40px;
  5686. display:flex;
  5687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5688. font-weight:400;
  5689. font-style:normal;
  5690. font-size:14px;
  5691. }
  5692. #u8726 .text {
  5693. position:absolute;
  5694. align-self:center;
  5695. padding:5px 10px 5px 0px;
  5696. box-sizing:border-box;
  5697. width:100%;
  5698. }
  5699. #u8726_text {
  5700. border-width:0px;
  5701. white-space:nowrap;
  5702. text-transform:none;
  5703. }
  5704. #u8727_div {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:0px;
  5708. top:0px;
  5709. width:39px;
  5710. height:40px;
  5711. background:inherit;
  5712. background-color:rgba(255, 255, 255, 0);
  5713. border:none;
  5714. border-top:0px;
  5715. border-right:0px;
  5716. border-bottom:0px;
  5717. border-radius:0px;
  5718. border-top-left-radius:0px;
  5719. border-bottom-left-radius:0px;
  5720. -moz-box-shadow:none;
  5721. -webkit-box-shadow:none;
  5722. box-shadow:none;
  5723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5724. font-weight:400;
  5725. font-style:normal;
  5726. font-size:14px;
  5727. }
  5728. #u8727 {
  5729. border-width:0px;
  5730. position:absolute;
  5731. left:1717px;
  5732. top:779px;
  5733. width:39px;
  5734. height:40px;
  5735. display:flex;
  5736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5737. font-weight:400;
  5738. font-style:normal;
  5739. font-size:14px;
  5740. }
  5741. #u8727 .text {
  5742. position:absolute;
  5743. align-self:center;
  5744. padding:5px 10px 5px 0px;
  5745. box-sizing:border-box;
  5746. width:100%;
  5747. }
  5748. #u8727_text {
  5749. border-width:0px;
  5750. white-space:nowrap;
  5751. text-transform:none;
  5752. }
  5753. #u8728 {
  5754. border-width:0px;
  5755. position:absolute;
  5756. left:0px;
  5757. top:0px;
  5758. width:0px;
  5759. height:0px;
  5760. }
  5761. #u8729_div {
  5762. border-width:0px;
  5763. position:absolute;
  5764. left:0px;
  5765. top:0px;
  5766. width:684px;
  5767. height:40px;
  5768. background:inherit;
  5769. background-color:rgba(255, 255, 255, 1);
  5770. box-sizing:border-box;
  5771. border-width:1px;
  5772. border-style:solid;
  5773. border-color:rgba(201, 201, 201, 1);
  5774. border-radius:4px;
  5775. -moz-box-shadow:none;
  5776. -webkit-box-shadow:none;
  5777. box-shadow:none;
  5778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5779. font-weight:400;
  5780. font-style:normal;
  5781. font-size:14px;
  5782. text-align:right;
  5783. }
  5784. #u8729 {
  5785. border-width:0px;
  5786. position:absolute;
  5787. left:1717px;
  5788. top:741px;
  5789. width:684px;
  5790. height:40px;
  5791. display:flex;
  5792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5793. font-weight:400;
  5794. font-style:normal;
  5795. font-size:14px;
  5796. text-align:right;
  5797. }
  5798. #u8729 .text {
  5799. position:absolute;
  5800. align-self:center;
  5801. padding:2px 8px 2px 8px;
  5802. box-sizing:border-box;
  5803. width:100%;
  5804. }
  5805. #u8729_text {
  5806. border-width:0px;
  5807. word-wrap:break-word;
  5808. text-transform:none;
  5809. visibility:hidden;
  5810. }
  5811. #u8730_input {
  5812. position:absolute;
  5813. left:0px;
  5814. top:0px;
  5815. width:242px;
  5816. height:33px;
  5817. padding:2px 2px 2px 2px;
  5818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5819. font-weight:400;
  5820. font-style:normal;
  5821. font-size:14px;
  5822. letter-spacing:normal;
  5823. color:#D7D7D7;
  5824. vertical-align:none;
  5825. text-align:left;
  5826. text-transform:none;
  5827. background-color:transparent;
  5828. border-color:transparent;
  5829. }
  5830. #u8730_input.disabled {
  5831. position:absolute;
  5832. left:0px;
  5833. top:0px;
  5834. width:242px;
  5835. height:33px;
  5836. padding:2px 2px 2px 2px;
  5837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5838. font-weight:400;
  5839. font-style:normal;
  5840. font-size:14px;
  5841. letter-spacing:normal;
  5842. color:#D7D7D7;
  5843. vertical-align:none;
  5844. text-align:left;
  5845. text-transform:none;
  5846. background-color:transparent;
  5847. border-color:transparent;
  5848. }
  5849. #u8730_div {
  5850. border-width:0px;
  5851. position:absolute;
  5852. left:0px;
  5853. top:0px;
  5854. width:242px;
  5855. height:33px;
  5856. background:inherit;
  5857. background-color:rgba(255, 255, 255, 0);
  5858. border:none;
  5859. border-radius:0px;
  5860. -moz-box-shadow:none;
  5861. -webkit-box-shadow:none;
  5862. box-shadow:none;
  5863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5864. font-weight:400;
  5865. font-style:normal;
  5866. font-size:14px;
  5867. color:#D7D7D7;
  5868. }
  5869. #u8730 {
  5870. border-width:0px;
  5871. position:absolute;
  5872. left:1729px;
  5873. top:744px;
  5874. width:242px;
  5875. height:33px;
  5876. display:flex;
  5877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5878. font-weight:400;
  5879. font-style:normal;
  5880. font-size:14px;
  5881. color:#D7D7D7;
  5882. }
  5883. #u8730 .text {
  5884. position:absolute;
  5885. align-self:center;
  5886. padding:2px 2px 2px 2px;
  5887. box-sizing:border-box;
  5888. width:100%;
  5889. }
  5890. #u8730_div.disabled {
  5891. border-width:0px;
  5892. position:absolute;
  5893. left:0px;
  5894. top:0px;
  5895. width:242px;
  5896. height:33px;
  5897. background:inherit;
  5898. background-color:rgba(240, 240, 240, 1);
  5899. border:none;
  5900. border-radius:0px;
  5901. -moz-box-shadow:none;
  5902. -webkit-box-shadow:none;
  5903. box-shadow:none;
  5904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5905. font-weight:400;
  5906. font-style:normal;
  5907. font-size:14px;
  5908. color:#D7D7D7;
  5909. }
  5910. #u8730.disabled {
  5911. }
  5912. #u8731 {
  5913. border-width:0px;
  5914. position:absolute;
  5915. left:0px;
  5916. top:0px;
  5917. width:0px;
  5918. height:0px;
  5919. }
  5920. #u8732_div {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:0px;
  5924. top:0px;
  5925. width:684px;
  5926. height:40px;
  5927. background:inherit;
  5928. background-color:rgba(255, 255, 255, 1);
  5929. box-sizing:border-box;
  5930. border-width:1px;
  5931. border-style:solid;
  5932. border-color:rgba(201, 201, 201, 1);
  5933. border-radius:4px;
  5934. -moz-box-shadow:none;
  5935. -webkit-box-shadow:none;
  5936. box-shadow:none;
  5937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5938. font-weight:400;
  5939. font-style:normal;
  5940. font-size:14px;
  5941. text-align:right;
  5942. }
  5943. #u8732 {
  5944. border-width:0px;
  5945. position:absolute;
  5946. left:1717px;
  5947. top:821px;
  5948. width:684px;
  5949. height:40px;
  5950. display:flex;
  5951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5952. font-weight:400;
  5953. font-style:normal;
  5954. font-size:14px;
  5955. text-align:right;
  5956. }
  5957. #u8732 .text {
  5958. position:absolute;
  5959. align-self:center;
  5960. padding:2px 8px 2px 8px;
  5961. box-sizing:border-box;
  5962. width:100%;
  5963. }
  5964. #u8732_text {
  5965. border-width:0px;
  5966. word-wrap:break-word;
  5967. text-transform:none;
  5968. visibility:hidden;
  5969. }
  5970. #u8733_input {
  5971. position:absolute;
  5972. left:0px;
  5973. top:0px;
  5974. width:242px;
  5975. height:33px;
  5976. padding:2px 2px 2px 2px;
  5977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5978. font-weight:400;
  5979. font-style:normal;
  5980. font-size:14px;
  5981. letter-spacing:normal;
  5982. color:#D7D7D7;
  5983. vertical-align:none;
  5984. text-align:left;
  5985. text-transform:none;
  5986. background-color:transparent;
  5987. border-color:transparent;
  5988. }
  5989. #u8733_input.disabled {
  5990. position:absolute;
  5991. left:0px;
  5992. top:0px;
  5993. width:242px;
  5994. height:33px;
  5995. padding:2px 2px 2px 2px;
  5996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5997. font-weight:400;
  5998. font-style:normal;
  5999. font-size:14px;
  6000. letter-spacing:normal;
  6001. color:#D7D7D7;
  6002. vertical-align:none;
  6003. text-align:left;
  6004. text-transform:none;
  6005. background-color:transparent;
  6006. border-color:transparent;
  6007. }
  6008. #u8733_div {
  6009. border-width:0px;
  6010. position:absolute;
  6011. left:0px;
  6012. top:0px;
  6013. width:242px;
  6014. height:33px;
  6015. background:inherit;
  6016. background-color:rgba(255, 255, 255, 0);
  6017. border:none;
  6018. border-radius:0px;
  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:14px;
  6026. color:#D7D7D7;
  6027. }
  6028. #u8733 {
  6029. border-width:0px;
  6030. position:absolute;
  6031. left:1729px;
  6032. top:824px;
  6033. width:242px;
  6034. height:33px;
  6035. display:flex;
  6036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6037. font-weight:400;
  6038. font-style:normal;
  6039. font-size:14px;
  6040. color:#D7D7D7;
  6041. }
  6042. #u8733 .text {
  6043. position:absolute;
  6044. align-self:center;
  6045. padding:2px 2px 2px 2px;
  6046. box-sizing:border-box;
  6047. width:100%;
  6048. }
  6049. #u8733_div.disabled {
  6050. border-width:0px;
  6051. position:absolute;
  6052. left:0px;
  6053. top:0px;
  6054. width:242px;
  6055. height:33px;
  6056. background:inherit;
  6057. background-color:rgba(240, 240, 240, 1);
  6058. border:none;
  6059. border-radius:0px;
  6060. -moz-box-shadow:none;
  6061. -webkit-box-shadow:none;
  6062. box-shadow:none;
  6063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6064. font-weight:400;
  6065. font-style:normal;
  6066. font-size:14px;
  6067. color:#D7D7D7;
  6068. }
  6069. #u8733.disabled {
  6070. }
  6071. #u8734_div {
  6072. border-width:0px;
  6073. position:absolute;
  6074. left:0px;
  6075. top:0px;
  6076. width:73px;
  6077. height:40px;
  6078. background:inherit;
  6079. background-color:rgba(255, 255, 255, 0);
  6080. border:none;
  6081. border-top:0px;
  6082. border-right:0px;
  6083. border-bottom:0px;
  6084. border-radius:0px;
  6085. border-top-left-radius:0px;
  6086. border-bottom-left-radius:0px;
  6087. -moz-box-shadow:none;
  6088. -webkit-box-shadow:none;
  6089. box-shadow:none;
  6090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6091. font-weight:400;
  6092. font-style:normal;
  6093. font-size:14px;
  6094. }
  6095. #u8734 {
  6096. border-width:0px;
  6097. position:absolute;
  6098. left:1717px;
  6099. top:619px;
  6100. width:73px;
  6101. height:40px;
  6102. display:flex;
  6103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6104. font-weight:400;
  6105. font-style:normal;
  6106. font-size:14px;
  6107. }
  6108. #u8734 .text {
  6109. position:absolute;
  6110. align-self:center;
  6111. padding:5px 10px 5px 0px;
  6112. box-sizing:border-box;
  6113. width:100%;
  6114. }
  6115. #u8734_text {
  6116. border-width:0px;
  6117. white-space:nowrap;
  6118. text-transform:none;
  6119. }
  6120. #u8735 {
  6121. border-width:0px;
  6122. position:absolute;
  6123. left:0px;
  6124. top:0px;
  6125. width:0px;
  6126. height:0px;
  6127. }
  6128. #u8736_div {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:0px;
  6132. top:0px;
  6133. width:684px;
  6134. height:40px;
  6135. background:inherit;
  6136. background-color:rgba(255, 255, 255, 1);
  6137. box-sizing:border-box;
  6138. border-width:1px;
  6139. border-style:solid;
  6140. border-color:rgba(201, 201, 201, 1);
  6141. border-radius:4px;
  6142. -moz-box-shadow:none;
  6143. -webkit-box-shadow:none;
  6144. box-shadow:none;
  6145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6146. font-weight:400;
  6147. font-style:normal;
  6148. font-size:14px;
  6149. text-align:right;
  6150. }
  6151. #u8736 {
  6152. border-width:0px;
  6153. position:absolute;
  6154. left:1717px;
  6155. top:661px;
  6156. width:684px;
  6157. height:40px;
  6158. display:flex;
  6159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6160. font-weight:400;
  6161. font-style:normal;
  6162. font-size:14px;
  6163. text-align:right;
  6164. }
  6165. #u8736 .text {
  6166. position:absolute;
  6167. align-self:center;
  6168. padding:2px 8px 2px 8px;
  6169. box-sizing:border-box;
  6170. width:100%;
  6171. }
  6172. #u8736_text {
  6173. border-width:0px;
  6174. word-wrap:break-word;
  6175. text-transform:none;
  6176. visibility:hidden;
  6177. }
  6178. #u8737_input {
  6179. position:absolute;
  6180. left:0px;
  6181. top:0px;
  6182. width:242px;
  6183. height:33px;
  6184. padding:2px 2px 2px 2px;
  6185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6186. font-weight:400;
  6187. font-style:normal;
  6188. font-size:14px;
  6189. letter-spacing:normal;
  6190. color:#D7D7D7;
  6191. vertical-align:none;
  6192. text-align:left;
  6193. text-transform:none;
  6194. background-color:transparent;
  6195. border-color:transparent;
  6196. }
  6197. #u8737_input.disabled {
  6198. position:absolute;
  6199. left:0px;
  6200. top:0px;
  6201. width:242px;
  6202. height:33px;
  6203. padding:2px 2px 2px 2px;
  6204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6205. font-weight:400;
  6206. font-style:normal;
  6207. font-size:14px;
  6208. letter-spacing:normal;
  6209. color:#D7D7D7;
  6210. vertical-align:none;
  6211. text-align:left;
  6212. text-transform:none;
  6213. background-color:transparent;
  6214. border-color:transparent;
  6215. }
  6216. #u8737_div {
  6217. border-width:0px;
  6218. position:absolute;
  6219. left:0px;
  6220. top:0px;
  6221. width:242px;
  6222. height:33px;
  6223. background:inherit;
  6224. background-color:rgba(255, 255, 255, 0);
  6225. border:none;
  6226. border-radius:0px;
  6227. -moz-box-shadow:none;
  6228. -webkit-box-shadow:none;
  6229. box-shadow:none;
  6230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6231. font-weight:400;
  6232. font-style:normal;
  6233. font-size:14px;
  6234. color:#D7D7D7;
  6235. }
  6236. #u8737 {
  6237. border-width:0px;
  6238. position:absolute;
  6239. left:1729px;
  6240. top:664px;
  6241. width:242px;
  6242. height:33px;
  6243. display:flex;
  6244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6245. font-weight:400;
  6246. font-style:normal;
  6247. font-size:14px;
  6248. color:#D7D7D7;
  6249. }
  6250. #u8737 .text {
  6251. position:absolute;
  6252. align-self:center;
  6253. padding:2px 2px 2px 2px;
  6254. box-sizing:border-box;
  6255. width:100%;
  6256. }
  6257. #u8737_div.disabled {
  6258. border-width:0px;
  6259. position:absolute;
  6260. left:0px;
  6261. top:0px;
  6262. width:242px;
  6263. height:33px;
  6264. background:inherit;
  6265. background-color:rgba(240, 240, 240, 1);
  6266. border:none;
  6267. border-radius:0px;
  6268. -moz-box-shadow:none;
  6269. -webkit-box-shadow:none;
  6270. box-shadow:none;
  6271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6272. font-weight:400;
  6273. font-style:normal;
  6274. font-size:14px;
  6275. color:#D7D7D7;
  6276. }
  6277. #u8737.disabled {
  6278. }
  6279. #u8738_div {
  6280. border-width:0px;
  6281. position:absolute;
  6282. left:0px;
  6283. top:0px;
  6284. width:119px;
  6285. height:35px;
  6286. background:inherit;
  6287. background-color:rgba(255, 255, 255, 0);
  6288. border:none;
  6289. border-top:0px;
  6290. border-right:0px;
  6291. border-bottom:0px;
  6292. border-radius:0px;
  6293. border-top-left-radius:0px;
  6294. border-bottom-left-radius:0px;
  6295. -moz-box-shadow:none;
  6296. -webkit-box-shadow:none;
  6297. box-shadow:none;
  6298. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6299. font-weight:500;
  6300. font-style:normal;
  6301. font-size:18px;
  6302. }
  6303. #u8738 {
  6304. border-width:0px;
  6305. position:absolute;
  6306. left:1717px;
  6307. top:572px;
  6308. width:119px;
  6309. height:35px;
  6310. display:flex;
  6311. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6312. font-weight:500;
  6313. font-style:normal;
  6314. font-size:18px;
  6315. }
  6316. #u8738 .text {
  6317. position:absolute;
  6318. align-self:center;
  6319. padding:5px 10px 5px 0px;
  6320. box-sizing:border-box;
  6321. width:100%;
  6322. }
  6323. #u8738_text {
  6324. border-width:0px;
  6325. white-space:nowrap;
  6326. text-transform:none;
  6327. }
  6328. #u8739 {
  6329. border-width:0px;
  6330. position:absolute;
  6331. left:0px;
  6332. top:0px;
  6333. width:0px;
  6334. height:0px;
  6335. }
  6336. #u8740_div {
  6337. border-width:0px;
  6338. position:absolute;
  6339. left:0px;
  6340. top:0px;
  6341. width:720px;
  6342. height:60px;
  6343. background:inherit;
  6344. background-color:rgba(255, 255, 255, 1);
  6345. box-sizing:border-box;
  6346. border-width:1px;
  6347. border-style:solid;
  6348. border-color:rgba(242, 242, 242, 1);
  6349. border-radius:0px;
  6350. -moz-box-shadow:none;
  6351. -webkit-box-shadow:none;
  6352. box-shadow:none;
  6353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6354. font-weight:400;
  6355. font-style:normal;
  6356. font-size:14px;
  6357. color:#AAAAAA;
  6358. text-align:center;
  6359. line-height:30px;
  6360. }
  6361. #u8740 {
  6362. border-width:0px;
  6363. position:absolute;
  6364. left:411px;
  6365. top:469px;
  6366. width:720px;
  6367. height:60px;
  6368. display:flex;
  6369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6370. font-weight:400;
  6371. font-style:normal;
  6372. font-size:14px;
  6373. color:#AAAAAA;
  6374. text-align:center;
  6375. line-height:30px;
  6376. }
  6377. #u8740 .text {
  6378. position:absolute;
  6379. align-self:center;
  6380. padding:5px 10px 5px 10px;
  6381. box-sizing:border-box;
  6382. width:100%;
  6383. }
  6384. #u8740_text {
  6385. border-width:0px;
  6386. word-wrap:break-word;
  6387. text-transform:none;
  6388. visibility:hidden;
  6389. }
  6390. #u8741_div {
  6391. border-width:0px;
  6392. position:absolute;
  6393. left:0px;
  6394. top:0px;
  6395. width:101px;
  6396. height:35px;
  6397. background:inherit;
  6398. background-color:rgba(255, 255, 255, 0);
  6399. border:none;
  6400. border-top:0px;
  6401. border-right:0px;
  6402. border-bottom:0px;
  6403. border-radius:0px;
  6404. border-top-left-radius:0px;
  6405. border-bottom-left-radius:0px;
  6406. -moz-box-shadow:none;
  6407. -webkit-box-shadow:none;
  6408. box-shadow:none;
  6409. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6410. font-weight:500;
  6411. font-style:normal;
  6412. font-size:18px;
  6413. }
  6414. #u8741 {
  6415. border-width:0px;
  6416. position:absolute;
  6417. left:442px;
  6418. top:482px;
  6419. width:101px;
  6420. height:35px;
  6421. display:flex;
  6422. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6423. font-weight:500;
  6424. font-style:normal;
  6425. font-size:18px;
  6426. }
  6427. #u8741 .text {
  6428. position:absolute;
  6429. align-self:center;
  6430. padding:5px 10px 5px 0px;
  6431. box-sizing:border-box;
  6432. width:100%;
  6433. }
  6434. #u8741_text {
  6435. border-width:0px;
  6436. white-space:nowrap;
  6437. text-transform:none;
  6438. }
  6439. #u8742_div {
  6440. border-width:0px;
  6441. position:absolute;
  6442. left:0px;
  6443. top:0px;
  6444. width:40px;
  6445. height:40px;
  6446. background:inherit;
  6447. background-color:rgba(255, 255, 255, 0);
  6448. border:none;
  6449. border-top:0px;
  6450. border-right:0px;
  6451. border-bottom:0px;
  6452. border-radius:0px;
  6453. border-top-left-radius:0px;
  6454. border-bottom-left-radius:0px;
  6455. -moz-box-shadow:none;
  6456. -webkit-box-shadow:none;
  6457. box-shadow:none;
  6458. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6459. font-weight:500;
  6460. font-style:normal;
  6461. font-size:24px;
  6462. text-align:center;
  6463. }
  6464. #u8742 {
  6465. border-width:0px;
  6466. position:absolute;
  6467. left:1091px;
  6468. top:469px;
  6469. width:40px;
  6470. height:40px;
  6471. display:flex;
  6472. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6473. font-weight:500;
  6474. font-style:normal;
  6475. font-size:24px;
  6476. text-align:center;
  6477. }
  6478. #u8742 .text {
  6479. position:absolute;
  6480. align-self:center;
  6481. padding:5px 10px 5px 0px;
  6482. box-sizing:border-box;
  6483. width:100%;
  6484. }
  6485. #u8742_text {
  6486. border-width:0px;
  6487. word-wrap:break-word;
  6488. text-transform:none;
  6489. }
  6490. #u8743_div {
  6491. border-width:0px;
  6492. position:absolute;
  6493. left:0px;
  6494. top:0px;
  6495. width:720px;
  6496. height:205px;
  6497. background:inherit;
  6498. background-color:rgba(255, 255, 255, 1);
  6499. box-sizing:border-box;
  6500. border-width:1px;
  6501. border-style:solid;
  6502. border-color:rgba(242, 242, 242, 1);
  6503. border-radius:0px;
  6504. -moz-box-shadow:none;
  6505. -webkit-box-shadow:none;
  6506. box-shadow:none;
  6507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6508. font-weight:400;
  6509. font-style:normal;
  6510. font-size:14px;
  6511. color:#AAAAAA;
  6512. text-align:center;
  6513. line-height:30px;
  6514. }
  6515. #u8743 {
  6516. border-width:0px;
  6517. position:absolute;
  6518. left:411px;
  6519. top:529px;
  6520. width:720px;
  6521. height:205px;
  6522. display:flex;
  6523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6524. font-weight:400;
  6525. font-style:normal;
  6526. font-size:14px;
  6527. color:#AAAAAA;
  6528. text-align:center;
  6529. line-height:30px;
  6530. }
  6531. #u8743 .text {
  6532. position:absolute;
  6533. align-self:center;
  6534. padding:5px 10px 5px 10px;
  6535. box-sizing:border-box;
  6536. width:100%;
  6537. }
  6538. #u8743_text {
  6539. border-width:0px;
  6540. word-wrap:break-word;
  6541. text-transform:none;
  6542. visibility:hidden;
  6543. }
  6544. #u8744 {
  6545. border-width:0px;
  6546. position:absolute;
  6547. left:0px;
  6548. top:0px;
  6549. width:0px;
  6550. height:0px;
  6551. }
  6552. #u8745_div {
  6553. border-width:0px;
  6554. position:absolute;
  6555. left:0px;
  6556. top:0px;
  6557. width:720px;
  6558. height:60px;
  6559. background:inherit;
  6560. background-color:rgba(255, 255, 255, 1);
  6561. box-sizing:border-box;
  6562. border-width:1px;
  6563. border-style:solid;
  6564. border-color:rgba(215, 215, 215, 1);
  6565. border-radius:0px;
  6566. -moz-box-shadow:none;
  6567. -webkit-box-shadow:none;
  6568. box-shadow:none;
  6569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6570. font-weight:400;
  6571. font-style:normal;
  6572. font-size:14px;
  6573. color:#AAAAAA;
  6574. text-align:center;
  6575. line-height:30px;
  6576. }
  6577. #u8745 {
  6578. border-width:0px;
  6579. position:absolute;
  6580. left:411px;
  6581. top:674px;
  6582. width:720px;
  6583. height:60px;
  6584. display:flex;
  6585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6586. font-weight:400;
  6587. font-style:normal;
  6588. font-size:14px;
  6589. color:#AAAAAA;
  6590. text-align:center;
  6591. line-height:30px;
  6592. }
  6593. #u8745 .text {
  6594. position:absolute;
  6595. align-self:center;
  6596. padding:5px 10px 5px 10px;
  6597. box-sizing:border-box;
  6598. width:100%;
  6599. }
  6600. #u8745_text {
  6601. border-width:0px;
  6602. word-wrap:break-word;
  6603. text-transform:none;
  6604. visibility:hidden;
  6605. }
  6606. #u8746_div {
  6607. border-width:0px;
  6608. position:absolute;
  6609. left:0px;
  6610. top:0px;
  6611. width:80px;
  6612. height:30px;
  6613. background:inherit;
  6614. background-color:rgba(24, 144, 255, 1);
  6615. border:none;
  6616. border-radius:4px;
  6617. -moz-box-shadow:none;
  6618. -webkit-box-shadow:none;
  6619. box-shadow:none;
  6620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6621. font-weight:400;
  6622. font-style:normal;
  6623. font-size:14px;
  6624. color:#FFFFFF;
  6625. }
  6626. #u8746 {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:1011px;
  6630. top:689px;
  6631. width:80px;
  6632. height:30px;
  6633. display:flex;
  6634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6635. font-weight:400;
  6636. font-style:normal;
  6637. font-size:14px;
  6638. color:#FFFFFF;
  6639. }
  6640. #u8746 .text {
  6641. position:absolute;
  6642. align-self:center;
  6643. padding:2px 2px 2px 2px;
  6644. box-sizing:border-box;
  6645. width:100%;
  6646. }
  6647. #u8746_text {
  6648. border-width:0px;
  6649. word-wrap:break-word;
  6650. text-transform:none;
  6651. }
  6652. #u8747_div {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:0px;
  6656. top:0px;
  6657. width:80px;
  6658. height:30px;
  6659. background:inherit;
  6660. background-color:rgba(255, 255, 255, 1);
  6661. box-sizing:border-box;
  6662. border-width:1px;
  6663. border-style:solid;
  6664. border-color:rgba(170, 170, 170, 1);
  6665. border-radius:4px;
  6666. -moz-box-shadow:none;
  6667. -webkit-box-shadow:none;
  6668. box-shadow:none;
  6669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6670. font-weight:400;
  6671. font-style:normal;
  6672. font-size:14px;
  6673. }
  6674. #u8747 {
  6675. border-width:0px;
  6676. position:absolute;
  6677. left:921px;
  6678. top:689px;
  6679. width:80px;
  6680. height:30px;
  6681. display:flex;
  6682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6683. font-weight:400;
  6684. font-style:normal;
  6685. font-size:14px;
  6686. }
  6687. #u8747 .text {
  6688. position:absolute;
  6689. align-self:center;
  6690. padding:2px 2px 2px 2px;
  6691. box-sizing:border-box;
  6692. width:100%;
  6693. }
  6694. #u8747_text {
  6695. border-width:0px;
  6696. word-wrap:break-word;
  6697. text-transform:none;
  6698. }
  6699. #u8748_div {
  6700. border-width:0px;
  6701. position:absolute;
  6702. left:0px;
  6703. top:0px;
  6704. width:99px;
  6705. height:40px;
  6706. background:inherit;
  6707. background-color:rgba(255, 255, 255, 0);
  6708. border:none;
  6709. border-left:0px;
  6710. border-top:0px;
  6711. border-right:0px;
  6712. border-radius:0px;
  6713. border-bottom-right-radius:0px;
  6714. border-bottom-left-radius:0px;
  6715. -moz-box-shadow:none;
  6716. -webkit-box-shadow:none;
  6717. box-shadow:none;
  6718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6719. font-weight:400;
  6720. font-style:normal;
  6721. font-size:14px;
  6722. }
  6723. #u8748 {
  6724. border-width:0px;
  6725. position:absolute;
  6726. left:464px;
  6727. top:554px;
  6728. width:99px;
  6729. height:40px;
  6730. display:flex;
  6731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6732. font-weight:400;
  6733. font-style:normal;
  6734. font-size:14px;
  6735. }
  6736. #u8748 .text {
  6737. position:absolute;
  6738. align-self:center;
  6739. padding:0px 0px 0px 0px;
  6740. box-sizing:border-box;
  6741. width:100%;
  6742. }
  6743. #u8748_text {
  6744. border-width:0px;
  6745. white-space:nowrap;
  6746. text-transform:none;
  6747. }
  6748. #u8749 {
  6749. border-width:0px;
  6750. position:absolute;
  6751. left:0px;
  6752. top:0px;
  6753. width:0px;
  6754. height:0px;
  6755. }
  6756. #u8750_div {
  6757. border-width:0px;
  6758. position:absolute;
  6759. left:0px;
  6760. top:0px;
  6761. width:589px;
  6762. height:40px;
  6763. background:inherit;
  6764. background-color:rgba(255, 255, 255, 1);
  6765. box-sizing:border-box;
  6766. border-width:1px;
  6767. border-style:solid;
  6768. border-color:rgba(215, 215, 215, 1);
  6769. border-radius:4px;
  6770. -moz-box-shadow:none;
  6771. -webkit-box-shadow:none;
  6772. box-shadow:none;
  6773. font-size:11px;
  6774. }
  6775. #u8750 {
  6776. border-width:0px;
  6777. position:absolute;
  6778. left:464px;
  6779. top:594px;
  6780. width:589px;
  6781. height:40px;
  6782. display:flex;
  6783. font-size:11px;
  6784. }
  6785. #u8750 .text {
  6786. position:absolute;
  6787. align-self:center;
  6788. padding:2px 2px 2px 2px;
  6789. box-sizing:border-box;
  6790. width:100%;
  6791. }
  6792. #u8750_text {
  6793. border-width:0px;
  6794. word-wrap:break-word;
  6795. text-transform:none;
  6796. visibility:hidden;
  6797. }
  6798. #u8751_input {
  6799. position:absolute;
  6800. left:0px;
  6801. top:0px;
  6802. width:571px;
  6803. height:31px;
  6804. padding:2px 2px 2px 2px;
  6805. font-family:'ArialMT', 'Arial', sans-serif;
  6806. font-weight:400;
  6807. font-style:normal;
  6808. font-size:11px;
  6809. letter-spacing:normal;
  6810. color:#AAAAAA;
  6811. vertical-align:none;
  6812. text-align:left;
  6813. text-transform:none;
  6814. background-color:transparent;
  6815. border-color:transparent;
  6816. }
  6817. #u8751_input.disabled {
  6818. position:absolute;
  6819. left:0px;
  6820. top:0px;
  6821. width:571px;
  6822. height:31px;
  6823. padding:2px 2px 2px 2px;
  6824. font-family:'ArialMT', 'Arial', sans-serif;
  6825. font-weight:400;
  6826. font-style:normal;
  6827. font-size:11px;
  6828. letter-spacing:normal;
  6829. color:#AAAAAA;
  6830. vertical-align:none;
  6831. text-align:left;
  6832. text-transform:none;
  6833. background-color:transparent;
  6834. border-color:transparent;
  6835. }
  6836. #u8751_div {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:0px;
  6840. top:0px;
  6841. width:571px;
  6842. height:31px;
  6843. background:inherit;
  6844. background-color:rgba(255, 255, 255, 1);
  6845. border:none;
  6846. border-radius:0px;
  6847. -moz-box-shadow:none;
  6848. -webkit-box-shadow:none;
  6849. box-shadow:none;
  6850. font-size:11px;
  6851. color:#AAAAAA;
  6852. }
  6853. #u8751 {
  6854. border-width:0px;
  6855. position:absolute;
  6856. left:473px;
  6857. top:597px;
  6858. width:571px;
  6859. height:31px;
  6860. display:flex;
  6861. font-size:11px;
  6862. color:#AAAAAA;
  6863. }
  6864. #u8751 .text {
  6865. position:absolute;
  6866. align-self:flex-start;
  6867. padding:2px 2px 2px 2px;
  6868. box-sizing:border-box;
  6869. width:100%;
  6870. }
  6871. #u8751_div.disabled {
  6872. border-width:0px;
  6873. position:absolute;
  6874. left:0px;
  6875. top:0px;
  6876. width:571px;
  6877. height:31px;
  6878. background:inherit;
  6879. background-color:rgba(240, 240, 240, 1);
  6880. border:none;
  6881. border-radius:0px;
  6882. -moz-box-shadow:none;
  6883. -webkit-box-shadow:none;
  6884. box-shadow:none;
  6885. font-size:11px;
  6886. color:#AAAAAA;
  6887. }
  6888. #u8751.disabled {
  6889. }
  6890. .u8751_input_option {
  6891. font-size:11px;
  6892. }
  6893. #u8752 {
  6894. border-width:0px;
  6895. position:absolute;
  6896. left:0px;
  6897. top:0px;
  6898. width:0px;
  6899. height:0px;
  6900. }
  6901. #u8753_div {
  6902. border-width:0px;
  6903. position:absolute;
  6904. left:0px;
  6905. top:0px;
  6906. width:200px;
  6907. height:1180px;
  6908. background:inherit;
  6909. background-color:rgba(255, 255, 255, 1);
  6910. border:none;
  6911. border-radius:0px;
  6912. -moz-box-shadow:none;
  6913. -webkit-box-shadow:none;
  6914. box-shadow:none;
  6915. }
  6916. #u8753 {
  6917. border-width:0px;
  6918. position:absolute;
  6919. left:120px;
  6920. top:50px;
  6921. width:200px;
  6922. height:1180px;
  6923. display:flex;
  6924. }
  6925. #u8753 .text {
  6926. position:absolute;
  6927. align-self:center;
  6928. padding:2px 2px 2px 2px;
  6929. box-sizing:border-box;
  6930. width:100%;
  6931. }
  6932. #u8753_text {
  6933. border-width:0px;
  6934. word-wrap:break-word;
  6935. text-transform:none;
  6936. visibility:hidden;
  6937. }
  6938. #u8754_div {
  6939. border-width:0px;
  6940. position:absolute;
  6941. left:0px;
  6942. top:0px;
  6943. width:200px;
  6944. height:60px;
  6945. background:inherit;
  6946. background-color:rgba(224, 231, 247, 1);
  6947. border:none;
  6948. border-radius:0px;
  6949. -moz-box-shadow:none;
  6950. -webkit-box-shadow:none;
  6951. box-shadow:none;
  6952. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6953. font-weight:500;
  6954. font-style:normal;
  6955. font-size:18px;
  6956. }
  6957. #u8754 {
  6958. border-width:0px;
  6959. position:absolute;
  6960. left:120px;
  6961. top:50px;
  6962. width:200px;
  6963. height:60px;
  6964. display:flex;
  6965. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6966. font-weight:500;
  6967. font-style:normal;
  6968. font-size:18px;
  6969. }
  6970. #u8754 .text {
  6971. position:absolute;
  6972. align-self:center;
  6973. padding:0px 0px 0px 20px;
  6974. box-sizing:border-box;
  6975. width:100%;
  6976. }
  6977. #u8754_text {
  6978. border-width:0px;
  6979. word-wrap:break-word;
  6980. text-transform:none;
  6981. }
  6982. #u8755_div {
  6983. border-width:0px;
  6984. position:absolute;
  6985. left:0px;
  6986. top:0px;
  6987. width:55px;
  6988. height:22px;
  6989. background:inherit;
  6990. background-color:rgba(255, 255, 255, 0);
  6991. border:none;
  6992. border-radius:0px;
  6993. -moz-box-shadow:none;
  6994. -webkit-box-shadow:none;
  6995. box-shadow:none;
  6996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6997. font-weight:400;
  6998. font-style:normal;
  6999. font-size:16px;
  7000. }
  7001. #u8755 {
  7002. border-width:0px;
  7003. position:absolute;
  7004. left:147px;
  7005. top:171px;
  7006. width:55px;
  7007. height:22px;
  7008. display:flex;
  7009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7010. font-weight:400;
  7011. font-style:normal;
  7012. font-size:16px;
  7013. }
  7014. #u8755 .text {
  7015. position:absolute;
  7016. align-self:flex-start;
  7017. padding:0px 0px 0px 0px;
  7018. box-sizing:border-box;
  7019. width:100%;
  7020. }
  7021. #u8755_text {
  7022. border-width:0px;
  7023. white-space:nowrap;
  7024. text-transform:none;
  7025. }
  7026. #u8756_div {
  7027. border-width:0px;
  7028. position:absolute;
  7029. left:0px;
  7030. top:0px;
  7031. width:81px;
  7032. height:22px;
  7033. background:inherit;
  7034. background-color:rgba(255, 255, 255, 0);
  7035. border:none;
  7036. border-radius:0px;
  7037. -moz-box-shadow:none;
  7038. -webkit-box-shadow:none;
  7039. box-shadow:none;
  7040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7041. font-weight:400;
  7042. font-style:normal;
  7043. font-size:16px;
  7044. }
  7045. #u8756 {
  7046. border-width:0px;
  7047. position:absolute;
  7048. left:147px;
  7049. top:213px;
  7050. width:81px;
  7051. height:22px;
  7052. display:flex;
  7053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7054. font-weight:400;
  7055. font-style:normal;
  7056. font-size:16px;
  7057. }
  7058. #u8756 .text {
  7059. position:absolute;
  7060. align-self:flex-start;
  7061. padding:0px 0px 0px 0px;
  7062. box-sizing:border-box;
  7063. width:100%;
  7064. }
  7065. #u8756_text {
  7066. border-width:0px;
  7067. white-space:nowrap;
  7068. text-transform:none;
  7069. }
  7070. #u8757_div {
  7071. border-width:0px;
  7072. position:absolute;
  7073. left:0px;
  7074. top:0px;
  7075. width:65px;
  7076. height:22px;
  7077. background:inherit;
  7078. background-color:rgba(255, 255, 255, 0);
  7079. border:none;
  7080. border-radius:0px;
  7081. -moz-box-shadow:none;
  7082. -webkit-box-shadow:none;
  7083. box-shadow:none;
  7084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7085. font-weight:400;
  7086. font-style:normal;
  7087. font-size:16px;
  7088. }
  7089. #u8757 {
  7090. border-width:0px;
  7091. position:absolute;
  7092. left:147px;
  7093. top:255px;
  7094. width:65px;
  7095. height:22px;
  7096. display:flex;
  7097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7098. font-weight:400;
  7099. font-style:normal;
  7100. font-size:16px;
  7101. }
  7102. #u8757 .text {
  7103. position:absolute;
  7104. align-self:flex-start;
  7105. padding:0px 0px 0px 0px;
  7106. box-sizing:border-box;
  7107. width:100%;
  7108. }
  7109. #u8757_text {
  7110. border-width:0px;
  7111. white-space:nowrap;
  7112. text-transform:none;
  7113. }
  7114. #u8758_img {
  7115. border-width:0px;
  7116. position:absolute;
  7117. left:0px;
  7118. top:0px;
  7119. width:201px;
  7120. height:2px;
  7121. }
  7122. #u8758 {
  7123. border-width:0px;
  7124. position:absolute;
  7125. left:120px;
  7126. top:304px;
  7127. width:200px;
  7128. height:1px;
  7129. display:flex;
  7130. }
  7131. #u8758 .text {
  7132. position:absolute;
  7133. align-self:center;
  7134. padding:2px 2px 2px 2px;
  7135. box-sizing:border-box;
  7136. width:100%;
  7137. }
  7138. #u8758_text {
  7139. border-width:0px;
  7140. word-wrap:break-word;
  7141. text-transform:none;
  7142. visibility:hidden;
  7143. }
  7144. #u8759_div {
  7145. border-width:0px;
  7146. position:absolute;
  7147. left:0px;
  7148. top:0px;
  7149. width:81px;
  7150. height:22px;
  7151. background:inherit;
  7152. background-color:rgba(255, 255, 255, 0);
  7153. border:none;
  7154. border-radius:0px;
  7155. -moz-box-shadow:none;
  7156. -webkit-box-shadow:none;
  7157. box-shadow:none;
  7158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7159. font-weight:400;
  7160. font-style:normal;
  7161. font-size:16px;
  7162. }
  7163. #u8759 {
  7164. border-width:0px;
  7165. position:absolute;
  7166. left:150px;
  7167. top:360px;
  7168. width:81px;
  7169. height:22px;
  7170. display:flex;
  7171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7172. font-weight:400;
  7173. font-style:normal;
  7174. font-size:16px;
  7175. }
  7176. #u8759 .text {
  7177. position:absolute;
  7178. align-self:flex-start;
  7179. padding:0px 0px 0px 0px;
  7180. box-sizing:border-box;
  7181. width:100%;
  7182. }
  7183. #u8759_text {
  7184. border-width:0px;
  7185. white-space:nowrap;
  7186. text-transform:none;
  7187. }
  7188. #u8760_div {
  7189. border-width:0px;
  7190. position:absolute;
  7191. left:0px;
  7192. top:0px;
  7193. width:61px;
  7194. height:17px;
  7195. background:inherit;
  7196. background-color:rgba(255, 255, 255, 0);
  7197. border:none;
  7198. border-radius:0px;
  7199. -moz-box-shadow:none;
  7200. -webkit-box-shadow:none;
  7201. box-shadow:none;
  7202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7203. font-weight:400;
  7204. font-style:normal;
  7205. font-size:12px;
  7206. color:#AAAAAA;
  7207. }
  7208. #u8760 {
  7209. border-width:0px;
  7210. position:absolute;
  7211. left:150px;
  7212. top:324px;
  7213. width:61px;
  7214. height:17px;
  7215. display:flex;
  7216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7217. font-weight:400;
  7218. font-style:normal;
  7219. font-size:12px;
  7220. color:#AAAAAA;
  7221. }
  7222. #u8760 .text {
  7223. position:absolute;
  7224. align-self:flex-start;
  7225. padding:0px 0px 0px 0px;
  7226. box-sizing:border-box;
  7227. width:100%;
  7228. }
  7229. #u8760_text {
  7230. border-width:0px;
  7231. white-space:nowrap;
  7232. text-transform:none;
  7233. }
  7234. #u8761_img {
  7235. border-width:0px;
  7236. position:absolute;
  7237. left:0px;
  7238. top:0px;
  7239. width:201px;
  7240. height:2px;
  7241. }
  7242. #u8761 {
  7243. border-width:0px;
  7244. position:absolute;
  7245. left:120px;
  7246. top:402px;
  7247. width:200px;
  7248. height:1px;
  7249. display:flex;
  7250. }
  7251. #u8761 .text {
  7252. position:absolute;
  7253. align-self:center;
  7254. padding:2px 2px 2px 2px;
  7255. box-sizing:border-box;
  7256. width:100%;
  7257. }
  7258. #u8761_text {
  7259. border-width:0px;
  7260. word-wrap:break-word;
  7261. text-transform:none;
  7262. visibility:hidden;
  7263. }
  7264. #u8762_div {
  7265. border-width:0px;
  7266. position:absolute;
  7267. left:0px;
  7268. top:0px;
  7269. width:65px;
  7270. height:22px;
  7271. background:inherit;
  7272. background-color:rgba(255, 255, 255, 0);
  7273. border:none;
  7274. border-radius:0px;
  7275. -moz-box-shadow:none;
  7276. -webkit-box-shadow:none;
  7277. box-shadow:none;
  7278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7279. font-weight:400;
  7280. font-style:normal;
  7281. font-size:16px;
  7282. }
  7283. #u8762 {
  7284. border-width:0px;
  7285. position:absolute;
  7286. left:150px;
  7287. top:458px;
  7288. width:65px;
  7289. height:22px;
  7290. display:flex;
  7291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7292. font-weight:400;
  7293. font-style:normal;
  7294. font-size:16px;
  7295. }
  7296. #u8762 .text {
  7297. position:absolute;
  7298. align-self:flex-start;
  7299. padding:0px 0px 0px 0px;
  7300. box-sizing:border-box;
  7301. width:100%;
  7302. }
  7303. #u8762_text {
  7304. border-width:0px;
  7305. white-space:nowrap;
  7306. text-transform:none;
  7307. }
  7308. #u8763_div {
  7309. border-width:0px;
  7310. position:absolute;
  7311. left:0px;
  7312. top:0px;
  7313. width:49px;
  7314. height:17px;
  7315. background:inherit;
  7316. background-color:rgba(255, 255, 255, 0);
  7317. border:none;
  7318. border-radius:0px;
  7319. -moz-box-shadow:none;
  7320. -webkit-box-shadow:none;
  7321. box-shadow:none;
  7322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7323. font-weight:400;
  7324. font-style:normal;
  7325. font-size:12px;
  7326. color:#AAAAAA;
  7327. }
  7328. #u8763 {
  7329. border-width:0px;
  7330. position:absolute;
  7331. left:150px;
  7332. top:422px;
  7333. width:49px;
  7334. height:17px;
  7335. display:flex;
  7336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7337. font-weight:400;
  7338. font-style:normal;
  7339. font-size:12px;
  7340. color:#AAAAAA;
  7341. }
  7342. #u8763 .text {
  7343. position:absolute;
  7344. align-self:flex-start;
  7345. padding:0px 0px 0px 0px;
  7346. box-sizing:border-box;
  7347. width:100%;
  7348. }
  7349. #u8763_text {
  7350. border-width:0px;
  7351. white-space:nowrap;
  7352. text-transform:none;
  7353. }
  7354. #u8764_div {
  7355. border-width:0px;
  7356. position:absolute;
  7357. left:0px;
  7358. top:0px;
  7359. width:49px;
  7360. height:17px;
  7361. background:inherit;
  7362. background-color:rgba(255, 255, 255, 0);
  7363. border:none;
  7364. border-radius:0px;
  7365. -moz-box-shadow:none;
  7366. -webkit-box-shadow:none;
  7367. box-shadow:none;
  7368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7369. font-weight:400;
  7370. font-style:normal;
  7371. font-size:12px;
  7372. color:#AAAAAA;
  7373. }
  7374. #u8764 {
  7375. border-width:0px;
  7376. position:absolute;
  7377. left:147px;
  7378. top:130px;
  7379. width:49px;
  7380. height:17px;
  7381. display:flex;
  7382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7383. font-weight:400;
  7384. font-style:normal;
  7385. font-size:12px;
  7386. color:#AAAAAA;
  7387. }
  7388. #u8764 .text {
  7389. position:absolute;
  7390. align-self:flex-start;
  7391. padding:0px 0px 0px 0px;
  7392. box-sizing:border-box;
  7393. width:100%;
  7394. }
  7395. #u8764_text {
  7396. border-width:0px;
  7397. white-space:nowrap;
  7398. text-transform:none;
  7399. }
  7400. #u8765_div {
  7401. border-width:0px;
  7402. position:absolute;
  7403. left:0px;
  7404. top:0px;
  7405. width:65px;
  7406. height:22px;
  7407. background:inherit;
  7408. background-color:rgba(255, 255, 255, 0);
  7409. border:none;
  7410. border-radius:0px;
  7411. -moz-box-shadow:none;
  7412. -webkit-box-shadow:none;
  7413. box-shadow:none;
  7414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7415. font-weight:400;
  7416. font-style:normal;
  7417. font-size:16px;
  7418. }
  7419. #u8765 {
  7420. border-width:0px;
  7421. position:absolute;
  7422. left:150px;
  7423. top:500px;
  7424. width:65px;
  7425. height:22px;
  7426. display:flex;
  7427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7428. font-weight:400;
  7429. font-style:normal;
  7430. font-size:16px;
  7431. }
  7432. #u8765 .text {
  7433. position:absolute;
  7434. align-self:flex-start;
  7435. padding:0px 0px 0px 0px;
  7436. box-sizing:border-box;
  7437. width:100%;
  7438. }
  7439. #u8765_text {
  7440. border-width:0px;
  7441. white-space:nowrap;
  7442. text-transform:none;
  7443. }