styles.css 111 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-98px;
  6. width:2049px;
  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. #u8264 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u8265_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:1139px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(242, 242, 242, 1);
  40. border-radius:0px;
  41. filter:drop-shadow(none);
  42. transition:none;
  43. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  44. font-weight:400;
  45. font-style:normal;
  46. font-size:14px;
  47. color:#AAAAAA;
  48. text-align:center;
  49. line-height:30px;
  50. }
  51. #u8265 {
  52. border-width:0px;
  53. position:absolute;
  54. left:98px;
  55. top:91px;
  56. width:1000px;
  57. height:1139px;
  58. display:flex;
  59. transition:none;
  60. transform-origin:50% 50%;
  61. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  62. font-weight:400;
  63. font-style:normal;
  64. font-size:14px;
  65. color:#AAAAAA;
  66. text-align:center;
  67. line-height:30px;
  68. }
  69. #u8265 .text {
  70. position:absolute;
  71. align-self:center;
  72. padding:5px 10px 5px 10px;
  73. box-sizing:border-box;
  74. width:100%;
  75. }
  76. #u8265_text {
  77. border-width:0px;
  78. word-wrap:break-word;
  79. text-transform:none;
  80. visibility:hidden;
  81. }
  82. #u8266_div {
  83. border-width:0px;
  84. position:absolute;
  85. left:0px;
  86. top:0px;
  87. width:1000px;
  88. height:332px;
  89. background:inherit;
  90. background-color:rgba(255, 255, 255, 1);
  91. box-sizing:border-box;
  92. border-width:1px;
  93. border-style:solid;
  94. border-color:rgba(242, 242, 242, 1);
  95. border-radius:0px;
  96. filter:drop-shadow(none);
  97. transition:none;
  98. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  99. font-weight:400;
  100. font-style:normal;
  101. font-size:14px;
  102. color:#AAAAAA;
  103. text-align:center;
  104. line-height:30px;
  105. }
  106. #u8266 {
  107. border-width:0px;
  108. position:absolute;
  109. left:98px;
  110. top:92px;
  111. width:1000px;
  112. height:332px;
  113. display:flex;
  114. transition:none;
  115. transform-origin:50% 50%;
  116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  117. font-weight:400;
  118. font-style:normal;
  119. font-size:14px;
  120. color:#AAAAAA;
  121. text-align:center;
  122. line-height:30px;
  123. }
  124. #u8266 .text {
  125. position:absolute;
  126. align-self:center;
  127. padding:5px 10px 5px 10px;
  128. box-sizing:border-box;
  129. width:100%;
  130. }
  131. #u8266_text {
  132. border-width:0px;
  133. word-wrap:break-word;
  134. text-transform:none;
  135. visibility:hidden;
  136. }
  137. #u8267_div {
  138. border-width:0px;
  139. position:absolute;
  140. left:0px;
  141. top:0px;
  142. width:78px;
  143. height:40px;
  144. background:inherit;
  145. background-color:rgba(255, 255, 255, 0);
  146. border-top:0px;
  147. border-right:0px;
  148. border-bottom:0px;
  149. border-radius:0px;
  150. border-top-left-radius:0px;
  151. border-bottom-left-radius:0px;
  152. filter:drop-shadow(none);
  153. transition:none;
  154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  155. font-weight:400;
  156. font-style:normal;
  157. font-size:14px;
  158. color:#7F7F7F;
  159. line-height:40px;
  160. }
  161. #u8267 {
  162. border-width:0px;
  163. position:absolute;
  164. left:138px;
  165. top:275px;
  166. width:78px;
  167. height:40px;
  168. display:flex;
  169. transition:none;
  170. transform-origin:50% 50%;
  171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  172. font-weight:400;
  173. font-style:normal;
  174. font-size:14px;
  175. color:#7F7F7F;
  176. line-height:40px;
  177. }
  178. #u8267 .text {
  179. position:absolute;
  180. align-self:center;
  181. padding:0px 0px 0px 0px;
  182. box-sizing:border-box;
  183. width:100%;
  184. }
  185. #u8267_text {
  186. border-width:0px;
  187. white-space:nowrap;
  188. text-transform:none;
  189. }
  190. #u8268 {
  191. border-width:0px;
  192. position:absolute;
  193. left:217px;
  194. top:275px;
  195. width:161px;
  196. height:107px;
  197. display:flex;
  198. transition:none;
  199. }
  200. #u8268 .text {
  201. position:absolute;
  202. align-self:center;
  203. padding:0px 0px 0px 0px;
  204. box-sizing:border-box;
  205. width:100%;
  206. }
  207. #u8268_img {
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:161px;
  213. height:107px;
  214. }
  215. #u8268_text {
  216. border-width:0px;
  217. word-wrap:break-word;
  218. text-transform:none;
  219. }
  220. #u8269_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:80px;
  226. height:40px;
  227. background:inherit;
  228. background-color:rgba(255, 255, 255, 0);
  229. border-top:0px;
  230. border-right:0px;
  231. border-bottom:0px;
  232. border-radius:0px;
  233. border-top-left-radius:0px;
  234. border-bottom-left-radius:0px;
  235. filter:drop-shadow(none);
  236. transition:none;
  237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  238. font-weight:400;
  239. font-style:normal;
  240. font-size:14px;
  241. color:#7F7F7F;
  242. line-height:40px;
  243. }
  244. #u8269 {
  245. border-width:0px;
  246. position:absolute;
  247. left:458px;
  248. top:224px;
  249. width:80px;
  250. height:40px;
  251. display:flex;
  252. transition:none;
  253. transform-origin:50% 50%;
  254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  255. font-weight:400;
  256. font-style:normal;
  257. font-size:14px;
  258. color:#7F7F7F;
  259. line-height:40px;
  260. }
  261. #u8269 .text {
  262. position:absolute;
  263. align-self:center;
  264. padding:0px 0px 0px 0px;
  265. box-sizing:border-box;
  266. width:100%;
  267. }
  268. #u8269_text {
  269. border-width:0px;
  270. word-wrap:break-word;
  271. text-transform:none;
  272. }
  273. #u8270_div {
  274. border-width:0px;
  275. position:absolute;
  276. left:0px;
  277. top:0px;
  278. width:113px;
  279. height:40px;
  280. background:inherit;
  281. background-color:rgba(255, 255, 255, 0);
  282. border-top:0px;
  283. border-right:0px;
  284. border-bottom:0px;
  285. border-radius:0px;
  286. border-top-left-radius:0px;
  287. border-bottom-left-radius:0px;
  288. filter:drop-shadow(none);
  289. transition:none;
  290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  291. font-weight:400;
  292. font-style:normal;
  293. font-size:14px;
  294. line-height:40px;
  295. }
  296. #u8270 {
  297. border-width:0px;
  298. position:absolute;
  299. left:538px;
  300. top:224px;
  301. width:113px;
  302. height:40px;
  303. display:flex;
  304. transition:none;
  305. transform-origin:50% 50%;
  306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  307. font-weight:400;
  308. font-style:normal;
  309. font-size:14px;
  310. line-height:40px;
  311. }
  312. #u8270 .text {
  313. position:absolute;
  314. align-self:center;
  315. padding:0px 0px 0px 0px;
  316. box-sizing:border-box;
  317. width:100%;
  318. }
  319. #u8270_text {
  320. border-width:0px;
  321. white-space:nowrap;
  322. text-transform:none;
  323. }
  324. #u8271_div {
  325. border-width:0px;
  326. position:absolute;
  327. left:0px;
  328. top:0px;
  329. width:1000px;
  330. height:60px;
  331. background:inherit;
  332. background-color:rgba(255, 255, 255, 1);
  333. box-sizing:border-box;
  334. border-width:1px;
  335. border-style:solid;
  336. border-color:rgba(215, 215, 215, 1);
  337. border-radius:0px;
  338. filter:drop-shadow(none);
  339. transition:none;
  340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  341. font-weight:400;
  342. font-style:normal;
  343. font-size:14px;
  344. color:#AAAAAA;
  345. text-align:center;
  346. line-height:30px;
  347. }
  348. #u8271 {
  349. border-width:0px;
  350. position:absolute;
  351. left:99px;
  352. top:31px;
  353. width:1000px;
  354. height:60px;
  355. display:flex;
  356. transition:none;
  357. transform-origin:50% 50%;
  358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  359. font-weight:400;
  360. font-style:normal;
  361. font-size:14px;
  362. color:#AAAAAA;
  363. text-align:center;
  364. line-height:30px;
  365. }
  366. #u8271 .text {
  367. position:absolute;
  368. align-self:center;
  369. padding:5px 10px 5px 10px;
  370. box-sizing:border-box;
  371. width:100%;
  372. }
  373. #u8271_text {
  374. border-width:0px;
  375. word-wrap:break-word;
  376. text-transform:none;
  377. visibility:hidden;
  378. }
  379. #u8272_div {
  380. border-width:0px;
  381. position:absolute;
  382. left:0px;
  383. top:0px;
  384. width:83px;
  385. height:35px;
  386. background:inherit;
  387. background-color:rgba(255, 255, 255, 0);
  388. border-top:0px;
  389. border-right:0px;
  390. border-bottom:0px;
  391. border-radius:0px;
  392. border-top-left-radius:0px;
  393. border-bottom-left-radius:0px;
  394. filter:drop-shadow(none);
  395. transition:none;
  396. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  397. font-weight:500;
  398. font-style:normal;
  399. font-size:18px;
  400. }
  401. #u8272 {
  402. border-width:0px;
  403. position:absolute;
  404. left:119px;
  405. top:49px;
  406. width:83px;
  407. height:35px;
  408. display:flex;
  409. transition:none;
  410. transform-origin:50% 50%;
  411. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  412. font-weight:500;
  413. font-style:normal;
  414. font-size:18px;
  415. }
  416. #u8272 .text {
  417. position:absolute;
  418. align-self:center;
  419. padding:5px 10px 5px 0px;
  420. box-sizing:border-box;
  421. width:100%;
  422. }
  423. #u8272_text {
  424. border-width:0px;
  425. white-space:nowrap;
  426. text-transform:none;
  427. }
  428. #u8273 {
  429. border-width:0px;
  430. position:absolute;
  431. left:1071px;
  432. top:53px;
  433. width:17px;
  434. height:17px;
  435. display:flex;
  436. transition:none;
  437. }
  438. #u8273 .text {
  439. position:absolute;
  440. align-self:center;
  441. padding:2px 2px 2px 2px;
  442. box-sizing:border-box;
  443. width:100%;
  444. }
  445. #u8273_img {
  446. border-width:0px;
  447. position:absolute;
  448. left:0px;
  449. top:0px;
  450. width:17px;
  451. height:17px;
  452. }
  453. #u8273_text {
  454. border-width:0px;
  455. word-wrap:break-word;
  456. text-transform:none;
  457. visibility:hidden;
  458. }
  459. #u8274 {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:0px;
  465. height:0px;
  466. }
  467. #u8275_div {
  468. border-width:0px;
  469. position:absolute;
  470. left:0px;
  471. top:0px;
  472. width:1000px;
  473. height:736px;
  474. background:inherit;
  475. background-color:rgba(255, 255, 255, 1);
  476. box-sizing:border-box;
  477. border-width:1px;
  478. border-style:solid;
  479. border-color:rgba(242, 242, 242, 1);
  480. border-radius:0px;
  481. filter:drop-shadow(none);
  482. transition:none;
  483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  484. font-weight:400;
  485. font-style:normal;
  486. font-size:14px;
  487. color:#AAAAAA;
  488. text-align:center;
  489. line-height:30px;
  490. }
  491. #u8275 {
  492. border-width:0px;
  493. position:absolute;
  494. left:98px;
  495. top:435px;
  496. width:1000px;
  497. height:736px;
  498. display:flex;
  499. transition:none;
  500. transform-origin:50% 50%;
  501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  502. font-weight:400;
  503. font-style:normal;
  504. font-size:14px;
  505. color:#AAAAAA;
  506. text-align:center;
  507. line-height:30px;
  508. }
  509. #u8275 .text {
  510. position:absolute;
  511. align-self:center;
  512. padding:5px 10px 5px 10px;
  513. box-sizing:border-box;
  514. width:100%;
  515. }
  516. #u8275_text {
  517. border-width:0px;
  518. word-wrap:break-word;
  519. text-transform:none;
  520. visibility:hidden;
  521. }
  522. #u8276_div {
  523. border-width:0px;
  524. position:absolute;
  525. left:0px;
  526. top:0px;
  527. width:73px;
  528. height:40px;
  529. background:inherit;
  530. background-color:rgba(255, 255, 255, 0);
  531. border-left:0px;
  532. border-top:0px;
  533. border-right:0px;
  534. border-radius:0px;
  535. border-bottom-right-radius:0px;
  536. border-bottom-left-radius:0px;
  537. filter:drop-shadow(none);
  538. transition:none;
  539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  540. font-weight:400;
  541. font-style:normal;
  542. font-size:18px;
  543. color:#7F7F7F;
  544. }
  545. #u8276 {
  546. border-width:0px;
  547. position:absolute;
  548. left:138px;
  549. top:451px;
  550. width:73px;
  551. height:40px;
  552. display:flex;
  553. transition:none;
  554. transform-origin:50% 50%;
  555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  556. font-weight:400;
  557. font-style:normal;
  558. font-size:18px;
  559. color:#7F7F7F;
  560. }
  561. #u8276 .text {
  562. position:absolute;
  563. align-self:center;
  564. padding:0px 0px 0px 0px;
  565. box-sizing:border-box;
  566. width:100%;
  567. }
  568. #u8276_text {
  569. border-width:0px;
  570. white-space:nowrap;
  571. text-transform:none;
  572. }
  573. #u8277_div {
  574. border-width:0px;
  575. position:absolute;
  576. left:0px;
  577. top:0px;
  578. width:81px;
  579. height:40px;
  580. background:inherit;
  581. background-color:rgba(255, 255, 255, 0);
  582. border-top:0px;
  583. border-right:0px;
  584. border-bottom:0px;
  585. border-radius:0px;
  586. border-top-left-radius:0px;
  587. border-bottom-left-radius:0px;
  588. filter:drop-shadow(none);
  589. transition:none;
  590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  591. font-weight:400;
  592. font-style:normal;
  593. font-size:14px;
  594. color:#7F7F7F;
  595. text-align:right;
  596. }
  597. #u8277 {
  598. border-width:0px;
  599. position:absolute;
  600. left:145px;
  601. top:661px;
  602. width:81px;
  603. height:40px;
  604. display:flex;
  605. transition:none;
  606. transform-origin:50% 50%;
  607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  608. font-weight:400;
  609. font-style:normal;
  610. font-size:14px;
  611. color:#7F7F7F;
  612. text-align:right;
  613. }
  614. #u8277 .text {
  615. position:absolute;
  616. align-self:center;
  617. padding:5px 10px 5px 0px;
  618. box-sizing:border-box;
  619. width:100%;
  620. }
  621. #u8277_text {
  622. border-width:0px;
  623. white-space:nowrap;
  624. text-transform:none;
  625. }
  626. #u8278 {
  627. border-width:0px;
  628. position:absolute;
  629. left:0px;
  630. top:0px;
  631. width:0px;
  632. height:0px;
  633. }
  634. #u8279_div {
  635. border-width:0px;
  636. position:absolute;
  637. left:0px;
  638. top:0px;
  639. width:740px;
  640. height:80px;
  641. background:inherit;
  642. background-color:rgba(255, 255, 255, 1);
  643. box-sizing:border-box;
  644. border-width:1px;
  645. border-style:solid;
  646. border-color:rgba(201, 201, 201, 1);
  647. border-radius:4px;
  648. filter:drop-shadow(none);
  649. transition:none;
  650. font-family:"Microsoft YaHei", sans-serif;
  651. font-weight:400;
  652. font-style:normal;
  653. font-size:14px;
  654. color:#CCCCCC;
  655. text-align:left;
  656. }
  657. #u8279 {
  658. border-width:0px;
  659. position:absolute;
  660. left:236px;
  661. top:662px;
  662. width:740px;
  663. height:80px;
  664. display:flex;
  665. transition:none;
  666. transform-origin:50% 50%;
  667. font-family:"Microsoft YaHei", sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:14px;
  671. color:#CCCCCC;
  672. text-align:left;
  673. }
  674. #u8279 .text {
  675. position:absolute;
  676. align-self:center;
  677. padding:2px 8px 2px 8px;
  678. box-sizing:border-box;
  679. width:100%;
  680. }
  681. #u8279_text {
  682. border-width:0px;
  683. word-wrap:break-word;
  684. text-transform:none;
  685. visibility:hidden;
  686. }
  687. #u8280_input {
  688. position:absolute;
  689. left:0px;
  690. top:0px;
  691. width:710px;
  692. height:38px;
  693. padding:2px 2px 2px 2px;
  694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  695. font-weight:400;
  696. font-style:normal;
  697. font-size:14px;
  698. letter-spacing:normal;
  699. color:#000000;
  700. vertical-align:none;
  701. text-align:left;
  702. text-transform:none;
  703. background-color:transparent;
  704. border-color:transparent;
  705. }
  706. #u8280_input.hint {
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:710px;
  711. height:38px;
  712. padding:2px 2px 2px 2px;
  713. font-family:"Microsoft YaHei", sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:12px;
  717. letter-spacing:normal;
  718. color:#AAAAAA;
  719. vertical-align:none;
  720. text-align:left;
  721. text-transform:none;
  722. background-color:transparent;
  723. border-color:transparent;
  724. }
  725. #u8280_input.disabled {
  726. position:absolute;
  727. left:0px;
  728. top:0px;
  729. width:710px;
  730. height:38px;
  731. padding:2px 2px 2px 2px;
  732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  733. font-weight:400;
  734. font-style:normal;
  735. font-size:14px;
  736. letter-spacing:normal;
  737. color:#000000;
  738. vertical-align:none;
  739. text-align:left;
  740. text-transform:none;
  741. background-color:transparent;
  742. border-color:transparent;
  743. }
  744. #u8280_input.hint.disabled {
  745. position:absolute;
  746. left:0px;
  747. top:0px;
  748. width:710px;
  749. height:38px;
  750. padding:2px 2px 2px 2px;
  751. font-family:"Microsoft YaHei", sans-serif;
  752. font-weight:400;
  753. font-style:normal;
  754. font-size:12px;
  755. letter-spacing:normal;
  756. color:#AAAAAA;
  757. vertical-align:none;
  758. text-align:left;
  759. text-transform:none;
  760. background-color:transparent;
  761. border-color:transparent;
  762. }
  763. #u8280_div {
  764. border-width:0px;
  765. position:absolute;
  766. left:0px;
  767. top:0px;
  768. width:710px;
  769. height:38px;
  770. background:inherit;
  771. background-color:rgba(255, 255, 255, 1);
  772. border-radius:0px;
  773. filter:drop-shadow(none);
  774. transition:none;
  775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  776. font-weight:400;
  777. font-style:normal;
  778. font-size:14px;
  779. }
  780. #u8280 {
  781. border-width:0px;
  782. position:absolute;
  783. left:244px;
  784. top:663px;
  785. width:710px;
  786. height:38px;
  787. display:flex;
  788. transition:none;
  789. transform-origin:50% 50%;
  790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  791. font-weight:400;
  792. font-style:normal;
  793. font-size:14px;
  794. }
  795. #u8280 .text {
  796. position:absolute;
  797. align-self:center;
  798. padding:2px 2px 2px 2px;
  799. box-sizing:border-box;
  800. width:100%;
  801. }
  802. #u8280_div.hint {
  803. border-width:0px;
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:710px;
  808. height:38px;
  809. background:inherit;
  810. background-color:rgba(255, 255, 255, 1);
  811. border-radius:0px;
  812. filter:drop-shadow(none);
  813. transition:none;
  814. font-family:"Microsoft YaHei", sans-serif;
  815. font-weight:400;
  816. font-style:normal;
  817. font-size:14px;
  818. }
  819. #u8280.hint {
  820. }
  821. #u8280_div.disabled {
  822. border-width:0px;
  823. position:absolute;
  824. left:0px;
  825. top:0px;
  826. width:710px;
  827. height:38px;
  828. background:inherit;
  829. background-color:rgba(240, 240, 240, 1);
  830. border-radius:0px;
  831. filter:drop-shadow(none);
  832. transition:none;
  833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  834. font-weight:400;
  835. font-style:normal;
  836. font-size:14px;
  837. }
  838. #u8280.disabled {
  839. }
  840. #u8280_div.hint.disabled {
  841. border-width:0px;
  842. position:absolute;
  843. left:0px;
  844. top:0px;
  845. width:710px;
  846. height:38px;
  847. background:inherit;
  848. background-color:rgba(240, 240, 240, 1);
  849. border-radius:0px;
  850. filter:drop-shadow(none);
  851. transition:none;
  852. font-family:"Microsoft YaHei", sans-serif;
  853. font-weight:400;
  854. font-style:normal;
  855. font-size:14px;
  856. }
  857. #u8280.hint.disabled {
  858. }
  859. #u8281_div {
  860. border-width:0px;
  861. position:absolute;
  862. left:0px;
  863. top:0px;
  864. width:74px;
  865. height:40px;
  866. background:inherit;
  867. background-color:rgba(255, 255, 255, 0);
  868. border-top:0px;
  869. border-right:0px;
  870. border-bottom:0px;
  871. border-radius:0px;
  872. border-top-left-radius:0px;
  873. border-bottom-left-radius:0px;
  874. filter:drop-shadow(none);
  875. transition:none;
  876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  877. font-weight:400;
  878. font-style:normal;
  879. font-size:14px;
  880. color:#7F7F7F;
  881. text-align:right;
  882. }
  883. #u8281 {
  884. border-width:0px;
  885. position:absolute;
  886. left:152px;
  887. top:611px;
  888. width:74px;
  889. height:40px;
  890. display:flex;
  891. transition:none;
  892. transform-origin:50% 50%;
  893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  894. font-weight:400;
  895. font-style:normal;
  896. font-size:14px;
  897. color:#7F7F7F;
  898. text-align:right;
  899. }
  900. #u8281 .text {
  901. position:absolute;
  902. align-self:center;
  903. padding:5px 10px 5px 0px;
  904. box-sizing:border-box;
  905. width:100%;
  906. }
  907. #u8281_text {
  908. border-width:0px;
  909. white-space:nowrap;
  910. text-transform:none;
  911. }
  912. #u8282_div {
  913. border-width:0px;
  914. position:absolute;
  915. left:0px;
  916. top:0px;
  917. width:88px;
  918. height:40px;
  919. background:inherit;
  920. background-color:rgba(255, 255, 255, 0);
  921. border-top:0px;
  922. border-right:0px;
  923. border-bottom:0px;
  924. border-radius:0px;
  925. border-top-left-radius:0px;
  926. border-bottom-left-radius:0px;
  927. filter:drop-shadow(none);
  928. transition:none;
  929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  930. font-weight:400;
  931. font-style:normal;
  932. font-size:14px;
  933. color:#7F7F7F;
  934. text-align:right;
  935. }
  936. #u8282 {
  937. border-width:0px;
  938. position:absolute;
  939. left:579px;
  940. top:611px;
  941. width:88px;
  942. height:40px;
  943. display:flex;
  944. transition:none;
  945. transform-origin:50% 50%;
  946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  947. font-weight:400;
  948. font-style:normal;
  949. font-size:14px;
  950. color:#7F7F7F;
  951. text-align:right;
  952. }
  953. #u8282 .text {
  954. position:absolute;
  955. align-self:center;
  956. padding:5px 10px 5px 0px;
  957. box-sizing:border-box;
  958. width:100%;
  959. }
  960. #u8282_text {
  961. border-width:0px;
  962. white-space:nowrap;
  963. text-transform:none;
  964. }
  965. #u8283 {
  966. border-width:0px;
  967. position:absolute;
  968. left:0px;
  969. top:0px;
  970. width:0px;
  971. height:0px;
  972. }
  973. #u8284_div {
  974. border-width:0px;
  975. position:absolute;
  976. left:0px;
  977. top:0px;
  978. width:300px;
  979. height:40px;
  980. background:inherit;
  981. background-color:rgba(255, 255, 255, 1);
  982. box-sizing:border-box;
  983. border-width:1px;
  984. border-style:solid;
  985. border-color:rgba(201, 201, 201, 1);
  986. border-radius:4px;
  987. filter:drop-shadow(none);
  988. transition:none;
  989. font-family:"Microsoft YaHei", sans-serif;
  990. font-weight:400;
  991. font-style:normal;
  992. font-size:14px;
  993. color:#CCCCCC;
  994. text-align:left;
  995. }
  996. #u8284 {
  997. border-width:0px;
  998. position:absolute;
  999. left:677px;
  1000. top:611px;
  1001. width:300px;
  1002. height:40px;
  1003. display:flex;
  1004. transition:none;
  1005. transform-origin:50% 50%;
  1006. font-family:"Microsoft YaHei", sans-serif;
  1007. font-weight:400;
  1008. font-style:normal;
  1009. font-size:14px;
  1010. color:#CCCCCC;
  1011. text-align:left;
  1012. }
  1013. #u8284 .text {
  1014. position:absolute;
  1015. align-self:center;
  1016. padding:2px 8px 2px 8px;
  1017. box-sizing:border-box;
  1018. width:100%;
  1019. }
  1020. #u8284_text {
  1021. border-width:0px;
  1022. word-wrap:break-word;
  1023. text-transform:none;
  1024. visibility:hidden;
  1025. }
  1026. #u8285_input {
  1027. position:absolute;
  1028. left:0px;
  1029. top:0px;
  1030. width:280px;
  1031. height:38px;
  1032. padding:2px 2px 2px 2px;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. font-size:14px;
  1037. letter-spacing:normal;
  1038. color:#000000;
  1039. vertical-align:none;
  1040. text-align:left;
  1041. text-transform:none;
  1042. background-color:transparent;
  1043. border-color:transparent;
  1044. }
  1045. #u8285_input.hint {
  1046. position:absolute;
  1047. left:0px;
  1048. top:0px;
  1049. width:280px;
  1050. height:38px;
  1051. padding:2px 2px 2px 2px;
  1052. font-family:"Microsoft YaHei", sans-serif;
  1053. font-weight:400;
  1054. font-style:normal;
  1055. font-size:12px;
  1056. letter-spacing:normal;
  1057. color:#AAAAAA;
  1058. vertical-align:none;
  1059. text-align:left;
  1060. text-transform:none;
  1061. background-color:transparent;
  1062. border-color:transparent;
  1063. }
  1064. #u8285_input.disabled {
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:280px;
  1069. height:38px;
  1070. padding:2px 2px 2px 2px;
  1071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1072. font-weight:400;
  1073. font-style:normal;
  1074. font-size:14px;
  1075. letter-spacing:normal;
  1076. color:#000000;
  1077. vertical-align:none;
  1078. text-align:left;
  1079. text-transform:none;
  1080. background-color:transparent;
  1081. border-color:transparent;
  1082. }
  1083. #u8285_input.hint.disabled {
  1084. position:absolute;
  1085. left:0px;
  1086. top:0px;
  1087. width:280px;
  1088. height:38px;
  1089. padding:2px 2px 2px 2px;
  1090. font-family:"Microsoft YaHei", sans-serif;
  1091. font-weight:400;
  1092. font-style:normal;
  1093. font-size:12px;
  1094. letter-spacing:normal;
  1095. color:#AAAAAA;
  1096. vertical-align:none;
  1097. text-align:left;
  1098. text-transform:none;
  1099. background-color:transparent;
  1100. border-color:transparent;
  1101. }
  1102. #u8285_div {
  1103. border-width:0px;
  1104. position:absolute;
  1105. left:0px;
  1106. top:0px;
  1107. width:280px;
  1108. height:38px;
  1109. background:inherit;
  1110. background-color:rgba(255, 255, 255, 1);
  1111. border-radius:0px;
  1112. filter:drop-shadow(none);
  1113. transition:none;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. font-size:14px;
  1118. }
  1119. #u8285 {
  1120. border-width:0px;
  1121. position:absolute;
  1122. left:688px;
  1123. top:612px;
  1124. width:280px;
  1125. height:38px;
  1126. display:flex;
  1127. transition:none;
  1128. transform-origin:50% 50%;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:14px;
  1133. }
  1134. #u8285 .text {
  1135. position:absolute;
  1136. align-self:center;
  1137. padding:2px 2px 2px 2px;
  1138. box-sizing:border-box;
  1139. width:100%;
  1140. }
  1141. #u8285_div.hint {
  1142. border-width:0px;
  1143. position:absolute;
  1144. left:0px;
  1145. top:0px;
  1146. width:280px;
  1147. height:38px;
  1148. background:inherit;
  1149. background-color:rgba(255, 255, 255, 1);
  1150. border-radius:0px;
  1151. filter:drop-shadow(none);
  1152. transition:none;
  1153. font-family:"Microsoft YaHei", sans-serif;
  1154. font-weight:400;
  1155. font-style:normal;
  1156. font-size:14px;
  1157. }
  1158. #u8285.hint {
  1159. }
  1160. #u8285_div.disabled {
  1161. border-width:0px;
  1162. position:absolute;
  1163. left:0px;
  1164. top:0px;
  1165. width:280px;
  1166. height:38px;
  1167. background:inherit;
  1168. background-color:rgba(240, 240, 240, 1);
  1169. border-radius:0px;
  1170. filter:drop-shadow(none);
  1171. transition:none;
  1172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1173. font-weight:400;
  1174. font-style:normal;
  1175. font-size:14px;
  1176. }
  1177. #u8285.disabled {
  1178. }
  1179. #u8285_div.hint.disabled {
  1180. border-width:0px;
  1181. position:absolute;
  1182. left:0px;
  1183. top:0px;
  1184. width:280px;
  1185. height:38px;
  1186. background:inherit;
  1187. background-color:rgba(240, 240, 240, 1);
  1188. border-radius:0px;
  1189. filter:drop-shadow(none);
  1190. transition:none;
  1191. font-family:"Microsoft YaHei", sans-serif;
  1192. font-weight:400;
  1193. font-style:normal;
  1194. font-size:14px;
  1195. }
  1196. #u8285.hint.disabled {
  1197. }
  1198. #u8286 {
  1199. border-width:0px;
  1200. position:absolute;
  1201. left:952px;
  1202. top:624px;
  1203. width:13px;
  1204. height:15px;
  1205. display:flex;
  1206. transition:none;
  1207. }
  1208. #u8286 .text {
  1209. position:absolute;
  1210. align-self:center;
  1211. padding:2px 2px 2px 2px;
  1212. box-sizing:border-box;
  1213. width:100%;
  1214. }
  1215. #u8286_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:13px;
  1221. height:15px;
  1222. }
  1223. #u8286_text {
  1224. border-width:0px;
  1225. word-wrap:break-word;
  1226. text-transform:none;
  1227. visibility:hidden;
  1228. }
  1229. #u8287_div {
  1230. border-width:0px;
  1231. position:absolute;
  1232. left:0px;
  1233. top:0px;
  1234. width:88px;
  1235. height:40px;
  1236. background:inherit;
  1237. background-color:rgba(255, 255, 255, 0);
  1238. border-top:0px;
  1239. border-right:0px;
  1240. border-bottom:0px;
  1241. border-radius:0px;
  1242. border-top-left-radius:0px;
  1243. border-bottom-left-radius:0px;
  1244. filter:drop-shadow(none);
  1245. transition:none;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. font-size:14px;
  1250. color:#7F7F7F;
  1251. text-align:right;
  1252. }
  1253. #u8287 {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:138px;
  1257. top:511px;
  1258. width:88px;
  1259. height:40px;
  1260. display:flex;
  1261. transition:none;
  1262. transform-origin:50% 50%;
  1263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1264. font-weight:400;
  1265. font-style:normal;
  1266. font-size:14px;
  1267. color:#7F7F7F;
  1268. text-align:right;
  1269. }
  1270. #u8287 .text {
  1271. position:absolute;
  1272. align-self:center;
  1273. padding:5px 10px 5px 0px;
  1274. box-sizing:border-box;
  1275. width:100%;
  1276. }
  1277. #u8287_text {
  1278. border-width:0px;
  1279. white-space:nowrap;
  1280. text-transform:none;
  1281. }
  1282. #u8288 {
  1283. border-width:0px;
  1284. position:absolute;
  1285. left:0px;
  1286. top:0px;
  1287. width:0px;
  1288. height:0px;
  1289. }
  1290. #u8289_div {
  1291. border-width:0px;
  1292. position:absolute;
  1293. left:0px;
  1294. top:0px;
  1295. width:300px;
  1296. height:40px;
  1297. background:inherit;
  1298. background-color:rgba(255, 255, 255, 1);
  1299. box-sizing:border-box;
  1300. border-width:1px;
  1301. border-style:solid;
  1302. border-color:rgba(215, 215, 215, 1);
  1303. border-radius:4px;
  1304. filter:drop-shadow(none);
  1305. transition:none;
  1306. font-size:14px;
  1307. }
  1308. #u8289 {
  1309. border-width:0px;
  1310. position:absolute;
  1311. left:236px;
  1312. top:511px;
  1313. width:300px;
  1314. height:40px;
  1315. display:flex;
  1316. transition:none;
  1317. transform-origin:50% 50%;
  1318. font-size:14px;
  1319. }
  1320. #u8289 .text {
  1321. position:absolute;
  1322. align-self:center;
  1323. padding:2px 2px 2px 2px;
  1324. box-sizing:border-box;
  1325. width:100%;
  1326. }
  1327. #u8289_text {
  1328. border-width:0px;
  1329. word-wrap:break-word;
  1330. text-transform:none;
  1331. visibility:hidden;
  1332. }
  1333. #u8290_input {
  1334. position:absolute;
  1335. left:0px;
  1336. top:0px;
  1337. width:286px;
  1338. height:31px;
  1339. padding:2px 2px 2px 2px;
  1340. font-family:'ArialMT', 'Arial', sans-serif;
  1341. font-weight:400;
  1342. font-style:normal;
  1343. font-size:14px;
  1344. letter-spacing:normal;
  1345. color:#AAAAAA;
  1346. vertical-align:none;
  1347. text-align:left;
  1348. text-transform:none;
  1349. background-color:transparent;
  1350. border-color:transparent;
  1351. }
  1352. #u8290_input.disabled {
  1353. position:absolute;
  1354. left:0px;
  1355. top:0px;
  1356. width:286px;
  1357. height:31px;
  1358. padding:2px 2px 2px 2px;
  1359. font-family:'ArialMT', 'Arial', sans-serif;
  1360. font-weight:400;
  1361. font-style:normal;
  1362. font-size:14px;
  1363. letter-spacing:normal;
  1364. color:#AAAAAA;
  1365. vertical-align:none;
  1366. text-align:left;
  1367. text-transform:none;
  1368. background-color:transparent;
  1369. border-color:transparent;
  1370. }
  1371. #u8290_div {
  1372. border-width:0px;
  1373. position:absolute;
  1374. left:0px;
  1375. top:0px;
  1376. width:286px;
  1377. height:31px;
  1378. background:inherit;
  1379. background-color:rgba(255, 255, 255, 1);
  1380. border-radius:0px;
  1381. filter:drop-shadow(none);
  1382. transition:none;
  1383. font-size:14px;
  1384. color:#AAAAAA;
  1385. }
  1386. #u8290 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:244px;
  1390. top:514px;
  1391. width:286px;
  1392. height:31px;
  1393. display:flex;
  1394. transition:none;
  1395. transform-origin:50% 50%;
  1396. font-size:14px;
  1397. color:#AAAAAA;
  1398. }
  1399. #u8290 .text {
  1400. position:absolute;
  1401. align-self:flex-start;
  1402. padding:2px 2px 2px 2px;
  1403. box-sizing:border-box;
  1404. width:100%;
  1405. }
  1406. #u8290_div.disabled {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:286px;
  1412. height:31px;
  1413. background:inherit;
  1414. background-color:rgba(240, 240, 240, 1);
  1415. border-radius:0px;
  1416. filter:drop-shadow(none);
  1417. transition:none;
  1418. font-size:14px;
  1419. color:#AAAAAA;
  1420. }
  1421. #u8290.disabled {
  1422. }
  1423. .u8290_input_option {
  1424. font-size:14px;
  1425. }
  1426. #u8291_div {
  1427. border-width:0px;
  1428. position:absolute;
  1429. left:0px;
  1430. top:0px;
  1431. width:88px;
  1432. height:40px;
  1433. background:inherit;
  1434. background-color:rgba(255, 255, 255, 0);
  1435. border-top:0px;
  1436. border-right:0px;
  1437. border-bottom:0px;
  1438. border-radius:0px;
  1439. border-top-left-radius:0px;
  1440. border-bottom-left-radius:0px;
  1441. filter:drop-shadow(none);
  1442. transition:none;
  1443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1444. font-weight:400;
  1445. font-style:normal;
  1446. font-size:14px;
  1447. color:#7F7F7F;
  1448. text-align:right;
  1449. }
  1450. #u8291 {
  1451. border-width:0px;
  1452. position:absolute;
  1453. left:579px;
  1454. top:511px;
  1455. width:88px;
  1456. height:40px;
  1457. display:flex;
  1458. transition:none;
  1459. transform-origin:50% 50%;
  1460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1461. font-weight:400;
  1462. font-style:normal;
  1463. font-size:14px;
  1464. color:#7F7F7F;
  1465. text-align:right;
  1466. }
  1467. #u8291 .text {
  1468. position:absolute;
  1469. align-self:center;
  1470. padding:5px 10px 5px 0px;
  1471. box-sizing:border-box;
  1472. width:100%;
  1473. }
  1474. #u8291_text {
  1475. border-width:0px;
  1476. white-space:nowrap;
  1477. text-transform:none;
  1478. }
  1479. #u8292 {
  1480. border-width:0px;
  1481. position:absolute;
  1482. left:0px;
  1483. top:0px;
  1484. width:0px;
  1485. height:0px;
  1486. }
  1487. #u8293_div {
  1488. border-width:0px;
  1489. position:absolute;
  1490. left:0px;
  1491. top:0px;
  1492. width:300px;
  1493. height:40px;
  1494. background:inherit;
  1495. background-color:rgba(255, 255, 255, 1);
  1496. box-sizing:border-box;
  1497. border-width:1px;
  1498. border-style:solid;
  1499. border-color:rgba(215, 215, 215, 1);
  1500. border-radius:4px;
  1501. filter:drop-shadow(none);
  1502. transition:none;
  1503. font-size:14px;
  1504. }
  1505. #u8293 {
  1506. border-width:0px;
  1507. position:absolute;
  1508. left:677px;
  1509. top:511px;
  1510. width:300px;
  1511. height:40px;
  1512. display:flex;
  1513. transition:none;
  1514. transform-origin:50% 50%;
  1515. font-size:14px;
  1516. }
  1517. #u8293 .text {
  1518. position:absolute;
  1519. align-self:center;
  1520. padding:2px 2px 2px 2px;
  1521. box-sizing:border-box;
  1522. width:100%;
  1523. }
  1524. #u8293_text {
  1525. border-width:0px;
  1526. word-wrap:break-word;
  1527. text-transform:none;
  1528. visibility:hidden;
  1529. }
  1530. #u8294_input {
  1531. position:absolute;
  1532. left:0px;
  1533. top:0px;
  1534. width:286px;
  1535. height:31px;
  1536. padding:2px 2px 2px 2px;
  1537. font-family:'ArialMT', 'Arial', sans-serif;
  1538. font-weight:400;
  1539. font-style:normal;
  1540. font-size:14px;
  1541. letter-spacing:normal;
  1542. color:#AAAAAA;
  1543. vertical-align:none;
  1544. text-align:left;
  1545. text-transform:none;
  1546. background-color:transparent;
  1547. border-color:transparent;
  1548. }
  1549. #u8294_input.disabled {
  1550. position:absolute;
  1551. left:0px;
  1552. top:0px;
  1553. width:286px;
  1554. height:31px;
  1555. padding:2px 2px 2px 2px;
  1556. font-family:'ArialMT', 'Arial', sans-serif;
  1557. font-weight:400;
  1558. font-style:normal;
  1559. font-size:14px;
  1560. letter-spacing:normal;
  1561. color:#AAAAAA;
  1562. vertical-align:none;
  1563. text-align:left;
  1564. text-transform:none;
  1565. background-color:transparent;
  1566. border-color:transparent;
  1567. }
  1568. #u8294_div {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:286px;
  1574. height:31px;
  1575. background:inherit;
  1576. background-color:rgba(255, 255, 255, 1);
  1577. border-radius:0px;
  1578. filter:drop-shadow(none);
  1579. transition:none;
  1580. font-size:14px;
  1581. color:#AAAAAA;
  1582. }
  1583. #u8294 {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:685px;
  1587. top:514px;
  1588. width:286px;
  1589. height:31px;
  1590. display:flex;
  1591. transition:none;
  1592. transform-origin:50% 50%;
  1593. font-size:14px;
  1594. color:#AAAAAA;
  1595. }
  1596. #u8294 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:2px 2px 2px 2px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u8294_div.disabled {
  1604. border-width:0px;
  1605. position:absolute;
  1606. left:0px;
  1607. top:0px;
  1608. width:286px;
  1609. height:31px;
  1610. background:inherit;
  1611. background-color:rgba(240, 240, 240, 1);
  1612. border-radius:0px;
  1613. filter:drop-shadow(none);
  1614. transition:none;
  1615. font-size:14px;
  1616. color:#AAAAAA;
  1617. }
  1618. #u8294.disabled {
  1619. }
  1620. .u8294_input_option {
  1621. font-size:14px;
  1622. }
  1623. #u8295_div {
  1624. border-width:0px;
  1625. position:absolute;
  1626. left:0px;
  1627. top:0px;
  1628. width:88px;
  1629. height:40px;
  1630. background:inherit;
  1631. background-color:rgba(255, 255, 255, 0);
  1632. border-top:0px;
  1633. border-right:0px;
  1634. border-bottom:0px;
  1635. border-radius:0px;
  1636. border-top-left-radius:0px;
  1637. border-bottom-left-radius:0px;
  1638. filter:drop-shadow(none);
  1639. transition:none;
  1640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1641. font-weight:400;
  1642. font-style:normal;
  1643. font-size:14px;
  1644. color:#7F7F7F;
  1645. text-align:right;
  1646. }
  1647. #u8295 {
  1648. border-width:0px;
  1649. position:absolute;
  1650. left:138px;
  1651. top:561px;
  1652. width:88px;
  1653. height:40px;
  1654. display:flex;
  1655. transition:none;
  1656. transform-origin:50% 50%;
  1657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1658. font-weight:400;
  1659. font-style:normal;
  1660. font-size:14px;
  1661. color:#7F7F7F;
  1662. text-align:right;
  1663. }
  1664. #u8295 .text {
  1665. position:absolute;
  1666. align-self:center;
  1667. padding:5px 10px 5px 0px;
  1668. box-sizing:border-box;
  1669. width:100%;
  1670. }
  1671. #u8295_text {
  1672. border-width:0px;
  1673. white-space:nowrap;
  1674. text-transform:none;
  1675. }
  1676. #u8296 {
  1677. border-width:0px;
  1678. position:absolute;
  1679. left:0px;
  1680. top:0px;
  1681. width:0px;
  1682. height:0px;
  1683. }
  1684. #u8297_div {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:0px;
  1688. top:0px;
  1689. width:300px;
  1690. height:40px;
  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(215, 215, 215, 1);
  1697. border-radius:4px;
  1698. filter:drop-shadow(none);
  1699. transition:none;
  1700. font-size:14px;
  1701. }
  1702. #u8297 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:236px;
  1706. top:561px;
  1707. width:300px;
  1708. height:40px;
  1709. display:flex;
  1710. transition:none;
  1711. transform-origin:50% 50%;
  1712. font-size:14px;
  1713. }
  1714. #u8297 .text {
  1715. position:absolute;
  1716. align-self:center;
  1717. padding:2px 2px 2px 2px;
  1718. box-sizing:border-box;
  1719. width:100%;
  1720. }
  1721. #u8297_text {
  1722. border-width:0px;
  1723. word-wrap:break-word;
  1724. text-transform:none;
  1725. visibility:hidden;
  1726. }
  1727. #u8298_input {
  1728. position:absolute;
  1729. left:0px;
  1730. top:0px;
  1731. width:286px;
  1732. height:31px;
  1733. padding:2px 2px 2px 2px;
  1734. font-family:'ArialMT', 'Arial', sans-serif;
  1735. font-weight:400;
  1736. font-style:normal;
  1737. font-size:14px;
  1738. letter-spacing:normal;
  1739. color:#AAAAAA;
  1740. vertical-align:none;
  1741. text-align:left;
  1742. text-transform:none;
  1743. background-color:transparent;
  1744. border-color:transparent;
  1745. }
  1746. #u8298_input.disabled {
  1747. position:absolute;
  1748. left:0px;
  1749. top:0px;
  1750. width:286px;
  1751. height:31px;
  1752. padding:2px 2px 2px 2px;
  1753. font-family:'ArialMT', 'Arial', sans-serif;
  1754. font-weight:400;
  1755. font-style:normal;
  1756. font-size:14px;
  1757. letter-spacing:normal;
  1758. color:#AAAAAA;
  1759. vertical-align:none;
  1760. text-align:left;
  1761. text-transform:none;
  1762. background-color:transparent;
  1763. border-color:transparent;
  1764. }
  1765. #u8298_div {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:0px;
  1769. top:0px;
  1770. width:286px;
  1771. height:31px;
  1772. background:inherit;
  1773. background-color:rgba(255, 255, 255, 1);
  1774. border-radius:0px;
  1775. filter:drop-shadow(none);
  1776. transition:none;
  1777. font-size:14px;
  1778. color:#AAAAAA;
  1779. }
  1780. #u8298 {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:244px;
  1784. top:564px;
  1785. width:286px;
  1786. height:31px;
  1787. display:flex;
  1788. transition:none;
  1789. transform-origin:50% 50%;
  1790. font-size:14px;
  1791. color:#AAAAAA;
  1792. }
  1793. #u8298 .text {
  1794. position:absolute;
  1795. align-self:flex-start;
  1796. padding:2px 2px 2px 2px;
  1797. box-sizing:border-box;
  1798. width:100%;
  1799. }
  1800. #u8298_div.disabled {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:0px;
  1804. top:0px;
  1805. width:286px;
  1806. height:31px;
  1807. background:inherit;
  1808. background-color:rgba(240, 240, 240, 1);
  1809. border-radius:0px;
  1810. filter:drop-shadow(none);
  1811. transition:none;
  1812. font-size:14px;
  1813. color:#AAAAAA;
  1814. }
  1815. #u8298.disabled {
  1816. }
  1817. .u8298_input_option {
  1818. font-size:14px;
  1819. }
  1820. #u8299_div {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:0px;
  1824. top:0px;
  1825. width:88px;
  1826. height:40px;
  1827. background:inherit;
  1828. background-color:rgba(255, 255, 255, 0);
  1829. border-top:0px;
  1830. border-right:0px;
  1831. border-bottom:0px;
  1832. border-radius:0px;
  1833. border-top-left-radius:0px;
  1834. border-bottom-left-radius:0px;
  1835. filter:drop-shadow(none);
  1836. transition:none;
  1837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1838. font-weight:400;
  1839. font-style:normal;
  1840. font-size:14px;
  1841. color:#7F7F7F;
  1842. text-align:right;
  1843. }
  1844. #u8299 {
  1845. border-width:0px;
  1846. position:absolute;
  1847. left:579px;
  1848. top:561px;
  1849. width:88px;
  1850. height:40px;
  1851. display:flex;
  1852. transition:none;
  1853. transform-origin:50% 50%;
  1854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1855. font-weight:400;
  1856. font-style:normal;
  1857. font-size:14px;
  1858. color:#7F7F7F;
  1859. text-align:right;
  1860. }
  1861. #u8299 .text {
  1862. position:absolute;
  1863. align-self:center;
  1864. padding:5px 10px 5px 0px;
  1865. box-sizing:border-box;
  1866. width:100%;
  1867. }
  1868. #u8299_text {
  1869. border-width:0px;
  1870. white-space:nowrap;
  1871. text-transform:none;
  1872. }
  1873. #u8300 {
  1874. border-width:0px;
  1875. position:absolute;
  1876. left:0px;
  1877. top:0px;
  1878. width:0px;
  1879. height:0px;
  1880. }
  1881. #u8301_div {
  1882. border-width:0px;
  1883. position:absolute;
  1884. left:0px;
  1885. top:0px;
  1886. width:300px;
  1887. height:40px;
  1888. background:inherit;
  1889. background-color:rgba(255, 255, 255, 1);
  1890. box-sizing:border-box;
  1891. border-width:1px;
  1892. border-style:solid;
  1893. border-color:rgba(215, 215, 215, 1);
  1894. border-radius:4px;
  1895. filter:drop-shadow(none);
  1896. transition:none;
  1897. font-size:14px;
  1898. }
  1899. #u8301 {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:677px;
  1903. top:561px;
  1904. width:300px;
  1905. height:40px;
  1906. display:flex;
  1907. transition:none;
  1908. transform-origin:50% 50%;
  1909. font-size:14px;
  1910. }
  1911. #u8301 .text {
  1912. position:absolute;
  1913. align-self:center;
  1914. padding:2px 2px 2px 2px;
  1915. box-sizing:border-box;
  1916. width:100%;
  1917. }
  1918. #u8301_text {
  1919. border-width:0px;
  1920. word-wrap:break-word;
  1921. text-transform:none;
  1922. visibility:hidden;
  1923. }
  1924. #u8302_input {
  1925. position:absolute;
  1926. left:0px;
  1927. top:0px;
  1928. width:286px;
  1929. height:31px;
  1930. padding:2px 2px 2px 2px;
  1931. font-family:'ArialMT', 'Arial', sans-serif;
  1932. font-weight:400;
  1933. font-style:normal;
  1934. font-size:14px;
  1935. letter-spacing:normal;
  1936. color:#AAAAAA;
  1937. vertical-align:none;
  1938. text-align:left;
  1939. text-transform:none;
  1940. background-color:transparent;
  1941. border-color:transparent;
  1942. }
  1943. #u8302_input.disabled {
  1944. position:absolute;
  1945. left:0px;
  1946. top:0px;
  1947. width:286px;
  1948. height:31px;
  1949. padding:2px 2px 2px 2px;
  1950. font-family:'ArialMT', 'Arial', sans-serif;
  1951. font-weight:400;
  1952. font-style:normal;
  1953. font-size:14px;
  1954. letter-spacing:normal;
  1955. color:#AAAAAA;
  1956. vertical-align:none;
  1957. text-align:left;
  1958. text-transform:none;
  1959. background-color:transparent;
  1960. border-color:transparent;
  1961. }
  1962. #u8302_div {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:0px;
  1966. top:0px;
  1967. width:286px;
  1968. height:31px;
  1969. background:inherit;
  1970. background-color:rgba(255, 255, 255, 1);
  1971. border-radius:0px;
  1972. filter:drop-shadow(none);
  1973. transition:none;
  1974. font-size:14px;
  1975. color:#AAAAAA;
  1976. }
  1977. #u8302 {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:685px;
  1981. top:564px;
  1982. width:286px;
  1983. height:31px;
  1984. display:flex;
  1985. transition:none;
  1986. transform-origin:50% 50%;
  1987. font-size:14px;
  1988. color:#AAAAAA;
  1989. }
  1990. #u8302 .text {
  1991. position:absolute;
  1992. align-self:flex-start;
  1993. padding:2px 2px 2px 2px;
  1994. box-sizing:border-box;
  1995. width:100%;
  1996. }
  1997. #u8302_div.disabled {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:0px;
  2001. top:0px;
  2002. width:286px;
  2003. height:31px;
  2004. background:inherit;
  2005. background-color:rgba(240, 240, 240, 1);
  2006. border-radius:0px;
  2007. filter:drop-shadow(none);
  2008. transition:none;
  2009. font-size:14px;
  2010. color:#AAAAAA;
  2011. }
  2012. #u8302.disabled {
  2013. }
  2014. .u8302_input_option {
  2015. font-size:14px;
  2016. }
  2017. #u8303 {
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:0px;
  2021. top:0px;
  2022. width:0px;
  2023. height:0px;
  2024. }
  2025. #u8304 {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:0px;
  2029. top:0px;
  2030. width:0px;
  2031. height:0px;
  2032. }
  2033. #u8305_div {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:0px;
  2037. top:0px;
  2038. width:300px;
  2039. height:40px;
  2040. background:inherit;
  2041. background-color:rgba(255, 255, 255, 1);
  2042. box-sizing:border-box;
  2043. border-width:1px;
  2044. border-style:solid;
  2045. border-color:rgba(215, 215, 215, 1);
  2046. border-radius:4px;
  2047. filter:drop-shadow(none);
  2048. transition:none;
  2049. font-size:14px;
  2050. }
  2051. #u8305 {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:236px;
  2055. top:611px;
  2056. width:300px;
  2057. height:40px;
  2058. display:flex;
  2059. transition:none;
  2060. transform-origin:50% 50%;
  2061. font-size:14px;
  2062. }
  2063. #u8305 .text {
  2064. position:absolute;
  2065. align-self:center;
  2066. padding:2px 2px 2px 2px;
  2067. box-sizing:border-box;
  2068. width:100%;
  2069. }
  2070. #u8305_text {
  2071. border-width:0px;
  2072. word-wrap:break-word;
  2073. text-transform:none;
  2074. visibility:hidden;
  2075. }
  2076. #u8306_div {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:0px;
  2080. top:0px;
  2081. width:51px;
  2082. height:40px;
  2083. background:inherit;
  2084. background-color:rgba(255, 255, 255, 0);
  2085. border-top:0px;
  2086. border-right:0px;
  2087. border-bottom:0px;
  2088. border-radius:0px;
  2089. border-top-left-radius:0px;
  2090. border-bottom-left-radius:0px;
  2091. filter:drop-shadow(none);
  2092. transition:none;
  2093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2094. font-weight:400;
  2095. font-style:normal;
  2096. font-size:14px;
  2097. color:#7F7F7F;
  2098. }
  2099. #u8306 {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:244px;
  2103. top:611px;
  2104. width:51px;
  2105. height:40px;
  2106. display:flex;
  2107. transition:none;
  2108. transform-origin:50% 50%;
  2109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2110. font-weight:400;
  2111. font-style:normal;
  2112. font-size:14px;
  2113. color:#7F7F7F;
  2114. }
  2115. #u8306 .text {
  2116. position:absolute;
  2117. align-self:center;
  2118. padding:5px 10px 5px 0px;
  2119. box-sizing:border-box;
  2120. width:100%;
  2121. }
  2122. #u8306_text {
  2123. border-width:0px;
  2124. white-space:nowrap;
  2125. text-transform:none;
  2126. }
  2127. #u8307_div {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:0px;
  2131. top:0px;
  2132. width:51px;
  2133. height:40px;
  2134. background:inherit;
  2135. background-color:rgba(255, 255, 255, 0);
  2136. border-top:0px;
  2137. border-right:0px;
  2138. border-bottom:0px;
  2139. border-radius:0px;
  2140. border-top-left-radius:0px;
  2141. border-bottom-left-radius:0px;
  2142. filter:drop-shadow(none);
  2143. transition:none;
  2144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2145. font-weight:400;
  2146. font-style:normal;
  2147. font-size:14px;
  2148. color:#7F7F7F;
  2149. }
  2150. #u8307 {
  2151. border-width:0px;
  2152. position:absolute;
  2153. left:304px;
  2154. top:611px;
  2155. width:51px;
  2156. height:40px;
  2157. display:flex;
  2158. transition:none;
  2159. transform-origin:50% 50%;
  2160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2161. font-weight:400;
  2162. font-style:normal;
  2163. font-size:14px;
  2164. color:#7F7F7F;
  2165. }
  2166. #u8307 .text {
  2167. position:absolute;
  2168. align-self:center;
  2169. padding:5px 10px 5px 0px;
  2170. box-sizing:border-box;
  2171. width:100%;
  2172. }
  2173. #u8307_text {
  2174. border-width:0px;
  2175. white-space:nowrap;
  2176. text-transform:none;
  2177. }
  2178. #u8308 {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:0px;
  2182. top:0px;
  2183. width:0px;
  2184. height:0px;
  2185. }
  2186. #u8309_div {
  2187. border-width:0px;
  2188. position:absolute;
  2189. left:0px;
  2190. top:0px;
  2191. width:1000px;
  2192. height:60px;
  2193. background:inherit;
  2194. background-color:rgba(255, 255, 255, 1);
  2195. box-sizing:border-box;
  2196. border-width:1px;
  2197. border-style:solid;
  2198. border-color:rgba(215, 215, 215, 1);
  2199. border-radius:0px;
  2200. filter:drop-shadow(none);
  2201. transition:none;
  2202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2203. font-weight:400;
  2204. font-style:normal;
  2205. font-size:14px;
  2206. color:#AAAAAA;
  2207. text-align:center;
  2208. line-height:30px;
  2209. }
  2210. #u8309 {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:98px;
  2214. top:1171px;
  2215. width:1000px;
  2216. height:60px;
  2217. display:flex;
  2218. transition:none;
  2219. transform-origin:50% 50%;
  2220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2221. font-weight:400;
  2222. font-style:normal;
  2223. font-size:14px;
  2224. color:#AAAAAA;
  2225. text-align:center;
  2226. line-height:30px;
  2227. }
  2228. #u8309 .text {
  2229. position:absolute;
  2230. align-self:center;
  2231. padding:5px 10px 5px 10px;
  2232. box-sizing:border-box;
  2233. width:100%;
  2234. }
  2235. #u8309_text {
  2236. border-width:0px;
  2237. word-wrap:break-word;
  2238. text-transform:none;
  2239. visibility:hidden;
  2240. }
  2241. #u8310_div {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:0px;
  2245. top:0px;
  2246. width:80px;
  2247. height:30px;
  2248. background:inherit;
  2249. background-color:rgba(24, 144, 255, 1);
  2250. border-radius:4px;
  2251. filter:drop-shadow(none);
  2252. transition:none;
  2253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2254. font-weight:400;
  2255. font-style:normal;
  2256. font-size:14px;
  2257. color:#FFFFFF;
  2258. }
  2259. #u8310 {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:978px;
  2263. top:1186px;
  2264. width:80px;
  2265. height:30px;
  2266. display:flex;
  2267. transition:none;
  2268. transform-origin:50% 50%;
  2269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2270. font-weight:400;
  2271. font-style:normal;
  2272. font-size:14px;
  2273. color:#FFFFFF;
  2274. }
  2275. #u8310 .text {
  2276. position:absolute;
  2277. align-self:center;
  2278. padding:2px 2px 2px 2px;
  2279. box-sizing:border-box;
  2280. width:100%;
  2281. }
  2282. #u8310_text {
  2283. border-width:0px;
  2284. word-wrap:break-word;
  2285. text-transform:none;
  2286. }
  2287. #u8311_div {
  2288. border-width:0px;
  2289. position:absolute;
  2290. left:0px;
  2291. top:0px;
  2292. width:79px;
  2293. height:30px;
  2294. background:inherit;
  2295. background-color:rgba(255, 255, 255, 1);
  2296. box-sizing:border-box;
  2297. border-width:1px;
  2298. border-style:solid;
  2299. border-color:rgba(170, 170, 170, 1);
  2300. border-radius:4px;
  2301. filter:drop-shadow(none);
  2302. transition:none;
  2303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2304. font-weight:400;
  2305. font-style:normal;
  2306. font-size:14px;
  2307. }
  2308. #u8311 {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:879px;
  2312. top:1186px;
  2313. width:79px;
  2314. height:30px;
  2315. display:flex;
  2316. transition:none;
  2317. transform-origin:50% 50%;
  2318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2319. font-weight:400;
  2320. font-style:normal;
  2321. font-size:14px;
  2322. }
  2323. #u8311 .text {
  2324. position:absolute;
  2325. align-self:center;
  2326. padding:2px 2px 2px 2px;
  2327. box-sizing:border-box;
  2328. width:100%;
  2329. }
  2330. #u8311_text {
  2331. border-width:0px;
  2332. word-wrap:break-word;
  2333. text-transform:none;
  2334. }
  2335. #u8312_div {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:0px;
  2339. top:0px;
  2340. width:73px;
  2341. height:40px;
  2342. background:inherit;
  2343. background-color:rgba(255, 255, 255, 0);
  2344. border-left:0px;
  2345. border-top:0px;
  2346. border-right:0px;
  2347. border-radius:0px;
  2348. border-bottom-right-radius:0px;
  2349. border-bottom-left-radius:0px;
  2350. filter:drop-shadow(none);
  2351. transition:none;
  2352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2353. font-weight:400;
  2354. font-style:normal;
  2355. font-size:18px;
  2356. }
  2357. #u8312 {
  2358. border-width:0px;
  2359. position:absolute;
  2360. left:138px;
  2361. top:104px;
  2362. width:73px;
  2363. height:40px;
  2364. display:flex;
  2365. transition:none;
  2366. transform-origin:50% 50%;
  2367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2368. font-weight:400;
  2369. font-style:normal;
  2370. font-size:18px;
  2371. }
  2372. #u8312 .text {
  2373. position:absolute;
  2374. align-self:center;
  2375. padding:0px 0px 0px 0px;
  2376. box-sizing:border-box;
  2377. width:100%;
  2378. }
  2379. #u8312_text {
  2380. border-width:0px;
  2381. white-space:nowrap;
  2382. text-transform:none;
  2383. }
  2384. #u8313_div {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:0px;
  2388. top:0px;
  2389. width:80px;
  2390. height:40px;
  2391. background:inherit;
  2392. background-color:rgba(255, 255, 255, 0);
  2393. border-top:0px;
  2394. border-right:0px;
  2395. border-bottom:0px;
  2396. border-radius:0px;
  2397. border-top-left-radius:0px;
  2398. border-bottom-left-radius:0px;
  2399. filter:drop-shadow(none);
  2400. transition:none;
  2401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2402. font-weight:400;
  2403. font-style:normal;
  2404. font-size:14px;
  2405. color:#7F7F7F;
  2406. line-height:40px;
  2407. }
  2408. #u8313 {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:138px;
  2412. top:144px;
  2413. width:80px;
  2414. height:40px;
  2415. display:flex;
  2416. transition:none;
  2417. transform-origin:50% 50%;
  2418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2419. font-weight:400;
  2420. font-style:normal;
  2421. font-size:14px;
  2422. color:#7F7F7F;
  2423. line-height:40px;
  2424. }
  2425. #u8313 .text {
  2426. position:absolute;
  2427. align-self:center;
  2428. padding:0px 0px 0px 0px;
  2429. box-sizing:border-box;
  2430. width:100%;
  2431. }
  2432. #u8313_text {
  2433. border-width:0px;
  2434. word-wrap:break-word;
  2435. text-transform:none;
  2436. }
  2437. #u8314_div {
  2438. border-width:0px;
  2439. position:absolute;
  2440. left:0px;
  2441. top:0px;
  2442. width:160px;
  2443. height:40px;
  2444. background:inherit;
  2445. background-color:rgba(255, 255, 255, 0);
  2446. border-top:0px;
  2447. border-right:0px;
  2448. border-bottom:0px;
  2449. border-radius:0px;
  2450. border-top-left-radius:0px;
  2451. border-bottom-left-radius:0px;
  2452. filter:drop-shadow(none);
  2453. transition:none;
  2454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2455. font-weight:400;
  2456. font-style:normal;
  2457. font-size:14px;
  2458. line-height:40px;
  2459. }
  2460. #u8314 {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:218px;
  2464. top:144px;
  2465. width:160px;
  2466. height:40px;
  2467. display:flex;
  2468. transition:none;
  2469. transform-origin:50% 50%;
  2470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2471. font-weight:400;
  2472. font-style:normal;
  2473. font-size:14px;
  2474. line-height:40px;
  2475. }
  2476. #u8314 .text {
  2477. position:absolute;
  2478. align-self:center;
  2479. padding:0px 0px 0px 0px;
  2480. box-sizing:border-box;
  2481. width:100%;
  2482. }
  2483. #u8314_text {
  2484. border-width:0px;
  2485. word-wrap:break-word;
  2486. text-transform:none;
  2487. }
  2488. #u8315_div {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:0px;
  2492. top:0px;
  2493. width:80px;
  2494. height:40px;
  2495. background:inherit;
  2496. background-color:rgba(255, 255, 255, 0);
  2497. border-top:0px;
  2498. border-right:0px;
  2499. border-bottom:0px;
  2500. border-radius:0px;
  2501. border-top-left-radius:0px;
  2502. border-bottom-left-radius:0px;
  2503. filter:drop-shadow(none);
  2504. transition:none;
  2505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2506. font-weight:400;
  2507. font-style:normal;
  2508. font-size:14px;
  2509. color:#7F7F7F;
  2510. line-height:40px;
  2511. }
  2512. #u8315 {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:458px;
  2516. top:144px;
  2517. width:80px;
  2518. height:40px;
  2519. display:flex;
  2520. transition:none;
  2521. transform-origin:50% 50%;
  2522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2523. font-weight:400;
  2524. font-style:normal;
  2525. font-size:14px;
  2526. color:#7F7F7F;
  2527. line-height:40px;
  2528. }
  2529. #u8315 .text {
  2530. position:absolute;
  2531. align-self:center;
  2532. padding:0px 0px 0px 0px;
  2533. box-sizing:border-box;
  2534. width:100%;
  2535. }
  2536. #u8315_text {
  2537. border-width:0px;
  2538. word-wrap:break-word;
  2539. text-transform:none;
  2540. }
  2541. #u8316_div {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:0px;
  2545. top:0px;
  2546. width:160px;
  2547. height:40px;
  2548. background:inherit;
  2549. background-color:rgba(255, 255, 255, 0);
  2550. border-top:0px;
  2551. border-right:0px;
  2552. border-bottom:0px;
  2553. border-radius:0px;
  2554. border-top-left-radius:0px;
  2555. border-bottom-left-radius:0px;
  2556. filter:drop-shadow(none);
  2557. transition:none;
  2558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2559. font-weight:400;
  2560. font-style:normal;
  2561. font-size:14px;
  2562. line-height:40px;
  2563. }
  2564. #u8316 {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:538px;
  2568. top:144px;
  2569. width:160px;
  2570. height:40px;
  2571. display:flex;
  2572. transition:none;
  2573. transform-origin:50% 50%;
  2574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2575. font-weight:400;
  2576. font-style:normal;
  2577. font-size:14px;
  2578. line-height:40px;
  2579. }
  2580. #u8316 .text {
  2581. position:absolute;
  2582. align-self:center;
  2583. padding:0px 0px 0px 0px;
  2584. box-sizing:border-box;
  2585. width:100%;
  2586. }
  2587. #u8316_text {
  2588. border-width:0px;
  2589. word-wrap:break-word;
  2590. text-transform:none;
  2591. }
  2592. #u8317_div {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:0px;
  2596. top:0px;
  2597. width:80px;
  2598. height:40px;
  2599. background:inherit;
  2600. background-color:rgba(255, 255, 255, 0);
  2601. border-top:0px;
  2602. border-right:0px;
  2603. border-bottom:0px;
  2604. border-radius:0px;
  2605. border-top-left-radius:0px;
  2606. border-bottom-left-radius:0px;
  2607. filter:drop-shadow(none);
  2608. transition:none;
  2609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2610. font-weight:400;
  2611. font-style:normal;
  2612. font-size:14px;
  2613. color:#7F7F7F;
  2614. line-height:40px;
  2615. }
  2616. #u8317 {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:778px;
  2620. top:144px;
  2621. width:80px;
  2622. height:40px;
  2623. display:flex;
  2624. transition:none;
  2625. transform-origin:50% 50%;
  2626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2627. font-weight:400;
  2628. font-style:normal;
  2629. font-size:14px;
  2630. color:#7F7F7F;
  2631. line-height:40px;
  2632. }
  2633. #u8317 .text {
  2634. position:absolute;
  2635. align-self:center;
  2636. padding:0px 0px 0px 0px;
  2637. box-sizing:border-box;
  2638. width:100%;
  2639. }
  2640. #u8317_text {
  2641. border-width:0px;
  2642. word-wrap:break-word;
  2643. text-transform:none;
  2644. }
  2645. #u8318_div {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:0px;
  2649. top:0px;
  2650. width:160px;
  2651. height:40px;
  2652. background:inherit;
  2653. background-color:rgba(255, 255, 255, 0);
  2654. border-top:0px;
  2655. border-right:0px;
  2656. border-bottom:0px;
  2657. border-radius:0px;
  2658. border-top-left-radius:0px;
  2659. border-bottom-left-radius:0px;
  2660. filter:drop-shadow(none);
  2661. transition:none;
  2662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2663. font-weight:400;
  2664. font-style:normal;
  2665. font-size:14px;
  2666. line-height:40px;
  2667. }
  2668. #u8318 {
  2669. border-width:0px;
  2670. position:absolute;
  2671. left:858px;
  2672. top:144px;
  2673. width:160px;
  2674. height:40px;
  2675. display:flex;
  2676. transition:none;
  2677. transform-origin:50% 50%;
  2678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2679. font-weight:400;
  2680. font-style:normal;
  2681. font-size:14px;
  2682. line-height:40px;
  2683. }
  2684. #u8318 .text {
  2685. position:absolute;
  2686. align-self:center;
  2687. padding:0px 0px 0px 0px;
  2688. box-sizing:border-box;
  2689. width:100%;
  2690. }
  2691. #u8318_text {
  2692. border-width:0px;
  2693. word-wrap:break-word;
  2694. text-transform:none;
  2695. }
  2696. #u8319_div {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:0px;
  2700. top:0px;
  2701. width:80px;
  2702. height:40px;
  2703. background:inherit;
  2704. background-color:rgba(255, 255, 255, 0);
  2705. border-top:0px;
  2706. border-right:0px;
  2707. border-bottom:0px;
  2708. border-radius:0px;
  2709. border-top-left-radius:0px;
  2710. border-bottom-left-radius:0px;
  2711. filter:drop-shadow(none);
  2712. transition:none;
  2713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2714. font-weight:400;
  2715. font-style:normal;
  2716. font-size:14px;
  2717. color:#7F7F7F;
  2718. line-height:40px;
  2719. }
  2720. #u8319 {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:458px;
  2724. top:184px;
  2725. width:80px;
  2726. height:40px;
  2727. display:flex;
  2728. transition:none;
  2729. transform-origin:50% 50%;
  2730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2731. font-weight:400;
  2732. font-style:normal;
  2733. font-size:14px;
  2734. color:#7F7F7F;
  2735. line-height:40px;
  2736. }
  2737. #u8319 .text {
  2738. position:absolute;
  2739. align-self:center;
  2740. padding:0px 0px 0px 0px;
  2741. box-sizing:border-box;
  2742. width:100%;
  2743. }
  2744. #u8319_text {
  2745. border-width:0px;
  2746. word-wrap:break-word;
  2747. text-transform:none;
  2748. }
  2749. #u8320_div {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:0px;
  2753. top:0px;
  2754. width:57px;
  2755. height:40px;
  2756. background:inherit;
  2757. background-color:rgba(255, 255, 255, 0);
  2758. border-top:0px;
  2759. border-right:0px;
  2760. border-bottom:0px;
  2761. border-radius:0px;
  2762. border-top-left-radius:0px;
  2763. border-bottom-left-radius:0px;
  2764. filter:drop-shadow(none);
  2765. transition:none;
  2766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2767. font-weight:400;
  2768. font-style:normal;
  2769. font-size:14px;
  2770. line-height:40px;
  2771. }
  2772. #u8320 {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:538px;
  2776. top:184px;
  2777. width:57px;
  2778. height:40px;
  2779. display:flex;
  2780. transition:none;
  2781. transform-origin:50% 50%;
  2782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2783. font-weight:400;
  2784. font-style:normal;
  2785. font-size:14px;
  2786. line-height:40px;
  2787. }
  2788. #u8320 .text {
  2789. position:absolute;
  2790. align-self:center;
  2791. padding:0px 0px 0px 0px;
  2792. box-sizing:border-box;
  2793. width:100%;
  2794. }
  2795. #u8320_text {
  2796. border-width:0px;
  2797. white-space:nowrap;
  2798. text-transform:none;
  2799. }
  2800. #u8321_div {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:0px;
  2804. top:0px;
  2805. width:80px;
  2806. height:40px;
  2807. background:inherit;
  2808. background-color:rgba(255, 255, 255, 0);
  2809. border-top:0px;
  2810. border-right:0px;
  2811. border-bottom:0px;
  2812. border-radius:0px;
  2813. border-top-left-radius:0px;
  2814. border-bottom-left-radius:0px;
  2815. filter:drop-shadow(none);
  2816. transition:none;
  2817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2818. font-weight:400;
  2819. font-style:normal;
  2820. font-size:14px;
  2821. color:#7F7F7F;
  2822. line-height:40px;
  2823. }
  2824. #u8321 {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:778px;
  2828. top:184px;
  2829. width:80px;
  2830. height:40px;
  2831. display:flex;
  2832. transition:none;
  2833. transform-origin:50% 50%;
  2834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2835. font-weight:400;
  2836. font-style:normal;
  2837. font-size:14px;
  2838. color:#7F7F7F;
  2839. line-height:40px;
  2840. }
  2841. #u8321 .text {
  2842. position:absolute;
  2843. align-self:center;
  2844. padding:0px 0px 0px 0px;
  2845. box-sizing:border-box;
  2846. width:100%;
  2847. }
  2848. #u8321_text {
  2849. border-width:0px;
  2850. word-wrap:break-word;
  2851. text-transform:none;
  2852. }
  2853. #u8322_div {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:0px;
  2857. top:0px;
  2858. width:160px;
  2859. height:40px;
  2860. background:inherit;
  2861. background-color:rgba(255, 255, 255, 0);
  2862. border-top:0px;
  2863. border-right:0px;
  2864. border-bottom:0px;
  2865. border-radius:0px;
  2866. border-top-left-radius:0px;
  2867. border-bottom-left-radius:0px;
  2868. filter:drop-shadow(none);
  2869. transition:none;
  2870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2871. font-weight:400;
  2872. font-style:normal;
  2873. font-size:14px;
  2874. line-height:40px;
  2875. }
  2876. #u8322 {
  2877. border-width:0px;
  2878. position:absolute;
  2879. left:858px;
  2880. top:184px;
  2881. width:160px;
  2882. height:40px;
  2883. display:flex;
  2884. transition:none;
  2885. transform-origin:50% 50%;
  2886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2887. font-weight:400;
  2888. font-style:normal;
  2889. font-size:14px;
  2890. line-height:40px;
  2891. }
  2892. #u8322 .text {
  2893. position:absolute;
  2894. align-self:center;
  2895. padding:0px 0px 0px 0px;
  2896. box-sizing:border-box;
  2897. width:100%;
  2898. }
  2899. #u8322_text {
  2900. border-width:0px;
  2901. word-wrap:break-word;
  2902. text-transform:none;
  2903. }
  2904. #u8323_div {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:0px;
  2908. top:0px;
  2909. width:71px;
  2910. height:40px;
  2911. background:inherit;
  2912. background-color:rgba(255, 255, 255, 0);
  2913. border-top:0px;
  2914. border-right:0px;
  2915. border-bottom:0px;
  2916. border-radius:0px;
  2917. border-top-left-radius:0px;
  2918. border-bottom-left-radius:0px;
  2919. filter:drop-shadow(none);
  2920. transition:none;
  2921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2922. font-weight:400;
  2923. font-style:normal;
  2924. font-size:14px;
  2925. color:#7F7F7F;
  2926. line-height:40px;
  2927. }
  2928. #u8323 {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:138px;
  2932. top:224px;
  2933. width:71px;
  2934. height:40px;
  2935. display:flex;
  2936. transition:none;
  2937. transform-origin:50% 50%;
  2938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2939. font-weight:400;
  2940. font-style:normal;
  2941. font-size:14px;
  2942. color:#7F7F7F;
  2943. line-height:40px;
  2944. }
  2945. #u8323 .text {
  2946. position:absolute;
  2947. align-self:center;
  2948. padding:0px 0px 0px 0px;
  2949. box-sizing:border-box;
  2950. width:100%;
  2951. }
  2952. #u8323_text {
  2953. border-width:0px;
  2954. white-space:nowrap;
  2955. text-transform:none;
  2956. }
  2957. #u8324_div {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:0px;
  2961. top:0px;
  2962. width:160px;
  2963. height:40px;
  2964. background:inherit;
  2965. background-color:rgba(255, 255, 255, 0);
  2966. border-top:0px;
  2967. border-right:0px;
  2968. border-bottom:0px;
  2969. border-radius:0px;
  2970. border-top-left-radius:0px;
  2971. border-bottom-left-radius:0px;
  2972. filter:drop-shadow(none);
  2973. transition:none;
  2974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2975. font-weight:400;
  2976. font-style:normal;
  2977. font-size:14px;
  2978. line-height:40px;
  2979. }
  2980. #u8324 {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:218px;
  2984. top:224px;
  2985. width:160px;
  2986. height:40px;
  2987. display:flex;
  2988. transition:none;
  2989. transform-origin:50% 50%;
  2990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2991. font-weight:400;
  2992. font-style:normal;
  2993. font-size:14px;
  2994. line-height:40px;
  2995. }
  2996. #u8324 .text {
  2997. position:absolute;
  2998. align-self:center;
  2999. padding:0px 0px 0px 0px;
  3000. box-sizing:border-box;
  3001. width:100%;
  3002. }
  3003. #u8324_text {
  3004. border-width:0px;
  3005. word-wrap:break-word;
  3006. text-transform:none;
  3007. }
  3008. #u8325_div {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:0px;
  3012. top:0px;
  3013. width:80px;
  3014. height:40px;
  3015. background:inherit;
  3016. background-color:rgba(255, 255, 255, 0);
  3017. border-top:0px;
  3018. border-right:0px;
  3019. border-bottom:0px;
  3020. border-radius:0px;
  3021. border-top-left-radius:0px;
  3022. border-bottom-left-radius:0px;
  3023. filter:drop-shadow(none);
  3024. transition:none;
  3025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3026. font-weight:400;
  3027. font-style:normal;
  3028. font-size:14px;
  3029. color:#7F7F7F;
  3030. line-height:40px;
  3031. }
  3032. #u8325 {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:138px;
  3036. top:184px;
  3037. width:80px;
  3038. height:40px;
  3039. display:flex;
  3040. transition:none;
  3041. transform-origin:50% 50%;
  3042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3043. font-weight:400;
  3044. font-style:normal;
  3045. font-size:14px;
  3046. color:#7F7F7F;
  3047. line-height:40px;
  3048. }
  3049. #u8325 .text {
  3050. position:absolute;
  3051. align-self:center;
  3052. padding:0px 0px 0px 0px;
  3053. box-sizing:border-box;
  3054. width:100%;
  3055. }
  3056. #u8325_text {
  3057. border-width:0px;
  3058. word-wrap:break-word;
  3059. text-transform:none;
  3060. }
  3061. #u8326_div {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:0px;
  3065. top:0px;
  3066. width:192px;
  3067. height:40px;
  3068. background:inherit;
  3069. background-color:rgba(255, 255, 255, 0);
  3070. border-top:0px;
  3071. border-right:0px;
  3072. border-bottom:0px;
  3073. border-radius:0px;
  3074. border-top-left-radius:0px;
  3075. border-bottom-left-radius:0px;
  3076. filter:drop-shadow(none);
  3077. transition:none;
  3078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3079. font-weight:400;
  3080. font-style:normal;
  3081. font-size:14px;
  3082. line-height:40px;
  3083. }
  3084. #u8326 {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:218px;
  3088. top:184px;
  3089. width:192px;
  3090. height:40px;
  3091. display:flex;
  3092. transition:none;
  3093. transform-origin:50% 50%;
  3094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3095. font-weight:400;
  3096. font-style:normal;
  3097. font-size:14px;
  3098. line-height:40px;
  3099. }
  3100. #u8326 .text {
  3101. position:absolute;
  3102. align-self:center;
  3103. padding:0px 0px 0px 0px;
  3104. box-sizing:border-box;
  3105. width:100%;
  3106. }
  3107. #u8326_text {
  3108. border-width:0px;
  3109. white-space:nowrap;
  3110. text-transform:none;
  3111. }
  3112. #u8327_div {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:0px;
  3116. top:0px;
  3117. width:365px;
  3118. height:40px;
  3119. background:inherit;
  3120. background-color:rgba(255, 255, 255, 0);
  3121. border-top:0px;
  3122. border-right:0px;
  3123. border-bottom:0px;
  3124. border-radius:0px;
  3125. border-top-left-radius:0px;
  3126. border-bottom-left-radius:0px;
  3127. filter:drop-shadow(none);
  3128. transition:none;
  3129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3130. font-weight:400;
  3131. font-style:normal;
  3132. font-size:14px;
  3133. color:#D9001B;
  3134. line-height:40px;
  3135. }
  3136. #u8327 {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:598px;
  3140. top:282px;
  3141. width:365px;
  3142. height:40px;
  3143. display:flex;
  3144. transition:none;
  3145. transform-origin:50% 50%;
  3146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3147. font-weight:400;
  3148. font-style:normal;
  3149. font-size:14px;
  3150. color:#D9001B;
  3151. line-height:40px;
  3152. }
  3153. #u8327 .text {
  3154. position:absolute;
  3155. align-self:center;
  3156. padding:0px 0px 0px 0px;
  3157. box-sizing:border-box;
  3158. width:100%;
  3159. }
  3160. #u8327_text {
  3161. border-width:0px;
  3162. white-space:nowrap;
  3163. text-transform:none;
  3164. }
  3165. #u8328 {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:498px;
  3169. top:224px;
  3170. width:0px;
  3171. height:0px;
  3172. transition:none;
  3173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3174. font-weight:400;
  3175. font-style:normal;
  3176. font-size:28px;
  3177. color:#333333;
  3178. }
  3179. #u8328_seg0 {
  3180. border-width:0px;
  3181. position:absolute;
  3182. left:-5px;
  3183. top:0px;
  3184. width:10px;
  3185. height:83px;
  3186. }
  3187. #u8328_seg1 {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:-5px;
  3191. top:73px;
  3192. width:105px;
  3193. height:10px;
  3194. }
  3195. #u8328_seg2 {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:90px;
  3199. top:69px;
  3200. width:18px;
  3201. height:18px;
  3202. }
  3203. #u8328_text {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:-39px;
  3207. top:70px;
  3208. width:100px;
  3209. word-wrap:break-word;
  3210. text-transform:none;
  3211. visibility:hidden;
  3212. }
  3213. #u8329 {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:0px;
  3217. top:0px;
  3218. width:0px;
  3219. height:0px;
  3220. }
  3221. #u8330_div {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:0px;
  3225. top:0px;
  3226. width:1000px;
  3227. height:1139px;
  3228. background:inherit;
  3229. background-color:rgba(242, 242, 242, 1);
  3230. box-sizing:border-box;
  3231. border-width:1px;
  3232. border-style:solid;
  3233. border-color:rgba(242, 242, 242, 1);
  3234. border-radius:0px;
  3235. filter:drop-shadow(none);
  3236. transition:none;
  3237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3238. font-weight:400;
  3239. font-style:normal;
  3240. font-size:14px;
  3241. color:#AAAAAA;
  3242. text-align:center;
  3243. line-height:30px;
  3244. }
  3245. #u8330 {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:1146px;
  3249. top:91px;
  3250. width:1000px;
  3251. height:1139px;
  3252. display:flex;
  3253. transition:none;
  3254. transform-origin:50% 50%;
  3255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3256. font-weight:400;
  3257. font-style:normal;
  3258. font-size:14px;
  3259. color:#AAAAAA;
  3260. text-align:center;
  3261. line-height:30px;
  3262. }
  3263. #u8330 .text {
  3264. position:absolute;
  3265. align-self:center;
  3266. padding:5px 10px 5px 10px;
  3267. box-sizing:border-box;
  3268. width:100%;
  3269. }
  3270. #u8330_text {
  3271. border-width:0px;
  3272. word-wrap:break-word;
  3273. text-transform:none;
  3274. visibility:hidden;
  3275. }
  3276. #u8331_div {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:0px;
  3280. top:0px;
  3281. width:1000px;
  3282. height:332px;
  3283. background:inherit;
  3284. background-color:rgba(255, 255, 255, 1);
  3285. box-sizing:border-box;
  3286. border-width:1px;
  3287. border-style:solid;
  3288. border-color:rgba(242, 242, 242, 1);
  3289. border-radius:0px;
  3290. filter:drop-shadow(none);
  3291. transition:none;
  3292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3293. font-weight:400;
  3294. font-style:normal;
  3295. font-size:14px;
  3296. color:#AAAAAA;
  3297. text-align:center;
  3298. line-height:30px;
  3299. }
  3300. #u8331 {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:1146px;
  3304. top:92px;
  3305. width:1000px;
  3306. height:332px;
  3307. display:flex;
  3308. transition:none;
  3309. transform-origin:50% 50%;
  3310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3311. font-weight:400;
  3312. font-style:normal;
  3313. font-size:14px;
  3314. color:#AAAAAA;
  3315. text-align:center;
  3316. line-height:30px;
  3317. }
  3318. #u8331 .text {
  3319. position:absolute;
  3320. align-self:center;
  3321. padding:5px 10px 5px 10px;
  3322. box-sizing:border-box;
  3323. width:100%;
  3324. }
  3325. #u8331_text {
  3326. border-width:0px;
  3327. word-wrap:break-word;
  3328. text-transform:none;
  3329. visibility:hidden;
  3330. }
  3331. #u8332_div {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:0px;
  3335. top:0px;
  3336. width:1000px;
  3337. height:60px;
  3338. background:inherit;
  3339. background-color:rgba(255, 255, 255, 1);
  3340. box-sizing:border-box;
  3341. border-width:1px;
  3342. border-style:solid;
  3343. border-color:rgba(215, 215, 215, 1);
  3344. border-radius:0px;
  3345. filter:drop-shadow(none);
  3346. transition:none;
  3347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3348. font-weight:400;
  3349. font-style:normal;
  3350. font-size:14px;
  3351. color:#AAAAAA;
  3352. text-align:center;
  3353. line-height:30px;
  3354. }
  3355. #u8332 {
  3356. border-width:0px;
  3357. position:absolute;
  3358. left:1147px;
  3359. top:31px;
  3360. width:1000px;
  3361. height:60px;
  3362. display:flex;
  3363. transition:none;
  3364. transform-origin:50% 50%;
  3365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3366. font-weight:400;
  3367. font-style:normal;
  3368. font-size:14px;
  3369. color:#AAAAAA;
  3370. text-align:center;
  3371. line-height:30px;
  3372. }
  3373. #u8332 .text {
  3374. position:absolute;
  3375. align-self:center;
  3376. padding:5px 10px 5px 10px;
  3377. box-sizing:border-box;
  3378. width:100%;
  3379. }
  3380. #u8332_text {
  3381. border-width:0px;
  3382. word-wrap:break-word;
  3383. text-transform:none;
  3384. visibility:hidden;
  3385. }
  3386. #u8333_div {
  3387. border-width:0px;
  3388. position:absolute;
  3389. left:0px;
  3390. top:0px;
  3391. width:83px;
  3392. height:35px;
  3393. background:inherit;
  3394. background-color:rgba(255, 255, 255, 0);
  3395. border-top:0px;
  3396. border-right:0px;
  3397. border-bottom:0px;
  3398. border-radius:0px;
  3399. border-top-left-radius:0px;
  3400. border-bottom-left-radius:0px;
  3401. filter:drop-shadow(none);
  3402. transition:none;
  3403. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3404. font-weight:500;
  3405. font-style:normal;
  3406. font-size:18px;
  3407. }
  3408. #u8333 {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:1167px;
  3412. top:49px;
  3413. width:83px;
  3414. height:35px;
  3415. display:flex;
  3416. transition:none;
  3417. transform-origin:50% 50%;
  3418. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3419. font-weight:500;
  3420. font-style:normal;
  3421. font-size:18px;
  3422. }
  3423. #u8333 .text {
  3424. position:absolute;
  3425. align-self:center;
  3426. padding:5px 10px 5px 0px;
  3427. box-sizing:border-box;
  3428. width:100%;
  3429. }
  3430. #u8333_text {
  3431. border-width:0px;
  3432. white-space:nowrap;
  3433. text-transform:none;
  3434. }
  3435. #u8334 {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:2119px;
  3439. top:53px;
  3440. width:17px;
  3441. height:17px;
  3442. display:flex;
  3443. transition:none;
  3444. }
  3445. #u8334 .text {
  3446. position:absolute;
  3447. align-self:center;
  3448. padding:2px 2px 2px 2px;
  3449. box-sizing:border-box;
  3450. width:100%;
  3451. }
  3452. #u8334_img {
  3453. border-width:0px;
  3454. position:absolute;
  3455. left:0px;
  3456. top:0px;
  3457. width:17px;
  3458. height:17px;
  3459. }
  3460. #u8334_text {
  3461. border-width:0px;
  3462. word-wrap:break-word;
  3463. text-transform:none;
  3464. visibility:hidden;
  3465. }
  3466. #u8335 {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:0px;
  3470. top:0px;
  3471. width:0px;
  3472. height:0px;
  3473. }
  3474. #u8336_div {
  3475. border-width:0px;
  3476. position:absolute;
  3477. left:0px;
  3478. top:0px;
  3479. width:1000px;
  3480. height:736px;
  3481. background:inherit;
  3482. background-color:rgba(255, 255, 255, 1);
  3483. box-sizing:border-box;
  3484. border-width:1px;
  3485. border-style:solid;
  3486. border-color:rgba(242, 242, 242, 1);
  3487. border-radius:0px;
  3488. filter:drop-shadow(none);
  3489. transition:none;
  3490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3491. font-weight:400;
  3492. font-style:normal;
  3493. font-size:14px;
  3494. color:#AAAAAA;
  3495. text-align:center;
  3496. line-height:30px;
  3497. }
  3498. #u8336 {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:1146px;
  3502. top:435px;
  3503. width:1000px;
  3504. height:736px;
  3505. display:flex;
  3506. transition:none;
  3507. transform-origin:50% 50%;
  3508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3509. font-weight:400;
  3510. font-style:normal;
  3511. font-size:14px;
  3512. color:#AAAAAA;
  3513. text-align:center;
  3514. line-height:30px;
  3515. }
  3516. #u8336 .text {
  3517. position:absolute;
  3518. align-self:center;
  3519. padding:5px 10px 5px 10px;
  3520. box-sizing:border-box;
  3521. width:100%;
  3522. }
  3523. #u8336_text {
  3524. border-width:0px;
  3525. word-wrap:break-word;
  3526. text-transform:none;
  3527. visibility:hidden;
  3528. }
  3529. #u8337_div {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:0px;
  3533. top:0px;
  3534. width:73px;
  3535. height:40px;
  3536. background:inherit;
  3537. background-color:rgba(255, 255, 255, 0);
  3538. border-left:0px;
  3539. border-top:0px;
  3540. border-right:0px;
  3541. border-radius:0px;
  3542. border-bottom-right-radius:0px;
  3543. border-bottom-left-radius:0px;
  3544. filter:drop-shadow(none);
  3545. transition:none;
  3546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3547. font-weight:400;
  3548. font-style:normal;
  3549. font-size:18px;
  3550. color:#7F7F7F;
  3551. }
  3552. #u8337 {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:1186px;
  3556. top:451px;
  3557. width:73px;
  3558. height:40px;
  3559. display:flex;
  3560. transition:none;
  3561. transform-origin:50% 50%;
  3562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3563. font-weight:400;
  3564. font-style:normal;
  3565. font-size:18px;
  3566. color:#7F7F7F;
  3567. }
  3568. #u8337 .text {
  3569. position:absolute;
  3570. align-self:center;
  3571. padding:0px 0px 0px 0px;
  3572. box-sizing:border-box;
  3573. width:100%;
  3574. }
  3575. #u8337_text {
  3576. border-width:0px;
  3577. white-space:nowrap;
  3578. text-transform:none;
  3579. }
  3580. #u8338_div {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:0px;
  3584. top:0px;
  3585. width:81px;
  3586. height:40px;
  3587. background:inherit;
  3588. background-color:rgba(255, 255, 255, 0);
  3589. border-top:0px;
  3590. border-right:0px;
  3591. border-bottom:0px;
  3592. border-radius:0px;
  3593. border-top-left-radius:0px;
  3594. border-bottom-left-radius:0px;
  3595. filter:drop-shadow(none);
  3596. transition:none;
  3597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3598. font-weight:400;
  3599. font-style:normal;
  3600. font-size:14px;
  3601. color:#7F7F7F;
  3602. text-align:right;
  3603. }
  3604. #u8338 {
  3605. border-width:0px;
  3606. position:absolute;
  3607. left:1193px;
  3608. top:661px;
  3609. width:81px;
  3610. height:40px;
  3611. display:flex;
  3612. transition:none;
  3613. transform-origin:50% 50%;
  3614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3615. font-weight:400;
  3616. font-style:normal;
  3617. font-size:14px;
  3618. color:#7F7F7F;
  3619. text-align:right;
  3620. }
  3621. #u8338 .text {
  3622. position:absolute;
  3623. align-self:center;
  3624. padding:5px 10px 5px 0px;
  3625. box-sizing:border-box;
  3626. width:100%;
  3627. }
  3628. #u8338_text {
  3629. border-width:0px;
  3630. white-space:nowrap;
  3631. text-transform:none;
  3632. }
  3633. #u8339 {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:0px;
  3637. top:0px;
  3638. width:0px;
  3639. height:0px;
  3640. }
  3641. #u8340_div {
  3642. border-width:0px;
  3643. position:absolute;
  3644. left:0px;
  3645. top:0px;
  3646. width:740px;
  3647. height:80px;
  3648. background:inherit;
  3649. background-color:rgba(255, 255, 255, 1);
  3650. box-sizing:border-box;
  3651. border-width:1px;
  3652. border-style:solid;
  3653. border-color:rgba(201, 201, 201, 1);
  3654. border-radius:4px;
  3655. filter:drop-shadow(none);
  3656. transition:none;
  3657. font-family:"Microsoft YaHei", sans-serif;
  3658. font-weight:400;
  3659. font-style:normal;
  3660. font-size:14px;
  3661. color:#CCCCCC;
  3662. text-align:left;
  3663. }
  3664. #u8340 {
  3665. border-width:0px;
  3666. position:absolute;
  3667. left:1284px;
  3668. top:662px;
  3669. width:740px;
  3670. height:80px;
  3671. display:flex;
  3672. transition:none;
  3673. transform-origin:50% 50%;
  3674. font-family:"Microsoft YaHei", sans-serif;
  3675. font-weight:400;
  3676. font-style:normal;
  3677. font-size:14px;
  3678. color:#CCCCCC;
  3679. text-align:left;
  3680. }
  3681. #u8340 .text {
  3682. position:absolute;
  3683. align-self:center;
  3684. padding:2px 8px 2px 8px;
  3685. box-sizing:border-box;
  3686. width:100%;
  3687. }
  3688. #u8340_text {
  3689. border-width:0px;
  3690. word-wrap:break-word;
  3691. text-transform:none;
  3692. visibility:hidden;
  3693. }
  3694. #u8341_input {
  3695. position:absolute;
  3696. left:0px;
  3697. top:0px;
  3698. width:710px;
  3699. height:38px;
  3700. padding:2px 2px 2px 2px;
  3701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3702. font-weight:400;
  3703. font-style:normal;
  3704. font-size:14px;
  3705. letter-spacing:normal;
  3706. color:#000000;
  3707. vertical-align:none;
  3708. text-align:left;
  3709. text-transform:none;
  3710. background-color:transparent;
  3711. border-color:transparent;
  3712. }
  3713. #u8341_input.hint {
  3714. position:absolute;
  3715. left:0px;
  3716. top:0px;
  3717. width:710px;
  3718. height:38px;
  3719. padding:2px 2px 2px 2px;
  3720. font-family:"Microsoft YaHei", sans-serif;
  3721. font-weight:400;
  3722. font-style:normal;
  3723. font-size:12px;
  3724. letter-spacing:normal;
  3725. color:#AAAAAA;
  3726. vertical-align:none;
  3727. text-align:left;
  3728. text-transform:none;
  3729. background-color:transparent;
  3730. border-color:transparent;
  3731. }
  3732. #u8341_input.disabled {
  3733. position:absolute;
  3734. left:0px;
  3735. top:0px;
  3736. width:710px;
  3737. height:38px;
  3738. padding:2px 2px 2px 2px;
  3739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3740. font-weight:400;
  3741. font-style:normal;
  3742. font-size:14px;
  3743. letter-spacing:normal;
  3744. color:#000000;
  3745. vertical-align:none;
  3746. text-align:left;
  3747. text-transform:none;
  3748. background-color:transparent;
  3749. border-color:transparent;
  3750. }
  3751. #u8341_input.hint.disabled {
  3752. position:absolute;
  3753. left:0px;
  3754. top:0px;
  3755. width:710px;
  3756. height:38px;
  3757. padding:2px 2px 2px 2px;
  3758. font-family:"Microsoft YaHei", sans-serif;
  3759. font-weight:400;
  3760. font-style:normal;
  3761. font-size:12px;
  3762. letter-spacing:normal;
  3763. color:#AAAAAA;
  3764. vertical-align:none;
  3765. text-align:left;
  3766. text-transform:none;
  3767. background-color:transparent;
  3768. border-color:transparent;
  3769. }
  3770. #u8341_div {
  3771. border-width:0px;
  3772. position:absolute;
  3773. left:0px;
  3774. top:0px;
  3775. width:710px;
  3776. height:38px;
  3777. background:inherit;
  3778. background-color:rgba(255, 255, 255, 1);
  3779. border-radius:0px;
  3780. filter:drop-shadow(none);
  3781. transition:none;
  3782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3783. font-weight:400;
  3784. font-style:normal;
  3785. font-size:14px;
  3786. }
  3787. #u8341 {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:1292px;
  3791. top:663px;
  3792. width:710px;
  3793. height:38px;
  3794. display:flex;
  3795. transition:none;
  3796. transform-origin:50% 50%;
  3797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3798. font-weight:400;
  3799. font-style:normal;
  3800. font-size:14px;
  3801. }
  3802. #u8341 .text {
  3803. position:absolute;
  3804. align-self:center;
  3805. padding:2px 2px 2px 2px;
  3806. box-sizing:border-box;
  3807. width:100%;
  3808. }
  3809. #u8341_div.hint {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:0px;
  3813. top:0px;
  3814. width:710px;
  3815. height:38px;
  3816. background:inherit;
  3817. background-color:rgba(255, 255, 255, 1);
  3818. border-radius:0px;
  3819. filter:drop-shadow(none);
  3820. transition:none;
  3821. font-family:"Microsoft YaHei", sans-serif;
  3822. font-weight:400;
  3823. font-style:normal;
  3824. font-size:14px;
  3825. }
  3826. #u8341.hint {
  3827. }
  3828. #u8341_div.disabled {
  3829. border-width:0px;
  3830. position:absolute;
  3831. left:0px;
  3832. top:0px;
  3833. width:710px;
  3834. height:38px;
  3835. background:inherit;
  3836. background-color:rgba(240, 240, 240, 1);
  3837. border-radius:0px;
  3838. filter:drop-shadow(none);
  3839. transition:none;
  3840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3841. font-weight:400;
  3842. font-style:normal;
  3843. font-size:14px;
  3844. }
  3845. #u8341.disabled {
  3846. }
  3847. #u8341_div.hint.disabled {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:0px;
  3851. top:0px;
  3852. width:710px;
  3853. height:38px;
  3854. background:inherit;
  3855. background-color:rgba(240, 240, 240, 1);
  3856. border-radius:0px;
  3857. filter:drop-shadow(none);
  3858. transition:none;
  3859. font-family:"Microsoft YaHei", sans-serif;
  3860. font-weight:400;
  3861. font-style:normal;
  3862. font-size:14px;
  3863. }
  3864. #u8341.hint.disabled {
  3865. }
  3866. #u8342_div {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:0px;
  3870. top:0px;
  3871. width:74px;
  3872. height:40px;
  3873. background:inherit;
  3874. background-color:rgba(255, 255, 255, 0);
  3875. border-top:0px;
  3876. border-right:0px;
  3877. border-bottom:0px;
  3878. border-radius:0px;
  3879. border-top-left-radius:0px;
  3880. border-bottom-left-radius:0px;
  3881. filter:drop-shadow(none);
  3882. transition:none;
  3883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3884. font-weight:400;
  3885. font-style:normal;
  3886. font-size:14px;
  3887. color:#7F7F7F;
  3888. text-align:right;
  3889. }
  3890. #u8342 {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:1200px;
  3894. top:611px;
  3895. width:74px;
  3896. height:40px;
  3897. display:flex;
  3898. transition:none;
  3899. transform-origin:50% 50%;
  3900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3901. font-weight:400;
  3902. font-style:normal;
  3903. font-size:14px;
  3904. color:#7F7F7F;
  3905. text-align:right;
  3906. }
  3907. #u8342 .text {
  3908. position:absolute;
  3909. align-self:center;
  3910. padding:5px 10px 5px 0px;
  3911. box-sizing:border-box;
  3912. width:100%;
  3913. }
  3914. #u8342_text {
  3915. border-width:0px;
  3916. white-space:nowrap;
  3917. text-transform:none;
  3918. }
  3919. #u8343_div {
  3920. border-width:0px;
  3921. position:absolute;
  3922. left:0px;
  3923. top:0px;
  3924. width:88px;
  3925. height:40px;
  3926. background:inherit;
  3927. background-color:rgba(255, 255, 255, 0);
  3928. border-top:0px;
  3929. border-right:0px;
  3930. border-bottom:0px;
  3931. border-radius:0px;
  3932. border-top-left-radius:0px;
  3933. border-bottom-left-radius:0px;
  3934. filter:drop-shadow(none);
  3935. transition:none;
  3936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3937. font-weight:400;
  3938. font-style:normal;
  3939. font-size:14px;
  3940. color:#7F7F7F;
  3941. text-align:right;
  3942. }
  3943. #u8343 {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:1627px;
  3947. top:611px;
  3948. width:88px;
  3949. height:40px;
  3950. display:flex;
  3951. transition:none;
  3952. transform-origin:50% 50%;
  3953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3954. font-weight:400;
  3955. font-style:normal;
  3956. font-size:14px;
  3957. color:#7F7F7F;
  3958. text-align:right;
  3959. }
  3960. #u8343 .text {
  3961. position:absolute;
  3962. align-self:center;
  3963. padding:5px 10px 5px 0px;
  3964. box-sizing:border-box;
  3965. width:100%;
  3966. }
  3967. #u8343_text {
  3968. border-width:0px;
  3969. white-space:nowrap;
  3970. text-transform:none;
  3971. }
  3972. #u8344 {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:0px;
  3976. top:0px;
  3977. width:0px;
  3978. height:0px;
  3979. }
  3980. #u8345_div {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:0px;
  3984. top:0px;
  3985. width:300px;
  3986. height:40px;
  3987. background:inherit;
  3988. background-color:rgba(255, 255, 255, 1);
  3989. box-sizing:border-box;
  3990. border-width:1px;
  3991. border-style:solid;
  3992. border-color:rgba(201, 201, 201, 1);
  3993. border-radius:4px;
  3994. filter:drop-shadow(none);
  3995. transition:none;
  3996. font-family:"Microsoft YaHei", sans-serif;
  3997. font-weight:400;
  3998. font-style:normal;
  3999. font-size:14px;
  4000. color:#CCCCCC;
  4001. text-align:left;
  4002. }
  4003. #u8345 {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:1725px;
  4007. top:611px;
  4008. width:300px;
  4009. height:40px;
  4010. display:flex;
  4011. transition:none;
  4012. transform-origin:50% 50%;
  4013. font-family:"Microsoft YaHei", sans-serif;
  4014. font-weight:400;
  4015. font-style:normal;
  4016. font-size:14px;
  4017. color:#CCCCCC;
  4018. text-align:left;
  4019. }
  4020. #u8345 .text {
  4021. position:absolute;
  4022. align-self:center;
  4023. padding:2px 8px 2px 8px;
  4024. box-sizing:border-box;
  4025. width:100%;
  4026. }
  4027. #u8345_text {
  4028. border-width:0px;
  4029. word-wrap:break-word;
  4030. text-transform:none;
  4031. visibility:hidden;
  4032. }
  4033. #u8346_input {
  4034. position:absolute;
  4035. left:0px;
  4036. top:0px;
  4037. width:280px;
  4038. height:38px;
  4039. padding:2px 2px 2px 2px;
  4040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4041. font-weight:400;
  4042. font-style:normal;
  4043. font-size:14px;
  4044. letter-spacing:normal;
  4045. color:#000000;
  4046. vertical-align:none;
  4047. text-align:left;
  4048. text-transform:none;
  4049. background-color:transparent;
  4050. border-color:transparent;
  4051. }
  4052. #u8346_input.hint {
  4053. position:absolute;
  4054. left:0px;
  4055. top:0px;
  4056. width:280px;
  4057. height:38px;
  4058. padding:2px 2px 2px 2px;
  4059. font-family:"Microsoft YaHei", sans-serif;
  4060. font-weight:400;
  4061. font-style:normal;
  4062. font-size:12px;
  4063. letter-spacing:normal;
  4064. color:#AAAAAA;
  4065. vertical-align:none;
  4066. text-align:left;
  4067. text-transform:none;
  4068. background-color:transparent;
  4069. border-color:transparent;
  4070. }
  4071. #u8346_input.disabled {
  4072. position:absolute;
  4073. left:0px;
  4074. top:0px;
  4075. width:280px;
  4076. height:38px;
  4077. padding:2px 2px 2px 2px;
  4078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4079. font-weight:400;
  4080. font-style:normal;
  4081. font-size:14px;
  4082. letter-spacing:normal;
  4083. color:#000000;
  4084. vertical-align:none;
  4085. text-align:left;
  4086. text-transform:none;
  4087. background-color:transparent;
  4088. border-color:transparent;
  4089. }
  4090. #u8346_input.hint.disabled {
  4091. position:absolute;
  4092. left:0px;
  4093. top:0px;
  4094. width:280px;
  4095. height:38px;
  4096. padding:2px 2px 2px 2px;
  4097. font-family:"Microsoft YaHei", sans-serif;
  4098. font-weight:400;
  4099. font-style:normal;
  4100. font-size:12px;
  4101. letter-spacing:normal;
  4102. color:#AAAAAA;
  4103. vertical-align:none;
  4104. text-align:left;
  4105. text-transform:none;
  4106. background-color:transparent;
  4107. border-color:transparent;
  4108. }
  4109. #u8346_div {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:0px;
  4113. top:0px;
  4114. width:280px;
  4115. height:38px;
  4116. background:inherit;
  4117. background-color:rgba(255, 255, 255, 1);
  4118. border-radius:0px;
  4119. filter:drop-shadow(none);
  4120. transition:none;
  4121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4122. font-weight:400;
  4123. font-style:normal;
  4124. font-size:14px;
  4125. }
  4126. #u8346 {
  4127. border-width:0px;
  4128. position:absolute;
  4129. left:1736px;
  4130. top:612px;
  4131. width:280px;
  4132. height:38px;
  4133. display:flex;
  4134. transition:none;
  4135. transform-origin:50% 50%;
  4136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4137. font-weight:400;
  4138. font-style:normal;
  4139. font-size:14px;
  4140. }
  4141. #u8346 .text {
  4142. position:absolute;
  4143. align-self:center;
  4144. padding:2px 2px 2px 2px;
  4145. box-sizing:border-box;
  4146. width:100%;
  4147. }
  4148. #u8346_div.hint {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:0px;
  4152. top:0px;
  4153. width:280px;
  4154. height:38px;
  4155. background:inherit;
  4156. background-color:rgba(255, 255, 255, 1);
  4157. border-radius:0px;
  4158. filter:drop-shadow(none);
  4159. transition:none;
  4160. font-family:"Microsoft YaHei", sans-serif;
  4161. font-weight:400;
  4162. font-style:normal;
  4163. font-size:14px;
  4164. }
  4165. #u8346.hint {
  4166. }
  4167. #u8346_div.disabled {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:0px;
  4171. top:0px;
  4172. width:280px;
  4173. height:38px;
  4174. background:inherit;
  4175. background-color:rgba(240, 240, 240, 1);
  4176. border-radius:0px;
  4177. filter:drop-shadow(none);
  4178. transition:none;
  4179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4180. font-weight:400;
  4181. font-style:normal;
  4182. font-size:14px;
  4183. }
  4184. #u8346.disabled {
  4185. }
  4186. #u8346_div.hint.disabled {
  4187. border-width:0px;
  4188. position:absolute;
  4189. left:0px;
  4190. top:0px;
  4191. width:280px;
  4192. height:38px;
  4193. background:inherit;
  4194. background-color:rgba(240, 240, 240, 1);
  4195. border-radius:0px;
  4196. filter:drop-shadow(none);
  4197. transition:none;
  4198. font-family:"Microsoft YaHei", sans-serif;
  4199. font-weight:400;
  4200. font-style:normal;
  4201. font-size:14px;
  4202. }
  4203. #u8346.hint.disabled {
  4204. }
  4205. #u8347 {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:2000px;
  4209. top:624px;
  4210. width:13px;
  4211. height:15px;
  4212. display:flex;
  4213. transition:none;
  4214. }
  4215. #u8347 .text {
  4216. position:absolute;
  4217. align-self:center;
  4218. padding:2px 2px 2px 2px;
  4219. box-sizing:border-box;
  4220. width:100%;
  4221. }
  4222. #u8347_img {
  4223. border-width:0px;
  4224. position:absolute;
  4225. left:0px;
  4226. top:0px;
  4227. width:13px;
  4228. height:15px;
  4229. }
  4230. #u8347_text {
  4231. border-width:0px;
  4232. word-wrap:break-word;
  4233. text-transform:none;
  4234. visibility:hidden;
  4235. }
  4236. #u8348_div {
  4237. border-width:0px;
  4238. position:absolute;
  4239. left:0px;
  4240. top:0px;
  4241. width:88px;
  4242. height:40px;
  4243. background:inherit;
  4244. background-color:rgba(255, 255, 255, 0);
  4245. border-top:0px;
  4246. border-right:0px;
  4247. border-bottom:0px;
  4248. border-radius:0px;
  4249. border-top-left-radius:0px;
  4250. border-bottom-left-radius:0px;
  4251. filter:drop-shadow(none);
  4252. transition:none;
  4253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4254. font-weight:400;
  4255. font-style:normal;
  4256. font-size:14px;
  4257. color:#7F7F7F;
  4258. text-align:right;
  4259. }
  4260. #u8348 {
  4261. border-width:0px;
  4262. position:absolute;
  4263. left:1186px;
  4264. top:511px;
  4265. width:88px;
  4266. height:40px;
  4267. display:flex;
  4268. transition:none;
  4269. transform-origin:50% 50%;
  4270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4271. font-weight:400;
  4272. font-style:normal;
  4273. font-size:14px;
  4274. color:#7F7F7F;
  4275. text-align:right;
  4276. }
  4277. #u8348 .text {
  4278. position:absolute;
  4279. align-self:center;
  4280. padding:5px 10px 5px 0px;
  4281. box-sizing:border-box;
  4282. width:100%;
  4283. }
  4284. #u8348_text {
  4285. border-width:0px;
  4286. white-space:nowrap;
  4287. text-transform:none;
  4288. }
  4289. #u8349 {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:0px;
  4293. top:0px;
  4294. width:0px;
  4295. height:0px;
  4296. }
  4297. #u8350_div {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:0px;
  4301. top:0px;
  4302. width:300px;
  4303. height:40px;
  4304. background:inherit;
  4305. background-color:rgba(255, 255, 255, 1);
  4306. box-sizing:border-box;
  4307. border-width:1px;
  4308. border-style:solid;
  4309. border-color:rgba(215, 215, 215, 1);
  4310. border-radius:4px;
  4311. filter:drop-shadow(none);
  4312. transition:none;
  4313. font-size:14px;
  4314. }
  4315. #u8350 {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:1284px;
  4319. top:511px;
  4320. width:300px;
  4321. height:40px;
  4322. display:flex;
  4323. transition:none;
  4324. transform-origin:50% 50%;
  4325. font-size:14px;
  4326. }
  4327. #u8350 .text {
  4328. position:absolute;
  4329. align-self:center;
  4330. padding:2px 2px 2px 2px;
  4331. box-sizing:border-box;
  4332. width:100%;
  4333. }
  4334. #u8350_text {
  4335. border-width:0px;
  4336. word-wrap:break-word;
  4337. text-transform:none;
  4338. visibility:hidden;
  4339. }
  4340. #u8351_input {
  4341. position:absolute;
  4342. left:0px;
  4343. top:0px;
  4344. width:286px;
  4345. height:31px;
  4346. padding:2px 2px 2px 2px;
  4347. font-family:'ArialMT', 'Arial', sans-serif;
  4348. font-weight:400;
  4349. font-style:normal;
  4350. font-size:14px;
  4351. letter-spacing:normal;
  4352. color:#AAAAAA;
  4353. vertical-align:none;
  4354. text-align:left;
  4355. text-transform:none;
  4356. background-color:transparent;
  4357. border-color:transparent;
  4358. }
  4359. #u8351_input.disabled {
  4360. position:absolute;
  4361. left:0px;
  4362. top:0px;
  4363. width:286px;
  4364. height:31px;
  4365. padding:2px 2px 2px 2px;
  4366. font-family:'ArialMT', 'Arial', sans-serif;
  4367. font-weight:400;
  4368. font-style:normal;
  4369. font-size:14px;
  4370. letter-spacing:normal;
  4371. color:#AAAAAA;
  4372. vertical-align:none;
  4373. text-align:left;
  4374. text-transform:none;
  4375. background-color:transparent;
  4376. border-color:transparent;
  4377. }
  4378. #u8351_div {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:0px;
  4382. top:0px;
  4383. width:286px;
  4384. height:31px;
  4385. background:inherit;
  4386. background-color:rgba(255, 255, 255, 1);
  4387. border-radius:0px;
  4388. filter:drop-shadow(none);
  4389. transition:none;
  4390. font-size:14px;
  4391. color:#AAAAAA;
  4392. }
  4393. #u8351 {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:1292px;
  4397. top:514px;
  4398. width:286px;
  4399. height:31px;
  4400. display:flex;
  4401. transition:none;
  4402. transform-origin:50% 50%;
  4403. font-size:14px;
  4404. color:#AAAAAA;
  4405. }
  4406. #u8351 .text {
  4407. position:absolute;
  4408. align-self:flex-start;
  4409. padding:2px 2px 2px 2px;
  4410. box-sizing:border-box;
  4411. width:100%;
  4412. }
  4413. #u8351_div.disabled {
  4414. border-width:0px;
  4415. position:absolute;
  4416. left:0px;
  4417. top:0px;
  4418. width:286px;
  4419. height:31px;
  4420. background:inherit;
  4421. background-color:rgba(240, 240, 240, 1);
  4422. border-radius:0px;
  4423. filter:drop-shadow(none);
  4424. transition:none;
  4425. font-size:14px;
  4426. color:#AAAAAA;
  4427. }
  4428. #u8351.disabled {
  4429. }
  4430. .u8351_input_option {
  4431. font-size:14px;
  4432. }
  4433. #u8352_div {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:0px;
  4437. top:0px;
  4438. width:88px;
  4439. height:40px;
  4440. background:inherit;
  4441. background-color:rgba(255, 255, 255, 0);
  4442. border-top:0px;
  4443. border-right:0px;
  4444. border-bottom:0px;
  4445. border-radius:0px;
  4446. border-top-left-radius:0px;
  4447. border-bottom-left-radius:0px;
  4448. filter:drop-shadow(none);
  4449. transition:none;
  4450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4451. font-weight:400;
  4452. font-style:normal;
  4453. font-size:14px;
  4454. color:#7F7F7F;
  4455. text-align:right;
  4456. }
  4457. #u8352 {
  4458. border-width:0px;
  4459. position:absolute;
  4460. left:1627px;
  4461. top:511px;
  4462. width:88px;
  4463. height:40px;
  4464. display:flex;
  4465. transition:none;
  4466. transform-origin:50% 50%;
  4467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4468. font-weight:400;
  4469. font-style:normal;
  4470. font-size:14px;
  4471. color:#7F7F7F;
  4472. text-align:right;
  4473. }
  4474. #u8352 .text {
  4475. position:absolute;
  4476. align-self:center;
  4477. padding:5px 10px 5px 0px;
  4478. box-sizing:border-box;
  4479. width:100%;
  4480. }
  4481. #u8352_text {
  4482. border-width:0px;
  4483. white-space:nowrap;
  4484. text-transform:none;
  4485. }
  4486. #u8353 {
  4487. border-width:0px;
  4488. position:absolute;
  4489. left:0px;
  4490. top:0px;
  4491. width:0px;
  4492. height:0px;
  4493. }
  4494. #u8354_div {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:0px;
  4498. top:0px;
  4499. width:300px;
  4500. height:40px;
  4501. background:inherit;
  4502. background-color:rgba(255, 255, 255, 1);
  4503. box-sizing:border-box;
  4504. border-width:1px;
  4505. border-style:solid;
  4506. border-color:rgba(215, 215, 215, 1);
  4507. border-radius:4px;
  4508. filter:drop-shadow(none);
  4509. transition:none;
  4510. font-size:14px;
  4511. }
  4512. #u8354 {
  4513. border-width:0px;
  4514. position:absolute;
  4515. left:1725px;
  4516. top:511px;
  4517. width:300px;
  4518. height:40px;
  4519. display:flex;
  4520. transition:none;
  4521. transform-origin:50% 50%;
  4522. font-size:14px;
  4523. }
  4524. #u8354 .text {
  4525. position:absolute;
  4526. align-self:center;
  4527. padding:2px 2px 2px 2px;
  4528. box-sizing:border-box;
  4529. width:100%;
  4530. }
  4531. #u8354_text {
  4532. border-width:0px;
  4533. word-wrap:break-word;
  4534. text-transform:none;
  4535. visibility:hidden;
  4536. }
  4537. #u8355_input {
  4538. position:absolute;
  4539. left:0px;
  4540. top:0px;
  4541. width:286px;
  4542. height:31px;
  4543. padding:2px 2px 2px 2px;
  4544. font-family:'ArialMT', 'Arial', sans-serif;
  4545. font-weight:400;
  4546. font-style:normal;
  4547. font-size:14px;
  4548. letter-spacing:normal;
  4549. color:#AAAAAA;
  4550. vertical-align:none;
  4551. text-align:left;
  4552. text-transform:none;
  4553. background-color:transparent;
  4554. border-color:transparent;
  4555. }
  4556. #u8355_input.disabled {
  4557. position:absolute;
  4558. left:0px;
  4559. top:0px;
  4560. width:286px;
  4561. height:31px;
  4562. padding:2px 2px 2px 2px;
  4563. font-family:'ArialMT', 'Arial', sans-serif;
  4564. font-weight:400;
  4565. font-style:normal;
  4566. font-size:14px;
  4567. letter-spacing:normal;
  4568. color:#AAAAAA;
  4569. vertical-align:none;
  4570. text-align:left;
  4571. text-transform:none;
  4572. background-color:transparent;
  4573. border-color:transparent;
  4574. }
  4575. #u8355_div {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:0px;
  4579. top:0px;
  4580. width:286px;
  4581. height:31px;
  4582. background:inherit;
  4583. background-color:rgba(255, 255, 255, 1);
  4584. border-radius:0px;
  4585. filter:drop-shadow(none);
  4586. transition:none;
  4587. font-size:14px;
  4588. color:#AAAAAA;
  4589. }
  4590. #u8355 {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:1733px;
  4594. top:514px;
  4595. width:286px;
  4596. height:31px;
  4597. display:flex;
  4598. transition:none;
  4599. transform-origin:50% 50%;
  4600. font-size:14px;
  4601. color:#AAAAAA;
  4602. }
  4603. #u8355 .text {
  4604. position:absolute;
  4605. align-self:flex-start;
  4606. padding:2px 2px 2px 2px;
  4607. box-sizing:border-box;
  4608. width:100%;
  4609. }
  4610. #u8355_div.disabled {
  4611. border-width:0px;
  4612. position:absolute;
  4613. left:0px;
  4614. top:0px;
  4615. width:286px;
  4616. height:31px;
  4617. background:inherit;
  4618. background-color:rgba(240, 240, 240, 1);
  4619. border-radius:0px;
  4620. filter:drop-shadow(none);
  4621. transition:none;
  4622. font-size:14px;
  4623. color:#AAAAAA;
  4624. }
  4625. #u8355.disabled {
  4626. }
  4627. .u8355_input_option {
  4628. font-size:14px;
  4629. }
  4630. #u8356_div {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:0px;
  4634. top:0px;
  4635. width:88px;
  4636. height:40px;
  4637. background:inherit;
  4638. background-color:rgba(255, 255, 255, 0);
  4639. border-top:0px;
  4640. border-right:0px;
  4641. border-bottom:0px;
  4642. border-radius:0px;
  4643. border-top-left-radius:0px;
  4644. border-bottom-left-radius:0px;
  4645. filter:drop-shadow(none);
  4646. transition:none;
  4647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4648. font-weight:400;
  4649. font-style:normal;
  4650. font-size:14px;
  4651. color:#7F7F7F;
  4652. text-align:right;
  4653. }
  4654. #u8356 {
  4655. border-width:0px;
  4656. position:absolute;
  4657. left:1186px;
  4658. top:561px;
  4659. width:88px;
  4660. height:40px;
  4661. display:flex;
  4662. transition:none;
  4663. transform-origin:50% 50%;
  4664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4665. font-weight:400;
  4666. font-style:normal;
  4667. font-size:14px;
  4668. color:#7F7F7F;
  4669. text-align:right;
  4670. }
  4671. #u8356 .text {
  4672. position:absolute;
  4673. align-self:center;
  4674. padding:5px 10px 5px 0px;
  4675. box-sizing:border-box;
  4676. width:100%;
  4677. }
  4678. #u8356_text {
  4679. border-width:0px;
  4680. white-space:nowrap;
  4681. text-transform:none;
  4682. }
  4683. #u8357 {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:0px;
  4687. top:0px;
  4688. width:0px;
  4689. height:0px;
  4690. }
  4691. #u8358_div {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:0px;
  4695. top:0px;
  4696. width:300px;
  4697. height:40px;
  4698. background:inherit;
  4699. background-color:rgba(255, 255, 255, 1);
  4700. box-sizing:border-box;
  4701. border-width:1px;
  4702. border-style:solid;
  4703. border-color:rgba(215, 215, 215, 1);
  4704. border-radius:4px;
  4705. filter:drop-shadow(none);
  4706. transition:none;
  4707. font-size:14px;
  4708. }
  4709. #u8358 {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:1284px;
  4713. top:561px;
  4714. width:300px;
  4715. height:40px;
  4716. display:flex;
  4717. transition:none;
  4718. transform-origin:50% 50%;
  4719. font-size:14px;
  4720. }
  4721. #u8358 .text {
  4722. position:absolute;
  4723. align-self:center;
  4724. padding:2px 2px 2px 2px;
  4725. box-sizing:border-box;
  4726. width:100%;
  4727. }
  4728. #u8358_text {
  4729. border-width:0px;
  4730. word-wrap:break-word;
  4731. text-transform:none;
  4732. visibility:hidden;
  4733. }
  4734. #u8359_input {
  4735. position:absolute;
  4736. left:0px;
  4737. top:0px;
  4738. width:286px;
  4739. height:31px;
  4740. padding:2px 2px 2px 2px;
  4741. font-family:'ArialMT', 'Arial', sans-serif;
  4742. font-weight:400;
  4743. font-style:normal;
  4744. font-size:14px;
  4745. letter-spacing:normal;
  4746. color:#AAAAAA;
  4747. vertical-align:none;
  4748. text-align:left;
  4749. text-transform:none;
  4750. background-color:transparent;
  4751. border-color:transparent;
  4752. }
  4753. #u8359_input.disabled {
  4754. position:absolute;
  4755. left:0px;
  4756. top:0px;
  4757. width:286px;
  4758. height:31px;
  4759. padding:2px 2px 2px 2px;
  4760. font-family:'ArialMT', 'Arial', sans-serif;
  4761. font-weight:400;
  4762. font-style:normal;
  4763. font-size:14px;
  4764. letter-spacing:normal;
  4765. color:#AAAAAA;
  4766. vertical-align:none;
  4767. text-align:left;
  4768. text-transform:none;
  4769. background-color:transparent;
  4770. border-color:transparent;
  4771. }
  4772. #u8359_div {
  4773. border-width:0px;
  4774. position:absolute;
  4775. left:0px;
  4776. top:0px;
  4777. width:286px;
  4778. height:31px;
  4779. background:inherit;
  4780. background-color:rgba(255, 255, 255, 1);
  4781. border-radius:0px;
  4782. filter:drop-shadow(none);
  4783. transition:none;
  4784. font-size:14px;
  4785. color:#AAAAAA;
  4786. }
  4787. #u8359 {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:1292px;
  4791. top:564px;
  4792. width:286px;
  4793. height:31px;
  4794. display:flex;
  4795. transition:none;
  4796. transform-origin:50% 50%;
  4797. font-size:14px;
  4798. color:#AAAAAA;
  4799. }
  4800. #u8359 .text {
  4801. position:absolute;
  4802. align-self:flex-start;
  4803. padding:2px 2px 2px 2px;
  4804. box-sizing:border-box;
  4805. width:100%;
  4806. }
  4807. #u8359_div.disabled {
  4808. border-width:0px;
  4809. position:absolute;
  4810. left:0px;
  4811. top:0px;
  4812. width:286px;
  4813. height:31px;
  4814. background:inherit;
  4815. background-color:rgba(240, 240, 240, 1);
  4816. border-radius:0px;
  4817. filter:drop-shadow(none);
  4818. transition:none;
  4819. font-size:14px;
  4820. color:#AAAAAA;
  4821. }
  4822. #u8359.disabled {
  4823. }
  4824. .u8359_input_option {
  4825. font-size:14px;
  4826. }
  4827. #u8360_div {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:0px;
  4831. top:0px;
  4832. width:88px;
  4833. height:40px;
  4834. background:inherit;
  4835. background-color:rgba(255, 255, 255, 0);
  4836. border-top:0px;
  4837. border-right:0px;
  4838. border-bottom:0px;
  4839. border-radius:0px;
  4840. border-top-left-radius:0px;
  4841. border-bottom-left-radius:0px;
  4842. filter:drop-shadow(none);
  4843. transition:none;
  4844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4845. font-weight:400;
  4846. font-style:normal;
  4847. font-size:14px;
  4848. color:#7F7F7F;
  4849. text-align:right;
  4850. }
  4851. #u8360 {
  4852. border-width:0px;
  4853. position:absolute;
  4854. left:1627px;
  4855. top:561px;
  4856. width:88px;
  4857. height:40px;
  4858. display:flex;
  4859. transition:none;
  4860. transform-origin:50% 50%;
  4861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4862. font-weight:400;
  4863. font-style:normal;
  4864. font-size:14px;
  4865. color:#7F7F7F;
  4866. text-align:right;
  4867. }
  4868. #u8360 .text {
  4869. position:absolute;
  4870. align-self:center;
  4871. padding:5px 10px 5px 0px;
  4872. box-sizing:border-box;
  4873. width:100%;
  4874. }
  4875. #u8360_text {
  4876. border-width:0px;
  4877. white-space:nowrap;
  4878. text-transform:none;
  4879. }
  4880. #u8361 {
  4881. border-width:0px;
  4882. position:absolute;
  4883. left:0px;
  4884. top:0px;
  4885. width:0px;
  4886. height:0px;
  4887. }
  4888. #u8362_div {
  4889. border-width:0px;
  4890. position:absolute;
  4891. left:0px;
  4892. top:0px;
  4893. width:300px;
  4894. height:40px;
  4895. background:inherit;
  4896. background-color:rgba(255, 255, 255, 1);
  4897. box-sizing:border-box;
  4898. border-width:1px;
  4899. border-style:solid;
  4900. border-color:rgba(215, 215, 215, 1);
  4901. border-radius:4px;
  4902. filter:drop-shadow(none);
  4903. transition:none;
  4904. font-size:14px;
  4905. }
  4906. #u8362 {
  4907. border-width:0px;
  4908. position:absolute;
  4909. left:1725px;
  4910. top:561px;
  4911. width:300px;
  4912. height:40px;
  4913. display:flex;
  4914. transition:none;
  4915. transform-origin:50% 50%;
  4916. font-size:14px;
  4917. }
  4918. #u8362 .text {
  4919. position:absolute;
  4920. align-self:center;
  4921. padding:2px 2px 2px 2px;
  4922. box-sizing:border-box;
  4923. width:100%;
  4924. }
  4925. #u8362_text {
  4926. border-width:0px;
  4927. word-wrap:break-word;
  4928. text-transform:none;
  4929. visibility:hidden;
  4930. }
  4931. #u8363_input {
  4932. position:absolute;
  4933. left:0px;
  4934. top:0px;
  4935. width:286px;
  4936. height:31px;
  4937. padding:2px 2px 2px 2px;
  4938. font-family:'ArialMT', 'Arial', sans-serif;
  4939. font-weight:400;
  4940. font-style:normal;
  4941. font-size:14px;
  4942. letter-spacing:normal;
  4943. color:#AAAAAA;
  4944. vertical-align:none;
  4945. text-align:left;
  4946. text-transform:none;
  4947. background-color:transparent;
  4948. border-color:transparent;
  4949. }
  4950. #u8363_input.disabled {
  4951. position:absolute;
  4952. left:0px;
  4953. top:0px;
  4954. width:286px;
  4955. height:31px;
  4956. padding:2px 2px 2px 2px;
  4957. font-family:'ArialMT', 'Arial', sans-serif;
  4958. font-weight:400;
  4959. font-style:normal;
  4960. font-size:14px;
  4961. letter-spacing:normal;
  4962. color:#AAAAAA;
  4963. vertical-align:none;
  4964. text-align:left;
  4965. text-transform:none;
  4966. background-color:transparent;
  4967. border-color:transparent;
  4968. }
  4969. #u8363_div {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:0px;
  4973. top:0px;
  4974. width:286px;
  4975. height:31px;
  4976. background:inherit;
  4977. background-color:rgba(255, 255, 255, 1);
  4978. border-radius:0px;
  4979. filter:drop-shadow(none);
  4980. transition:none;
  4981. font-size:14px;
  4982. color:#AAAAAA;
  4983. }
  4984. #u8363 {
  4985. border-width:0px;
  4986. position:absolute;
  4987. left:1733px;
  4988. top:564px;
  4989. width:286px;
  4990. height:31px;
  4991. display:flex;
  4992. transition:none;
  4993. transform-origin:50% 50%;
  4994. font-size:14px;
  4995. color:#AAAAAA;
  4996. }
  4997. #u8363 .text {
  4998. position:absolute;
  4999. align-self:flex-start;
  5000. padding:2px 2px 2px 2px;
  5001. box-sizing:border-box;
  5002. width:100%;
  5003. }
  5004. #u8363_div.disabled {
  5005. border-width:0px;
  5006. position:absolute;
  5007. left:0px;
  5008. top:0px;
  5009. width:286px;
  5010. height:31px;
  5011. background:inherit;
  5012. background-color:rgba(240, 240, 240, 1);
  5013. border-radius:0px;
  5014. filter:drop-shadow(none);
  5015. transition:none;
  5016. font-size:14px;
  5017. color:#AAAAAA;
  5018. }
  5019. #u8363.disabled {
  5020. }
  5021. .u8363_input_option {
  5022. font-size:14px;
  5023. }
  5024. #u8364 {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:0px;
  5028. top:0px;
  5029. width:0px;
  5030. height:0px;
  5031. }
  5032. #u8365 {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:0px;
  5036. top:0px;
  5037. width:0px;
  5038. height:0px;
  5039. }
  5040. #u8366_div {
  5041. border-width:0px;
  5042. position:absolute;
  5043. left:0px;
  5044. top:0px;
  5045. width:300px;
  5046. height:40px;
  5047. background:inherit;
  5048. background-color:rgba(255, 255, 255, 1);
  5049. box-sizing:border-box;
  5050. border-width:1px;
  5051. border-style:solid;
  5052. border-color:rgba(215, 215, 215, 1);
  5053. border-radius:4px;
  5054. filter:drop-shadow(none);
  5055. transition:none;
  5056. font-size:14px;
  5057. }
  5058. #u8366 {
  5059. border-width:0px;
  5060. position:absolute;
  5061. left:1284px;
  5062. top:611px;
  5063. width:300px;
  5064. height:40px;
  5065. display:flex;
  5066. transition:none;
  5067. transform-origin:50% 50%;
  5068. font-size:14px;
  5069. }
  5070. #u8366 .text {
  5071. position:absolute;
  5072. align-self:center;
  5073. padding:2px 2px 2px 2px;
  5074. box-sizing:border-box;
  5075. width:100%;
  5076. }
  5077. #u8366_text {
  5078. border-width:0px;
  5079. word-wrap:break-word;
  5080. text-transform:none;
  5081. visibility:hidden;
  5082. }
  5083. #u8367_div {
  5084. border-width:0px;
  5085. position:absolute;
  5086. left:0px;
  5087. top:0px;
  5088. width:51px;
  5089. height:40px;
  5090. background:inherit;
  5091. background-color:rgba(255, 255, 255, 0);
  5092. border-top:0px;
  5093. border-right:0px;
  5094. border-bottom:0px;
  5095. border-radius:0px;
  5096. border-top-left-radius:0px;
  5097. border-bottom-left-radius:0px;
  5098. filter:drop-shadow(none);
  5099. transition:none;
  5100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5101. font-weight:400;
  5102. font-style:normal;
  5103. font-size:14px;
  5104. color:#7F7F7F;
  5105. }
  5106. #u8367 {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:1292px;
  5110. top:611px;
  5111. width:51px;
  5112. height:40px;
  5113. display:flex;
  5114. transition:none;
  5115. transform-origin:50% 50%;
  5116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5117. font-weight:400;
  5118. font-style:normal;
  5119. font-size:14px;
  5120. color:#7F7F7F;
  5121. }
  5122. #u8367 .text {
  5123. position:absolute;
  5124. align-self:center;
  5125. padding:5px 10px 5px 0px;
  5126. box-sizing:border-box;
  5127. width:100%;
  5128. }
  5129. #u8367_text {
  5130. border-width:0px;
  5131. white-space:nowrap;
  5132. text-transform:none;
  5133. }
  5134. #u8368_div {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:0px;
  5138. top:0px;
  5139. width:51px;
  5140. height:40px;
  5141. background:inherit;
  5142. background-color:rgba(255, 255, 255, 0);
  5143. border-top:0px;
  5144. border-right:0px;
  5145. border-bottom:0px;
  5146. border-radius:0px;
  5147. border-top-left-radius:0px;
  5148. border-bottom-left-radius:0px;
  5149. filter:drop-shadow(none);
  5150. transition:none;
  5151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5152. font-weight:400;
  5153. font-style:normal;
  5154. font-size:14px;
  5155. color:#7F7F7F;
  5156. }
  5157. #u8368 {
  5158. border-width:0px;
  5159. position:absolute;
  5160. left:1352px;
  5161. top:611px;
  5162. width:51px;
  5163. height:40px;
  5164. display:flex;
  5165. transition:none;
  5166. transform-origin:50% 50%;
  5167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5168. font-weight:400;
  5169. font-style:normal;
  5170. font-size:14px;
  5171. color:#7F7F7F;
  5172. }
  5173. #u8368 .text {
  5174. position:absolute;
  5175. align-self:center;
  5176. padding:5px 10px 5px 0px;
  5177. box-sizing:border-box;
  5178. width:100%;
  5179. }
  5180. #u8368_text {
  5181. border-width:0px;
  5182. white-space:nowrap;
  5183. text-transform:none;
  5184. }
  5185. #u8369 {
  5186. border-width:0px;
  5187. position:absolute;
  5188. left:0px;
  5189. top:0px;
  5190. width:0px;
  5191. height:0px;
  5192. }
  5193. #u8370_div {
  5194. border-width:0px;
  5195. position:absolute;
  5196. left:0px;
  5197. top:0px;
  5198. width:1000px;
  5199. height:60px;
  5200. background:inherit;
  5201. background-color:rgba(255, 255, 255, 1);
  5202. box-sizing:border-box;
  5203. border-width:1px;
  5204. border-style:solid;
  5205. border-color:rgba(215, 215, 215, 1);
  5206. border-radius:0px;
  5207. filter:drop-shadow(none);
  5208. transition:none;
  5209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5210. font-weight:400;
  5211. font-style:normal;
  5212. font-size:14px;
  5213. color:#AAAAAA;
  5214. text-align:center;
  5215. line-height:30px;
  5216. }
  5217. #u8370 {
  5218. border-width:0px;
  5219. position:absolute;
  5220. left:1146px;
  5221. top:1171px;
  5222. width:1000px;
  5223. height:60px;
  5224. display:flex;
  5225. transition:none;
  5226. transform-origin:50% 50%;
  5227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5228. font-weight:400;
  5229. font-style:normal;
  5230. font-size:14px;
  5231. color:#AAAAAA;
  5232. text-align:center;
  5233. line-height:30px;
  5234. }
  5235. #u8370 .text {
  5236. position:absolute;
  5237. align-self:center;
  5238. padding:5px 10px 5px 10px;
  5239. box-sizing:border-box;
  5240. width:100%;
  5241. }
  5242. #u8370_text {
  5243. border-width:0px;
  5244. word-wrap:break-word;
  5245. text-transform:none;
  5246. visibility:hidden;
  5247. }
  5248. #u8371_div {
  5249. border-width:0px;
  5250. position:absolute;
  5251. left:0px;
  5252. top:0px;
  5253. width:80px;
  5254. height:30px;
  5255. background:inherit;
  5256. background-color:rgba(24, 144, 255, 1);
  5257. border-radius:4px;
  5258. filter:drop-shadow(none);
  5259. transition:none;
  5260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5261. font-weight:400;
  5262. font-style:normal;
  5263. font-size:14px;
  5264. color:#FFFFFF;
  5265. }
  5266. #u8371 {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:2026px;
  5270. top:1186px;
  5271. width:80px;
  5272. height:30px;
  5273. display:flex;
  5274. transition:none;
  5275. transform-origin:50% 50%;
  5276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5277. font-weight:400;
  5278. font-style:normal;
  5279. font-size:14px;
  5280. color:#FFFFFF;
  5281. }
  5282. #u8371 .text {
  5283. position:absolute;
  5284. align-self:center;
  5285. padding:2px 2px 2px 2px;
  5286. box-sizing:border-box;
  5287. width:100%;
  5288. }
  5289. #u8371_text {
  5290. border-width:0px;
  5291. word-wrap:break-word;
  5292. text-transform:none;
  5293. }
  5294. #u8372_div {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:0px;
  5298. top:0px;
  5299. width:79px;
  5300. height:30px;
  5301. background:inherit;
  5302. background-color:rgba(255, 255, 255, 1);
  5303. box-sizing:border-box;
  5304. border-width:1px;
  5305. border-style:solid;
  5306. border-color:rgba(170, 170, 170, 1);
  5307. border-radius:4px;
  5308. filter:drop-shadow(none);
  5309. transition:none;
  5310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5311. font-weight:400;
  5312. font-style:normal;
  5313. font-size:14px;
  5314. }
  5315. #u8372 {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:1927px;
  5319. top:1186px;
  5320. width:79px;
  5321. height:30px;
  5322. display:flex;
  5323. transition:none;
  5324. transform-origin:50% 50%;
  5325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5326. font-weight:400;
  5327. font-style:normal;
  5328. font-size:14px;
  5329. }
  5330. #u8372 .text {
  5331. position:absolute;
  5332. align-self:center;
  5333. padding:2px 2px 2px 2px;
  5334. box-sizing:border-box;
  5335. width:100%;
  5336. }
  5337. #u8372_text {
  5338. border-width:0px;
  5339. word-wrap:break-word;
  5340. text-transform:none;
  5341. }
  5342. #u8373_div {
  5343. border-width:0px;
  5344. position:absolute;
  5345. left:0px;
  5346. top:0px;
  5347. width:73px;
  5348. height:40px;
  5349. background:inherit;
  5350. background-color:rgba(255, 255, 255, 0);
  5351. border-left:0px;
  5352. border-top:0px;
  5353. border-right:0px;
  5354. border-radius:0px;
  5355. border-bottom-right-radius:0px;
  5356. border-bottom-left-radius:0px;
  5357. filter:drop-shadow(none);
  5358. transition:none;
  5359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5360. font-weight:400;
  5361. font-style:normal;
  5362. font-size:18px;
  5363. }
  5364. #u8373 {
  5365. border-width:0px;
  5366. position:absolute;
  5367. left:1186px;
  5368. top:104px;
  5369. width:73px;
  5370. height:40px;
  5371. display:flex;
  5372. transition:none;
  5373. transform-origin:50% 50%;
  5374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5375. font-weight:400;
  5376. font-style:normal;
  5377. font-size:18px;
  5378. }
  5379. #u8373 .text {
  5380. position:absolute;
  5381. align-self:center;
  5382. padding:0px 0px 0px 0px;
  5383. box-sizing:border-box;
  5384. width:100%;
  5385. }
  5386. #u8373_text {
  5387. border-width:0px;
  5388. white-space:nowrap;
  5389. text-transform:none;
  5390. }
  5391. #u8374 {
  5392. border-width:0px;
  5393. position:absolute;
  5394. left:0px;
  5395. top:0px;
  5396. width:0px;
  5397. height:0px;
  5398. }
  5399. #u8375_div {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:0px;
  5403. top:0px;
  5404. width:920px;
  5405. height:60px;
  5406. background:inherit;
  5407. background-color:rgba(255, 255, 255, 1);
  5408. box-sizing:border-box;
  5409. border-width:1px;
  5410. border-style:solid;
  5411. border-color:rgba(242, 242, 242, 1);
  5412. border-left:0px;
  5413. border-top:0px;
  5414. border-right:0px;
  5415. border-radius:0px;
  5416. border-bottom-right-radius:0px;
  5417. border-bottom-left-radius:0px;
  5418. filter:drop-shadow(none);
  5419. transition:none;
  5420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5421. font-weight:400;
  5422. font-style:normal;
  5423. font-size:14px;
  5424. color:#AAAAAA;
  5425. text-align:center;
  5426. line-height:30px;
  5427. }
  5428. #u8375 {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:1186px;
  5432. top:204px;
  5433. width:920px;
  5434. height:60px;
  5435. display:flex;
  5436. transition:none;
  5437. transform-origin:50% 50%;
  5438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5439. font-weight:400;
  5440. font-style:normal;
  5441. font-size:14px;
  5442. color:#AAAAAA;
  5443. text-align:center;
  5444. line-height:30px;
  5445. }
  5446. #u8375 .text {
  5447. position:absolute;
  5448. align-self:center;
  5449. padding:5px 10px 5px 10px;
  5450. box-sizing:border-box;
  5451. width:100%;
  5452. }
  5453. #u8375_text {
  5454. border-width:0px;
  5455. word-wrap:break-word;
  5456. text-transform:none;
  5457. visibility:hidden;
  5458. }
  5459. #u8376_div {
  5460. border-width:0px;
  5461. position:absolute;
  5462. left:0px;
  5463. top:0px;
  5464. width:73px;
  5465. height:40px;
  5466. background:inherit;
  5467. background-color:rgba(255, 255, 255, 0);
  5468. border-left:0px;
  5469. border-top:0px;
  5470. border-right:0px;
  5471. border-radius:0px;
  5472. border-bottom-right-radius:0px;
  5473. border-bottom-left-radius:0px;
  5474. filter:drop-shadow(none);
  5475. transition:none;
  5476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5477. font-weight:400;
  5478. font-style:normal;
  5479. font-size:18px;
  5480. }
  5481. #u8376 {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:1212px;
  5485. top:214px;
  5486. width:73px;
  5487. height:40px;
  5488. display:flex;
  5489. transition:none;
  5490. transform-origin:50% 50%;
  5491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5492. font-weight:400;
  5493. font-style:normal;
  5494. font-size:18px;
  5495. }
  5496. #u8376 .text {
  5497. position:absolute;
  5498. align-self:center;
  5499. padding:0px 0px 0px 0px;
  5500. box-sizing:border-box;
  5501. width:100%;
  5502. }
  5503. #u8376_text {
  5504. border-width:0px;
  5505. white-space:nowrap;
  5506. text-transform:none;
  5507. }
  5508. #u8377 {
  5509. border-width:0px;
  5510. position:absolute;
  5511. left:2046px;
  5512. top:229px;
  5513. width:20px;
  5514. height:11px;
  5515. display:flex;
  5516. transition:none;
  5517. }
  5518. #u8377 .text {
  5519. position:absolute;
  5520. align-self:center;
  5521. padding:2px 2px 2px 2px;
  5522. box-sizing:border-box;
  5523. width:100%;
  5524. }
  5525. #u8377_img {
  5526. border-width:0px;
  5527. position:absolute;
  5528. left:0px;
  5529. top:0px;
  5530. width:20px;
  5531. height:11px;
  5532. }
  5533. #u8377_text {
  5534. border-width:0px;
  5535. word-wrap:break-word;
  5536. text-transform:none;
  5537. visibility:hidden;
  5538. }
  5539. #u8378 {
  5540. border-width:0px;
  5541. position:absolute;
  5542. left:0px;
  5543. top:0px;
  5544. width:0px;
  5545. height:0px;
  5546. }
  5547. #u8379_div {
  5548. border-width:0px;
  5549. position:absolute;
  5550. left:0px;
  5551. top:0px;
  5552. width:920px;
  5553. height:60px;
  5554. background:inherit;
  5555. background-color:rgba(255, 255, 255, 1);
  5556. box-sizing:border-box;
  5557. border-width:1px;
  5558. border-style:solid;
  5559. border-color:rgba(242, 242, 242, 1);
  5560. border-left:0px;
  5561. border-top:0px;
  5562. border-right:0px;
  5563. border-radius:0px;
  5564. border-bottom-right-radius:0px;
  5565. border-bottom-left-radius:0px;
  5566. filter:drop-shadow(none);
  5567. transition:none;
  5568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5569. font-weight:400;
  5570. font-style:normal;
  5571. font-size:14px;
  5572. color:#AAAAAA;
  5573. text-align:center;
  5574. line-height:30px;
  5575. }
  5576. #u8379 {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:1186px;
  5580. top:264px;
  5581. width:920px;
  5582. height:60px;
  5583. display:flex;
  5584. transition:none;
  5585. transform-origin:50% 50%;
  5586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5587. font-weight:400;
  5588. font-style:normal;
  5589. font-size:14px;
  5590. color:#AAAAAA;
  5591. text-align:center;
  5592. line-height:30px;
  5593. }
  5594. #u8379 .text {
  5595. position:absolute;
  5596. align-self:center;
  5597. padding:5px 10px 5px 10px;
  5598. box-sizing:border-box;
  5599. width:100%;
  5600. }
  5601. #u8379_text {
  5602. border-width:0px;
  5603. word-wrap:break-word;
  5604. text-transform:none;
  5605. visibility:hidden;
  5606. }
  5607. #u8380_div {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:0px;
  5611. top:0px;
  5612. width:73px;
  5613. height:40px;
  5614. background:inherit;
  5615. background-color:rgba(255, 255, 255, 0);
  5616. border-left:0px;
  5617. border-top:0px;
  5618. border-right:0px;
  5619. border-radius:0px;
  5620. border-bottom-right-radius:0px;
  5621. border-bottom-left-radius:0px;
  5622. filter:drop-shadow(none);
  5623. transition:none;
  5624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5625. font-weight:400;
  5626. font-style:normal;
  5627. font-size:18px;
  5628. }
  5629. #u8380 {
  5630. border-width:0px;
  5631. position:absolute;
  5632. left:1212px;
  5633. top:274px;
  5634. width:73px;
  5635. height:40px;
  5636. display:flex;
  5637. transition:none;
  5638. transform-origin:50% 50%;
  5639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5640. font-weight:400;
  5641. font-style:normal;
  5642. font-size:18px;
  5643. }
  5644. #u8380 .text {
  5645. position:absolute;
  5646. align-self:center;
  5647. padding:0px 0px 0px 0px;
  5648. box-sizing:border-box;
  5649. width:100%;
  5650. }
  5651. #u8380_text {
  5652. border-width:0px;
  5653. white-space:nowrap;
  5654. text-transform:none;
  5655. }
  5656. #u8381 {
  5657. border-width:0px;
  5658. position:absolute;
  5659. left:2046px;
  5660. top:289px;
  5661. width:20px;
  5662. height:11px;
  5663. display:flex;
  5664. transition:none;
  5665. }
  5666. #u8381 .text {
  5667. position:absolute;
  5668. align-self:center;
  5669. padding:2px 2px 2px 2px;
  5670. box-sizing:border-box;
  5671. width:100%;
  5672. }
  5673. #u8381_img {
  5674. border-width:0px;
  5675. position:absolute;
  5676. left:0px;
  5677. top:0px;
  5678. width:20px;
  5679. height:11px;
  5680. }
  5681. #u8381_text {
  5682. border-width:0px;
  5683. word-wrap:break-word;
  5684. text-transform:none;
  5685. visibility:hidden;
  5686. }
  5687. #u8382 {
  5688. border-width:0px;
  5689. position:absolute;
  5690. left:0px;
  5691. top:0px;
  5692. width:0px;
  5693. height:0px;
  5694. }
  5695. #u8383_div {
  5696. border-width:0px;
  5697. position:absolute;
  5698. left:0px;
  5699. top:0px;
  5700. width:920px;
  5701. height:60px;
  5702. background:inherit;
  5703. background-color:rgba(255, 255, 255, 1);
  5704. box-sizing:border-box;
  5705. border-width:1px;
  5706. border-style:solid;
  5707. border-color:rgba(242, 242, 242, 1);
  5708. border-left:0px;
  5709. border-top:0px;
  5710. border-right:0px;
  5711. border-radius:0px;
  5712. border-bottom-right-radius:0px;
  5713. border-bottom-left-radius:0px;
  5714. filter:drop-shadow(none);
  5715. transition:none;
  5716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5717. font-weight:400;
  5718. font-style:normal;
  5719. font-size:14px;
  5720. color:#AAAAAA;
  5721. text-align:center;
  5722. line-height:30px;
  5723. }
  5724. #u8383 {
  5725. border-width:0px;
  5726. position:absolute;
  5727. left:1186px;
  5728. top:324px;
  5729. width:920px;
  5730. height:60px;
  5731. display:flex;
  5732. transition:none;
  5733. transform-origin:50% 50%;
  5734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5735. font-weight:400;
  5736. font-style:normal;
  5737. font-size:14px;
  5738. color:#AAAAAA;
  5739. text-align:center;
  5740. line-height:30px;
  5741. }
  5742. #u8383 .text {
  5743. position:absolute;
  5744. align-self:center;
  5745. padding:5px 10px 5px 10px;
  5746. box-sizing:border-box;
  5747. width:100%;
  5748. }
  5749. #u8383_text {
  5750. border-width:0px;
  5751. word-wrap:break-word;
  5752. text-transform:none;
  5753. visibility:hidden;
  5754. }
  5755. #u8384_div {
  5756. border-width:0px;
  5757. position:absolute;
  5758. left:0px;
  5759. top:0px;
  5760. width:73px;
  5761. height:40px;
  5762. background:inherit;
  5763. background-color:rgba(255, 255, 255, 0);
  5764. border-left:0px;
  5765. border-top:0px;
  5766. border-right:0px;
  5767. border-radius:0px;
  5768. border-bottom-right-radius:0px;
  5769. border-bottom-left-radius:0px;
  5770. filter:drop-shadow(none);
  5771. transition:none;
  5772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5773. font-weight:400;
  5774. font-style:normal;
  5775. font-size:18px;
  5776. }
  5777. #u8384 {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:1212px;
  5781. top:334px;
  5782. width:73px;
  5783. height:40px;
  5784. display:flex;
  5785. transition:none;
  5786. transform-origin:50% 50%;
  5787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5788. font-weight:400;
  5789. font-style:normal;
  5790. font-size:18px;
  5791. }
  5792. #u8384 .text {
  5793. position:absolute;
  5794. align-self:center;
  5795. padding:0px 0px 0px 0px;
  5796. box-sizing:border-box;
  5797. width:100%;
  5798. }
  5799. #u8384_text {
  5800. border-width:0px;
  5801. white-space:nowrap;
  5802. text-transform:none;
  5803. }
  5804. #u8385 {
  5805. border-width:0px;
  5806. position:absolute;
  5807. left:2046px;
  5808. top:349px;
  5809. width:20px;
  5810. height:11px;
  5811. display:flex;
  5812. transition:none;
  5813. }
  5814. #u8385 .text {
  5815. position:absolute;
  5816. align-self:center;
  5817. padding:2px 2px 2px 2px;
  5818. box-sizing:border-box;
  5819. width:100%;
  5820. }
  5821. #u8385_img {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:0px;
  5825. top:0px;
  5826. width:20px;
  5827. height:11px;
  5828. }
  5829. #u8385_text {
  5830. border-width:0px;
  5831. word-wrap:break-word;
  5832. text-transform:none;
  5833. visibility:hidden;
  5834. }
  5835. #u8386_div {
  5836. border-width:0px;
  5837. position:absolute;
  5838. left:0px;
  5839. top:0px;
  5840. width:318px;
  5841. height:40px;
  5842. background:inherit;
  5843. background-color:rgba(255, 255, 255, 0);
  5844. border-left:0px;
  5845. border-top:0px;
  5846. border-right:0px;
  5847. border-radius:0px;
  5848. border-bottom-right-radius:0px;
  5849. border-bottom-left-radius:0px;
  5850. filter:drop-shadow(none);
  5851. transition:none;
  5852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5853. font-weight:400;
  5854. font-style:normal;
  5855. font-size:18px;
  5856. }
  5857. #u8386 {
  5858. border-width:0px;
  5859. position:absolute;
  5860. left:1200px;
  5861. top:154px;
  5862. width:318px;
  5863. height:40px;
  5864. display:flex;
  5865. transition:none;
  5866. transform-origin:50% 50%;
  5867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5868. font-weight:400;
  5869. font-style:normal;
  5870. font-size:18px;
  5871. }
  5872. #u8386 .text {
  5873. position:absolute;
  5874. align-self:center;
  5875. padding:0px 0px 0px 0px;
  5876. box-sizing:border-box;
  5877. width:100%;
  5878. }
  5879. #u8386_text {
  5880. border-width:0px;
  5881. white-space:nowrap;
  5882. text-transform:none;
  5883. }