styles.css 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-91px;
  6. width:1626px;
  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. #u5529 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u5530_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:1196px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(215, 215, 215, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  45. font-weight:400;
  46. font-style:normal;
  47. font-size:14px;
  48. color:#AAAAAA;
  49. text-align:center;
  50. line-height:30px;
  51. }
  52. #u5530 {
  53. border-width:0px;
  54. position:absolute;
  55. left:91px;
  56. top:84px;
  57. width:1000px;
  58. height:1196px;
  59. display:flex;
  60. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  61. font-weight:400;
  62. font-style:normal;
  63. font-size:14px;
  64. color:#AAAAAA;
  65. text-align:center;
  66. line-height:30px;
  67. }
  68. #u5530 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u5530_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u5531_div {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:83px;
  87. height:35px;
  88. background:inherit;
  89. background-color:rgba(255, 255, 255, 0);
  90. border:none;
  91. border-top:0px;
  92. border-right:0px;
  93. border-bottom:0px;
  94. border-radius:0px;
  95. border-top-left-radius:0px;
  96. border-bottom-left-radius:0px;
  97. -moz-box-shadow:none;
  98. -webkit-box-shadow:none;
  99. box-shadow:none;
  100. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  101. font-weight:500;
  102. font-style:normal;
  103. font-size:18px;
  104. }
  105. #u5531 {
  106. border-width:0px;
  107. position:absolute;
  108. left:111px;
  109. top:102px;
  110. width:83px;
  111. height:35px;
  112. display:flex;
  113. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  114. font-weight:500;
  115. font-style:normal;
  116. font-size:18px;
  117. }
  118. #u5531 .text {
  119. position:absolute;
  120. align-self:center;
  121. padding:5px 10px 5px 0px;
  122. box-sizing:border-box;
  123. width:100%;
  124. }
  125. #u5531_text {
  126. border-width:0px;
  127. white-space:nowrap;
  128. text-transform:none;
  129. }
  130. #u5532 {
  131. border-width:0px;
  132. position:absolute;
  133. left:0px;
  134. top:0px;
  135. width:0px;
  136. height:0px;
  137. }
  138. #u5533_div {
  139. border-width:0px;
  140. position:absolute;
  141. left:0px;
  142. top:0px;
  143. width:40px;
  144. height:40px;
  145. background:inherit;
  146. background-color:rgba(255, 255, 255, 0);
  147. border:none;
  148. border-top:0px;
  149. border-right:0px;
  150. border-bottom:0px;
  151. border-radius:0px;
  152. border-top-left-radius:0px;
  153. border-bottom-left-radius:0px;
  154. -moz-box-shadow:none;
  155. -webkit-box-shadow:none;
  156. box-shadow:none;
  157. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  158. font-weight:500;
  159. font-style:normal;
  160. font-size:18px;
  161. text-align:center;
  162. }
  163. #u5533 {
  164. border-width:0px;
  165. position:absolute;
  166. left:1051px;
  167. top:84px;
  168. width:40px;
  169. height:40px;
  170. display:flex;
  171. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  172. font-weight:500;
  173. font-style:normal;
  174. font-size:18px;
  175. text-align:center;
  176. }
  177. #u5533 .text {
  178. position:absolute;
  179. align-self:center;
  180. padding:5px 10px 5px 0px;
  181. box-sizing:border-box;
  182. width:100%;
  183. }
  184. #u5533_text {
  185. border-width:0px;
  186. word-wrap:break-word;
  187. text-transform:none;
  188. }
  189. #u5534_img {
  190. border-width:0px;
  191. position:absolute;
  192. left:0px;
  193. top:0px;
  194. width:13px;
  195. height:13px;
  196. }
  197. #u5534 {
  198. border-width:0px;
  199. position:absolute;
  200. left:1039px;
  201. top:100px;
  202. width:13px;
  203. height:13px;
  204. display:flex;
  205. }
  206. #u5534 .text {
  207. position:absolute;
  208. align-self:center;
  209. padding:2px 2px 2px 2px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u5534_text {
  214. border-width:0px;
  215. word-wrap:break-word;
  216. text-transform:none;
  217. visibility:hidden;
  218. }
  219. #u5535 {
  220. border-width:0px;
  221. position:absolute;
  222. left:0px;
  223. top:0px;
  224. width:0px;
  225. height:0px;
  226. }
  227. #u5536_div {
  228. border-width:0px;
  229. position:absolute;
  230. left:0px;
  231. top:0px;
  232. width:1000px;
  233. height:50px;
  234. background:inherit;
  235. background-color:rgba(255, 255, 255, 1);
  236. box-sizing:border-box;
  237. border-width:1px;
  238. border-style:solid;
  239. border-color:rgba(215, 215, 215, 1);
  240. border-radius:0px;
  241. -moz-box-shadow:none;
  242. -webkit-box-shadow:none;
  243. box-shadow:none;
  244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  245. font-weight:400;
  246. font-style:normal;
  247. font-size:14px;
  248. color:#AAAAAA;
  249. text-align:center;
  250. line-height:30px;
  251. }
  252. #u5536 {
  253. border-width:0px;
  254. position:absolute;
  255. left:91px;
  256. top:1230px;
  257. width:1000px;
  258. height:50px;
  259. display:flex;
  260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  261. font-weight:400;
  262. font-style:normal;
  263. font-size:14px;
  264. color:#AAAAAA;
  265. text-align:center;
  266. line-height:30px;
  267. }
  268. #u5536 .text {
  269. position:absolute;
  270. align-self:center;
  271. padding:5px 10px 5px 10px;
  272. box-sizing:border-box;
  273. width:100%;
  274. }
  275. #u5536_text {
  276. border-width:0px;
  277. word-wrap:break-word;
  278. text-transform:none;
  279. visibility:hidden;
  280. }
  281. #u5537_div {
  282. border-width:0px;
  283. position:absolute;
  284. left:0px;
  285. top:0px;
  286. width:80px;
  287. height:30px;
  288. background:inherit;
  289. background-color:rgba(24, 144, 255, 1);
  290. border:none;
  291. border-radius:4px;
  292. -moz-box-shadow:none;
  293. -webkit-box-shadow:none;
  294. box-shadow:none;
  295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  296. font-weight:400;
  297. font-style:normal;
  298. font-size:14px;
  299. color:#FFFFFF;
  300. }
  301. #u5537 {
  302. border-width:0px;
  303. position:absolute;
  304. left:989px;
  305. top:1240px;
  306. width:80px;
  307. height:30px;
  308. display:flex;
  309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  310. font-weight:400;
  311. font-style:normal;
  312. font-size:14px;
  313. color:#FFFFFF;
  314. }
  315. #u5537 .text {
  316. position:absolute;
  317. align-self:center;
  318. padding:2px 2px 2px 2px;
  319. box-sizing:border-box;
  320. width:100%;
  321. }
  322. #u5537_text {
  323. border-width:0px;
  324. word-wrap:break-word;
  325. text-transform:none;
  326. }
  327. #u5538_div {
  328. border-width:0px;
  329. position:absolute;
  330. left:0px;
  331. top:0px;
  332. width:80px;
  333. height:30px;
  334. background:inherit;
  335. background-color:rgba(255, 255, 255, 1);
  336. box-sizing:border-box;
  337. border-width:1px;
  338. border-style:solid;
  339. border-color:rgba(121, 121, 121, 1);
  340. border-radius:4px;
  341. -moz-box-shadow:none;
  342. -webkit-box-shadow:none;
  343. box-shadow:none;
  344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  345. font-weight:400;
  346. font-style:normal;
  347. font-size:14px;
  348. }
  349. #u5538 {
  350. border-width:0px;
  351. position:absolute;
  352. left:899px;
  353. top:1240px;
  354. width:80px;
  355. height:30px;
  356. display:flex;
  357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  358. font-weight:400;
  359. font-style:normal;
  360. font-size:14px;
  361. }
  362. #u5538 .text {
  363. position:absolute;
  364. align-self:center;
  365. padding:2px 2px 2px 2px;
  366. box-sizing:border-box;
  367. width:100%;
  368. }
  369. #u5538_text {
  370. border-width:0px;
  371. word-wrap:break-word;
  372. text-transform:none;
  373. }
  374. #u5539_div {
  375. border-width:0px;
  376. position:absolute;
  377. left:0px;
  378. top:0px;
  379. width:75px;
  380. height:32px;
  381. background:inherit;
  382. background-color:rgba(255, 255, 255, 0);
  383. border:none;
  384. border-top:0px;
  385. border-right:0px;
  386. border-bottom:0px;
  387. border-radius:0px;
  388. border-top-left-radius:0px;
  389. border-bottom-left-radius:0px;
  390. -moz-box-shadow:none;
  391. -webkit-box-shadow:none;
  392. box-shadow:none;
  393. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  394. font-weight:500;
  395. font-style:normal;
  396. font-size:16px;
  397. }
  398. #u5539 {
  399. border-width:0px;
  400. position:absolute;
  401. left:142px;
  402. top:155px;
  403. width:75px;
  404. height:32px;
  405. display:flex;
  406. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  407. font-weight:500;
  408. font-style:normal;
  409. font-size:16px;
  410. }
  411. #u5539 .text {
  412. position:absolute;
  413. align-self:center;
  414. padding:5px 10px 5px 0px;
  415. box-sizing:border-box;
  416. width:100%;
  417. }
  418. #u5539_text {
  419. border-width:0px;
  420. white-space:nowrap;
  421. text-transform:none;
  422. }
  423. #u5540 {
  424. border-width:0px;
  425. position:absolute;
  426. left:142px;
  427. top:198px;
  428. width:910px;
  429. height:210px;
  430. }
  431. #u5541_img {
  432. border-width:0px;
  433. position:absolute;
  434. left:0px;
  435. top:0px;
  436. width:228px;
  437. height:30px;
  438. }
  439. #u5541 {
  440. border-width:0px;
  441. position:absolute;
  442. left:0px;
  443. top:0px;
  444. width:228px;
  445. height:30px;
  446. display:flex;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. color:#FFFFFF;
  451. }
  452. #u5541 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u5541_text {
  460. border-width:0px;
  461. word-wrap:break-word;
  462. text-transform:none;
  463. }
  464. #u5542_img {
  465. border-width:0px;
  466. position:absolute;
  467. left:0px;
  468. top:0px;
  469. width:228px;
  470. height:30px;
  471. }
  472. #u5542 {
  473. border-width:0px;
  474. position:absolute;
  475. left:228px;
  476. top:0px;
  477. width:228px;
  478. height:30px;
  479. display:flex;
  480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  481. font-weight:400;
  482. font-style:normal;
  483. color:#FFFFFF;
  484. }
  485. #u5542 .text {
  486. position:absolute;
  487. align-self:center;
  488. padding:2px 2px 2px 2px;
  489. box-sizing:border-box;
  490. width:100%;
  491. }
  492. #u5542_text {
  493. border-width:0px;
  494. word-wrap:break-word;
  495. text-transform:none;
  496. }
  497. #u5543_img {
  498. border-width:0px;
  499. position:absolute;
  500. left:0px;
  501. top:0px;
  502. width:228px;
  503. height:30px;
  504. }
  505. #u5543 {
  506. border-width:0px;
  507. position:absolute;
  508. left:456px;
  509. top:0px;
  510. width:228px;
  511. height:30px;
  512. display:flex;
  513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  514. font-weight:400;
  515. font-style:normal;
  516. color:#FFFFFF;
  517. }
  518. #u5543 .text {
  519. position:absolute;
  520. align-self:center;
  521. padding:2px 2px 2px 2px;
  522. box-sizing:border-box;
  523. width:100%;
  524. }
  525. #u5543_text {
  526. border-width:0px;
  527. word-wrap:break-word;
  528. text-transform:none;
  529. }
  530. #u5544_img {
  531. border-width:0px;
  532. position:absolute;
  533. left:0px;
  534. top:0px;
  535. width:226px;
  536. height:30px;
  537. }
  538. #u5544 {
  539. border-width:0px;
  540. position:absolute;
  541. left:684px;
  542. top:0px;
  543. width:226px;
  544. height:30px;
  545. display:flex;
  546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  547. font-weight:400;
  548. font-style:normal;
  549. color:#FFFFFF;
  550. }
  551. #u5544 .text {
  552. position:absolute;
  553. align-self:center;
  554. padding:2px 2px 2px 2px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u5544_text {
  559. border-width:0px;
  560. word-wrap:break-word;
  561. text-transform:none;
  562. }
  563. #u5545_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:228px;
  569. height:30px;
  570. }
  571. #u5545 {
  572. border-width:0px;
  573. position:absolute;
  574. left:0px;
  575. top:30px;
  576. width:228px;
  577. height:30px;
  578. display:flex;
  579. }
  580. #u5545 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u5545_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. }
  592. #u5546_img {
  593. border-width:0px;
  594. position:absolute;
  595. left:0px;
  596. top:0px;
  597. width:228px;
  598. height:30px;
  599. }
  600. #u5546 {
  601. border-width:0px;
  602. position:absolute;
  603. left:228px;
  604. top:30px;
  605. width:228px;
  606. height:30px;
  607. display:flex;
  608. }
  609. #u5546 .text {
  610. position:absolute;
  611. align-self:center;
  612. padding:2px 2px 2px 2px;
  613. box-sizing:border-box;
  614. width:100%;
  615. }
  616. #u5546_text {
  617. border-width:0px;
  618. word-wrap:break-word;
  619. text-transform:none;
  620. }
  621. #u5547_img {
  622. border-width:0px;
  623. position:absolute;
  624. left:0px;
  625. top:0px;
  626. width:228px;
  627. height:30px;
  628. }
  629. #u5547 {
  630. border-width:0px;
  631. position:absolute;
  632. left:456px;
  633. top:30px;
  634. width:228px;
  635. height:30px;
  636. display:flex;
  637. }
  638. #u5547 .text {
  639. position:absolute;
  640. align-self:center;
  641. padding:2px 2px 2px 2px;
  642. box-sizing:border-box;
  643. width:100%;
  644. }
  645. #u5547_text {
  646. border-width:0px;
  647. word-wrap:break-word;
  648. text-transform:none;
  649. }
  650. #u5548_img {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:226px;
  656. height:30px;
  657. }
  658. #u5548 {
  659. border-width:0px;
  660. position:absolute;
  661. left:684px;
  662. top:30px;
  663. width:226px;
  664. height:30px;
  665. display:flex;
  666. color:#1890FF;
  667. }
  668. #u5548 .text {
  669. position:absolute;
  670. align-self:center;
  671. padding:2px 2px 2px 2px;
  672. box-sizing:border-box;
  673. width:100%;
  674. }
  675. #u5548_text {
  676. border-width:0px;
  677. word-wrap:break-word;
  678. text-transform:none;
  679. }
  680. #u5549_img {
  681. border-width:0px;
  682. position:absolute;
  683. left:0px;
  684. top:0px;
  685. width:228px;
  686. height:30px;
  687. }
  688. #u5549 {
  689. border-width:0px;
  690. position:absolute;
  691. left:0px;
  692. top:60px;
  693. width:228px;
  694. height:30px;
  695. display:flex;
  696. }
  697. #u5549 .text {
  698. position:absolute;
  699. align-self:center;
  700. padding:2px 2px 2px 2px;
  701. box-sizing:border-box;
  702. width:100%;
  703. }
  704. #u5549_text {
  705. border-width:0px;
  706. word-wrap:break-word;
  707. text-transform:none;
  708. }
  709. #u5550_img {
  710. border-width:0px;
  711. position:absolute;
  712. left:0px;
  713. top:0px;
  714. width:228px;
  715. height:30px;
  716. }
  717. #u5550 {
  718. border-width:0px;
  719. position:absolute;
  720. left:228px;
  721. top:60px;
  722. width:228px;
  723. height:30px;
  724. display:flex;
  725. }
  726. #u5550 .text {
  727. position:absolute;
  728. align-self:center;
  729. padding:2px 2px 2px 2px;
  730. box-sizing:border-box;
  731. width:100%;
  732. }
  733. #u5550_text {
  734. border-width:0px;
  735. word-wrap:break-word;
  736. text-transform:none;
  737. }
  738. #u5551_img {
  739. border-width:0px;
  740. position:absolute;
  741. left:0px;
  742. top:0px;
  743. width:228px;
  744. height:30px;
  745. }
  746. #u5551 {
  747. border-width:0px;
  748. position:absolute;
  749. left:456px;
  750. top:60px;
  751. width:228px;
  752. height:30px;
  753. display:flex;
  754. }
  755. #u5551 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:2px 2px 2px 2px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u5551_text {
  763. border-width:0px;
  764. word-wrap:break-word;
  765. text-transform:none;
  766. }
  767. #u5552_img {
  768. border-width:0px;
  769. position:absolute;
  770. left:0px;
  771. top:0px;
  772. width:226px;
  773. height:30px;
  774. }
  775. #u5552 {
  776. border-width:0px;
  777. position:absolute;
  778. left:684px;
  779. top:60px;
  780. width:226px;
  781. height:30px;
  782. display:flex;
  783. color:#1890FF;
  784. }
  785. #u5552 .text {
  786. position:absolute;
  787. align-self:center;
  788. padding:2px 2px 2px 2px;
  789. box-sizing:border-box;
  790. width:100%;
  791. }
  792. #u5552_text {
  793. border-width:0px;
  794. word-wrap:break-word;
  795. text-transform:none;
  796. }
  797. #u5553_img {
  798. border-width:0px;
  799. position:absolute;
  800. left:0px;
  801. top:0px;
  802. width:228px;
  803. height:30px;
  804. }
  805. #u5553 {
  806. border-width:0px;
  807. position:absolute;
  808. left:0px;
  809. top:90px;
  810. width:228px;
  811. height:30px;
  812. display:flex;
  813. }
  814. #u5553 .text {
  815. position:absolute;
  816. align-self:center;
  817. padding:2px 2px 2px 2px;
  818. box-sizing:border-box;
  819. width:100%;
  820. }
  821. #u5553_text {
  822. border-width:0px;
  823. word-wrap:break-word;
  824. text-transform:none;
  825. }
  826. #u5554_img {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:228px;
  832. height:30px;
  833. }
  834. #u5554 {
  835. border-width:0px;
  836. position:absolute;
  837. left:228px;
  838. top:90px;
  839. width:228px;
  840. height:30px;
  841. display:flex;
  842. }
  843. #u5554 .text {
  844. position:absolute;
  845. align-self:center;
  846. padding:2px 2px 2px 2px;
  847. box-sizing:border-box;
  848. width:100%;
  849. }
  850. #u5554_text {
  851. border-width:0px;
  852. word-wrap:break-word;
  853. text-transform:none;
  854. }
  855. #u5555_img {
  856. border-width:0px;
  857. position:absolute;
  858. left:0px;
  859. top:0px;
  860. width:228px;
  861. height:30px;
  862. }
  863. #u5555 {
  864. border-width:0px;
  865. position:absolute;
  866. left:456px;
  867. top:90px;
  868. width:228px;
  869. height:30px;
  870. display:flex;
  871. }
  872. #u5555 .text {
  873. position:absolute;
  874. align-self:center;
  875. padding:2px 2px 2px 2px;
  876. box-sizing:border-box;
  877. width:100%;
  878. }
  879. #u5555_text {
  880. border-width:0px;
  881. word-wrap:break-word;
  882. text-transform:none;
  883. }
  884. #u5556_img {
  885. border-width:0px;
  886. position:absolute;
  887. left:0px;
  888. top:0px;
  889. width:226px;
  890. height:30px;
  891. }
  892. #u5556 {
  893. border-width:0px;
  894. position:absolute;
  895. left:684px;
  896. top:90px;
  897. width:226px;
  898. height:30px;
  899. display:flex;
  900. color:#1890FF;
  901. }
  902. #u5556 .text {
  903. position:absolute;
  904. align-self:center;
  905. padding:2px 2px 2px 2px;
  906. box-sizing:border-box;
  907. width:100%;
  908. }
  909. #u5556_text {
  910. border-width:0px;
  911. word-wrap:break-word;
  912. text-transform:none;
  913. }
  914. #u5557_img {
  915. border-width:0px;
  916. position:absolute;
  917. left:0px;
  918. top:0px;
  919. width:228px;
  920. height:30px;
  921. }
  922. #u5557 {
  923. border-width:0px;
  924. position:absolute;
  925. left:0px;
  926. top:120px;
  927. width:228px;
  928. height:30px;
  929. display:flex;
  930. }
  931. #u5557 .text {
  932. position:absolute;
  933. align-self:center;
  934. padding:2px 2px 2px 2px;
  935. box-sizing:border-box;
  936. width:100%;
  937. }
  938. #u5557_text {
  939. border-width:0px;
  940. word-wrap:break-word;
  941. text-transform:none;
  942. visibility:hidden;
  943. }
  944. #u5558_img {
  945. border-width:0px;
  946. position:absolute;
  947. left:0px;
  948. top:0px;
  949. width:228px;
  950. height:30px;
  951. }
  952. #u5558 {
  953. border-width:0px;
  954. position:absolute;
  955. left:228px;
  956. top:120px;
  957. width:228px;
  958. height:30px;
  959. display:flex;
  960. }
  961. #u5558 .text {
  962. position:absolute;
  963. align-self:center;
  964. padding:2px 2px 2px 2px;
  965. box-sizing:border-box;
  966. width:100%;
  967. }
  968. #u5558_text {
  969. border-width:0px;
  970. word-wrap:break-word;
  971. text-transform:none;
  972. visibility:hidden;
  973. }
  974. #u5559_img {
  975. border-width:0px;
  976. position:absolute;
  977. left:0px;
  978. top:0px;
  979. width:228px;
  980. height:30px;
  981. }
  982. #u5559 {
  983. border-width:0px;
  984. position:absolute;
  985. left:456px;
  986. top:120px;
  987. width:228px;
  988. height:30px;
  989. display:flex;
  990. }
  991. #u5559 .text {
  992. position:absolute;
  993. align-self:center;
  994. padding:2px 2px 2px 2px;
  995. box-sizing:border-box;
  996. width:100%;
  997. }
  998. #u5559_text {
  999. border-width:0px;
  1000. word-wrap:break-word;
  1001. text-transform:none;
  1002. visibility:hidden;
  1003. }
  1004. #u5560_img {
  1005. border-width:0px;
  1006. position:absolute;
  1007. left:0px;
  1008. top:0px;
  1009. width:226px;
  1010. height:30px;
  1011. }
  1012. #u5560 {
  1013. border-width:0px;
  1014. position:absolute;
  1015. left:684px;
  1016. top:120px;
  1017. width:226px;
  1018. height:30px;
  1019. display:flex;
  1020. }
  1021. #u5560 .text {
  1022. position:absolute;
  1023. align-self:center;
  1024. padding:2px 2px 2px 2px;
  1025. box-sizing:border-box;
  1026. width:100%;
  1027. }
  1028. #u5560_text {
  1029. border-width:0px;
  1030. word-wrap:break-word;
  1031. text-transform:none;
  1032. visibility:hidden;
  1033. }
  1034. #u5561_img {
  1035. border-width:0px;
  1036. position:absolute;
  1037. left:0px;
  1038. top:0px;
  1039. width:228px;
  1040. height:30px;
  1041. }
  1042. #u5561 {
  1043. border-width:0px;
  1044. position:absolute;
  1045. left:0px;
  1046. top:150px;
  1047. width:228px;
  1048. height:30px;
  1049. display:flex;
  1050. }
  1051. #u5561 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:2px 2px 2px 2px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u5561_text {
  1059. border-width:0px;
  1060. word-wrap:break-word;
  1061. text-transform:none;
  1062. visibility:hidden;
  1063. }
  1064. #u5562_img {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:0px;
  1068. top:0px;
  1069. width:228px;
  1070. height:30px;
  1071. }
  1072. #u5562 {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:228px;
  1076. top:150px;
  1077. width:228px;
  1078. height:30px;
  1079. display:flex;
  1080. }
  1081. #u5562 .text {
  1082. position:absolute;
  1083. align-self:center;
  1084. padding:2px 2px 2px 2px;
  1085. box-sizing:border-box;
  1086. width:100%;
  1087. }
  1088. #u5562_text {
  1089. border-width:0px;
  1090. word-wrap:break-word;
  1091. text-transform:none;
  1092. visibility:hidden;
  1093. }
  1094. #u5563_img {
  1095. border-width:0px;
  1096. position:absolute;
  1097. left:0px;
  1098. top:0px;
  1099. width:228px;
  1100. height:30px;
  1101. }
  1102. #u5563 {
  1103. border-width:0px;
  1104. position:absolute;
  1105. left:456px;
  1106. top:150px;
  1107. width:228px;
  1108. height:30px;
  1109. display:flex;
  1110. }
  1111. #u5563 .text {
  1112. position:absolute;
  1113. align-self:center;
  1114. padding:2px 2px 2px 2px;
  1115. box-sizing:border-box;
  1116. width:100%;
  1117. }
  1118. #u5563_text {
  1119. border-width:0px;
  1120. word-wrap:break-word;
  1121. text-transform:none;
  1122. visibility:hidden;
  1123. }
  1124. #u5564_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:226px;
  1130. height:30px;
  1131. }
  1132. #u5564 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:684px;
  1136. top:150px;
  1137. width:226px;
  1138. height:30px;
  1139. display:flex;
  1140. }
  1141. #u5564 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u5564_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u5565_img {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:228px;
  1160. height:30px;
  1161. }
  1162. #u5565 {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:180px;
  1167. width:228px;
  1168. height:30px;
  1169. display:flex;
  1170. }
  1171. #u5565 .text {
  1172. position:absolute;
  1173. align-self:center;
  1174. padding:2px 2px 2px 2px;
  1175. box-sizing:border-box;
  1176. width:100%;
  1177. }
  1178. #u5565_text {
  1179. border-width:0px;
  1180. word-wrap:break-word;
  1181. text-transform:none;
  1182. visibility:hidden;
  1183. }
  1184. #u5566_img {
  1185. border-width:0px;
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:228px;
  1190. height:30px;
  1191. }
  1192. #u5566 {
  1193. border-width:0px;
  1194. position:absolute;
  1195. left:228px;
  1196. top:180px;
  1197. width:228px;
  1198. height:30px;
  1199. display:flex;
  1200. }
  1201. #u5566 .text {
  1202. position:absolute;
  1203. align-self:center;
  1204. padding:2px 2px 2px 2px;
  1205. box-sizing:border-box;
  1206. width:100%;
  1207. }
  1208. #u5566_text {
  1209. border-width:0px;
  1210. word-wrap:break-word;
  1211. text-transform:none;
  1212. visibility:hidden;
  1213. }
  1214. #u5567_img {
  1215. border-width:0px;
  1216. position:absolute;
  1217. left:0px;
  1218. top:0px;
  1219. width:228px;
  1220. height:30px;
  1221. }
  1222. #u5567 {
  1223. border-width:0px;
  1224. position:absolute;
  1225. left:456px;
  1226. top:180px;
  1227. width:228px;
  1228. height:30px;
  1229. display:flex;
  1230. }
  1231. #u5567 .text {
  1232. position:absolute;
  1233. align-self:center;
  1234. padding:2px 2px 2px 2px;
  1235. box-sizing:border-box;
  1236. width:100%;
  1237. }
  1238. #u5567_text {
  1239. border-width:0px;
  1240. word-wrap:break-word;
  1241. text-transform:none;
  1242. visibility:hidden;
  1243. }
  1244. #u5568_img {
  1245. border-width:0px;
  1246. position:absolute;
  1247. left:0px;
  1248. top:0px;
  1249. width:226px;
  1250. height:30px;
  1251. }
  1252. #u5568 {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:684px;
  1256. top:180px;
  1257. width:226px;
  1258. height:30px;
  1259. display:flex;
  1260. }
  1261. #u5568 .text {
  1262. position:absolute;
  1263. align-self:center;
  1264. padding:2px 2px 2px 2px;
  1265. box-sizing:border-box;
  1266. width:100%;
  1267. }
  1268. #u5568_text {
  1269. border-width:0px;
  1270. word-wrap:break-word;
  1271. text-transform:none;
  1272. visibility:hidden;
  1273. }
  1274. #u5569_div {
  1275. border-width:0px;
  1276. position:absolute;
  1277. left:0px;
  1278. top:0px;
  1279. width:80px;
  1280. height:30px;
  1281. background:inherit;
  1282. background-color:rgba(41, 143, 255, 1);
  1283. border:none;
  1284. border-top:0px;
  1285. border-right:0px;
  1286. border-bottom:0px;
  1287. border-radius:0px;
  1288. border-top-left-radius:0px;
  1289. border-bottom-left-radius:0px;
  1290. -moz-box-shadow:none;
  1291. -webkit-box-shadow:none;
  1292. box-shadow:none;
  1293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1294. font-weight:400;
  1295. font-style:normal;
  1296. font-size:14px;
  1297. color:#FFFFFF;
  1298. text-align:center;
  1299. }
  1300. #u5569 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:972px;
  1304. top:155px;
  1305. width:80px;
  1306. height:30px;
  1307. display:flex;
  1308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1309. font-weight:400;
  1310. font-style:normal;
  1311. font-size:14px;
  1312. color:#FFFFFF;
  1313. text-align:center;
  1314. }
  1315. #u5569 .text {
  1316. position:absolute;
  1317. align-self:center;
  1318. padding:5px 0px 5px 0px;
  1319. box-sizing:border-box;
  1320. width:100%;
  1321. }
  1322. #u5569_text {
  1323. border-width:0px;
  1324. word-wrap:break-word;
  1325. text-transform:none;
  1326. }
  1327. #u5570_div {
  1328. border-width:0px;
  1329. position:absolute;
  1330. left:0px;
  1331. top:0px;
  1332. width:80px;
  1333. height:30px;
  1334. background:inherit;
  1335. background-color:rgba(255, 255, 255, 1);
  1336. box-sizing:border-box;
  1337. border-width:1px;
  1338. border-style:solid;
  1339. border-color:rgba(51, 51, 51, 1);
  1340. border-radius:0px;
  1341. -moz-box-shadow:none;
  1342. -webkit-box-shadow:none;
  1343. box-shadow:none;
  1344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. text-align:center;
  1349. }
  1350. #u5570 {
  1351. border-width:0px;
  1352. position:absolute;
  1353. left:879px;
  1354. top:155px;
  1355. width:80px;
  1356. height:30px;
  1357. display:flex;
  1358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1359. font-weight:400;
  1360. font-style:normal;
  1361. font-size:14px;
  1362. text-align:center;
  1363. }
  1364. #u5570 .text {
  1365. position:absolute;
  1366. align-self:center;
  1367. padding:5px 0px 5px 0px;
  1368. box-sizing:border-box;
  1369. width:100%;
  1370. }
  1371. #u5570_text {
  1372. border-width:0px;
  1373. word-wrap:break-word;
  1374. text-transform:none;
  1375. }
  1376. #u5571 {
  1377. border-width:0px;
  1378. position:absolute;
  1379. left:0px;
  1380. top:0px;
  1381. width:0px;
  1382. height:0px;
  1383. }
  1384. #u5572_div {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:0px;
  1388. top:0px;
  1389. width:600px;
  1390. height:1196px;
  1391. background:inherit;
  1392. background-color:rgba(255, 255, 255, 1);
  1393. box-sizing:border-box;
  1394. border-width:1px;
  1395. border-style:solid;
  1396. border-color:rgba(215, 215, 215, 1);
  1397. border-radius:0px;
  1398. -moz-box-shadow:none;
  1399. -webkit-box-shadow:none;
  1400. box-shadow:none;
  1401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1402. font-weight:400;
  1403. font-style:normal;
  1404. font-size:14px;
  1405. color:#AAAAAA;
  1406. text-align:center;
  1407. line-height:30px;
  1408. }
  1409. #u5572 {
  1410. border-width:0px;
  1411. position:absolute;
  1412. left:1117px;
  1413. top:84px;
  1414. width:600px;
  1415. height:1196px;
  1416. display:flex;
  1417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1418. font-weight:400;
  1419. font-style:normal;
  1420. font-size:14px;
  1421. color:#AAAAAA;
  1422. text-align:center;
  1423. line-height:30px;
  1424. }
  1425. #u5572 .text {
  1426. position:absolute;
  1427. align-self:center;
  1428. padding:5px 10px 5px 10px;
  1429. box-sizing:border-box;
  1430. width:100%;
  1431. }
  1432. #u5572_text {
  1433. border-width:0px;
  1434. word-wrap:break-word;
  1435. text-transform:none;
  1436. visibility:hidden;
  1437. }
  1438. #u5573_div {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:83px;
  1444. height:35px;
  1445. background:inherit;
  1446. background-color:rgba(255, 255, 255, 0);
  1447. border:none;
  1448. border-top:0px;
  1449. border-right:0px;
  1450. border-bottom:0px;
  1451. border-radius:0px;
  1452. border-top-left-radius:0px;
  1453. border-bottom-left-radius:0px;
  1454. -moz-box-shadow:none;
  1455. -webkit-box-shadow:none;
  1456. box-shadow:none;
  1457. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1458. font-weight:500;
  1459. font-style:normal;
  1460. font-size:18px;
  1461. }
  1462. #u5573 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:1137px;
  1466. top:102px;
  1467. width:83px;
  1468. height:35px;
  1469. display:flex;
  1470. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1471. font-weight:500;
  1472. font-style:normal;
  1473. font-size:18px;
  1474. }
  1475. #u5573 .text {
  1476. position:absolute;
  1477. align-self:center;
  1478. padding:5px 10px 5px 0px;
  1479. box-sizing:border-box;
  1480. width:100%;
  1481. }
  1482. #u5573_text {
  1483. border-width:0px;
  1484. white-space:nowrap;
  1485. text-transform:none;
  1486. }
  1487. #u5574 {
  1488. border-width:0px;
  1489. position:absolute;
  1490. left:0px;
  1491. top:0px;
  1492. width:0px;
  1493. height:0px;
  1494. }
  1495. #u5575_div {
  1496. border-width:0px;
  1497. position:absolute;
  1498. left:0px;
  1499. top:0px;
  1500. width:40px;
  1501. height:40px;
  1502. background:inherit;
  1503. background-color:rgba(255, 255, 255, 0);
  1504. border:none;
  1505. border-top:0px;
  1506. border-right:0px;
  1507. border-bottom:0px;
  1508. border-radius:0px;
  1509. border-top-left-radius:0px;
  1510. border-bottom-left-radius:0px;
  1511. -moz-box-shadow:none;
  1512. -webkit-box-shadow:none;
  1513. box-shadow:none;
  1514. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1515. font-weight:500;
  1516. font-style:normal;
  1517. font-size:18px;
  1518. text-align:center;
  1519. }
  1520. #u5575 {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:1677px;
  1524. top:84px;
  1525. width:40px;
  1526. height:40px;
  1527. display:flex;
  1528. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1529. font-weight:500;
  1530. font-style:normal;
  1531. font-size:18px;
  1532. text-align:center;
  1533. }
  1534. #u5575 .text {
  1535. position:absolute;
  1536. align-self:center;
  1537. padding:5px 10px 5px 0px;
  1538. box-sizing:border-box;
  1539. width:100%;
  1540. }
  1541. #u5575_text {
  1542. border-width:0px;
  1543. word-wrap:break-word;
  1544. text-transform:none;
  1545. }
  1546. #u5576_img {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:13px;
  1552. height:13px;
  1553. }
  1554. #u5576 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:1665px;
  1558. top:100px;
  1559. width:13px;
  1560. height:13px;
  1561. display:flex;
  1562. }
  1563. #u5576 .text {
  1564. position:absolute;
  1565. align-self:center;
  1566. padding:2px 2px 2px 2px;
  1567. box-sizing:border-box;
  1568. width:100%;
  1569. }
  1570. #u5576_text {
  1571. border-width:0px;
  1572. word-wrap:break-word;
  1573. text-transform:none;
  1574. visibility:hidden;
  1575. }
  1576. #u5577 {
  1577. border-width:0px;
  1578. position:absolute;
  1579. left:0px;
  1580. top:0px;
  1581. width:0px;
  1582. height:0px;
  1583. }
  1584. #u5578_div {
  1585. border-width:0px;
  1586. position:absolute;
  1587. left:0px;
  1588. top:0px;
  1589. width:600px;
  1590. height:50px;
  1591. background:inherit;
  1592. background-color:rgba(255, 255, 255, 1);
  1593. box-sizing:border-box;
  1594. border-width:1px;
  1595. border-style:solid;
  1596. border-color:rgba(215, 215, 215, 1);
  1597. border-radius:0px;
  1598. -moz-box-shadow:none;
  1599. -webkit-box-shadow:none;
  1600. box-shadow:none;
  1601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1602. font-weight:400;
  1603. font-style:normal;
  1604. font-size:14px;
  1605. color:#AAAAAA;
  1606. text-align:center;
  1607. line-height:30px;
  1608. }
  1609. #u5578 {
  1610. border-width:0px;
  1611. position:absolute;
  1612. left:1117px;
  1613. top:1230px;
  1614. width:600px;
  1615. height:50px;
  1616. display:flex;
  1617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1618. font-weight:400;
  1619. font-style:normal;
  1620. font-size:14px;
  1621. color:#AAAAAA;
  1622. text-align:center;
  1623. line-height:30px;
  1624. }
  1625. #u5578 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:5px 10px 5px 10px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u5578_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u5579_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:80px;
  1644. height:30px;
  1645. background:inherit;
  1646. background-color:rgba(24, 144, 255, 1);
  1647. border:none;
  1648. border-radius:4px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:14px;
  1656. color:#FFFFFF;
  1657. }
  1658. #u5579 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:1615px;
  1662. top:1240px;
  1663. width:80px;
  1664. height:30px;
  1665. display:flex;
  1666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1667. font-weight:400;
  1668. font-style:normal;
  1669. font-size:14px;
  1670. color:#FFFFFF;
  1671. }
  1672. #u5579 .text {
  1673. position:absolute;
  1674. align-self:center;
  1675. padding:2px 2px 2px 2px;
  1676. box-sizing:border-box;
  1677. width:100%;
  1678. }
  1679. #u5579_text {
  1680. border-width:0px;
  1681. word-wrap:break-word;
  1682. text-transform:none;
  1683. }
  1684. #u5580_div {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:0px;
  1688. top:0px;
  1689. width:80px;
  1690. height:30px;
  1691. background:inherit;
  1692. background-color:rgba(255, 255, 255, 1);
  1693. box-sizing:border-box;
  1694. border-width:1px;
  1695. border-style:solid;
  1696. border-color:rgba(121, 121, 121, 1);
  1697. border-radius:4px;
  1698. -moz-box-shadow:none;
  1699. -webkit-box-shadow:none;
  1700. box-shadow:none;
  1701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1702. font-weight:400;
  1703. font-style:normal;
  1704. font-size:14px;
  1705. }
  1706. #u5580 {
  1707. border-width:0px;
  1708. position:absolute;
  1709. left:1525px;
  1710. top:1240px;
  1711. width:80px;
  1712. height:30px;
  1713. display:flex;
  1714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1715. font-weight:400;
  1716. font-style:normal;
  1717. font-size:14px;
  1718. }
  1719. #u5580 .text {
  1720. position:absolute;
  1721. align-self:center;
  1722. padding:2px 2px 2px 2px;
  1723. box-sizing:border-box;
  1724. width:100%;
  1725. }
  1726. #u5580_text {
  1727. border-width:0px;
  1728. word-wrap:break-word;
  1729. text-transform:none;
  1730. }
  1731. #u5581_div {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:0px;
  1735. top:0px;
  1736. width:102px;
  1737. height:30px;
  1738. background:inherit;
  1739. background-color:rgba(255, 255, 255, 0);
  1740. border:none;
  1741. border-top:0px;
  1742. border-right:0px;
  1743. border-bottom:0px;
  1744. border-radius:0px;
  1745. border-top-left-radius:0px;
  1746. border-bottom-left-radius:0px;
  1747. -moz-box-shadow:none;
  1748. -webkit-box-shadow:none;
  1749. box-shadow:none;
  1750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1751. font-weight:400;
  1752. font-style:normal;
  1753. font-size:14px;
  1754. }
  1755. #u5581 {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:1166px;
  1759. top:238px;
  1760. width:102px;
  1761. height:30px;
  1762. display:flex;
  1763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1764. font-weight:400;
  1765. font-style:normal;
  1766. font-size:14px;
  1767. }
  1768. #u5581 .text {
  1769. position:absolute;
  1770. align-self:center;
  1771. padding:5px 10px 5px 0px;
  1772. box-sizing:border-box;
  1773. width:100%;
  1774. }
  1775. #u5581_text {
  1776. border-width:0px;
  1777. white-space:nowrap;
  1778. text-transform:none;
  1779. }
  1780. #u5582 {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:0px;
  1784. top:0px;
  1785. width:0px;
  1786. height:0px;
  1787. }
  1788. #u5583_div {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:0px;
  1792. top:0px;
  1793. width:400px;
  1794. height:40px;
  1795. background:inherit;
  1796. background-color:rgba(255, 255, 255, 1);
  1797. box-sizing:border-box;
  1798. border-width:1px;
  1799. border-style:solid;
  1800. border-color:rgba(201, 201, 201, 1);
  1801. border-radius:4px;
  1802. -moz-box-shadow:none;
  1803. -webkit-box-shadow:none;
  1804. box-shadow:none;
  1805. font-family:'Microsoft YaHei', sans-serif;
  1806. font-weight:400;
  1807. font-style:normal;
  1808. font-size:14px;
  1809. color:#CCCCCC;
  1810. text-align:left;
  1811. }
  1812. #u5583 {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:1166px;
  1816. top:268px;
  1817. width:400px;
  1818. height:40px;
  1819. display:flex;
  1820. font-family:'Microsoft YaHei', sans-serif;
  1821. font-weight:400;
  1822. font-style:normal;
  1823. font-size:14px;
  1824. color:#CCCCCC;
  1825. text-align:left;
  1826. }
  1827. #u5583 .text {
  1828. position:absolute;
  1829. align-self:center;
  1830. padding:2px 8px 2px 8px;
  1831. box-sizing:border-box;
  1832. width:100%;
  1833. }
  1834. #u5583_text {
  1835. border-width:0px;
  1836. word-wrap:break-word;
  1837. text-transform:none;
  1838. visibility:hidden;
  1839. }
  1840. #u5584_input {
  1841. position:absolute;
  1842. left:0px;
  1843. top:0px;
  1844. width:380px;
  1845. height:38px;
  1846. padding:2px 2px 2px 2px;
  1847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1848. font-weight:400;
  1849. font-style:normal;
  1850. font-size:14px;
  1851. letter-spacing:normal;
  1852. color:#000000;
  1853. vertical-align:none;
  1854. text-align:left;
  1855. text-transform:none;
  1856. background-color:transparent;
  1857. border-color:transparent;
  1858. }
  1859. #u5584_input.disabled {
  1860. position:absolute;
  1861. left:0px;
  1862. top:0px;
  1863. width:380px;
  1864. height:38px;
  1865. padding:2px 2px 2px 2px;
  1866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1867. font-weight:400;
  1868. font-style:normal;
  1869. font-size:14px;
  1870. letter-spacing:normal;
  1871. color:#000000;
  1872. vertical-align:none;
  1873. text-align:left;
  1874. text-transform:none;
  1875. background-color:transparent;
  1876. border-color:transparent;
  1877. }
  1878. #u5584_div {
  1879. border-width:0px;
  1880. position:absolute;
  1881. left:0px;
  1882. top:0px;
  1883. width:380px;
  1884. height:38px;
  1885. background:inherit;
  1886. background-color:rgba(255, 255, 255, 1);
  1887. border:none;
  1888. border-radius:0px;
  1889. -moz-box-shadow:none;
  1890. -webkit-box-shadow:none;
  1891. box-shadow:none;
  1892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1893. font-weight:400;
  1894. font-style:normal;
  1895. font-size:14px;
  1896. }
  1897. #u5584 {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:1177px;
  1901. top:269px;
  1902. width:380px;
  1903. height:38px;
  1904. display:flex;
  1905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1906. font-weight:400;
  1907. font-style:normal;
  1908. font-size:14px;
  1909. }
  1910. #u5584 .text {
  1911. position:absolute;
  1912. align-self:center;
  1913. padding:2px 2px 2px 2px;
  1914. box-sizing:border-box;
  1915. width:100%;
  1916. }
  1917. #u5584_div.disabled {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:0px;
  1921. top:0px;
  1922. width:380px;
  1923. height:38px;
  1924. background:inherit;
  1925. background-color:rgba(240, 240, 240, 1);
  1926. border:none;
  1927. border-radius:0px;
  1928. -moz-box-shadow:none;
  1929. -webkit-box-shadow:none;
  1930. box-shadow:none;
  1931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1932. font-weight:400;
  1933. font-style:normal;
  1934. font-size:14px;
  1935. }
  1936. #u5584.disabled {
  1937. }
  1938. #u5585_div {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:0px;
  1942. top:0px;
  1943. width:74px;
  1944. height:30px;
  1945. background:inherit;
  1946. background-color:rgba(255, 255, 255, 0);
  1947. border:none;
  1948. border-top:0px;
  1949. border-right:0px;
  1950. border-bottom:0px;
  1951. border-radius:0px;
  1952. border-top-left-radius:0px;
  1953. border-bottom-left-radius:0px;
  1954. -moz-box-shadow:none;
  1955. -webkit-box-shadow:none;
  1956. box-shadow:none;
  1957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1958. font-weight:400;
  1959. font-style:normal;
  1960. font-size:14px;
  1961. }
  1962. #u5585 {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:1166px;
  1966. top:318px;
  1967. width:74px;
  1968. height:30px;
  1969. display:flex;
  1970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1971. font-weight:400;
  1972. font-style:normal;
  1973. font-size:14px;
  1974. }
  1975. #u5585 .text {
  1976. position:absolute;
  1977. align-self:center;
  1978. padding:5px 10px 5px 0px;
  1979. box-sizing:border-box;
  1980. width:100%;
  1981. }
  1982. #u5585_text {
  1983. border-width:0px;
  1984. white-space:nowrap;
  1985. text-transform:none;
  1986. }
  1987. #u5586 {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:0px;
  1991. top:0px;
  1992. width:0px;
  1993. height:0px;
  1994. }
  1995. #u5587_div {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:0px;
  1999. top:0px;
  2000. width:400px;
  2001. height:40px;
  2002. background:inherit;
  2003. background-color:rgba(255, 255, 255, 1);
  2004. box-sizing:border-box;
  2005. border-width:1px;
  2006. border-style:solid;
  2007. border-color:rgba(201, 201, 201, 1);
  2008. border-radius:4px;
  2009. -moz-box-shadow:none;
  2010. -webkit-box-shadow:none;
  2011. box-shadow:none;
  2012. font-family:'Microsoft YaHei', sans-serif;
  2013. font-weight:400;
  2014. font-style:normal;
  2015. font-size:14px;
  2016. color:#CCCCCC;
  2017. text-align:left;
  2018. }
  2019. #u5587 {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:1166px;
  2023. top:348px;
  2024. width:400px;
  2025. height:40px;
  2026. display:flex;
  2027. font-family:'Microsoft YaHei', sans-serif;
  2028. font-weight:400;
  2029. font-style:normal;
  2030. font-size:14px;
  2031. color:#CCCCCC;
  2032. text-align:left;
  2033. }
  2034. #u5587 .text {
  2035. position:absolute;
  2036. align-self:center;
  2037. padding:2px 8px 2px 8px;
  2038. box-sizing:border-box;
  2039. width:100%;
  2040. }
  2041. #u5587_text {
  2042. border-width:0px;
  2043. word-wrap:break-word;
  2044. text-transform:none;
  2045. visibility:hidden;
  2046. }
  2047. #u5588_input {
  2048. position:absolute;
  2049. left:0px;
  2050. top:0px;
  2051. width:380px;
  2052. height:38px;
  2053. padding:2px 2px 2px 2px;
  2054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2055. font-weight:400;
  2056. font-style:normal;
  2057. font-size:14px;
  2058. letter-spacing:normal;
  2059. color:#000000;
  2060. vertical-align:none;
  2061. text-align:left;
  2062. text-transform:none;
  2063. background-color:transparent;
  2064. border-color:transparent;
  2065. }
  2066. #u5588_input.disabled {
  2067. position:absolute;
  2068. left:0px;
  2069. top:0px;
  2070. width:380px;
  2071. height:38px;
  2072. padding:2px 2px 2px 2px;
  2073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2074. font-weight:400;
  2075. font-style:normal;
  2076. font-size:14px;
  2077. letter-spacing:normal;
  2078. color:#000000;
  2079. vertical-align:none;
  2080. text-align:left;
  2081. text-transform:none;
  2082. background-color:transparent;
  2083. border-color:transparent;
  2084. }
  2085. #u5588_div {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:0px;
  2089. top:0px;
  2090. width:380px;
  2091. height:38px;
  2092. background:inherit;
  2093. background-color:rgba(255, 255, 255, 1);
  2094. border:none;
  2095. border-radius:0px;
  2096. -moz-box-shadow:none;
  2097. -webkit-box-shadow:none;
  2098. box-shadow:none;
  2099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2100. font-weight:400;
  2101. font-style:normal;
  2102. font-size:14px;
  2103. }
  2104. #u5588 {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:1177px;
  2108. top:349px;
  2109. width:380px;
  2110. height:38px;
  2111. display:flex;
  2112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2113. font-weight:400;
  2114. font-style:normal;
  2115. font-size:14px;
  2116. }
  2117. #u5588 .text {
  2118. position:absolute;
  2119. align-self:center;
  2120. padding:2px 2px 2px 2px;
  2121. box-sizing:border-box;
  2122. width:100%;
  2123. }
  2124. #u5588_div.disabled {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:0px;
  2128. top:0px;
  2129. width:380px;
  2130. height:38px;
  2131. background:inherit;
  2132. background-color:rgba(240, 240, 240, 1);
  2133. border:none;
  2134. border-radius:0px;
  2135. -moz-box-shadow:none;
  2136. -webkit-box-shadow:none;
  2137. box-shadow:none;
  2138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2139. font-weight:400;
  2140. font-style:normal;
  2141. font-size:14px;
  2142. }
  2143. #u5588.disabled {
  2144. }
  2145. #u5589_div {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:0px;
  2149. top:0px;
  2150. width:127px;
  2151. height:30px;
  2152. background:inherit;
  2153. background-color:rgba(255, 255, 255, 0);
  2154. border:none;
  2155. border-top:0px;
  2156. border-right:0px;
  2157. border-bottom:0px;
  2158. border-radius:0px;
  2159. border-top-left-radius:0px;
  2160. border-bottom-left-radius:0px;
  2161. -moz-box-shadow:none;
  2162. -webkit-box-shadow:none;
  2163. box-shadow:none;
  2164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2165. font-weight:400;
  2166. font-style:normal;
  2167. font-size:14px;
  2168. }
  2169. #u5589 {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:1166px;
  2173. top:408px;
  2174. width:127px;
  2175. height:30px;
  2176. display:flex;
  2177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2178. font-weight:400;
  2179. font-style:normal;
  2180. font-size:14px;
  2181. }
  2182. #u5589 .text {
  2183. position:absolute;
  2184. align-self:center;
  2185. padding:5px 10px 5px 0px;
  2186. box-sizing:border-box;
  2187. width:100%;
  2188. }
  2189. #u5589_text {
  2190. border-width:0px;
  2191. white-space:nowrap;
  2192. text-transform:none;
  2193. }
  2194. #u5590 {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:0px;
  2198. top:0px;
  2199. width:0px;
  2200. height:0px;
  2201. }
  2202. #u5591 {
  2203. border-width:0px;
  2204. position:absolute;
  2205. left:0px;
  2206. top:0px;
  2207. width:0px;
  2208. height:0px;
  2209. }
  2210. #u5592_img {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:0px;
  2214. top:0px;
  2215. width:400px;
  2216. height:120px;
  2217. }
  2218. #u5592 {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:1166px;
  2222. top:448px;
  2223. width:400px;
  2224. height:120px;
  2225. display:flex;
  2226. font-family:'Microsoft YaHei', sans-serif;
  2227. font-weight:400;
  2228. font-style:normal;
  2229. font-size:14px;
  2230. color:#CCCCCC;
  2231. text-align:left;
  2232. }
  2233. #u5592 .text {
  2234. position:absolute;
  2235. align-self:center;
  2236. padding:2px 8px 2px 8px;
  2237. box-sizing:border-box;
  2238. width:100%;
  2239. }
  2240. #u5592_text {
  2241. border-width:0px;
  2242. word-wrap:break-word;
  2243. text-transform:none;
  2244. visibility:hidden;
  2245. }
  2246. #u5593_img {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:0px;
  2250. top:0px;
  2251. width:41px;
  2252. height:30px;
  2253. }
  2254. #u5593 {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:1346px;
  2258. top:470px;
  2259. width:41px;
  2260. height:30px;
  2261. display:flex;
  2262. }
  2263. #u5593 .text {
  2264. position:absolute;
  2265. align-self:center;
  2266. padding:2px 2px 2px 2px;
  2267. box-sizing:border-box;
  2268. width:100%;
  2269. }
  2270. #u5593_text {
  2271. border-width:0px;
  2272. word-wrap:break-word;
  2273. text-transform:none;
  2274. visibility:hidden;
  2275. }
  2276. #u5594_div {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:0px;
  2280. top:0px;
  2281. width:277px;
  2282. height:30px;
  2283. background:inherit;
  2284. background-color:rgba(255, 255, 255, 0);
  2285. border:none;
  2286. border-top:0px;
  2287. border-right:0px;
  2288. border-bottom:0px;
  2289. border-radius:0px;
  2290. border-top-left-radius:0px;
  2291. border-bottom-left-radius:0px;
  2292. -moz-box-shadow:none;
  2293. -webkit-box-shadow:none;
  2294. box-shadow:none;
  2295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2296. font-weight:400;
  2297. font-style:normal;
  2298. font-size:14px;
  2299. }
  2300. #u5594 {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:1228px;
  2304. top:508px;
  2305. width:277px;
  2306. height:30px;
  2307. display:flex;
  2308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2309. font-weight:400;
  2310. font-style:normal;
  2311. font-size:14px;
  2312. }
  2313. #u5594 .text {
  2314. position:absolute;
  2315. align-self:center;
  2316. padding:5px 10px 5px 0px;
  2317. box-sizing:border-box;
  2318. width:100%;
  2319. }
  2320. #u5594_text {
  2321. border-width:0px;
  2322. white-space:nowrap;
  2323. text-transform:none;
  2324. }
  2325. #u5595_div {
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:0px;
  2329. top:0px;
  2330. width:169px;
  2331. height:27px;
  2332. background:inherit;
  2333. background-color:rgba(255, 255, 255, 0);
  2334. border:none;
  2335. border-top:0px;
  2336. border-right:0px;
  2337. border-bottom:0px;
  2338. border-radius:0px;
  2339. border-top-left-radius:0px;
  2340. border-bottom-left-radius:0px;
  2341. -moz-box-shadow:none;
  2342. -webkit-box-shadow:none;
  2343. box-shadow:none;
  2344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2345. font-weight:400;
  2346. font-style:normal;
  2347. font-size:12px;
  2348. color:#AAAAAA;
  2349. }
  2350. #u5595 {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:1278px;
  2354. top:534px;
  2355. width:169px;
  2356. height:27px;
  2357. display:flex;
  2358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2359. font-weight:400;
  2360. font-style:normal;
  2361. font-size:12px;
  2362. color:#AAAAAA;
  2363. }
  2364. #u5595 .text {
  2365. position:absolute;
  2366. align-self:center;
  2367. padding:5px 10px 5px 0px;
  2368. box-sizing:border-box;
  2369. width:100%;
  2370. }
  2371. #u5595_text {
  2372. border-width:0px;
  2373. white-space:nowrap;
  2374. text-transform:none;
  2375. }
  2376. #u5596_div {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:0px;
  2381. width:46px;
  2382. height:30px;
  2383. background:inherit;
  2384. background-color:rgba(255, 255, 255, 0);
  2385. border:none;
  2386. border-top:0px;
  2387. border-right:0px;
  2388. border-bottom:0px;
  2389. border-radius:0px;
  2390. border-top-left-radius:0px;
  2391. border-bottom-left-radius:0px;
  2392. -moz-box-shadow:none;
  2393. -webkit-box-shadow:none;
  2394. box-shadow:none;
  2395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2396. font-weight:400;
  2397. font-style:normal;
  2398. font-size:14px;
  2399. }
  2400. #u5596 {
  2401. border-width:0px;
  2402. position:absolute;
  2403. left:1166px;
  2404. top:158px;
  2405. width:46px;
  2406. height:30px;
  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. }
  2413. #u5596 .text {
  2414. position:absolute;
  2415. align-self:center;
  2416. padding:5px 10px 5px 0px;
  2417. box-sizing:border-box;
  2418. width:100%;
  2419. }
  2420. #u5596_text {
  2421. border-width:0px;
  2422. white-space:nowrap;
  2423. text-transform:none;
  2424. }
  2425. #u5597 {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:0px;
  2429. top:0px;
  2430. width:0px;
  2431. height:0px;
  2432. }
  2433. #u5598_div {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:0px;
  2437. top:0px;
  2438. width:400px;
  2439. height:40px;
  2440. background:inherit;
  2441. background-color:rgba(242, 242, 242, 1);
  2442. box-sizing:border-box;
  2443. border-width:1px;
  2444. border-style:solid;
  2445. border-color:rgba(215, 215, 215, 1);
  2446. border-radius:4px;
  2447. -moz-box-shadow:none;
  2448. -webkit-box-shadow:none;
  2449. box-shadow:none;
  2450. font-size:14px;
  2451. }
  2452. #u5598 {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:1166px;
  2456. top:188px;
  2457. width:400px;
  2458. height:40px;
  2459. display:flex;
  2460. font-size:14px;
  2461. }
  2462. #u5598 .text {
  2463. position:absolute;
  2464. align-self:center;
  2465. padding:2px 2px 2px 2px;
  2466. box-sizing:border-box;
  2467. width:100%;
  2468. }
  2469. #u5598_text {
  2470. border-width:0px;
  2471. word-wrap:break-word;
  2472. text-transform:none;
  2473. visibility:hidden;
  2474. }
  2475. #u5599_input {
  2476. position:absolute;
  2477. left:0px;
  2478. top:0px;
  2479. width:382px;
  2480. height:31px;
  2481. padding:2px 2px 2px 2px;
  2482. font-family:'ArialMT', 'Arial', sans-serif;
  2483. font-weight:400;
  2484. font-style:normal;
  2485. font-size:14px;
  2486. letter-spacing:normal;
  2487. color:#AAAAAA;
  2488. vertical-align:none;
  2489. text-align:left;
  2490. text-transform:none;
  2491. background-color:transparent;
  2492. border-color:transparent;
  2493. }
  2494. #u5599_input.disabled {
  2495. position:absolute;
  2496. left:0px;
  2497. top:0px;
  2498. width:382px;
  2499. height:31px;
  2500. padding:2px 2px 2px 2px;
  2501. font-family:'ArialMT', 'Arial', sans-serif;
  2502. font-weight:400;
  2503. font-style:normal;
  2504. font-size:14px;
  2505. letter-spacing:normal;
  2506. color:#AAAAAA;
  2507. vertical-align:none;
  2508. text-align:left;
  2509. text-transform:none;
  2510. background-color:transparent;
  2511. border-color:transparent;
  2512. }
  2513. #u5599_div {
  2514. border-width:0px;
  2515. position:absolute;
  2516. left:0px;
  2517. top:0px;
  2518. width:382px;
  2519. height:31px;
  2520. background:inherit;
  2521. background-color:rgba(242, 242, 242, 1);
  2522. border:none;
  2523. border-radius:0px;
  2524. -moz-box-shadow:none;
  2525. -webkit-box-shadow:none;
  2526. box-shadow:none;
  2527. font-size:14px;
  2528. color:#AAAAAA;
  2529. }
  2530. #u5599 {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:1178px;
  2534. top:191px;
  2535. width:382px;
  2536. height:31px;
  2537. display:flex;
  2538. font-size:14px;
  2539. color:#AAAAAA;
  2540. }
  2541. #u5599 .text {
  2542. position:absolute;
  2543. align-self:flex-start;
  2544. padding:2px 2px 2px 2px;
  2545. box-sizing:border-box;
  2546. width:100%;
  2547. }
  2548. #u5599_div.disabled {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:0px;
  2552. top:0px;
  2553. width:382px;
  2554. height:31px;
  2555. background:inherit;
  2556. background-color:rgba(240, 240, 240, 1);
  2557. border:none;
  2558. border-radius:0px;
  2559. -moz-box-shadow:none;
  2560. -webkit-box-shadow:none;
  2561. box-shadow:none;
  2562. font-size:14px;
  2563. color:#AAAAAA;
  2564. }
  2565. #u5599.disabled {
  2566. }
  2567. .u5599_input_option {
  2568. font-size:14px;
  2569. }
  2570. #u5600 {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:0px;
  2574. top:0px;
  2575. width:0px;
  2576. height:0px;
  2577. }
  2578. #u5601 {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:0px;
  2582. top:0px;
  2583. width:0px;
  2584. height:0px;
  2585. }
  2586. #u5602_div {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:0px;
  2590. top:0px;
  2591. width:380px;
  2592. height:140px;
  2593. background:inherit;
  2594. background-color:rgba(255, 255, 255, 1);
  2595. border:none;
  2596. border-radius:4px;
  2597. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  2598. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  2599. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  2600. font-family:'Microsoft YaHei', sans-serif;
  2601. font-weight:400;
  2602. font-style:normal;
  2603. }
  2604. #u5602 {
  2605. border-width:0px;
  2606. position:absolute;
  2607. left:462px;
  2608. top:458px;
  2609. width:380px;
  2610. height:140px;
  2611. display:flex;
  2612. font-family:'Microsoft YaHei', sans-serif;
  2613. font-weight:400;
  2614. font-style:normal;
  2615. }
  2616. #u5602 .text {
  2617. position:absolute;
  2618. align-self:center;
  2619. padding:2px 2px 2px 2px;
  2620. box-sizing:border-box;
  2621. width:100%;
  2622. }
  2623. #u5602_text {
  2624. border-width:0px;
  2625. word-wrap:break-word;
  2626. text-transform:none;
  2627. visibility:hidden;
  2628. }
  2629. #u5603_div {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:0px;
  2633. top:0px;
  2634. width:299px;
  2635. height:22px;
  2636. background:inherit;
  2637. background-color:rgba(255, 255, 255, 0);
  2638. border:none;
  2639. border-radius:0px;
  2640. -moz-box-shadow:none;
  2641. -webkit-box-shadow:none;
  2642. box-shadow:none;
  2643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2644. font-weight:400;
  2645. font-style:normal;
  2646. font-size:14px;
  2647. color:#666666;
  2648. line-height:22px;
  2649. }
  2650. #u5603 {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:522px;
  2654. top:513px;
  2655. width:299px;
  2656. height:22px;
  2657. display:flex;
  2658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2659. font-weight:400;
  2660. font-style:normal;
  2661. font-size:14px;
  2662. color:#666666;
  2663. line-height:22px;
  2664. }
  2665. #u5603 .text {
  2666. position:absolute;
  2667. align-self:flex-start;
  2668. padding:0px 0px 0px 0px;
  2669. box-sizing:border-box;
  2670. width:100%;
  2671. }
  2672. #u5603_text {
  2673. border-width:0px;
  2674. word-wrap:break-word;
  2675. text-transform:none;
  2676. }
  2677. #u5604_div {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:0px;
  2681. top:0px;
  2682. width:127px;
  2683. height:21px;
  2684. background:inherit;
  2685. background-color:rgba(255, 255, 255, 0);
  2686. border:none;
  2687. border-radius:0px;
  2688. -moz-box-shadow:none;
  2689. -webkit-box-shadow:none;
  2690. box-shadow:none;
  2691. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2692. font-weight:650;
  2693. font-style:normal;
  2694. font-size:18px;
  2695. color:#000000;
  2696. line-height:22px;
  2697. }
  2698. #u5604 {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:522px;
  2702. top:483px;
  2703. width:127px;
  2704. height:21px;
  2705. display:flex;
  2706. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2707. font-weight:650;
  2708. font-style:normal;
  2709. font-size:18px;
  2710. color:#000000;
  2711. line-height:22px;
  2712. }
  2713. #u5604 .text {
  2714. position:absolute;
  2715. align-self:flex-start;
  2716. padding:0px 0px 0px 0px;
  2717. box-sizing:border-box;
  2718. width:100%;
  2719. }
  2720. #u5604_text {
  2721. border-width:0px;
  2722. white-space:nowrap;
  2723. text-transform:none;
  2724. }
  2725. #u5605_div {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:0px;
  2729. top:0px;
  2730. width:61px;
  2731. height:32px;
  2732. background:inherit;
  2733. background-color:rgba(24, 144, 255, 1);
  2734. border:none;
  2735. border-radius:4px;
  2736. -moz-box-shadow:none;
  2737. -webkit-box-shadow:none;
  2738. box-shadow:none;
  2739. font-family:'Microsoft YaHei', sans-serif;
  2740. font-weight:400;
  2741. font-style:normal;
  2742. font-size:14px;
  2743. color:#FFFFFF;
  2744. }
  2745. #u5605 {
  2746. border-width:0px;
  2747. position:absolute;
  2748. left:764px;
  2749. top:547px;
  2750. width:61px;
  2751. height:32px;
  2752. display:flex;
  2753. font-family:'Microsoft YaHei', sans-serif;
  2754. font-weight:400;
  2755. font-style:normal;
  2756. font-size:14px;
  2757. color:#FFFFFF;
  2758. }
  2759. #u5605 .text {
  2760. position:absolute;
  2761. align-self:center;
  2762. padding:2px 16px 2px 16px;
  2763. box-sizing:border-box;
  2764. width:100%;
  2765. }
  2766. #u5605_text {
  2767. border-width:0px;
  2768. white-space:nowrap;
  2769. text-transform:none;
  2770. }
  2771. #u5606_div {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:0px;
  2775. top:0px;
  2776. width:66px;
  2777. height:32px;
  2778. background:inherit;
  2779. background-color:rgba(255, 255, 255, 1);
  2780. box-sizing:border-box;
  2781. border-width:1px;
  2782. border-style:solid;
  2783. border-color:rgba(217, 217, 217, 1);
  2784. border-radius:4px;
  2785. -moz-box-shadow:none;
  2786. -webkit-box-shadow:none;
  2787. box-shadow:none;
  2788. font-family:'Microsoft YaHei', sans-serif;
  2789. font-weight:400;
  2790. font-style:normal;
  2791. font-size:14px;
  2792. color:rgba(0, 0, 0, 0.647058823529412);
  2793. line-height:21px;
  2794. }
  2795. #u5606 {
  2796. border-width:0px;
  2797. position:absolute;
  2798. left:682px;
  2799. top:547px;
  2800. width:66px;
  2801. height:32px;
  2802. display:flex;
  2803. font-family:'Microsoft YaHei', sans-serif;
  2804. font-weight:400;
  2805. font-style:normal;
  2806. font-size:14px;
  2807. color:rgba(0, 0, 0, 0.647058823529412);
  2808. line-height:21px;
  2809. }
  2810. #u5606 .text {
  2811. position:absolute;
  2812. align-self:center;
  2813. padding:2px 16px 2px 16px;
  2814. box-sizing:border-box;
  2815. width:100%;
  2816. }
  2817. #u5606_text {
  2818. border-width:0px;
  2819. white-space:nowrap;
  2820. text-transform:none;
  2821. }
  2822. #u5607_img {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:0px;
  2826. top:0px;
  2827. width:20px;
  2828. height:20px;
  2829. }
  2830. #u5607 {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:491px;
  2834. top:487px;
  2835. width:20px;
  2836. height:20px;
  2837. display:flex;
  2838. }
  2839. #u5607 .text {
  2840. position:absolute;
  2841. align-self:center;
  2842. padding:2px 2px 2px 2px;
  2843. box-sizing:border-box;
  2844. width:100%;
  2845. }
  2846. #u5607_text {
  2847. border-width:0px;
  2848. word-wrap:break-word;
  2849. text-transform:none;
  2850. visibility:hidden;
  2851. }
  2852. #u5608 {
  2853. border-width:0px;
  2854. position:absolute;
  2855. left:0px;
  2856. top:0px;
  2857. width:0px;
  2858. height:0px;
  2859. }
  2860. #u5609_div {
  2861. border-width:0px;
  2862. position:absolute;
  2863. left:0px;
  2864. top:0px;
  2865. width:380px;
  2866. height:140px;
  2867. background:inherit;
  2868. background-color:rgba(255, 255, 255, 1);
  2869. border:none;
  2870. border-radius:4px;
  2871. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  2872. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  2873. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  2874. font-family:'Microsoft YaHei', sans-serif;
  2875. font-weight:400;
  2876. font-style:normal;
  2877. }
  2878. #u5609 {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:462px;
  2882. top:619px;
  2883. width:380px;
  2884. height:140px;
  2885. display:flex;
  2886. font-family:'Microsoft YaHei', sans-serif;
  2887. font-weight:400;
  2888. font-style:normal;
  2889. }
  2890. #u5609 .text {
  2891. position:absolute;
  2892. align-self:center;
  2893. padding:2px 2px 2px 2px;
  2894. box-sizing:border-box;
  2895. width:100%;
  2896. }
  2897. #u5609_text {
  2898. border-width:0px;
  2899. word-wrap:break-word;
  2900. text-transform:none;
  2901. visibility:hidden;
  2902. }
  2903. #u5610_div {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:0px;
  2907. top:0px;
  2908. width:288px;
  2909. height:22px;
  2910. background:inherit;
  2911. background-color:rgba(255, 255, 255, 0);
  2912. border:none;
  2913. border-radius:0px;
  2914. -moz-box-shadow:none;
  2915. -webkit-box-shadow:none;
  2916. box-shadow:none;
  2917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2918. font-weight:400;
  2919. font-style:normal;
  2920. font-size:14px;
  2921. color:#666666;
  2922. line-height:22px;
  2923. }
  2924. #u5610 {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:522px;
  2928. top:674px;
  2929. width:288px;
  2930. height:22px;
  2931. display:flex;
  2932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2933. font-weight:400;
  2934. font-style:normal;
  2935. font-size:14px;
  2936. color:#666666;
  2937. line-height:22px;
  2938. }
  2939. #u5610 .text {
  2940. position:absolute;
  2941. align-self:flex-start;
  2942. padding:0px 0px 0px 0px;
  2943. box-sizing:border-box;
  2944. width:100%;
  2945. }
  2946. #u5610_text {
  2947. border-width:0px;
  2948. word-wrap:break-word;
  2949. text-transform:none;
  2950. }
  2951. #u5611_div {
  2952. border-width:0px;
  2953. position:absolute;
  2954. left:0px;
  2955. top:0px;
  2956. width:91px;
  2957. height:21px;
  2958. background:inherit;
  2959. background-color:rgba(255, 255, 255, 0);
  2960. border:none;
  2961. border-radius:0px;
  2962. -moz-box-shadow:none;
  2963. -webkit-box-shadow:none;
  2964. box-shadow:none;
  2965. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2966. font-weight:650;
  2967. font-style:normal;
  2968. font-size:18px;
  2969. color:#000000;
  2970. line-height:22px;
  2971. }
  2972. #u5611 {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:522px;
  2976. top:644px;
  2977. width:91px;
  2978. height:21px;
  2979. display:flex;
  2980. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2981. font-weight:650;
  2982. font-style:normal;
  2983. font-size:18px;
  2984. color:#000000;
  2985. line-height:22px;
  2986. }
  2987. #u5611 .text {
  2988. position:absolute;
  2989. align-self:flex-start;
  2990. padding:0px 0px 0px 0px;
  2991. box-sizing:border-box;
  2992. width:100%;
  2993. }
  2994. #u5611_text {
  2995. border-width:0px;
  2996. white-space:nowrap;
  2997. text-transform:none;
  2998. }
  2999. #u5612_div {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:0px;
  3003. top:0px;
  3004. width:61px;
  3005. height:32px;
  3006. background:inherit;
  3007. background-color:rgba(24, 144, 255, 1);
  3008. border:none;
  3009. border-radius:4px;
  3010. -moz-box-shadow:none;
  3011. -webkit-box-shadow:none;
  3012. box-shadow:none;
  3013. font-family:'Microsoft YaHei', sans-serif;
  3014. font-weight:400;
  3015. font-style:normal;
  3016. font-size:14px;
  3017. color:#FFFFFF;
  3018. }
  3019. #u5612 {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:761px;
  3023. top:708px;
  3024. width:61px;
  3025. height:32px;
  3026. display:flex;
  3027. font-family:'Microsoft YaHei', sans-serif;
  3028. font-weight:400;
  3029. font-style:normal;
  3030. font-size:14px;
  3031. color:#FFFFFF;
  3032. }
  3033. #u5612 .text {
  3034. position:absolute;
  3035. align-self:center;
  3036. padding:2px 16px 2px 16px;
  3037. box-sizing:border-box;
  3038. width:100%;
  3039. }
  3040. #u5612_text {
  3041. border-width:0px;
  3042. white-space:nowrap;
  3043. text-transform:none;
  3044. }
  3045. #u5613_div {
  3046. border-width:0px;
  3047. position:absolute;
  3048. left:0px;
  3049. top:0px;
  3050. width:66px;
  3051. height:32px;
  3052. background:inherit;
  3053. background-color:rgba(255, 255, 255, 1);
  3054. box-sizing:border-box;
  3055. border-width:1px;
  3056. border-style:solid;
  3057. border-color:rgba(217, 217, 217, 1);
  3058. border-radius:4px;
  3059. -moz-box-shadow:none;
  3060. -webkit-box-shadow:none;
  3061. box-shadow:none;
  3062. font-family:'Microsoft YaHei', sans-serif;
  3063. font-weight:400;
  3064. font-style:normal;
  3065. font-size:14px;
  3066. color:rgba(0, 0, 0, 0.647058823529412);
  3067. line-height:21px;
  3068. }
  3069. #u5613 {
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:682px;
  3073. top:708px;
  3074. width:66px;
  3075. height:32px;
  3076. display:flex;
  3077. font-family:'Microsoft YaHei', sans-serif;
  3078. font-weight:400;
  3079. font-style:normal;
  3080. font-size:14px;
  3081. color:rgba(0, 0, 0, 0.647058823529412);
  3082. line-height:21px;
  3083. }
  3084. #u5613 .text {
  3085. position:absolute;
  3086. align-self:center;
  3087. padding:2px 16px 2px 16px;
  3088. box-sizing:border-box;
  3089. width:100%;
  3090. }
  3091. #u5613_text {
  3092. border-width:0px;
  3093. white-space:nowrap;
  3094. text-transform:none;
  3095. }
  3096. #u5614_img {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:0px;
  3100. top:0px;
  3101. width:20px;
  3102. height:20px;
  3103. }
  3104. #u5614 {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:491px;
  3108. top:646px;
  3109. width:20px;
  3110. height:20px;
  3111. display:flex;
  3112. }
  3113. #u5614 .text {
  3114. position:absolute;
  3115. align-self:center;
  3116. padding:2px 2px 2px 2px;
  3117. box-sizing:border-box;
  3118. width:100%;
  3119. }
  3120. #u5614_text {
  3121. border-width:0px;
  3122. word-wrap:break-word;
  3123. text-transform:none;
  3124. visibility:hidden;
  3125. }
  3126. #u5615 {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:0px;
  3130. top:0px;
  3131. width:0px;
  3132. height:0px;
  3133. }
  3134. #u5616_div {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:0px;
  3138. top:0px;
  3139. width:1000px;
  3140. height:1196px;
  3141. background:inherit;
  3142. background-color:rgba(255, 255, 255, 1);
  3143. box-sizing:border-box;
  3144. border-width:1px;
  3145. border-style:solid;
  3146. border-color:rgba(215, 215, 215, 1);
  3147. border-radius:0px;
  3148. -moz-box-shadow:none;
  3149. -webkit-box-shadow:none;
  3150. box-shadow:none;
  3151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3152. font-weight:400;
  3153. font-style:normal;
  3154. font-size:14px;
  3155. color:#AAAAAA;
  3156. text-align:center;
  3157. line-height:30px;
  3158. }
  3159. #u5616 {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:91px;
  3163. top:1382px;
  3164. width:1000px;
  3165. height:1196px;
  3166. display:flex;
  3167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3168. font-weight:400;
  3169. font-style:normal;
  3170. font-size:14px;
  3171. color:#AAAAAA;
  3172. text-align:center;
  3173. line-height:30px;
  3174. }
  3175. #u5616 .text {
  3176. position:absolute;
  3177. align-self:center;
  3178. padding:5px 10px 5px 10px;
  3179. box-sizing:border-box;
  3180. width:100%;
  3181. }
  3182. #u5616_text {
  3183. border-width:0px;
  3184. word-wrap:break-word;
  3185. text-transform:none;
  3186. visibility:hidden;
  3187. }
  3188. #u5617_div {
  3189. border-width:0px;
  3190. position:absolute;
  3191. left:0px;
  3192. top:0px;
  3193. width:83px;
  3194. height:35px;
  3195. background:inherit;
  3196. background-color:rgba(255, 255, 255, 0);
  3197. border:none;
  3198. border-top:0px;
  3199. border-right:0px;
  3200. border-bottom:0px;
  3201. border-radius:0px;
  3202. border-top-left-radius:0px;
  3203. border-bottom-left-radius:0px;
  3204. -moz-box-shadow:none;
  3205. -webkit-box-shadow:none;
  3206. box-shadow:none;
  3207. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3208. font-weight:500;
  3209. font-style:normal;
  3210. font-size:18px;
  3211. }
  3212. #u5617 {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:111px;
  3216. top:1400px;
  3217. width:83px;
  3218. height:35px;
  3219. display:flex;
  3220. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3221. font-weight:500;
  3222. font-style:normal;
  3223. font-size:18px;
  3224. }
  3225. #u5617 .text {
  3226. position:absolute;
  3227. align-self:center;
  3228. padding:5px 10px 5px 0px;
  3229. box-sizing:border-box;
  3230. width:100%;
  3231. }
  3232. #u5617_text {
  3233. border-width:0px;
  3234. white-space:nowrap;
  3235. text-transform:none;
  3236. }
  3237. #u5618 {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:0px;
  3241. top:0px;
  3242. width:0px;
  3243. height:0px;
  3244. }
  3245. #u5619_div {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:0px;
  3249. top:0px;
  3250. width:40px;
  3251. height:40px;
  3252. background:inherit;
  3253. background-color:rgba(255, 255, 255, 0);
  3254. border:none;
  3255. border-top:0px;
  3256. border-right:0px;
  3257. border-bottom:0px;
  3258. border-radius:0px;
  3259. border-top-left-radius:0px;
  3260. border-bottom-left-radius:0px;
  3261. -moz-box-shadow:none;
  3262. -webkit-box-shadow:none;
  3263. box-shadow:none;
  3264. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3265. font-weight:500;
  3266. font-style:normal;
  3267. font-size:18px;
  3268. text-align:center;
  3269. }
  3270. #u5619 {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:1051px;
  3274. top:1382px;
  3275. width:40px;
  3276. height:40px;
  3277. display:flex;
  3278. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3279. font-weight:500;
  3280. font-style:normal;
  3281. font-size:18px;
  3282. text-align:center;
  3283. }
  3284. #u5619 .text {
  3285. position:absolute;
  3286. align-self:center;
  3287. padding:5px 10px 5px 0px;
  3288. box-sizing:border-box;
  3289. width:100%;
  3290. }
  3291. #u5619_text {
  3292. border-width:0px;
  3293. word-wrap:break-word;
  3294. text-transform:none;
  3295. }
  3296. #u5620_img {
  3297. border-width:0px;
  3298. position:absolute;
  3299. left:0px;
  3300. top:0px;
  3301. width:13px;
  3302. height:13px;
  3303. }
  3304. #u5620 {
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:1039px;
  3308. top:1398px;
  3309. width:13px;
  3310. height:13px;
  3311. display:flex;
  3312. }
  3313. #u5620 .text {
  3314. position:absolute;
  3315. align-self:center;
  3316. padding:2px 2px 2px 2px;
  3317. box-sizing:border-box;
  3318. width:100%;
  3319. }
  3320. #u5620_text {
  3321. border-width:0px;
  3322. word-wrap:break-word;
  3323. text-transform:none;
  3324. visibility:hidden;
  3325. }
  3326. #u5621 {
  3327. border-width:0px;
  3328. position:absolute;
  3329. left:0px;
  3330. top:0px;
  3331. width:0px;
  3332. height:0px;
  3333. }
  3334. #u5622_div {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:0px;
  3338. top:0px;
  3339. width:1000px;
  3340. height:50px;
  3341. background:inherit;
  3342. background-color:rgba(255, 255, 255, 1);
  3343. box-sizing:border-box;
  3344. border-width:1px;
  3345. border-style:solid;
  3346. border-color:rgba(215, 215, 215, 1);
  3347. border-radius:0px;
  3348. -moz-box-shadow:none;
  3349. -webkit-box-shadow:none;
  3350. box-shadow:none;
  3351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3352. font-weight:400;
  3353. font-style:normal;
  3354. font-size:14px;
  3355. color:#AAAAAA;
  3356. text-align:center;
  3357. line-height:30px;
  3358. }
  3359. #u5622 {
  3360. border-width:0px;
  3361. position:absolute;
  3362. left:91px;
  3363. top:2528px;
  3364. width:1000px;
  3365. height:50px;
  3366. display:flex;
  3367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3368. font-weight:400;
  3369. font-style:normal;
  3370. font-size:14px;
  3371. color:#AAAAAA;
  3372. text-align:center;
  3373. line-height:30px;
  3374. }
  3375. #u5622 .text {
  3376. position:absolute;
  3377. align-self:center;
  3378. padding:5px 10px 5px 10px;
  3379. box-sizing:border-box;
  3380. width:100%;
  3381. }
  3382. #u5622_text {
  3383. border-width:0px;
  3384. word-wrap:break-word;
  3385. text-transform:none;
  3386. visibility:hidden;
  3387. }
  3388. #u5623_div {
  3389. border-width:0px;
  3390. position:absolute;
  3391. left:0px;
  3392. top:0px;
  3393. width:80px;
  3394. height:30px;
  3395. background:inherit;
  3396. background-color:rgba(24, 144, 255, 1);
  3397. border:none;
  3398. border-radius:4px;
  3399. -moz-box-shadow:none;
  3400. -webkit-box-shadow:none;
  3401. box-shadow:none;
  3402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3403. font-weight:400;
  3404. font-style:normal;
  3405. font-size:14px;
  3406. color:#FFFFFF;
  3407. }
  3408. #u5623 {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:989px;
  3412. top:2538px;
  3413. width:80px;
  3414. height:30px;
  3415. display:flex;
  3416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3417. font-weight:400;
  3418. font-style:normal;
  3419. font-size:14px;
  3420. color:#FFFFFF;
  3421. }
  3422. #u5623 .text {
  3423. position:absolute;
  3424. align-self:center;
  3425. padding:2px 2px 2px 2px;
  3426. box-sizing:border-box;
  3427. width:100%;
  3428. }
  3429. #u5623_text {
  3430. border-width:0px;
  3431. word-wrap:break-word;
  3432. text-transform:none;
  3433. }
  3434. #u5624_div {
  3435. border-width:0px;
  3436. position:absolute;
  3437. left:0px;
  3438. top:0px;
  3439. width:80px;
  3440. height:30px;
  3441. background:inherit;
  3442. background-color:rgba(255, 255, 255, 1);
  3443. box-sizing:border-box;
  3444. border-width:1px;
  3445. border-style:solid;
  3446. border-color:rgba(121, 121, 121, 1);
  3447. border-radius:4px;
  3448. -moz-box-shadow:none;
  3449. -webkit-box-shadow:none;
  3450. box-shadow:none;
  3451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3452. font-weight:400;
  3453. font-style:normal;
  3454. font-size:14px;
  3455. }
  3456. #u5624 {
  3457. border-width:0px;
  3458. position:absolute;
  3459. left:899px;
  3460. top:2538px;
  3461. width:80px;
  3462. height:30px;
  3463. display:flex;
  3464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3465. font-weight:400;
  3466. font-style:normal;
  3467. font-size:14px;
  3468. }
  3469. #u5624 .text {
  3470. position:absolute;
  3471. align-self:center;
  3472. padding:2px 2px 2px 2px;
  3473. box-sizing:border-box;
  3474. width:100%;
  3475. }
  3476. #u5624_text {
  3477. border-width:0px;
  3478. word-wrap:break-word;
  3479. text-transform:none;
  3480. }
  3481. #u5625_div {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:0px;
  3485. top:0px;
  3486. width:75px;
  3487. height:32px;
  3488. background:inherit;
  3489. background-color:rgba(255, 255, 255, 0);
  3490. border:none;
  3491. border-top:0px;
  3492. border-right:0px;
  3493. border-bottom:0px;
  3494. border-radius:0px;
  3495. border-top-left-radius:0px;
  3496. border-bottom-left-radius:0px;
  3497. -moz-box-shadow:none;
  3498. -webkit-box-shadow:none;
  3499. box-shadow:none;
  3500. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3501. font-weight:500;
  3502. font-style:normal;
  3503. font-size:16px;
  3504. }
  3505. #u5625 {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:142px;
  3509. top:1453px;
  3510. width:75px;
  3511. height:32px;
  3512. display:flex;
  3513. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3514. font-weight:500;
  3515. font-style:normal;
  3516. font-size:16px;
  3517. }
  3518. #u5625 .text {
  3519. position:absolute;
  3520. align-self:center;
  3521. padding:5px 10px 5px 0px;
  3522. box-sizing:border-box;
  3523. width:100%;
  3524. }
  3525. #u5625_text {
  3526. border-width:0px;
  3527. white-space:nowrap;
  3528. text-transform:none;
  3529. }
  3530. #u5626 {
  3531. border-width:0px;
  3532. position:absolute;
  3533. left:142px;
  3534. top:1536px;
  3535. width:910px;
  3536. height:210px;
  3537. }
  3538. #u5627_img {
  3539. border-width:0px;
  3540. position:absolute;
  3541. left:0px;
  3542. top:0px;
  3543. width:228px;
  3544. height:30px;
  3545. }
  3546. #u5627 {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:0px;
  3550. top:0px;
  3551. width:228px;
  3552. height:30px;
  3553. display:flex;
  3554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3555. font-weight:400;
  3556. font-style:normal;
  3557. color:#FFFFFF;
  3558. }
  3559. #u5627 .text {
  3560. position:absolute;
  3561. align-self:center;
  3562. padding:2px 2px 2px 2px;
  3563. box-sizing:border-box;
  3564. width:100%;
  3565. }
  3566. #u5627_text {
  3567. border-width:0px;
  3568. word-wrap:break-word;
  3569. text-transform:none;
  3570. }
  3571. #u5628_img {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:0px;
  3575. top:0px;
  3576. width:228px;
  3577. height:30px;
  3578. }
  3579. #u5628 {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:228px;
  3583. top:0px;
  3584. width:228px;
  3585. height:30px;
  3586. display:flex;
  3587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3588. font-weight:400;
  3589. font-style:normal;
  3590. color:#FFFFFF;
  3591. }
  3592. #u5628 .text {
  3593. position:absolute;
  3594. align-self:center;
  3595. padding:2px 2px 2px 2px;
  3596. box-sizing:border-box;
  3597. width:100%;
  3598. }
  3599. #u5628_text {
  3600. border-width:0px;
  3601. word-wrap:break-word;
  3602. text-transform:none;
  3603. }
  3604. #u5629_img {
  3605. border-width:0px;
  3606. position:absolute;
  3607. left:0px;
  3608. top:0px;
  3609. width:228px;
  3610. height:30px;
  3611. }
  3612. #u5629 {
  3613. border-width:0px;
  3614. position:absolute;
  3615. left:456px;
  3616. top:0px;
  3617. width:228px;
  3618. height:30px;
  3619. display:flex;
  3620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3621. font-weight:400;
  3622. font-style:normal;
  3623. color:#FFFFFF;
  3624. }
  3625. #u5629 .text {
  3626. position:absolute;
  3627. align-self:center;
  3628. padding:2px 2px 2px 2px;
  3629. box-sizing:border-box;
  3630. width:100%;
  3631. }
  3632. #u5629_text {
  3633. border-width:0px;
  3634. word-wrap:break-word;
  3635. text-transform:none;
  3636. }
  3637. #u5630_img {
  3638. border-width:0px;
  3639. position:absolute;
  3640. left:0px;
  3641. top:0px;
  3642. width:226px;
  3643. height:30px;
  3644. }
  3645. #u5630 {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:684px;
  3649. top:0px;
  3650. width:226px;
  3651. height:30px;
  3652. display:flex;
  3653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3654. font-weight:400;
  3655. font-style:normal;
  3656. color:#FFFFFF;
  3657. }
  3658. #u5630 .text {
  3659. position:absolute;
  3660. align-self:center;
  3661. padding:2px 2px 2px 2px;
  3662. box-sizing:border-box;
  3663. width:100%;
  3664. }
  3665. #u5630_text {
  3666. border-width:0px;
  3667. word-wrap:break-word;
  3668. text-transform:none;
  3669. }
  3670. #u5631_img {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:0px;
  3674. top:0px;
  3675. width:228px;
  3676. height:30px;
  3677. }
  3678. #u5631 {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:0px;
  3682. top:30px;
  3683. width:228px;
  3684. height:30px;
  3685. display:flex;
  3686. }
  3687. #u5631 .text {
  3688. position:absolute;
  3689. align-self:center;
  3690. padding:2px 2px 2px 2px;
  3691. box-sizing:border-box;
  3692. width:100%;
  3693. }
  3694. #u5631_text {
  3695. border-width:0px;
  3696. word-wrap:break-word;
  3697. text-transform:none;
  3698. }
  3699. #u5632_img {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:0px;
  3703. top:0px;
  3704. width:228px;
  3705. height:30px;
  3706. }
  3707. #u5632 {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:228px;
  3711. top:30px;
  3712. width:228px;
  3713. height:30px;
  3714. display:flex;
  3715. }
  3716. #u5632 .text {
  3717. position:absolute;
  3718. align-self:center;
  3719. padding:2px 2px 2px 2px;
  3720. box-sizing:border-box;
  3721. width:100%;
  3722. }
  3723. #u5632_text {
  3724. border-width:0px;
  3725. word-wrap:break-word;
  3726. text-transform:none;
  3727. }
  3728. #u5633_img {
  3729. border-width:0px;
  3730. position:absolute;
  3731. left:0px;
  3732. top:0px;
  3733. width:228px;
  3734. height:30px;
  3735. }
  3736. #u5633 {
  3737. border-width:0px;
  3738. position:absolute;
  3739. left:456px;
  3740. top:30px;
  3741. width:228px;
  3742. height:30px;
  3743. display:flex;
  3744. }
  3745. #u5633 .text {
  3746. position:absolute;
  3747. align-self:center;
  3748. padding:2px 2px 2px 2px;
  3749. box-sizing:border-box;
  3750. width:100%;
  3751. }
  3752. #u5633_text {
  3753. border-width:0px;
  3754. word-wrap:break-word;
  3755. text-transform:none;
  3756. }
  3757. #u5634_img {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:0px;
  3761. top:0px;
  3762. width:226px;
  3763. height:30px;
  3764. }
  3765. #u5634 {
  3766. border-width:0px;
  3767. position:absolute;
  3768. left:684px;
  3769. top:30px;
  3770. width:226px;
  3771. height:30px;
  3772. display:flex;
  3773. color:#1890FF;
  3774. }
  3775. #u5634 .text {
  3776. position:absolute;
  3777. align-self:center;
  3778. padding:2px 2px 2px 2px;
  3779. box-sizing:border-box;
  3780. width:100%;
  3781. }
  3782. #u5634_text {
  3783. border-width:0px;
  3784. word-wrap:break-word;
  3785. text-transform:none;
  3786. }
  3787. #u5635_img {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:0px;
  3791. top:0px;
  3792. width:228px;
  3793. height:30px;
  3794. }
  3795. #u5635 {
  3796. border-width:0px;
  3797. position:absolute;
  3798. left:0px;
  3799. top:60px;
  3800. width:228px;
  3801. height:30px;
  3802. display:flex;
  3803. }
  3804. #u5635 .text {
  3805. position:absolute;
  3806. align-self:center;
  3807. padding:2px 2px 2px 2px;
  3808. box-sizing:border-box;
  3809. width:100%;
  3810. }
  3811. #u5635_text {
  3812. border-width:0px;
  3813. word-wrap:break-word;
  3814. text-transform:none;
  3815. }
  3816. #u5636_img {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:0px;
  3820. top:0px;
  3821. width:228px;
  3822. height:30px;
  3823. }
  3824. #u5636 {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:228px;
  3828. top:60px;
  3829. width:228px;
  3830. height:30px;
  3831. display:flex;
  3832. }
  3833. #u5636 .text {
  3834. position:absolute;
  3835. align-self:center;
  3836. padding:2px 2px 2px 2px;
  3837. box-sizing:border-box;
  3838. width:100%;
  3839. }
  3840. #u5636_text {
  3841. border-width:0px;
  3842. word-wrap:break-word;
  3843. text-transform:none;
  3844. }
  3845. #u5637_img {
  3846. border-width:0px;
  3847. position:absolute;
  3848. left:0px;
  3849. top:0px;
  3850. width:228px;
  3851. height:30px;
  3852. }
  3853. #u5637 {
  3854. border-width:0px;
  3855. position:absolute;
  3856. left:456px;
  3857. top:60px;
  3858. width:228px;
  3859. height:30px;
  3860. display:flex;
  3861. }
  3862. #u5637 .text {
  3863. position:absolute;
  3864. align-self:center;
  3865. padding:2px 2px 2px 2px;
  3866. box-sizing:border-box;
  3867. width:100%;
  3868. }
  3869. #u5637_text {
  3870. border-width:0px;
  3871. word-wrap:break-word;
  3872. text-transform:none;
  3873. }
  3874. #u5638_img {
  3875. border-width:0px;
  3876. position:absolute;
  3877. left:0px;
  3878. top:0px;
  3879. width:226px;
  3880. height:30px;
  3881. }
  3882. #u5638 {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:684px;
  3886. top:60px;
  3887. width:226px;
  3888. height:30px;
  3889. display:flex;
  3890. color:#1890FF;
  3891. }
  3892. #u5638 .text {
  3893. position:absolute;
  3894. align-self:center;
  3895. padding:2px 2px 2px 2px;
  3896. box-sizing:border-box;
  3897. width:100%;
  3898. }
  3899. #u5638_text {
  3900. border-width:0px;
  3901. word-wrap:break-word;
  3902. text-transform:none;
  3903. }
  3904. #u5639_img {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:0px;
  3908. top:0px;
  3909. width:228px;
  3910. height:30px;
  3911. }
  3912. #u5639 {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:0px;
  3916. top:90px;
  3917. width:228px;
  3918. height:30px;
  3919. display:flex;
  3920. }
  3921. #u5639 .text {
  3922. position:absolute;
  3923. align-self:center;
  3924. padding:2px 2px 2px 2px;
  3925. box-sizing:border-box;
  3926. width:100%;
  3927. }
  3928. #u5639_text {
  3929. border-width:0px;
  3930. word-wrap:break-word;
  3931. text-transform:none;
  3932. }
  3933. #u5640_img {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:0px;
  3937. top:0px;
  3938. width:228px;
  3939. height:30px;
  3940. }
  3941. #u5640 {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:228px;
  3945. top:90px;
  3946. width:228px;
  3947. height:30px;
  3948. display:flex;
  3949. }
  3950. #u5640 .text {
  3951. position:absolute;
  3952. align-self:center;
  3953. padding:2px 2px 2px 2px;
  3954. box-sizing:border-box;
  3955. width:100%;
  3956. }
  3957. #u5640_text {
  3958. border-width:0px;
  3959. word-wrap:break-word;
  3960. text-transform:none;
  3961. }
  3962. #u5641_img {
  3963. border-width:0px;
  3964. position:absolute;
  3965. left:0px;
  3966. top:0px;
  3967. width:228px;
  3968. height:30px;
  3969. }
  3970. #u5641 {
  3971. border-width:0px;
  3972. position:absolute;
  3973. left:456px;
  3974. top:90px;
  3975. width:228px;
  3976. height:30px;
  3977. display:flex;
  3978. }
  3979. #u5641 .text {
  3980. position:absolute;
  3981. align-self:center;
  3982. padding:2px 2px 2px 2px;
  3983. box-sizing:border-box;
  3984. width:100%;
  3985. }
  3986. #u5641_text {
  3987. border-width:0px;
  3988. word-wrap:break-word;
  3989. text-transform:none;
  3990. }
  3991. #u5642_img {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:0px;
  3995. top:0px;
  3996. width:226px;
  3997. height:30px;
  3998. }
  3999. #u5642 {
  4000. border-width:0px;
  4001. position:absolute;
  4002. left:684px;
  4003. top:90px;
  4004. width:226px;
  4005. height:30px;
  4006. display:flex;
  4007. color:#1890FF;
  4008. }
  4009. #u5642 .text {
  4010. position:absolute;
  4011. align-self:center;
  4012. padding:2px 2px 2px 2px;
  4013. box-sizing:border-box;
  4014. width:100%;
  4015. }
  4016. #u5642_text {
  4017. border-width:0px;
  4018. word-wrap:break-word;
  4019. text-transform:none;
  4020. }
  4021. #u5643_img {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:0px;
  4025. top:0px;
  4026. width:228px;
  4027. height:30px;
  4028. }
  4029. #u5643 {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:0px;
  4033. top:120px;
  4034. width:228px;
  4035. height:30px;
  4036. display:flex;
  4037. }
  4038. #u5643 .text {
  4039. position:absolute;
  4040. align-self:center;
  4041. padding:2px 2px 2px 2px;
  4042. box-sizing:border-box;
  4043. width:100%;
  4044. }
  4045. #u5643_text {
  4046. border-width:0px;
  4047. word-wrap:break-word;
  4048. text-transform:none;
  4049. visibility:hidden;
  4050. }
  4051. #u5644_img {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:0px;
  4055. top:0px;
  4056. width:228px;
  4057. height:30px;
  4058. }
  4059. #u5644 {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:228px;
  4063. top:120px;
  4064. width:228px;
  4065. height:30px;
  4066. display:flex;
  4067. }
  4068. #u5644 .text {
  4069. position:absolute;
  4070. align-self:center;
  4071. padding:2px 2px 2px 2px;
  4072. box-sizing:border-box;
  4073. width:100%;
  4074. }
  4075. #u5644_text {
  4076. border-width:0px;
  4077. word-wrap:break-word;
  4078. text-transform:none;
  4079. visibility:hidden;
  4080. }
  4081. #u5645_img {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:0px;
  4085. top:0px;
  4086. width:228px;
  4087. height:30px;
  4088. }
  4089. #u5645 {
  4090. border-width:0px;
  4091. position:absolute;
  4092. left:456px;
  4093. top:120px;
  4094. width:228px;
  4095. height:30px;
  4096. display:flex;
  4097. }
  4098. #u5645 .text {
  4099. position:absolute;
  4100. align-self:center;
  4101. padding:2px 2px 2px 2px;
  4102. box-sizing:border-box;
  4103. width:100%;
  4104. }
  4105. #u5645_text {
  4106. border-width:0px;
  4107. word-wrap:break-word;
  4108. text-transform:none;
  4109. visibility:hidden;
  4110. }
  4111. #u5646_img {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:0px;
  4115. top:0px;
  4116. width:226px;
  4117. height:30px;
  4118. }
  4119. #u5646 {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:684px;
  4123. top:120px;
  4124. width:226px;
  4125. height:30px;
  4126. display:flex;
  4127. }
  4128. #u5646 .text {
  4129. position:absolute;
  4130. align-self:center;
  4131. padding:2px 2px 2px 2px;
  4132. box-sizing:border-box;
  4133. width:100%;
  4134. }
  4135. #u5646_text {
  4136. border-width:0px;
  4137. word-wrap:break-word;
  4138. text-transform:none;
  4139. visibility:hidden;
  4140. }
  4141. #u5647_img {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:0px;
  4145. top:0px;
  4146. width:228px;
  4147. height:30px;
  4148. }
  4149. #u5647 {
  4150. border-width:0px;
  4151. position:absolute;
  4152. left:0px;
  4153. top:150px;
  4154. width:228px;
  4155. height:30px;
  4156. display:flex;
  4157. }
  4158. #u5647 .text {
  4159. position:absolute;
  4160. align-self:center;
  4161. padding:2px 2px 2px 2px;
  4162. box-sizing:border-box;
  4163. width:100%;
  4164. }
  4165. #u5647_text {
  4166. border-width:0px;
  4167. word-wrap:break-word;
  4168. text-transform:none;
  4169. visibility:hidden;
  4170. }
  4171. #u5648_img {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:0px;
  4175. top:0px;
  4176. width:228px;
  4177. height:30px;
  4178. }
  4179. #u5648 {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:228px;
  4183. top:150px;
  4184. width:228px;
  4185. height:30px;
  4186. display:flex;
  4187. }
  4188. #u5648 .text {
  4189. position:absolute;
  4190. align-self:center;
  4191. padding:2px 2px 2px 2px;
  4192. box-sizing:border-box;
  4193. width:100%;
  4194. }
  4195. #u5648_text {
  4196. border-width:0px;
  4197. word-wrap:break-word;
  4198. text-transform:none;
  4199. visibility:hidden;
  4200. }
  4201. #u5649_img {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:0px;
  4205. top:0px;
  4206. width:228px;
  4207. height:30px;
  4208. }
  4209. #u5649 {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:456px;
  4213. top:150px;
  4214. width:228px;
  4215. height:30px;
  4216. display:flex;
  4217. }
  4218. #u5649 .text {
  4219. position:absolute;
  4220. align-self:center;
  4221. padding:2px 2px 2px 2px;
  4222. box-sizing:border-box;
  4223. width:100%;
  4224. }
  4225. #u5649_text {
  4226. border-width:0px;
  4227. word-wrap:break-word;
  4228. text-transform:none;
  4229. visibility:hidden;
  4230. }
  4231. #u5650_img {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:0px;
  4235. top:0px;
  4236. width:226px;
  4237. height:30px;
  4238. }
  4239. #u5650 {
  4240. border-width:0px;
  4241. position:absolute;
  4242. left:684px;
  4243. top:150px;
  4244. width:226px;
  4245. height:30px;
  4246. display:flex;
  4247. }
  4248. #u5650 .text {
  4249. position:absolute;
  4250. align-self:center;
  4251. padding:2px 2px 2px 2px;
  4252. box-sizing:border-box;
  4253. width:100%;
  4254. }
  4255. #u5650_text {
  4256. border-width:0px;
  4257. word-wrap:break-word;
  4258. text-transform:none;
  4259. visibility:hidden;
  4260. }
  4261. #u5651_img {
  4262. border-width:0px;
  4263. position:absolute;
  4264. left:0px;
  4265. top:0px;
  4266. width:228px;
  4267. height:30px;
  4268. }
  4269. #u5651 {
  4270. border-width:0px;
  4271. position:absolute;
  4272. left:0px;
  4273. top:180px;
  4274. width:228px;
  4275. height:30px;
  4276. display:flex;
  4277. }
  4278. #u5651 .text {
  4279. position:absolute;
  4280. align-self:center;
  4281. padding:2px 2px 2px 2px;
  4282. box-sizing:border-box;
  4283. width:100%;
  4284. }
  4285. #u5651_text {
  4286. border-width:0px;
  4287. word-wrap:break-word;
  4288. text-transform:none;
  4289. visibility:hidden;
  4290. }
  4291. #u5652_img {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:0px;
  4295. top:0px;
  4296. width:228px;
  4297. height:30px;
  4298. }
  4299. #u5652 {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:228px;
  4303. top:180px;
  4304. width:228px;
  4305. height:30px;
  4306. display:flex;
  4307. }
  4308. #u5652 .text {
  4309. position:absolute;
  4310. align-self:center;
  4311. padding:2px 2px 2px 2px;
  4312. box-sizing:border-box;
  4313. width:100%;
  4314. }
  4315. #u5652_text {
  4316. border-width:0px;
  4317. word-wrap:break-word;
  4318. text-transform:none;
  4319. visibility:hidden;
  4320. }
  4321. #u5653_img {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:0px;
  4325. top:0px;
  4326. width:228px;
  4327. height:30px;
  4328. }
  4329. #u5653 {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:456px;
  4333. top:180px;
  4334. width:228px;
  4335. height:30px;
  4336. display:flex;
  4337. }
  4338. #u5653 .text {
  4339. position:absolute;
  4340. align-self:center;
  4341. padding:2px 2px 2px 2px;
  4342. box-sizing:border-box;
  4343. width:100%;
  4344. }
  4345. #u5653_text {
  4346. border-width:0px;
  4347. word-wrap:break-word;
  4348. text-transform:none;
  4349. visibility:hidden;
  4350. }
  4351. #u5654_img {
  4352. border-width:0px;
  4353. position:absolute;
  4354. left:0px;
  4355. top:0px;
  4356. width:226px;
  4357. height:30px;
  4358. }
  4359. #u5654 {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:684px;
  4363. top:180px;
  4364. width:226px;
  4365. height:30px;
  4366. display:flex;
  4367. }
  4368. #u5654 .text {
  4369. position:absolute;
  4370. align-self:center;
  4371. padding:2px 2px 2px 2px;
  4372. box-sizing:border-box;
  4373. width:100%;
  4374. }
  4375. #u5654_text {
  4376. border-width:0px;
  4377. word-wrap:break-word;
  4378. text-transform:none;
  4379. visibility:hidden;
  4380. }
  4381. #u5655_div {
  4382. border-width:0px;
  4383. position:absolute;
  4384. left:0px;
  4385. top:0px;
  4386. width:80px;
  4387. height:30px;
  4388. background:inherit;
  4389. background-color:rgba(41, 143, 255, 1);
  4390. border:none;
  4391. border-top:0px;
  4392. border-right:0px;
  4393. border-bottom:0px;
  4394. border-radius:0px;
  4395. border-top-left-radius:0px;
  4396. border-bottom-left-radius:0px;
  4397. -moz-box-shadow:none;
  4398. -webkit-box-shadow:none;
  4399. box-shadow:none;
  4400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4401. font-weight:400;
  4402. font-style:normal;
  4403. font-size:14px;
  4404. color:#FFFFFF;
  4405. text-align:center;
  4406. }
  4407. #u5655 {
  4408. border-width:0px;
  4409. position:absolute;
  4410. left:972px;
  4411. top:1453px;
  4412. width:80px;
  4413. height:30px;
  4414. display:flex;
  4415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4416. font-weight:400;
  4417. font-style:normal;
  4418. font-size:14px;
  4419. color:#FFFFFF;
  4420. text-align:center;
  4421. }
  4422. #u5655 .text {
  4423. position:absolute;
  4424. align-self:center;
  4425. padding:5px 0px 5px 0px;
  4426. box-sizing:border-box;
  4427. width:100%;
  4428. }
  4429. #u5655_text {
  4430. border-width:0px;
  4431. word-wrap:break-word;
  4432. text-transform:none;
  4433. }
  4434. #u5656_div {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:0px;
  4438. top:0px;
  4439. width:80px;
  4440. height:30px;
  4441. background:inherit;
  4442. background-color:rgba(255, 255, 255, 1);
  4443. box-sizing:border-box;
  4444. border-width:1px;
  4445. border-style:solid;
  4446. border-color:rgba(51, 51, 51, 1);
  4447. border-radius:0px;
  4448. -moz-box-shadow:none;
  4449. -webkit-box-shadow:none;
  4450. box-shadow:none;
  4451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4452. font-weight:400;
  4453. font-style:normal;
  4454. font-size:14px;
  4455. text-align:center;
  4456. }
  4457. #u5656 {
  4458. border-width:0px;
  4459. position:absolute;
  4460. left:879px;
  4461. top:1453px;
  4462. width:80px;
  4463. height:30px;
  4464. display:flex;
  4465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4466. font-weight:400;
  4467. font-style:normal;
  4468. font-size:14px;
  4469. text-align:center;
  4470. }
  4471. #u5656 .text {
  4472. position:absolute;
  4473. align-self:center;
  4474. padding:5px 0px 5px 0px;
  4475. box-sizing:border-box;
  4476. width:100%;
  4477. }
  4478. #u5656_text {
  4479. border-width:0px;
  4480. word-wrap:break-word;
  4481. text-transform:none;
  4482. }
  4483. #u5657_div {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:0px;
  4487. top:0px;
  4488. width:64px;
  4489. height:32px;
  4490. background:inherit;
  4491. background-color:rgba(24, 144, 255, 1);
  4492. border:none;
  4493. border-radius:31px;
  4494. -moz-box-shadow:none;
  4495. -webkit-box-shadow:none;
  4496. box-shadow:none;
  4497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4498. font-weight:400;
  4499. font-style:normal;
  4500. font-size:16px;
  4501. color:#FFFFFF;
  4502. }
  4503. #u5657 {
  4504. border-width:0px;
  4505. position:absolute;
  4506. left:142px;
  4507. top:1494px;
  4508. width:64px;
  4509. height:32px;
  4510. display:flex;
  4511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4512. font-weight:400;
  4513. font-style:normal;
  4514. font-size:16px;
  4515. color:#FFFFFF;
  4516. }
  4517. #u5657 .text {
  4518. position:absolute;
  4519. align-self:center;
  4520. padding:5px 10px 5px 10px;
  4521. box-sizing:border-box;
  4522. width:100%;
  4523. }
  4524. #u5657_text {
  4525. border-width:0px;
  4526. white-space:nowrap;
  4527. text-transform:none;
  4528. }
  4529. #u5658_div {
  4530. border-width:0px;
  4531. position:absolute;
  4532. left:0px;
  4533. top:0px;
  4534. width:64px;
  4535. height:32px;
  4536. background:inherit;
  4537. background-color:rgba(242, 242, 242, 1);
  4538. border:none;
  4539. border-radius:31px;
  4540. -moz-box-shadow:none;
  4541. -webkit-box-shadow:none;
  4542. box-shadow:none;
  4543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4544. font-weight:400;
  4545. font-style:normal;
  4546. font-size:16px;
  4547. color:#AAAAAA;
  4548. }
  4549. #u5658 {
  4550. border-width:0px;
  4551. position:absolute;
  4552. left:216px;
  4553. top:1494px;
  4554. width:64px;
  4555. height:32px;
  4556. display:flex;
  4557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4558. font-weight:400;
  4559. font-style:normal;
  4560. font-size:16px;
  4561. color:#AAAAAA;
  4562. }
  4563. #u5658 .text {
  4564. position:absolute;
  4565. align-self:center;
  4566. padding:5px 10px 5px 10px;
  4567. box-sizing:border-box;
  4568. width:100%;
  4569. }
  4570. #u5658_text {
  4571. border-width:0px;
  4572. white-space:nowrap;
  4573. text-transform:none;
  4574. }
  4575. #u5659_div {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:0px;
  4579. top:0px;
  4580. width:65px;
  4581. height:32px;
  4582. background:inherit;
  4583. background-color:rgba(242, 242, 242, 1);
  4584. border:none;
  4585. border-radius:31px;
  4586. -moz-box-shadow:none;
  4587. -webkit-box-shadow:none;
  4588. box-shadow:none;
  4589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4590. font-weight:400;
  4591. font-style:normal;
  4592. font-size:16px;
  4593. color:#AAAAAA;
  4594. }
  4595. #u5659 {
  4596. border-width:0px;
  4597. position:absolute;
  4598. left:290px;
  4599. top:1494px;
  4600. width:65px;
  4601. height:32px;
  4602. display:flex;
  4603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4604. font-weight:400;
  4605. font-style:normal;
  4606. font-size:16px;
  4607. color:#AAAAAA;
  4608. }
  4609. #u5659 .text {
  4610. position:absolute;
  4611. align-self:center;
  4612. padding:5px 10px 5px 10px;
  4613. box-sizing:border-box;
  4614. width:100%;
  4615. }
  4616. #u5659_text {
  4617. border-width:0px;
  4618. white-space:nowrap;
  4619. text-transform:none;
  4620. }
  4621. #u5660 {
  4622. border-width:0px;
  4623. position:absolute;
  4624. left:0px;
  4625. top:0px;
  4626. width:0px;
  4627. height:0px;
  4628. }
  4629. #u5661_div {
  4630. border-width:0px;
  4631. position:absolute;
  4632. left:0px;
  4633. top:0px;
  4634. width:600px;
  4635. height:1196px;
  4636. background:inherit;
  4637. background-color:rgba(255, 255, 255, 1);
  4638. box-sizing:border-box;
  4639. border-width:1px;
  4640. border-style:solid;
  4641. border-color:rgba(215, 215, 215, 1);
  4642. border-radius:0px;
  4643. -moz-box-shadow:none;
  4644. -webkit-box-shadow:none;
  4645. box-shadow:none;
  4646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4647. font-weight:400;
  4648. font-style:normal;
  4649. font-size:14px;
  4650. color:#AAAAAA;
  4651. text-align:center;
  4652. line-height:30px;
  4653. }
  4654. #u5661 {
  4655. border-width:0px;
  4656. position:absolute;
  4657. left:1117px;
  4658. top:1382px;
  4659. width:600px;
  4660. height:1196px;
  4661. display:flex;
  4662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4663. font-weight:400;
  4664. font-style:normal;
  4665. font-size:14px;
  4666. color:#AAAAAA;
  4667. text-align:center;
  4668. line-height:30px;
  4669. }
  4670. #u5661 .text {
  4671. position:absolute;
  4672. align-self:center;
  4673. padding:5px 10px 5px 10px;
  4674. box-sizing:border-box;
  4675. width:100%;
  4676. }
  4677. #u5661_text {
  4678. border-width:0px;
  4679. word-wrap:break-word;
  4680. text-transform:none;
  4681. visibility:hidden;
  4682. }
  4683. #u5662_div {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:0px;
  4687. top:0px;
  4688. width:83px;
  4689. height:35px;
  4690. background:inherit;
  4691. background-color:rgba(255, 255, 255, 0);
  4692. border:none;
  4693. border-top:0px;
  4694. border-right:0px;
  4695. border-bottom:0px;
  4696. border-radius:0px;
  4697. border-top-left-radius:0px;
  4698. border-bottom-left-radius:0px;
  4699. -moz-box-shadow:none;
  4700. -webkit-box-shadow:none;
  4701. box-shadow:none;
  4702. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4703. font-weight:500;
  4704. font-style:normal;
  4705. font-size:18px;
  4706. }
  4707. #u5662 {
  4708. border-width:0px;
  4709. position:absolute;
  4710. left:1137px;
  4711. top:1400px;
  4712. width:83px;
  4713. height:35px;
  4714. display:flex;
  4715. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4716. font-weight:500;
  4717. font-style:normal;
  4718. font-size:18px;
  4719. }
  4720. #u5662 .text {
  4721. position:absolute;
  4722. align-self:center;
  4723. padding:5px 10px 5px 0px;
  4724. box-sizing:border-box;
  4725. width:100%;
  4726. }
  4727. #u5662_text {
  4728. border-width:0px;
  4729. white-space:nowrap;
  4730. text-transform:none;
  4731. }
  4732. #u5663 {
  4733. border-width:0px;
  4734. position:absolute;
  4735. left:0px;
  4736. top:0px;
  4737. width:0px;
  4738. height:0px;
  4739. }
  4740. #u5664_div {
  4741. border-width:0px;
  4742. position:absolute;
  4743. left:0px;
  4744. top:0px;
  4745. width:40px;
  4746. height:40px;
  4747. background:inherit;
  4748. background-color:rgba(255, 255, 255, 0);
  4749. border:none;
  4750. border-top:0px;
  4751. border-right:0px;
  4752. border-bottom:0px;
  4753. border-radius:0px;
  4754. border-top-left-radius:0px;
  4755. border-bottom-left-radius:0px;
  4756. -moz-box-shadow:none;
  4757. -webkit-box-shadow:none;
  4758. box-shadow:none;
  4759. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4760. font-weight:500;
  4761. font-style:normal;
  4762. font-size:18px;
  4763. text-align:center;
  4764. }
  4765. #u5664 {
  4766. border-width:0px;
  4767. position:absolute;
  4768. left:1677px;
  4769. top:1382px;
  4770. width:40px;
  4771. height:40px;
  4772. display:flex;
  4773. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4774. font-weight:500;
  4775. font-style:normal;
  4776. font-size:18px;
  4777. text-align:center;
  4778. }
  4779. #u5664 .text {
  4780. position:absolute;
  4781. align-self:center;
  4782. padding:5px 10px 5px 0px;
  4783. box-sizing:border-box;
  4784. width:100%;
  4785. }
  4786. #u5664_text {
  4787. border-width:0px;
  4788. word-wrap:break-word;
  4789. text-transform:none;
  4790. }
  4791. #u5665_img {
  4792. border-width:0px;
  4793. position:absolute;
  4794. left:0px;
  4795. top:0px;
  4796. width:13px;
  4797. height:13px;
  4798. }
  4799. #u5665 {
  4800. border-width:0px;
  4801. position:absolute;
  4802. left:1665px;
  4803. top:1398px;
  4804. width:13px;
  4805. height:13px;
  4806. display:flex;
  4807. }
  4808. #u5665 .text {
  4809. position:absolute;
  4810. align-self:center;
  4811. padding:2px 2px 2px 2px;
  4812. box-sizing:border-box;
  4813. width:100%;
  4814. }
  4815. #u5665_text {
  4816. border-width:0px;
  4817. word-wrap:break-word;
  4818. text-transform:none;
  4819. visibility:hidden;
  4820. }
  4821. #u5666 {
  4822. border-width:0px;
  4823. position:absolute;
  4824. left:0px;
  4825. top:0px;
  4826. width:0px;
  4827. height:0px;
  4828. }
  4829. #u5667_div {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:0px;
  4833. top:0px;
  4834. width:600px;
  4835. height:50px;
  4836. background:inherit;
  4837. background-color:rgba(255, 255, 255, 1);
  4838. box-sizing:border-box;
  4839. border-width:1px;
  4840. border-style:solid;
  4841. border-color:rgba(215, 215, 215, 1);
  4842. border-radius:0px;
  4843. -moz-box-shadow:none;
  4844. -webkit-box-shadow:none;
  4845. box-shadow:none;
  4846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4847. font-weight:400;
  4848. font-style:normal;
  4849. font-size:14px;
  4850. color:#AAAAAA;
  4851. text-align:center;
  4852. line-height:30px;
  4853. }
  4854. #u5667 {
  4855. border-width:0px;
  4856. position:absolute;
  4857. left:1117px;
  4858. top:2528px;
  4859. width:600px;
  4860. height:50px;
  4861. display:flex;
  4862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4863. font-weight:400;
  4864. font-style:normal;
  4865. font-size:14px;
  4866. color:#AAAAAA;
  4867. text-align:center;
  4868. line-height:30px;
  4869. }
  4870. #u5667 .text {
  4871. position:absolute;
  4872. align-self:center;
  4873. padding:5px 10px 5px 10px;
  4874. box-sizing:border-box;
  4875. width:100%;
  4876. }
  4877. #u5667_text {
  4878. border-width:0px;
  4879. word-wrap:break-word;
  4880. text-transform:none;
  4881. visibility:hidden;
  4882. }
  4883. #u5668_div {
  4884. border-width:0px;
  4885. position:absolute;
  4886. left:0px;
  4887. top:0px;
  4888. width:80px;
  4889. height:30px;
  4890. background:inherit;
  4891. background-color:rgba(24, 144, 255, 1);
  4892. border:none;
  4893. border-radius:4px;
  4894. -moz-box-shadow:none;
  4895. -webkit-box-shadow:none;
  4896. box-shadow:none;
  4897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4898. font-weight:400;
  4899. font-style:normal;
  4900. font-size:14px;
  4901. color:#FFFFFF;
  4902. }
  4903. #u5668 {
  4904. border-width:0px;
  4905. position:absolute;
  4906. left:1615px;
  4907. top:2538px;
  4908. width:80px;
  4909. height:30px;
  4910. display:flex;
  4911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4912. font-weight:400;
  4913. font-style:normal;
  4914. font-size:14px;
  4915. color:#FFFFFF;
  4916. }
  4917. #u5668 .text {
  4918. position:absolute;
  4919. align-self:center;
  4920. padding:2px 2px 2px 2px;
  4921. box-sizing:border-box;
  4922. width:100%;
  4923. }
  4924. #u5668_text {
  4925. border-width:0px;
  4926. word-wrap:break-word;
  4927. text-transform:none;
  4928. }
  4929. #u5669_div {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:0px;
  4933. top:0px;
  4934. width:80px;
  4935. height:30px;
  4936. background:inherit;
  4937. background-color:rgba(255, 255, 255, 1);
  4938. box-sizing:border-box;
  4939. border-width:1px;
  4940. border-style:solid;
  4941. border-color:rgba(121, 121, 121, 1);
  4942. border-radius:4px;
  4943. -moz-box-shadow:none;
  4944. -webkit-box-shadow:none;
  4945. box-shadow:none;
  4946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4947. font-weight:400;
  4948. font-style:normal;
  4949. font-size:14px;
  4950. }
  4951. #u5669 {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:1525px;
  4955. top:2538px;
  4956. width:80px;
  4957. height:30px;
  4958. display:flex;
  4959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4960. font-weight:400;
  4961. font-style:normal;
  4962. font-size:14px;
  4963. }
  4964. #u5669 .text {
  4965. position:absolute;
  4966. align-self:center;
  4967. padding:2px 2px 2px 2px;
  4968. box-sizing:border-box;
  4969. width:100%;
  4970. }
  4971. #u5669_text {
  4972. border-width:0px;
  4973. word-wrap:break-word;
  4974. text-transform:none;
  4975. }
  4976. #u5670_div {
  4977. border-width:0px;
  4978. position:absolute;
  4979. left:0px;
  4980. top:0px;
  4981. width:102px;
  4982. height:30px;
  4983. background:inherit;
  4984. background-color:rgba(255, 255, 255, 0);
  4985. border:none;
  4986. border-top:0px;
  4987. border-right:0px;
  4988. border-bottom:0px;
  4989. border-radius:0px;
  4990. border-top-left-radius:0px;
  4991. border-bottom-left-radius:0px;
  4992. -moz-box-shadow:none;
  4993. -webkit-box-shadow:none;
  4994. box-shadow:none;
  4995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4996. font-weight:400;
  4997. font-style:normal;
  4998. font-size:14px;
  4999. }
  5000. #u5670 {
  5001. border-width:0px;
  5002. position:absolute;
  5003. left:1166px;
  5004. top:1616px;
  5005. width:102px;
  5006. height:30px;
  5007. display:flex;
  5008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5009. font-weight:400;
  5010. font-style:normal;
  5011. font-size:14px;
  5012. }
  5013. #u5670 .text {
  5014. position:absolute;
  5015. align-self:center;
  5016. padding:5px 10px 5px 0px;
  5017. box-sizing:border-box;
  5018. width:100%;
  5019. }
  5020. #u5670_text {
  5021. border-width:0px;
  5022. white-space:nowrap;
  5023. text-transform:none;
  5024. }
  5025. #u5671 {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:0px;
  5029. top:0px;
  5030. width:0px;
  5031. height:0px;
  5032. }
  5033. #u5672_div {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:0px;
  5037. top:0px;
  5038. width:400px;
  5039. height:40px;
  5040. background:inherit;
  5041. background-color:rgba(255, 255, 255, 1);
  5042. box-sizing:border-box;
  5043. border-width:1px;
  5044. border-style:solid;
  5045. border-color:rgba(201, 201, 201, 1);
  5046. border-radius:4px;
  5047. -moz-box-shadow:none;
  5048. -webkit-box-shadow:none;
  5049. box-shadow:none;
  5050. font-family:'Microsoft YaHei', sans-serif;
  5051. font-weight:400;
  5052. font-style:normal;
  5053. font-size:14px;
  5054. color:#CCCCCC;
  5055. text-align:left;
  5056. }
  5057. #u5672 {
  5058. border-width:0px;
  5059. position:absolute;
  5060. left:1166px;
  5061. top:1646px;
  5062. width:400px;
  5063. height:40px;
  5064. display:flex;
  5065. font-family:'Microsoft YaHei', sans-serif;
  5066. font-weight:400;
  5067. font-style:normal;
  5068. font-size:14px;
  5069. color:#CCCCCC;
  5070. text-align:left;
  5071. }
  5072. #u5672 .text {
  5073. position:absolute;
  5074. align-self:center;
  5075. padding:2px 8px 2px 8px;
  5076. box-sizing:border-box;
  5077. width:100%;
  5078. }
  5079. #u5672_text {
  5080. border-width:0px;
  5081. word-wrap:break-word;
  5082. text-transform:none;
  5083. visibility:hidden;
  5084. }
  5085. #u5673_input {
  5086. position:absolute;
  5087. left:0px;
  5088. top:0px;
  5089. width:380px;
  5090. height:38px;
  5091. padding:2px 2px 2px 2px;
  5092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5093. font-weight:400;
  5094. font-style:normal;
  5095. font-size:14px;
  5096. letter-spacing:normal;
  5097. color:#000000;
  5098. vertical-align:none;
  5099. text-align:left;
  5100. text-transform:none;
  5101. background-color:transparent;
  5102. border-color:transparent;
  5103. }
  5104. #u5673_input.disabled {
  5105. position:absolute;
  5106. left:0px;
  5107. top:0px;
  5108. width:380px;
  5109. height:38px;
  5110. padding:2px 2px 2px 2px;
  5111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5112. font-weight:400;
  5113. font-style:normal;
  5114. font-size:14px;
  5115. letter-spacing:normal;
  5116. color:#000000;
  5117. vertical-align:none;
  5118. text-align:left;
  5119. text-transform:none;
  5120. background-color:transparent;
  5121. border-color:transparent;
  5122. }
  5123. #u5673_div {
  5124. border-width:0px;
  5125. position:absolute;
  5126. left:0px;
  5127. top:0px;
  5128. width:380px;
  5129. height:38px;
  5130. background:inherit;
  5131. background-color:rgba(255, 255, 255, 1);
  5132. border:none;
  5133. border-radius:0px;
  5134. -moz-box-shadow:none;
  5135. -webkit-box-shadow:none;
  5136. box-shadow:none;
  5137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5138. font-weight:400;
  5139. font-style:normal;
  5140. font-size:14px;
  5141. }
  5142. #u5673 {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:1177px;
  5146. top:1647px;
  5147. width:380px;
  5148. height:38px;
  5149. display:flex;
  5150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5151. font-weight:400;
  5152. font-style:normal;
  5153. font-size:14px;
  5154. }
  5155. #u5673 .text {
  5156. position:absolute;
  5157. align-self:center;
  5158. padding:2px 2px 2px 2px;
  5159. box-sizing:border-box;
  5160. width:100%;
  5161. }
  5162. #u5673_div.disabled {
  5163. border-width:0px;
  5164. position:absolute;
  5165. left:0px;
  5166. top:0px;
  5167. width:380px;
  5168. height:38px;
  5169. background:inherit;
  5170. background-color:rgba(240, 240, 240, 1);
  5171. border:none;
  5172. border-radius:0px;
  5173. -moz-box-shadow:none;
  5174. -webkit-box-shadow:none;
  5175. box-shadow:none;
  5176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5177. font-weight:400;
  5178. font-style:normal;
  5179. font-size:14px;
  5180. }
  5181. #u5673.disabled {
  5182. }
  5183. #u5674_div {
  5184. border-width:0px;
  5185. position:absolute;
  5186. left:0px;
  5187. top:0px;
  5188. width:74px;
  5189. height:30px;
  5190. background:inherit;
  5191. background-color:rgba(255, 255, 255, 0);
  5192. border:none;
  5193. border-top:0px;
  5194. border-right:0px;
  5195. border-bottom:0px;
  5196. border-radius:0px;
  5197. border-top-left-radius:0px;
  5198. border-bottom-left-radius:0px;
  5199. -moz-box-shadow:none;
  5200. -webkit-box-shadow:none;
  5201. box-shadow:none;
  5202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5203. font-weight:400;
  5204. font-style:normal;
  5205. font-size:14px;
  5206. }
  5207. #u5674 {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:1166px;
  5211. top:1696px;
  5212. width:74px;
  5213. height:30px;
  5214. display:flex;
  5215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5216. font-weight:400;
  5217. font-style:normal;
  5218. font-size:14px;
  5219. }
  5220. #u5674 .text {
  5221. position:absolute;
  5222. align-self:center;
  5223. padding:5px 10px 5px 0px;
  5224. box-sizing:border-box;
  5225. width:100%;
  5226. }
  5227. #u5674_text {
  5228. border-width:0px;
  5229. white-space:nowrap;
  5230. text-transform:none;
  5231. }
  5232. #u5675 {
  5233. border-width:0px;
  5234. position:absolute;
  5235. left:0px;
  5236. top:0px;
  5237. width:0px;
  5238. height:0px;
  5239. }
  5240. #u5676_div {
  5241. border-width:0px;
  5242. position:absolute;
  5243. left:0px;
  5244. top:0px;
  5245. width:400px;
  5246. height:40px;
  5247. background:inherit;
  5248. background-color:rgba(255, 255, 255, 1);
  5249. box-sizing:border-box;
  5250. border-width:1px;
  5251. border-style:solid;
  5252. border-color:rgba(201, 201, 201, 1);
  5253. border-radius:4px;
  5254. -moz-box-shadow:none;
  5255. -webkit-box-shadow:none;
  5256. box-shadow:none;
  5257. font-family:'Microsoft YaHei', sans-serif;
  5258. font-weight:400;
  5259. font-style:normal;
  5260. font-size:14px;
  5261. color:#CCCCCC;
  5262. text-align:left;
  5263. }
  5264. #u5676 {
  5265. border-width:0px;
  5266. position:absolute;
  5267. left:1166px;
  5268. top:1726px;
  5269. width:400px;
  5270. height:40px;
  5271. display:flex;
  5272. font-family:'Microsoft YaHei', sans-serif;
  5273. font-weight:400;
  5274. font-style:normal;
  5275. font-size:14px;
  5276. color:#CCCCCC;
  5277. text-align:left;
  5278. }
  5279. #u5676 .text {
  5280. position:absolute;
  5281. align-self:center;
  5282. padding:2px 8px 2px 8px;
  5283. box-sizing:border-box;
  5284. width:100%;
  5285. }
  5286. #u5676_text {
  5287. border-width:0px;
  5288. word-wrap:break-word;
  5289. text-transform:none;
  5290. visibility:hidden;
  5291. }
  5292. #u5677_input {
  5293. position:absolute;
  5294. left:0px;
  5295. top:0px;
  5296. width:380px;
  5297. height:38px;
  5298. padding:2px 2px 2px 2px;
  5299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5300. font-weight:400;
  5301. font-style:normal;
  5302. font-size:14px;
  5303. letter-spacing:normal;
  5304. color:#000000;
  5305. vertical-align:none;
  5306. text-align:left;
  5307. text-transform:none;
  5308. background-color:transparent;
  5309. border-color:transparent;
  5310. }
  5311. #u5677_input.disabled {
  5312. position:absolute;
  5313. left:0px;
  5314. top:0px;
  5315. width:380px;
  5316. height:38px;
  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:#000000;
  5324. vertical-align:none;
  5325. text-align:left;
  5326. text-transform:none;
  5327. background-color:transparent;
  5328. border-color:transparent;
  5329. }
  5330. #u5677_div {
  5331. border-width:0px;
  5332. position:absolute;
  5333. left:0px;
  5334. top:0px;
  5335. width:380px;
  5336. height:38px;
  5337. background:inherit;
  5338. background-color:rgba(255, 255, 255, 1);
  5339. border:none;
  5340. border-radius:0px;
  5341. -moz-box-shadow:none;
  5342. -webkit-box-shadow:none;
  5343. box-shadow:none;
  5344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5345. font-weight:400;
  5346. font-style:normal;
  5347. font-size:14px;
  5348. }
  5349. #u5677 {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:1177px;
  5353. top:1727px;
  5354. width:380px;
  5355. height:38px;
  5356. display:flex;
  5357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5358. font-weight:400;
  5359. font-style:normal;
  5360. font-size:14px;
  5361. }
  5362. #u5677 .text {
  5363. position:absolute;
  5364. align-self:center;
  5365. padding:2px 2px 2px 2px;
  5366. box-sizing:border-box;
  5367. width:100%;
  5368. }
  5369. #u5677_div.disabled {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:0px;
  5373. top:0px;
  5374. width:380px;
  5375. height:38px;
  5376. background:inherit;
  5377. background-color:rgba(240, 240, 240, 1);
  5378. border:none;
  5379. border-radius:0px;
  5380. -moz-box-shadow:none;
  5381. -webkit-box-shadow:none;
  5382. box-shadow:none;
  5383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5384. font-weight:400;
  5385. font-style:normal;
  5386. font-size:14px;
  5387. }
  5388. #u5677.disabled {
  5389. }
  5390. #u5678_div {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:0px;
  5394. top:0px;
  5395. width:127px;
  5396. height:30px;
  5397. background:inherit;
  5398. background-color:rgba(255, 255, 255, 0);
  5399. border:none;
  5400. border-top:0px;
  5401. border-right:0px;
  5402. border-bottom:0px;
  5403. border-radius:0px;
  5404. border-top-left-radius:0px;
  5405. border-bottom-left-radius:0px;
  5406. -moz-box-shadow:none;
  5407. -webkit-box-shadow:none;
  5408. box-shadow:none;
  5409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5410. font-weight:400;
  5411. font-style:normal;
  5412. font-size:14px;
  5413. }
  5414. #u5678 {
  5415. border-width:0px;
  5416. position:absolute;
  5417. left:1166px;
  5418. top:1786px;
  5419. width:127px;
  5420. height:30px;
  5421. display:flex;
  5422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5423. font-weight:400;
  5424. font-style:normal;
  5425. font-size:14px;
  5426. }
  5427. #u5678 .text {
  5428. position:absolute;
  5429. align-self:center;
  5430. padding:5px 10px 5px 0px;
  5431. box-sizing:border-box;
  5432. width:100%;
  5433. }
  5434. #u5678_text {
  5435. border-width:0px;
  5436. white-space:nowrap;
  5437. text-transform:none;
  5438. }
  5439. #u5679 {
  5440. border-width:0px;
  5441. position:absolute;
  5442. left:0px;
  5443. top:0px;
  5444. width:0px;
  5445. height:0px;
  5446. }
  5447. #u5680 {
  5448. border-width:0px;
  5449. position:absolute;
  5450. left:0px;
  5451. top:0px;
  5452. width:0px;
  5453. height:0px;
  5454. }
  5455. #u5681_img {
  5456. border-width:0px;
  5457. position:absolute;
  5458. left:0px;
  5459. top:0px;
  5460. width:400px;
  5461. height:120px;
  5462. }
  5463. #u5681 {
  5464. border-width:0px;
  5465. position:absolute;
  5466. left:1166px;
  5467. top:1826px;
  5468. width:400px;
  5469. height:120px;
  5470. display:flex;
  5471. font-family:'Microsoft YaHei', sans-serif;
  5472. font-weight:400;
  5473. font-style:normal;
  5474. font-size:14px;
  5475. color:#CCCCCC;
  5476. text-align:left;
  5477. }
  5478. #u5681 .text {
  5479. position:absolute;
  5480. align-self:center;
  5481. padding:2px 8px 2px 8px;
  5482. box-sizing:border-box;
  5483. width:100%;
  5484. }
  5485. #u5681_text {
  5486. border-width:0px;
  5487. word-wrap:break-word;
  5488. text-transform:none;
  5489. visibility:hidden;
  5490. }
  5491. #u5682_img {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:0px;
  5495. top:0px;
  5496. width:41px;
  5497. height:30px;
  5498. }
  5499. #u5682 {
  5500. border-width:0px;
  5501. position:absolute;
  5502. left:1346px;
  5503. top:1848px;
  5504. width:41px;
  5505. height:30px;
  5506. display:flex;
  5507. }
  5508. #u5682 .text {
  5509. position:absolute;
  5510. align-self:center;
  5511. padding:2px 2px 2px 2px;
  5512. box-sizing:border-box;
  5513. width:100%;
  5514. }
  5515. #u5682_text {
  5516. border-width:0px;
  5517. word-wrap:break-word;
  5518. text-transform:none;
  5519. visibility:hidden;
  5520. }
  5521. #u5683_div {
  5522. border-width:0px;
  5523. position:absolute;
  5524. left:0px;
  5525. top:0px;
  5526. width:277px;
  5527. height:30px;
  5528. background:inherit;
  5529. background-color:rgba(255, 255, 255, 0);
  5530. border:none;
  5531. border-top:0px;
  5532. border-right:0px;
  5533. border-bottom:0px;
  5534. border-radius:0px;
  5535. border-top-left-radius:0px;
  5536. border-bottom-left-radius:0px;
  5537. -moz-box-shadow:none;
  5538. -webkit-box-shadow:none;
  5539. box-shadow:none;
  5540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5541. font-weight:400;
  5542. font-style:normal;
  5543. font-size:14px;
  5544. }
  5545. #u5683 {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:1228px;
  5549. top:1886px;
  5550. width:277px;
  5551. height:30px;
  5552. display:flex;
  5553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5554. font-weight:400;
  5555. font-style:normal;
  5556. font-size:14px;
  5557. }
  5558. #u5683 .text {
  5559. position:absolute;
  5560. align-self:center;
  5561. padding:5px 10px 5px 0px;
  5562. box-sizing:border-box;
  5563. width:100%;
  5564. }
  5565. #u5683_text {
  5566. border-width:0px;
  5567. white-space:nowrap;
  5568. text-transform:none;
  5569. }
  5570. #u5684_div {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:0px;
  5574. top:0px;
  5575. width:169px;
  5576. height:27px;
  5577. background:inherit;
  5578. background-color:rgba(255, 255, 255, 0);
  5579. border:none;
  5580. border-top:0px;
  5581. border-right:0px;
  5582. border-bottom:0px;
  5583. border-radius:0px;
  5584. border-top-left-radius:0px;
  5585. border-bottom-left-radius:0px;
  5586. -moz-box-shadow:none;
  5587. -webkit-box-shadow:none;
  5588. box-shadow:none;
  5589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5590. font-weight:400;
  5591. font-style:normal;
  5592. font-size:12px;
  5593. color:#AAAAAA;
  5594. }
  5595. #u5684 {
  5596. border-width:0px;
  5597. position:absolute;
  5598. left:1278px;
  5599. top:1912px;
  5600. width:169px;
  5601. height:27px;
  5602. display:flex;
  5603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5604. font-weight:400;
  5605. font-style:normal;
  5606. font-size:12px;
  5607. color:#AAAAAA;
  5608. }
  5609. #u5684 .text {
  5610. position:absolute;
  5611. align-self:center;
  5612. padding:5px 10px 5px 0px;
  5613. box-sizing:border-box;
  5614. width:100%;
  5615. }
  5616. #u5684_text {
  5617. border-width:0px;
  5618. white-space:nowrap;
  5619. text-transform:none;
  5620. }
  5621. #u5685_div {
  5622. border-width:0px;
  5623. position:absolute;
  5624. left:0px;
  5625. top:0px;
  5626. width:46px;
  5627. height:30px;
  5628. background:inherit;
  5629. background-color:rgba(255, 255, 255, 0);
  5630. border:none;
  5631. border-top:0px;
  5632. border-right:0px;
  5633. border-bottom:0px;
  5634. border-radius:0px;
  5635. border-top-left-radius:0px;
  5636. border-bottom-left-radius:0px;
  5637. -moz-box-shadow:none;
  5638. -webkit-box-shadow:none;
  5639. box-shadow:none;
  5640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5641. font-weight:400;
  5642. font-style:normal;
  5643. font-size:14px;
  5644. }
  5645. #u5685 {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:1166px;
  5649. top:1456px;
  5650. width:46px;
  5651. height:30px;
  5652. display:flex;
  5653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5654. font-weight:400;
  5655. font-style:normal;
  5656. font-size:14px;
  5657. }
  5658. #u5685 .text {
  5659. position:absolute;
  5660. align-self:center;
  5661. padding:5px 10px 5px 0px;
  5662. box-sizing:border-box;
  5663. width:100%;
  5664. }
  5665. #u5685_text {
  5666. border-width:0px;
  5667. white-space:nowrap;
  5668. text-transform:none;
  5669. }
  5670. #u5686 {
  5671. border-width:0px;
  5672. position:absolute;
  5673. left:0px;
  5674. top:0px;
  5675. width:0px;
  5676. height:0px;
  5677. }
  5678. #u5687_div {
  5679. border-width:0px;
  5680. position:absolute;
  5681. left:0px;
  5682. top:0px;
  5683. width:400px;
  5684. height:40px;
  5685. background:inherit;
  5686. background-color:rgba(242, 242, 242, 1);
  5687. box-sizing:border-box;
  5688. border-width:1px;
  5689. border-style:solid;
  5690. border-color:rgba(215, 215, 215, 1);
  5691. border-radius:4px;
  5692. -moz-box-shadow:none;
  5693. -webkit-box-shadow:none;
  5694. box-shadow:none;
  5695. font-size:14px;
  5696. }
  5697. #u5687 {
  5698. border-width:0px;
  5699. position:absolute;
  5700. left:1166px;
  5701. top:1486px;
  5702. width:400px;
  5703. height:40px;
  5704. display:flex;
  5705. font-size:14px;
  5706. }
  5707. #u5687 .text {
  5708. position:absolute;
  5709. align-self:center;
  5710. padding:2px 2px 2px 2px;
  5711. box-sizing:border-box;
  5712. width:100%;
  5713. }
  5714. #u5687_text {
  5715. border-width:0px;
  5716. word-wrap:break-word;
  5717. text-transform:none;
  5718. visibility:hidden;
  5719. }
  5720. #u5688_input {
  5721. position:absolute;
  5722. left:0px;
  5723. top:0px;
  5724. width:382px;
  5725. height:31px;
  5726. padding:2px 2px 2px 2px;
  5727. font-family:'ArialMT', 'Arial', sans-serif;
  5728. font-weight:400;
  5729. font-style:normal;
  5730. font-size:14px;
  5731. letter-spacing:normal;
  5732. color:#AAAAAA;
  5733. vertical-align:none;
  5734. text-align:left;
  5735. text-transform:none;
  5736. background-color:transparent;
  5737. border-color:transparent;
  5738. }
  5739. #u5688_input.disabled {
  5740. position:absolute;
  5741. left:0px;
  5742. top:0px;
  5743. width:382px;
  5744. height:31px;
  5745. padding:2px 2px 2px 2px;
  5746. font-family:'ArialMT', 'Arial', sans-serif;
  5747. font-weight:400;
  5748. font-style:normal;
  5749. font-size:14px;
  5750. letter-spacing:normal;
  5751. color:#AAAAAA;
  5752. vertical-align:none;
  5753. text-align:left;
  5754. text-transform:none;
  5755. background-color:transparent;
  5756. border-color:transparent;
  5757. }
  5758. #u5688_div {
  5759. border-width:0px;
  5760. position:absolute;
  5761. left:0px;
  5762. top:0px;
  5763. width:382px;
  5764. height:31px;
  5765. background:inherit;
  5766. background-color:rgba(242, 242, 242, 1);
  5767. border:none;
  5768. border-radius:0px;
  5769. -moz-box-shadow:none;
  5770. -webkit-box-shadow:none;
  5771. box-shadow:none;
  5772. font-size:14px;
  5773. color:#AAAAAA;
  5774. }
  5775. #u5688 {
  5776. border-width:0px;
  5777. position:absolute;
  5778. left:1178px;
  5779. top:1489px;
  5780. width:382px;
  5781. height:31px;
  5782. display:flex;
  5783. font-size:14px;
  5784. color:#AAAAAA;
  5785. }
  5786. #u5688 .text {
  5787. position:absolute;
  5788. align-self:flex-start;
  5789. padding:2px 2px 2px 2px;
  5790. box-sizing:border-box;
  5791. width:100%;
  5792. }
  5793. #u5688_div.disabled {
  5794. border-width:0px;
  5795. position:absolute;
  5796. left:0px;
  5797. top:0px;
  5798. width:382px;
  5799. height:31px;
  5800. background:inherit;
  5801. background-color:rgba(240, 240, 240, 1);
  5802. border:none;
  5803. border-radius:0px;
  5804. -moz-box-shadow:none;
  5805. -webkit-box-shadow:none;
  5806. box-shadow:none;
  5807. font-size:14px;
  5808. color:#AAAAAA;
  5809. }
  5810. #u5688.disabled {
  5811. }
  5812. .u5688_input_option {
  5813. font-size:14px;
  5814. }
  5815. #u5689_div {
  5816. border-width:0px;
  5817. position:absolute;
  5818. left:0px;
  5819. top:0px;
  5820. width:46px;
  5821. height:30px;
  5822. background:inherit;
  5823. background-color:rgba(255, 255, 255, 0);
  5824. border:none;
  5825. border-top:0px;
  5826. border-right:0px;
  5827. border-bottom:0px;
  5828. border-radius:0px;
  5829. border-top-left-radius:0px;
  5830. border-bottom-left-radius:0px;
  5831. -moz-box-shadow:none;
  5832. -webkit-box-shadow:none;
  5833. box-shadow:none;
  5834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5835. font-weight:400;
  5836. font-style:normal;
  5837. font-size:14px;
  5838. }
  5839. #u5689 {
  5840. border-width:0px;
  5841. position:absolute;
  5842. left:1166px;
  5843. top:1536px;
  5844. width:46px;
  5845. height:30px;
  5846. display:flex;
  5847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5848. font-weight:400;
  5849. font-style:normal;
  5850. font-size:14px;
  5851. }
  5852. #u5689 .text {
  5853. position:absolute;
  5854. align-self:center;
  5855. padding:5px 10px 5px 0px;
  5856. box-sizing:border-box;
  5857. width:100%;
  5858. }
  5859. #u5689_text {
  5860. border-width:0px;
  5861. white-space:nowrap;
  5862. text-transform:none;
  5863. }
  5864. #u5690 {
  5865. border-width:0px;
  5866. position:absolute;
  5867. left:0px;
  5868. top:0px;
  5869. width:0px;
  5870. height:0px;
  5871. }
  5872. #u5691_div {
  5873. border-width:0px;
  5874. position:absolute;
  5875. left:0px;
  5876. top:0px;
  5877. width:400px;
  5878. height:40px;
  5879. background:inherit;
  5880. background-color:rgba(255, 255, 255, 1);
  5881. box-sizing:border-box;
  5882. border-width:1px;
  5883. border-style:solid;
  5884. border-color:rgba(215, 215, 215, 1);
  5885. border-radius:4px;
  5886. -moz-box-shadow:none;
  5887. -webkit-box-shadow:none;
  5888. box-shadow:none;
  5889. font-size:14px;
  5890. }
  5891. #u5691 {
  5892. border-width:0px;
  5893. position:absolute;
  5894. left:1166px;
  5895. top:1566px;
  5896. width:400px;
  5897. height:40px;
  5898. display:flex;
  5899. font-size:14px;
  5900. }
  5901. #u5691 .text {
  5902. position:absolute;
  5903. align-self:center;
  5904. padding:2px 2px 2px 2px;
  5905. box-sizing:border-box;
  5906. width:100%;
  5907. }
  5908. #u5691_text {
  5909. border-width:0px;
  5910. word-wrap:break-word;
  5911. text-transform:none;
  5912. visibility:hidden;
  5913. }
  5914. #u5692_input {
  5915. position:absolute;
  5916. left:0px;
  5917. top:0px;
  5918. width:382px;
  5919. height:31px;
  5920. padding:2px 2px 2px 2px;
  5921. font-family:'ArialMT', 'Arial', sans-serif;
  5922. font-weight:400;
  5923. font-style:normal;
  5924. font-size:14px;
  5925. letter-spacing:normal;
  5926. color:#AAAAAA;
  5927. vertical-align:none;
  5928. text-align:left;
  5929. text-transform:none;
  5930. background-color:transparent;
  5931. border-color:transparent;
  5932. }
  5933. #u5692_input.disabled {
  5934. position:absolute;
  5935. left:0px;
  5936. top:0px;
  5937. width:382px;
  5938. height:31px;
  5939. padding:2px 2px 2px 2px;
  5940. font-family:'ArialMT', 'Arial', sans-serif;
  5941. font-weight:400;
  5942. font-style:normal;
  5943. font-size:14px;
  5944. letter-spacing:normal;
  5945. color:#AAAAAA;
  5946. vertical-align:none;
  5947. text-align:left;
  5948. text-transform:none;
  5949. background-color:transparent;
  5950. border-color:transparent;
  5951. }
  5952. #u5692_div {
  5953. border-width:0px;
  5954. position:absolute;
  5955. left:0px;
  5956. top:0px;
  5957. width:382px;
  5958. height:31px;
  5959. background:inherit;
  5960. background-color:rgba(255, 255, 255, 1);
  5961. border:none;
  5962. border-radius:0px;
  5963. -moz-box-shadow:none;
  5964. -webkit-box-shadow:none;
  5965. box-shadow:none;
  5966. font-size:14px;
  5967. color:#AAAAAA;
  5968. }
  5969. #u5692 {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:1178px;
  5973. top:1569px;
  5974. width:382px;
  5975. height:31px;
  5976. display:flex;
  5977. font-size:14px;
  5978. color:#AAAAAA;
  5979. }
  5980. #u5692 .text {
  5981. position:absolute;
  5982. align-self:flex-start;
  5983. padding:2px 2px 2px 2px;
  5984. box-sizing:border-box;
  5985. width:100%;
  5986. }
  5987. #u5692_div.disabled {
  5988. border-width:0px;
  5989. position:absolute;
  5990. left:0px;
  5991. top:0px;
  5992. width:382px;
  5993. height:31px;
  5994. background:inherit;
  5995. background-color:rgba(240, 240, 240, 1);
  5996. border:none;
  5997. border-radius:0px;
  5998. -moz-box-shadow:none;
  5999. -webkit-box-shadow:none;
  6000. box-shadow:none;
  6001. font-size:14px;
  6002. color:#AAAAAA;
  6003. }
  6004. #u5692.disabled {
  6005. }
  6006. .u5692_input_option {
  6007. font-size:14px;
  6008. }
  6009. #u5693 {
  6010. border-width:0px;
  6011. position:absolute;
  6012. left:0px;
  6013. top:0px;
  6014. width:0px;
  6015. height:0px;
  6016. }
  6017. #u5694 {
  6018. border-width:0px;
  6019. position:absolute;
  6020. left:0px;
  6021. top:0px;
  6022. width:0px;
  6023. height:0px;
  6024. }
  6025. #u5695_div {
  6026. border-width:0px;
  6027. position:absolute;
  6028. left:0px;
  6029. top:0px;
  6030. width:380px;
  6031. height:140px;
  6032. background:inherit;
  6033. background-color:rgba(255, 255, 255, 1);
  6034. border:none;
  6035. border-radius:4px;
  6036. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6037. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6038. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6039. font-family:'Microsoft YaHei', sans-serif;
  6040. font-weight:400;
  6041. font-style:normal;
  6042. }
  6043. #u5695 {
  6044. border-width:0px;
  6045. position:absolute;
  6046. left:462px;
  6047. top:1768px;
  6048. width:380px;
  6049. height:140px;
  6050. display:flex;
  6051. font-family:'Microsoft YaHei', sans-serif;
  6052. font-weight:400;
  6053. font-style:normal;
  6054. }
  6055. #u5695 .text {
  6056. position:absolute;
  6057. align-self:center;
  6058. padding:2px 2px 2px 2px;
  6059. box-sizing:border-box;
  6060. width:100%;
  6061. }
  6062. #u5695_text {
  6063. border-width:0px;
  6064. word-wrap:break-word;
  6065. text-transform:none;
  6066. visibility:hidden;
  6067. }
  6068. #u5696_div {
  6069. border-width:0px;
  6070. position:absolute;
  6071. left:0px;
  6072. top:0px;
  6073. width:299px;
  6074. height:22px;
  6075. background:inherit;
  6076. background-color:rgba(255, 255, 255, 0);
  6077. border:none;
  6078. border-radius:0px;
  6079. -moz-box-shadow:none;
  6080. -webkit-box-shadow:none;
  6081. box-shadow:none;
  6082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6083. font-weight:400;
  6084. font-style:normal;
  6085. font-size:14px;
  6086. color:#666666;
  6087. line-height:22px;
  6088. }
  6089. #u5696 {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:522px;
  6093. top:1823px;
  6094. width:299px;
  6095. height:22px;
  6096. display:flex;
  6097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6098. font-weight:400;
  6099. font-style:normal;
  6100. font-size:14px;
  6101. color:#666666;
  6102. line-height:22px;
  6103. }
  6104. #u5696 .text {
  6105. position:absolute;
  6106. align-self:flex-start;
  6107. padding:0px 0px 0px 0px;
  6108. box-sizing:border-box;
  6109. width:100%;
  6110. }
  6111. #u5696_text {
  6112. border-width:0px;
  6113. word-wrap:break-word;
  6114. text-transform:none;
  6115. }
  6116. #u5697_div {
  6117. border-width:0px;
  6118. position:absolute;
  6119. left:0px;
  6120. top:0px;
  6121. width:127px;
  6122. height:21px;
  6123. background:inherit;
  6124. background-color:rgba(255, 255, 255, 0);
  6125. border:none;
  6126. border-radius:0px;
  6127. -moz-box-shadow:none;
  6128. -webkit-box-shadow:none;
  6129. box-shadow:none;
  6130. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6131. font-weight:650;
  6132. font-style:normal;
  6133. font-size:18px;
  6134. color:#000000;
  6135. line-height:22px;
  6136. }
  6137. #u5697 {
  6138. border-width:0px;
  6139. position:absolute;
  6140. left:522px;
  6141. top:1793px;
  6142. width:127px;
  6143. height:21px;
  6144. display:flex;
  6145. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6146. font-weight:650;
  6147. font-style:normal;
  6148. font-size:18px;
  6149. color:#000000;
  6150. line-height:22px;
  6151. }
  6152. #u5697 .text {
  6153. position:absolute;
  6154. align-self:flex-start;
  6155. padding:0px 0px 0px 0px;
  6156. box-sizing:border-box;
  6157. width:100%;
  6158. }
  6159. #u5697_text {
  6160. border-width:0px;
  6161. white-space:nowrap;
  6162. text-transform:none;
  6163. }
  6164. #u5698_div {
  6165. border-width:0px;
  6166. position:absolute;
  6167. left:0px;
  6168. top:0px;
  6169. width:61px;
  6170. height:32px;
  6171. background:inherit;
  6172. background-color:rgba(24, 144, 255, 1);
  6173. border:none;
  6174. border-radius:4px;
  6175. -moz-box-shadow:none;
  6176. -webkit-box-shadow:none;
  6177. box-shadow:none;
  6178. font-family:'Microsoft YaHei', sans-serif;
  6179. font-weight:400;
  6180. font-style:normal;
  6181. font-size:14px;
  6182. color:#FFFFFF;
  6183. }
  6184. #u5698 {
  6185. border-width:0px;
  6186. position:absolute;
  6187. left:764px;
  6188. top:1857px;
  6189. width:61px;
  6190. height:32px;
  6191. display:flex;
  6192. font-family:'Microsoft YaHei', sans-serif;
  6193. font-weight:400;
  6194. font-style:normal;
  6195. font-size:14px;
  6196. color:#FFFFFF;
  6197. }
  6198. #u5698 .text {
  6199. position:absolute;
  6200. align-self:center;
  6201. padding:2px 16px 2px 16px;
  6202. box-sizing:border-box;
  6203. width:100%;
  6204. }
  6205. #u5698_text {
  6206. border-width:0px;
  6207. white-space:nowrap;
  6208. text-transform:none;
  6209. }
  6210. #u5699_div {
  6211. border-width:0px;
  6212. position:absolute;
  6213. left:0px;
  6214. top:0px;
  6215. width:66px;
  6216. height:32px;
  6217. background:inherit;
  6218. background-color:rgba(255, 255, 255, 1);
  6219. box-sizing:border-box;
  6220. border-width:1px;
  6221. border-style:solid;
  6222. border-color:rgba(217, 217, 217, 1);
  6223. border-radius:4px;
  6224. -moz-box-shadow:none;
  6225. -webkit-box-shadow:none;
  6226. box-shadow:none;
  6227. font-family:'Microsoft YaHei', sans-serif;
  6228. font-weight:400;
  6229. font-style:normal;
  6230. font-size:14px;
  6231. color:rgba(0, 0, 0, 0.647058823529412);
  6232. line-height:21px;
  6233. }
  6234. #u5699 {
  6235. border-width:0px;
  6236. position:absolute;
  6237. left:682px;
  6238. top:1857px;
  6239. width:66px;
  6240. height:32px;
  6241. display:flex;
  6242. font-family:'Microsoft YaHei', sans-serif;
  6243. font-weight:400;
  6244. font-style:normal;
  6245. font-size:14px;
  6246. color:rgba(0, 0, 0, 0.647058823529412);
  6247. line-height:21px;
  6248. }
  6249. #u5699 .text {
  6250. position:absolute;
  6251. align-self:center;
  6252. padding:2px 16px 2px 16px;
  6253. box-sizing:border-box;
  6254. width:100%;
  6255. }
  6256. #u5699_text {
  6257. border-width:0px;
  6258. white-space:nowrap;
  6259. text-transform:none;
  6260. }
  6261. #u5700_img {
  6262. border-width:0px;
  6263. position:absolute;
  6264. left:0px;
  6265. top:0px;
  6266. width:20px;
  6267. height:20px;
  6268. }
  6269. #u5700 {
  6270. border-width:0px;
  6271. position:absolute;
  6272. left:491px;
  6273. top:1797px;
  6274. width:20px;
  6275. height:20px;
  6276. display:flex;
  6277. }
  6278. #u5700 .text {
  6279. position:absolute;
  6280. align-self:center;
  6281. padding:2px 2px 2px 2px;
  6282. box-sizing:border-box;
  6283. width:100%;
  6284. }
  6285. #u5700_text {
  6286. border-width:0px;
  6287. word-wrap:break-word;
  6288. text-transform:none;
  6289. visibility:hidden;
  6290. }
  6291. #u5701 {
  6292. border-width:0px;
  6293. position:absolute;
  6294. left:0px;
  6295. top:0px;
  6296. width:0px;
  6297. height:0px;
  6298. }
  6299. #u5702_div {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:0px;
  6303. top:0px;
  6304. width:380px;
  6305. height:140px;
  6306. background:inherit;
  6307. background-color:rgba(255, 255, 255, 1);
  6308. border:none;
  6309. border-radius:4px;
  6310. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6311. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6312. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6313. font-family:'Microsoft YaHei', sans-serif;
  6314. font-weight:400;
  6315. font-style:normal;
  6316. }
  6317. #u5702 {
  6318. border-width:0px;
  6319. position:absolute;
  6320. left:462px;
  6321. top:1929px;
  6322. width:380px;
  6323. height:140px;
  6324. display:flex;
  6325. font-family:'Microsoft YaHei', sans-serif;
  6326. font-weight:400;
  6327. font-style:normal;
  6328. }
  6329. #u5702 .text {
  6330. position:absolute;
  6331. align-self:center;
  6332. padding:2px 2px 2px 2px;
  6333. box-sizing:border-box;
  6334. width:100%;
  6335. }
  6336. #u5702_text {
  6337. border-width:0px;
  6338. word-wrap:break-word;
  6339. text-transform:none;
  6340. visibility:hidden;
  6341. }
  6342. #u5703_div {
  6343. border-width:0px;
  6344. position:absolute;
  6345. left:0px;
  6346. top:0px;
  6347. width:288px;
  6348. height:22px;
  6349. background:inherit;
  6350. background-color:rgba(255, 255, 255, 0);
  6351. border:none;
  6352. border-radius:0px;
  6353. -moz-box-shadow:none;
  6354. -webkit-box-shadow:none;
  6355. box-shadow:none;
  6356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6357. font-weight:400;
  6358. font-style:normal;
  6359. font-size:14px;
  6360. color:#666666;
  6361. line-height:22px;
  6362. }
  6363. #u5703 {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:522px;
  6367. top:1984px;
  6368. width:288px;
  6369. height:22px;
  6370. display:flex;
  6371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6372. font-weight:400;
  6373. font-style:normal;
  6374. font-size:14px;
  6375. color:#666666;
  6376. line-height:22px;
  6377. }
  6378. #u5703 .text {
  6379. position:absolute;
  6380. align-self:flex-start;
  6381. padding:0px 0px 0px 0px;
  6382. box-sizing:border-box;
  6383. width:100%;
  6384. }
  6385. #u5703_text {
  6386. border-width:0px;
  6387. word-wrap:break-word;
  6388. text-transform:none;
  6389. }
  6390. #u5704_div {
  6391. border-width:0px;
  6392. position:absolute;
  6393. left:0px;
  6394. top:0px;
  6395. width:91px;
  6396. height:21px;
  6397. background:inherit;
  6398. background-color:rgba(255, 255, 255, 0);
  6399. border:none;
  6400. border-radius:0px;
  6401. -moz-box-shadow:none;
  6402. -webkit-box-shadow:none;
  6403. box-shadow:none;
  6404. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6405. font-weight:650;
  6406. font-style:normal;
  6407. font-size:18px;
  6408. color:#000000;
  6409. line-height:22px;
  6410. }
  6411. #u5704 {
  6412. border-width:0px;
  6413. position:absolute;
  6414. left:522px;
  6415. top:1954px;
  6416. width:91px;
  6417. height:21px;
  6418. display:flex;
  6419. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6420. font-weight:650;
  6421. font-style:normal;
  6422. font-size:18px;
  6423. color:#000000;
  6424. line-height:22px;
  6425. }
  6426. #u5704 .text {
  6427. position:absolute;
  6428. align-self:flex-start;
  6429. padding:0px 0px 0px 0px;
  6430. box-sizing:border-box;
  6431. width:100%;
  6432. }
  6433. #u5704_text {
  6434. border-width:0px;
  6435. white-space:nowrap;
  6436. text-transform:none;
  6437. }
  6438. #u5705_div {
  6439. border-width:0px;
  6440. position:absolute;
  6441. left:0px;
  6442. top:0px;
  6443. width:61px;
  6444. height:32px;
  6445. background:inherit;
  6446. background-color:rgba(24, 144, 255, 1);
  6447. border:none;
  6448. border-radius:4px;
  6449. -moz-box-shadow:none;
  6450. -webkit-box-shadow:none;
  6451. box-shadow:none;
  6452. font-family:'Microsoft YaHei', sans-serif;
  6453. font-weight:400;
  6454. font-style:normal;
  6455. font-size:14px;
  6456. color:#FFFFFF;
  6457. }
  6458. #u5705 {
  6459. border-width:0px;
  6460. position:absolute;
  6461. left:761px;
  6462. top:2018px;
  6463. width:61px;
  6464. height:32px;
  6465. display:flex;
  6466. font-family:'Microsoft YaHei', sans-serif;
  6467. font-weight:400;
  6468. font-style:normal;
  6469. font-size:14px;
  6470. color:#FFFFFF;
  6471. }
  6472. #u5705 .text {
  6473. position:absolute;
  6474. align-self:center;
  6475. padding:2px 16px 2px 16px;
  6476. box-sizing:border-box;
  6477. width:100%;
  6478. }
  6479. #u5705_text {
  6480. border-width:0px;
  6481. white-space:nowrap;
  6482. text-transform:none;
  6483. }
  6484. #u5706_div {
  6485. border-width:0px;
  6486. position:absolute;
  6487. left:0px;
  6488. top:0px;
  6489. width:66px;
  6490. height:32px;
  6491. background:inherit;
  6492. background-color:rgba(255, 255, 255, 1);
  6493. box-sizing:border-box;
  6494. border-width:1px;
  6495. border-style:solid;
  6496. border-color:rgba(217, 217, 217, 1);
  6497. border-radius:4px;
  6498. -moz-box-shadow:none;
  6499. -webkit-box-shadow:none;
  6500. box-shadow:none;
  6501. font-family:'Microsoft YaHei', sans-serif;
  6502. font-weight:400;
  6503. font-style:normal;
  6504. font-size:14px;
  6505. color:rgba(0, 0, 0, 0.647058823529412);
  6506. line-height:21px;
  6507. }
  6508. #u5706 {
  6509. border-width:0px;
  6510. position:absolute;
  6511. left:682px;
  6512. top:2018px;
  6513. width:66px;
  6514. height:32px;
  6515. display:flex;
  6516. font-family:'Microsoft YaHei', sans-serif;
  6517. font-weight:400;
  6518. font-style:normal;
  6519. font-size:14px;
  6520. color:rgba(0, 0, 0, 0.647058823529412);
  6521. line-height:21px;
  6522. }
  6523. #u5706 .text {
  6524. position:absolute;
  6525. align-self:center;
  6526. padding:2px 16px 2px 16px;
  6527. box-sizing:border-box;
  6528. width:100%;
  6529. }
  6530. #u5706_text {
  6531. border-width:0px;
  6532. white-space:nowrap;
  6533. text-transform:none;
  6534. }
  6535. #u5707_img {
  6536. border-width:0px;
  6537. position:absolute;
  6538. left:0px;
  6539. top:0px;
  6540. width:20px;
  6541. height:20px;
  6542. }
  6543. #u5707 {
  6544. border-width:0px;
  6545. position:absolute;
  6546. left:491px;
  6547. top:1956px;
  6548. width:20px;
  6549. height:20px;
  6550. display:flex;
  6551. }
  6552. #u5707 .text {
  6553. position:absolute;
  6554. align-self:center;
  6555. padding:2px 2px 2px 2px;
  6556. box-sizing:border-box;
  6557. width:100%;
  6558. }
  6559. #u5707_text {
  6560. border-width:0px;
  6561. word-wrap:break-word;
  6562. text-transform:none;
  6563. visibility:hidden;
  6564. }
  6565. #u5708_div {
  6566. border-width:0px;
  6567. position:absolute;
  6568. left:0px;
  6569. top:0px;
  6570. width:306px;
  6571. height:35px;
  6572. background:inherit;
  6573. background-color:rgba(255, 255, 255, 0);
  6574. border:none;
  6575. border-top:0px;
  6576. border-right:0px;
  6577. border-bottom:0px;
  6578. border-radius:0px;
  6579. border-top-left-radius:0px;
  6580. border-bottom-left-radius:0px;
  6581. -moz-box-shadow:none;
  6582. -webkit-box-shadow:none;
  6583. box-shadow:none;
  6584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6585. font-weight:400;
  6586. font-style:normal;
  6587. font-size:18px;
  6588. color:#D9001B;
  6589. }
  6590. #u5708 {
  6591. border-width:0px;
  6592. position:absolute;
  6593. left:91px;
  6594. top:39px;
  6595. width:306px;
  6596. height:35px;
  6597. display:flex;
  6598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6599. font-weight:400;
  6600. font-style:normal;
  6601. font-size:18px;
  6602. color:#D9001B;
  6603. }
  6604. #u5708 .text {
  6605. position:absolute;
  6606. align-self:center;
  6607. padding:5px 10px 5px 0px;
  6608. box-sizing:border-box;
  6609. width:100%;
  6610. }
  6611. #u5708_text {
  6612. border-width:0px;
  6613. white-space:nowrap;
  6614. text-transform:none;
  6615. }
  6616. #u5709_div {
  6617. border-width:0px;
  6618. position:absolute;
  6619. left:0px;
  6620. top:0px;
  6621. width:292px;
  6622. height:35px;
  6623. background:inherit;
  6624. background-color:rgba(255, 255, 255, 0);
  6625. border:none;
  6626. border-top:0px;
  6627. border-right:0px;
  6628. border-bottom:0px;
  6629. border-radius:0px;
  6630. border-top-left-radius:0px;
  6631. border-bottom-left-radius:0px;
  6632. -moz-box-shadow:none;
  6633. -webkit-box-shadow:none;
  6634. box-shadow:none;
  6635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6636. font-weight:400;
  6637. font-style:normal;
  6638. font-size:18px;
  6639. color:#D9001B;
  6640. }
  6641. #u5709 {
  6642. border-width:0px;
  6643. position:absolute;
  6644. left:91px;
  6645. top:1327px;
  6646. width:292px;
  6647. height:35px;
  6648. display:flex;
  6649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6650. font-weight:400;
  6651. font-style:normal;
  6652. font-size:18px;
  6653. color:#D9001B;
  6654. }
  6655. #u5709 .text {
  6656. position:absolute;
  6657. align-self:center;
  6658. padding:5px 10px 5px 0px;
  6659. box-sizing:border-box;
  6660. width:100%;
  6661. }
  6662. #u5709_text {
  6663. border-width:0px;
  6664. white-space:nowrap;
  6665. text-transform:none;
  6666. }