styles.css 104 KB

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