styles.css 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-20px;
  6. width:1600px;
  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. #u34471 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u34472_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1600px;
  33. height:1200px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. border:none;
  37. border-radius:0px;
  38. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  39. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  40. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  41. }
  42. #u34472 {
  43. border-width:0px;
  44. position:absolute;
  45. left:20px;
  46. top:40px;
  47. width:1600px;
  48. height:1200px;
  49. display:flex;
  50. }
  51. #u34472 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u34472_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u34473_div {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:278px;
  70. height:1200px;
  71. background:inherit;
  72. background-color:rgba(255, 255, 255, 1);
  73. box-sizing:border-box;
  74. border-width:1px;
  75. border-style:solid;
  76. border-color:rgba(215, 215, 215, 1);
  77. border-radius:0px;
  78. -moz-box-shadow:none;
  79. -webkit-box-shadow:none;
  80. box-shadow:none;
  81. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  82. font-weight:400;
  83. font-style:normal;
  84. font-size:14px;
  85. color:#AAAAAA;
  86. text-align:center;
  87. line-height:30px;
  88. }
  89. #u34473 {
  90. border-width:0px;
  91. position:absolute;
  92. left:20px;
  93. top:40px;
  94. width:278px;
  95. height:1200px;
  96. display:flex;
  97. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  98. font-weight:400;
  99. font-style:normal;
  100. font-size:14px;
  101. color:#AAAAAA;
  102. text-align:center;
  103. line-height:30px;
  104. }
  105. #u34473 .text {
  106. position:absolute;
  107. align-self:center;
  108. padding:5px 10px 5px 10px;
  109. box-sizing:border-box;
  110. width:100%;
  111. }
  112. #u34473_text {
  113. border-width:0px;
  114. word-wrap:break-word;
  115. text-transform:none;
  116. visibility:hidden;
  117. }
  118. #u34474_div {
  119. border-width:0px;
  120. position:absolute;
  121. left:0px;
  122. top:0px;
  123. width:1600px;
  124. height:60px;
  125. background:inherit;
  126. background-color:rgba(255, 255, 255, 1);
  127. border:none;
  128. border-radius:0px;
  129. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  130. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  131. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  133. font-weight:400;
  134. font-style:normal;
  135. font-size:14px;
  136. color:#AAAAAA;
  137. text-align:center;
  138. line-height:30px;
  139. }
  140. #u34474 {
  141. border-width:0px;
  142. position:absolute;
  143. left:20px;
  144. top:40px;
  145. width:1600px;
  146. height:60px;
  147. display:flex;
  148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  149. font-weight:400;
  150. font-style:normal;
  151. font-size:14px;
  152. color:#AAAAAA;
  153. text-align:center;
  154. line-height:30px;
  155. }
  156. #u34474 .text {
  157. position:absolute;
  158. align-self:center;
  159. padding:5px 10px 5px 10px;
  160. box-sizing:border-box;
  161. width:100%;
  162. }
  163. #u34474_text {
  164. border-width:0px;
  165. word-wrap:break-word;
  166. text-transform:none;
  167. visibility:hidden;
  168. }
  169. #u34475_div {
  170. border-width:0px;
  171. position:absolute;
  172. left:0px;
  173. top:0px;
  174. width:127px;
  175. height:60px;
  176. background:inherit;
  177. background-color:rgba(255, 255, 255, 0);
  178. border:none;
  179. border-left:0px;
  180. border-top:0px;
  181. border-right:0px;
  182. border-radius:0px;
  183. border-bottom-right-radius:0px;
  184. border-bottom-left-radius:0px;
  185. -moz-box-shadow:none;
  186. -webkit-box-shadow:none;
  187. box-shadow:none;
  188. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  189. font-weight:500;
  190. font-style:normal;
  191. font-size:18px;
  192. }
  193. #u34475 {
  194. border-width:0px;
  195. position:absolute;
  196. left:42px;
  197. top:40px;
  198. width:127px;
  199. height:60px;
  200. display:flex;
  201. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  202. font-weight:500;
  203. font-style:normal;
  204. font-size:18px;
  205. }
  206. #u34475 .text {
  207. position:absolute;
  208. align-self:center;
  209. padding:5px 0px 5px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u34475_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u34476_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:60px;
  224. height:30px;
  225. background:inherit;
  226. background-color:rgba(25, 140, 251, 1);
  227. border:none;
  228. border-radius:4px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  233. font-weight:400;
  234. font-style:normal;
  235. font-size:14px;
  236. color:#FFFFFF;
  237. }
  238. #u34476 {
  239. border-width:0px;
  240. position:absolute;
  241. left:1520px;
  242. top:55px;
  243. width:60px;
  244. height:30px;
  245. display:flex;
  246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  247. font-weight:400;
  248. font-style:normal;
  249. font-size:14px;
  250. color:#FFFFFF;
  251. }
  252. #u34476 .text {
  253. position:absolute;
  254. align-self:center;
  255. padding:2px 2px 2px 2px;
  256. box-sizing:border-box;
  257. width:100%;
  258. }
  259. #u34476_text {
  260. border-width:0px;
  261. word-wrap:break-word;
  262. text-transform:none;
  263. }
  264. #u34477_div {
  265. border-width:0px;
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:1020px;
  270. height:130px;
  271. background:inherit;
  272. background-color:rgba(255, 255, 255, 1);
  273. border:none;
  274. border-radius:4px;
  275. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  276. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  277. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  279. font-weight:400;
  280. font-style:normal;
  281. font-size:14px;
  282. color:#AAAAAA;
  283. line-height:30px;
  284. }
  285. #u34477 {
  286. border-width:0px;
  287. position:absolute;
  288. left:309px;
  289. top:113px;
  290. width:1020px;
  291. height:130px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:14px;
  297. color:#AAAAAA;
  298. line-height:30px;
  299. }
  300. #u34477 .text {
  301. position:absolute;
  302. align-self:center;
  303. padding:5px 10px 5px 10px;
  304. box-sizing:border-box;
  305. width:100%;
  306. }
  307. #u34477_text {
  308. border-width:0px;
  309. word-wrap:break-word;
  310. text-transform:none;
  311. visibility:hidden;
  312. }
  313. #u34478_input {
  314. position:absolute;
  315. left:0px;
  316. top:0px;
  317. width:946px;
  318. height:50px;
  319. padding:2px 2px 2px 2px;
  320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  321. font-weight:400;
  322. font-style:normal;
  323. font-size:18px;
  324. letter-spacing:normal;
  325. color:#000000;
  326. vertical-align:none;
  327. text-align:left;
  328. text-transform:none;
  329. background-color:transparent;
  330. border-color:transparent;
  331. }
  332. #u34478_input.disabled {
  333. position:absolute;
  334. left:0px;
  335. top:0px;
  336. width:946px;
  337. height:50px;
  338. padding:2px 2px 2px 2px;
  339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  340. font-weight:400;
  341. font-style:normal;
  342. font-size:18px;
  343. letter-spacing:normal;
  344. color:#000000;
  345. vertical-align:none;
  346. text-align:left;
  347. text-transform:none;
  348. background-color:transparent;
  349. border-color:transparent;
  350. }
  351. #u34478_div {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:946px;
  357. height:50px;
  358. background:inherit;
  359. background-color:rgba(255, 255, 255, 0);
  360. border:none;
  361. border-radius:0px;
  362. -moz-box-shadow:none;
  363. -webkit-box-shadow:none;
  364. box-shadow:none;
  365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  366. font-weight:400;
  367. font-style:normal;
  368. font-size:18px;
  369. }
  370. #u34478 {
  371. border-width:0px;
  372. position:absolute;
  373. left:337px;
  374. top:123px;
  375. width:946px;
  376. height:50px;
  377. display:flex;
  378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  379. font-weight:400;
  380. font-style:normal;
  381. font-size:18px;
  382. }
  383. #u34478 .text {
  384. position:absolute;
  385. align-self:center;
  386. padding:2px 2px 2px 2px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u34478_div.disabled {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:946px;
  396. height:50px;
  397. background:inherit;
  398. background-color:rgba(240, 240, 240, 1);
  399. border:none;
  400. border-radius:0px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. font-size:18px;
  408. }
  409. #u34478.disabled {
  410. }
  411. #u34479_input {
  412. position:absolute;
  413. left:0px;
  414. top:0px;
  415. width:946px;
  416. height:50px;
  417. padding:2px 2px 2px 2px;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. font-size:14px;
  422. letter-spacing:normal;
  423. color:#7F7F7F;
  424. vertical-align:none;
  425. text-align:left;
  426. text-transform:none;
  427. background-color:transparent;
  428. border-color:transparent;
  429. }
  430. #u34479_input.disabled {
  431. position:absolute;
  432. left:0px;
  433. top:0px;
  434. width:946px;
  435. height:50px;
  436. padding:2px 2px 2px 2px;
  437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  438. font-weight:400;
  439. font-style:normal;
  440. font-size:14px;
  441. letter-spacing:normal;
  442. color:#7F7F7F;
  443. vertical-align:none;
  444. text-align:left;
  445. text-transform:none;
  446. background-color:transparent;
  447. border-color:transparent;
  448. }
  449. #u34479_div {
  450. border-width:0px;
  451. position:absolute;
  452. left:0px;
  453. top:0px;
  454. width:946px;
  455. height:50px;
  456. background:inherit;
  457. background-color:rgba(255, 255, 255, 0);
  458. border:none;
  459. border-radius:0px;
  460. -moz-box-shadow:none;
  461. -webkit-box-shadow:none;
  462. box-shadow:none;
  463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  464. font-weight:400;
  465. font-style:normal;
  466. font-size:14px;
  467. color:#7F7F7F;
  468. }
  469. #u34479 {
  470. border-width:0px;
  471. position:absolute;
  472. left:337px;
  473. top:173px;
  474. width:946px;
  475. height:50px;
  476. display:flex;
  477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  478. font-weight:400;
  479. font-style:normal;
  480. font-size:14px;
  481. color:#7F7F7F;
  482. }
  483. #u34479 .text {
  484. position:absolute;
  485. align-self:center;
  486. padding:2px 2px 2px 2px;
  487. box-sizing:border-box;
  488. width:100%;
  489. }
  490. #u34479_div.disabled {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:946px;
  496. height:50px;
  497. background:inherit;
  498. background-color:rgba(240, 240, 240, 1);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:14px;
  508. color:#7F7F7F;
  509. }
  510. #u34479.disabled {
  511. }
  512. #u34480 {
  513. border-width:0px;
  514. position:absolute;
  515. left:0px;
  516. top:0px;
  517. width:0px;
  518. height:0px;
  519. }
  520. #u34481_img {
  521. border-width:0px;
  522. position:absolute;
  523. left:0px;
  524. top:0px;
  525. width:77px;
  526. height:21px;
  527. }
  528. #u34481 {
  529. border-width:0px;
  530. position:absolute;
  531. left:1108px;
  532. top:135px;
  533. width:77px;
  534. height:21px;
  535. display:flex;
  536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  537. font-weight:400;
  538. font-style:normal;
  539. font-size:12px;
  540. }
  541. #u34481 .text {
  542. position:absolute;
  543. align-self:center;
  544. padding:2px 2px 2px 2px;
  545. box-sizing:border-box;
  546. width:100%;
  547. }
  548. #u34481_text {
  549. border-width:0px;
  550. white-space:nowrap;
  551. text-transform:none;
  552. }
  553. #u34482_img {
  554. border-width:0px;
  555. position:absolute;
  556. left:0px;
  557. top:0px;
  558. width:41px;
  559. height:21px;
  560. }
  561. #u34482 {
  562. border-width:0px;
  563. position:absolute;
  564. left:1205px;
  565. top:135px;
  566. width:41px;
  567. height:21px;
  568. display:flex;
  569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  570. font-weight:400;
  571. font-style:normal;
  572. font-size:12px;
  573. }
  574. #u34482 .text {
  575. position:absolute;
  576. align-self:center;
  577. padding:2px 2px 2px 2px;
  578. box-sizing:border-box;
  579. width:100%;
  580. }
  581. #u34482_text {
  582. border-width:0px;
  583. white-space:nowrap;
  584. text-transform:none;
  585. }
  586. #u34483_img {
  587. border-width:0px;
  588. position:absolute;
  589. left:0px;
  590. top:0px;
  591. width:41px;
  592. height:21px;
  593. }
  594. #u34483 {
  595. border-width:0px;
  596. position:absolute;
  597. left:1256px;
  598. top:135px;
  599. width:41px;
  600. height:21px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:12px;
  606. color:#AAAAAA;
  607. }
  608. #u34483 .text {
  609. position:absolute;
  610. align-self:center;
  611. padding:2px 2px 2px 2px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u34483_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u34484_div {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:278px;
  626. height:40px;
  627. background:inherit;
  628. background-color:rgba(242, 242, 242, 1);
  629. box-sizing:border-box;
  630. border-width:1px;
  631. border-style:solid;
  632. border-color:rgba(215, 215, 215, 1);
  633. border-radius:0px;
  634. -moz-box-shadow:none;
  635. -webkit-box-shadow:none;
  636. box-shadow:none;
  637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  638. font-weight:400;
  639. font-style:normal;
  640. font-size:14px;
  641. }
  642. #u34484 {
  643. border-width:0px;
  644. position:absolute;
  645. left:20px;
  646. top:100px;
  647. width:278px;
  648. height:40px;
  649. display:flex;
  650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  651. font-weight:400;
  652. font-style:normal;
  653. font-size:14px;
  654. }
  655. #u34484 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:5px 0px 5px 20px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u34484_text {
  663. border-width:0px;
  664. word-wrap:break-word;
  665. text-transform:none;
  666. }
  667. #u34485 {
  668. border-width:0px;
  669. position:absolute;
  670. left:0px;
  671. top:0px;
  672. width:0px;
  673. height:0px;
  674. }
  675. #u34486_div {
  676. border-width:0px;
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:100px;
  681. height:27px;
  682. background:inherit;
  683. background-color:rgba(242, 242, 242, 0.16078431372549);
  684. box-sizing:border-box;
  685. border-width:1px;
  686. border-style:solid;
  687. border-color:rgba(215, 215, 215, 1);
  688. border-radius:2px;
  689. -moz-box-shadow:none;
  690. -webkit-box-shadow:none;
  691. box-shadow:none;
  692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  693. font-weight:400;
  694. font-style:normal;
  695. font-size:12px;
  696. text-align:left;
  697. }
  698. #u34486 {
  699. border-width:0px;
  700. position:absolute;
  701. left:42px;
  702. top:191px;
  703. width:100px;
  704. height:27px;
  705. display:flex;
  706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  707. font-weight:400;
  708. font-style:normal;
  709. font-size:12px;
  710. text-align:left;
  711. }
  712. #u34486 .text {
  713. position:absolute;
  714. align-self:center;
  715. padding:5px 15px 5px 30px;
  716. box-sizing:border-box;
  717. width:100%;
  718. }
  719. #u34486_text {
  720. border-width:0px;
  721. word-wrap:break-word;
  722. text-transform:none;
  723. }
  724. #u34487_img {
  725. border-width:0px;
  726. position:absolute;
  727. left:0px;
  728. top:0px;
  729. width:12px;
  730. height:12px;
  731. }
  732. #u34487 {
  733. border-width:0px;
  734. position:absolute;
  735. left:53px;
  736. top:198px;
  737. width:12px;
  738. height:12px;
  739. display:flex;
  740. }
  741. #u34487 .text {
  742. position:absolute;
  743. align-self:center;
  744. padding:2px 2px 2px 2px;
  745. box-sizing:border-box;
  746. width:100%;
  747. }
  748. #u34487_text {
  749. border-width:0px;
  750. word-wrap:break-word;
  751. text-transform:none;
  752. visibility:hidden;
  753. }
  754. #u34488 {
  755. border-width:0px;
  756. position:absolute;
  757. left:0px;
  758. top:0px;
  759. width:0px;
  760. height:0px;
  761. }
  762. #u34489_div {
  763. border-width:0px;
  764. position:absolute;
  765. left:0px;
  766. top:0px;
  767. width:100px;
  768. height:27px;
  769. background:inherit;
  770. background-color:rgba(242, 242, 242, 0.16078431372549);
  771. box-sizing:border-box;
  772. border-width:1px;
  773. border-style:solid;
  774. border-color:rgba(215, 215, 215, 1);
  775. border-radius:2px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:12px;
  783. text-align:left;
  784. }
  785. #u34489 {
  786. border-width:0px;
  787. position:absolute;
  788. left:42px;
  789. top:154px;
  790. width:100px;
  791. height:27px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:12px;
  797. text-align:left;
  798. }
  799. #u34489 .text {
  800. position:absolute;
  801. align-self:center;
  802. padding:5px 15px 5px 30px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u34489_text {
  807. border-width:0px;
  808. word-wrap:break-word;
  809. text-transform:none;
  810. }
  811. #u34490_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:12px;
  817. height:12px;
  818. }
  819. #u34490 {
  820. border-width:0px;
  821. position:absolute;
  822. left:53px;
  823. top:161px;
  824. width:12px;
  825. height:12px;
  826. display:flex;
  827. }
  828. #u34490 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u34490_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u34491 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u34492_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:100px;
  855. height:27px;
  856. background:inherit;
  857. background-color:rgba(242, 242, 242, 0.16078431372549);
  858. box-sizing:border-box;
  859. border-width:1px;
  860. border-style:solid;
  861. border-color:rgba(215, 215, 215, 1);
  862. border-radius:2px;
  863. -moz-box-shadow:none;
  864. -webkit-box-shadow:none;
  865. box-shadow:none;
  866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  867. font-weight:400;
  868. font-style:normal;
  869. font-size:12px;
  870. text-align:left;
  871. }
  872. #u34492 {
  873. border-width:0px;
  874. position:absolute;
  875. left:166px;
  876. top:154px;
  877. width:100px;
  878. height:27px;
  879. display:flex;
  880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  881. font-weight:400;
  882. font-style:normal;
  883. font-size:12px;
  884. text-align:left;
  885. }
  886. #u34492 .text {
  887. position:absolute;
  888. align-self:center;
  889. padding:5px 15px 5px 30px;
  890. box-sizing:border-box;
  891. width:100%;
  892. }
  893. #u34492_text {
  894. border-width:0px;
  895. word-wrap:break-word;
  896. text-transform:none;
  897. }
  898. #u34493_img {
  899. border-width:0px;
  900. position:absolute;
  901. left:0px;
  902. top:0px;
  903. width:12px;
  904. height:12px;
  905. }
  906. #u34493 {
  907. border-width:0px;
  908. position:absolute;
  909. left:177px;
  910. top:161px;
  911. width:12px;
  912. height:12px;
  913. display:flex;
  914. }
  915. #u34493 .text {
  916. position:absolute;
  917. align-self:center;
  918. padding:2px 2px 2px 2px;
  919. box-sizing:border-box;
  920. width:100%;
  921. }
  922. #u34493_text {
  923. border-width:0px;
  924. word-wrap:break-word;
  925. text-transform:none;
  926. visibility:hidden;
  927. }
  928. #u34494 {
  929. border-width:0px;
  930. position:absolute;
  931. left:0px;
  932. top:0px;
  933. width:0px;
  934. height:0px;
  935. }
  936. #u34495_div {
  937. border-width:0px;
  938. position:absolute;
  939. left:0px;
  940. top:0px;
  941. width:100px;
  942. height:27px;
  943. background:inherit;
  944. background-color:rgba(242, 242, 242, 0.16078431372549);
  945. box-sizing:border-box;
  946. border-width:1px;
  947. border-style:solid;
  948. border-color:rgba(215, 215, 215, 1);
  949. border-radius:2px;
  950. -moz-box-shadow:none;
  951. -webkit-box-shadow:none;
  952. box-shadow:none;
  953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  954. font-weight:400;
  955. font-style:normal;
  956. font-size:12px;
  957. text-align:left;
  958. }
  959. #u34495 {
  960. border-width:0px;
  961. position:absolute;
  962. left:166px;
  963. top:191px;
  964. width:100px;
  965. height:27px;
  966. display:flex;
  967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  968. font-weight:400;
  969. font-style:normal;
  970. font-size:12px;
  971. text-align:left;
  972. }
  973. #u34495 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:5px 15px 5px 30px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u34495_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. }
  985. #u34496_img {
  986. border-width:0px;
  987. position:absolute;
  988. left:0px;
  989. top:0px;
  990. width:12px;
  991. height:12px;
  992. }
  993. #u34496 {
  994. border-width:0px;
  995. position:absolute;
  996. left:177px;
  997. top:198px;
  998. width:12px;
  999. height:12px;
  1000. display:flex;
  1001. }
  1002. #u34496 .text {
  1003. position:absolute;
  1004. align-self:center;
  1005. padding:2px 2px 2px 2px;
  1006. box-sizing:border-box;
  1007. width:100%;
  1008. }
  1009. #u34496_text {
  1010. border-width:0px;
  1011. word-wrap:break-word;
  1012. text-transform:none;
  1013. visibility:hidden;
  1014. }
  1015. #u34497 {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:0px;
  1021. height:0px;
  1022. }
  1023. #u34498_div {
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:0px;
  1027. top:0px;
  1028. width:100px;
  1029. height:27px;
  1030. background:inherit;
  1031. background-color:rgba(242, 242, 242, 0.16078431372549);
  1032. box-sizing:border-box;
  1033. border-width:1px;
  1034. border-style:solid;
  1035. border-color:rgba(215, 215, 215, 1);
  1036. border-radius:2px;
  1037. -moz-box-shadow:none;
  1038. -webkit-box-shadow:none;
  1039. box-shadow:none;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. font-size:12px;
  1044. text-align:left;
  1045. }
  1046. #u34498 {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:42px;
  1050. top:228px;
  1051. width:100px;
  1052. height:27px;
  1053. display:flex;
  1054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1055. font-weight:400;
  1056. font-style:normal;
  1057. font-size:12px;
  1058. text-align:left;
  1059. }
  1060. #u34498 .text {
  1061. position:absolute;
  1062. align-self:center;
  1063. padding:5px 15px 5px 30px;
  1064. box-sizing:border-box;
  1065. width:100%;
  1066. }
  1067. #u34498_text {
  1068. border-width:0px;
  1069. word-wrap:break-word;
  1070. text-transform:none;
  1071. }
  1072. #u34499_img {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:0px;
  1076. top:0px;
  1077. width:12px;
  1078. height:12px;
  1079. }
  1080. #u34499 {
  1081. border-width:0px;
  1082. position:absolute;
  1083. left:53px;
  1084. top:235px;
  1085. width:12px;
  1086. height:12px;
  1087. display:flex;
  1088. }
  1089. #u34499 .text {
  1090. position:absolute;
  1091. align-self:center;
  1092. padding:2px 2px 2px 2px;
  1093. box-sizing:border-box;
  1094. width:100%;
  1095. }
  1096. #u34499_text {
  1097. border-width:0px;
  1098. word-wrap:break-word;
  1099. text-transform:none;
  1100. visibility:hidden;
  1101. }
  1102. #u34500 {
  1103. border-width:0px;
  1104. position:absolute;
  1105. left:0px;
  1106. top:0px;
  1107. width:0px;
  1108. height:0px;
  1109. }
  1110. #u34501_div {
  1111. border-width:0px;
  1112. position:absolute;
  1113. left:0px;
  1114. top:0px;
  1115. width:100px;
  1116. height:27px;
  1117. background:inherit;
  1118. background-color:rgba(242, 242, 242, 0.16078431372549);
  1119. box-sizing:border-box;
  1120. border-width:1px;
  1121. border-style:solid;
  1122. border-color:rgba(215, 215, 215, 1);
  1123. border-radius:2px;
  1124. -moz-box-shadow:none;
  1125. -webkit-box-shadow:none;
  1126. box-shadow:none;
  1127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1128. font-weight:400;
  1129. font-style:normal;
  1130. font-size:12px;
  1131. text-align:left;
  1132. }
  1133. #u34501 {
  1134. border-width:0px;
  1135. position:absolute;
  1136. left:166px;
  1137. top:228px;
  1138. width:100px;
  1139. height:27px;
  1140. display:flex;
  1141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1142. font-weight:400;
  1143. font-style:normal;
  1144. font-size:12px;
  1145. text-align:left;
  1146. }
  1147. #u34501 .text {
  1148. position:absolute;
  1149. align-self:center;
  1150. padding:5px 15px 5px 30px;
  1151. box-sizing:border-box;
  1152. width:100%;
  1153. }
  1154. #u34501_text {
  1155. border-width:0px;
  1156. word-wrap:break-word;
  1157. text-transform:none;
  1158. }
  1159. #u34502_img {
  1160. border-width:0px;
  1161. position:absolute;
  1162. left:0px;
  1163. top:0px;
  1164. width:12px;
  1165. height:12px;
  1166. }
  1167. #u34502 {
  1168. border-width:0px;
  1169. position:absolute;
  1170. left:177px;
  1171. top:235px;
  1172. width:12px;
  1173. height:12px;
  1174. display:flex;
  1175. }
  1176. #u34502 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u34502_text {
  1184. border-width:0px;
  1185. word-wrap:break-word;
  1186. text-transform:none;
  1187. visibility:hidden;
  1188. }
  1189. #u34503 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:0px;
  1193. top:0px;
  1194. width:0px;
  1195. height:0px;
  1196. }
  1197. #u34504_div {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:100px;
  1203. height:27px;
  1204. background:inherit;
  1205. background-color:rgba(242, 242, 242, 0.16078431372549);
  1206. box-sizing:border-box;
  1207. border-width:1px;
  1208. border-style:solid;
  1209. border-color:rgba(215, 215, 215, 1);
  1210. border-radius:2px;
  1211. -moz-box-shadow:none;
  1212. -webkit-box-shadow:none;
  1213. box-shadow:none;
  1214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1215. font-weight:400;
  1216. font-style:normal;
  1217. font-size:12px;
  1218. text-align:left;
  1219. }
  1220. #u34504 {
  1221. border-width:0px;
  1222. position:absolute;
  1223. left:42px;
  1224. top:265px;
  1225. width:100px;
  1226. height:27px;
  1227. display:flex;
  1228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1229. font-weight:400;
  1230. font-style:normal;
  1231. font-size:12px;
  1232. text-align:left;
  1233. }
  1234. #u34504 .text {
  1235. position:absolute;
  1236. align-self:center;
  1237. padding:5px 15px 5px 30px;
  1238. box-sizing:border-box;
  1239. width:100%;
  1240. }
  1241. #u34504_text {
  1242. border-width:0px;
  1243. word-wrap:break-word;
  1244. text-transform:none;
  1245. }
  1246. #u34505_img {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:12px;
  1252. height:12px;
  1253. }
  1254. #u34505 {
  1255. border-width:0px;
  1256. position:absolute;
  1257. left:53px;
  1258. top:272px;
  1259. width:12px;
  1260. height:12px;
  1261. display:flex;
  1262. }
  1263. #u34505 .text {
  1264. position:absolute;
  1265. align-self:center;
  1266. padding:2px 2px 2px 2px;
  1267. box-sizing:border-box;
  1268. width:100%;
  1269. }
  1270. #u34505_text {
  1271. border-width:0px;
  1272. word-wrap:break-word;
  1273. text-transform:none;
  1274. visibility:hidden;
  1275. }
  1276. #u34506 {
  1277. border-width:0px;
  1278. position:absolute;
  1279. left:0px;
  1280. top:0px;
  1281. width:0px;
  1282. height:0px;
  1283. }
  1284. #u34507_div {
  1285. border-width:0px;
  1286. position:absolute;
  1287. left:0px;
  1288. top:0px;
  1289. width:100px;
  1290. height:27px;
  1291. background:inherit;
  1292. background-color:rgba(242, 242, 242, 0.16078431372549);
  1293. box-sizing:border-box;
  1294. border-width:1px;
  1295. border-style:solid;
  1296. border-color:rgba(215, 215, 215, 1);
  1297. border-radius:2px;
  1298. -moz-box-shadow:none;
  1299. -webkit-box-shadow:none;
  1300. box-shadow:none;
  1301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1302. font-weight:400;
  1303. font-style:normal;
  1304. font-size:12px;
  1305. text-align:left;
  1306. }
  1307. #u34507 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:166px;
  1311. top:265px;
  1312. width:100px;
  1313. height:27px;
  1314. display:flex;
  1315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1316. font-weight:400;
  1317. font-style:normal;
  1318. font-size:12px;
  1319. text-align:left;
  1320. }
  1321. #u34507 .text {
  1322. position:absolute;
  1323. align-self:center;
  1324. padding:5px 15px 5px 30px;
  1325. box-sizing:border-box;
  1326. width:100%;
  1327. }
  1328. #u34507_text {
  1329. border-width:0px;
  1330. word-wrap:break-word;
  1331. text-transform:none;
  1332. }
  1333. #u34508_img {
  1334. border-width:0px;
  1335. position:absolute;
  1336. left:0px;
  1337. top:0px;
  1338. width:12px;
  1339. height:12px;
  1340. }
  1341. #u34508 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:177px;
  1345. top:272px;
  1346. width:12px;
  1347. height:12px;
  1348. display:flex;
  1349. }
  1350. #u34508 .text {
  1351. position:absolute;
  1352. align-self:center;
  1353. padding:2px 2px 2px 2px;
  1354. box-sizing:border-box;
  1355. width:100%;
  1356. }
  1357. #u34508_text {
  1358. border-width:0px;
  1359. word-wrap:break-word;
  1360. text-transform:none;
  1361. visibility:hidden;
  1362. }
  1363. #u34509 {
  1364. border-width:0px;
  1365. position:absolute;
  1366. left:0px;
  1367. top:0px;
  1368. width:0px;
  1369. height:0px;
  1370. }
  1371. #u34510_div {
  1372. border-width:0px;
  1373. position:absolute;
  1374. left:0px;
  1375. top:0px;
  1376. width:100px;
  1377. height:27px;
  1378. background:inherit;
  1379. background-color:rgba(242, 242, 242, 0.16078431372549);
  1380. box-sizing:border-box;
  1381. border-width:1px;
  1382. border-style:solid;
  1383. border-color:rgba(215, 215, 215, 1);
  1384. border-radius:2px;
  1385. -moz-box-shadow:none;
  1386. -webkit-box-shadow:none;
  1387. box-shadow:none;
  1388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1389. font-weight:400;
  1390. font-style:normal;
  1391. font-size:12px;
  1392. text-align:left;
  1393. }
  1394. #u34510 {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:42px;
  1398. top:302px;
  1399. width:100px;
  1400. height:27px;
  1401. display:flex;
  1402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1403. font-weight:400;
  1404. font-style:normal;
  1405. font-size:12px;
  1406. text-align:left;
  1407. }
  1408. #u34510 .text {
  1409. position:absolute;
  1410. align-self:center;
  1411. padding:5px 15px 5px 30px;
  1412. box-sizing:border-box;
  1413. width:100%;
  1414. }
  1415. #u34510_text {
  1416. border-width:0px;
  1417. word-wrap:break-word;
  1418. text-transform:none;
  1419. }
  1420. #u34511_img {
  1421. border-width:0px;
  1422. position:absolute;
  1423. left:0px;
  1424. top:0px;
  1425. width:12px;
  1426. height:12px;
  1427. }
  1428. #u34511 {
  1429. border-width:0px;
  1430. position:absolute;
  1431. left:53px;
  1432. top:309px;
  1433. width:12px;
  1434. height:12px;
  1435. display:flex;
  1436. }
  1437. #u34511 .text {
  1438. position:absolute;
  1439. align-self:center;
  1440. padding:2px 2px 2px 2px;
  1441. box-sizing:border-box;
  1442. width:100%;
  1443. }
  1444. #u34511_text {
  1445. border-width:0px;
  1446. word-wrap:break-word;
  1447. text-transform:none;
  1448. visibility:hidden;
  1449. }
  1450. #u34512 {
  1451. border-width:0px;
  1452. position:absolute;
  1453. left:0px;
  1454. top:0px;
  1455. width:0px;
  1456. height:0px;
  1457. }
  1458. #u34513_div {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:0px;
  1462. top:0px;
  1463. width:100px;
  1464. height:27px;
  1465. background:inherit;
  1466. background-color:rgba(242, 242, 242, 0.16078431372549);
  1467. box-sizing:border-box;
  1468. border-width:1px;
  1469. border-style:solid;
  1470. border-color:rgba(215, 215, 215, 1);
  1471. border-radius:2px;
  1472. -moz-box-shadow:none;
  1473. -webkit-box-shadow:none;
  1474. box-shadow:none;
  1475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1476. font-weight:400;
  1477. font-style:normal;
  1478. font-size:12px;
  1479. text-align:left;
  1480. }
  1481. #u34513 {
  1482. border-width:0px;
  1483. position:absolute;
  1484. left:166px;
  1485. top:302px;
  1486. width:100px;
  1487. height:27px;
  1488. display:flex;
  1489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1490. font-weight:400;
  1491. font-style:normal;
  1492. font-size:12px;
  1493. text-align:left;
  1494. }
  1495. #u34513 .text {
  1496. position:absolute;
  1497. align-self:center;
  1498. padding:5px 15px 5px 30px;
  1499. box-sizing:border-box;
  1500. width:100%;
  1501. }
  1502. #u34513_text {
  1503. border-width:0px;
  1504. word-wrap:break-word;
  1505. text-transform:none;
  1506. }
  1507. #u34514_img {
  1508. border-width:0px;
  1509. position:absolute;
  1510. left:0px;
  1511. top:0px;
  1512. width:12px;
  1513. height:12px;
  1514. }
  1515. #u34514 {
  1516. border-width:0px;
  1517. position:absolute;
  1518. left:177px;
  1519. top:309px;
  1520. width:12px;
  1521. height:12px;
  1522. display:flex;
  1523. }
  1524. #u34514 .text {
  1525. position:absolute;
  1526. align-self:center;
  1527. padding:2px 2px 2px 2px;
  1528. box-sizing:border-box;
  1529. width:100%;
  1530. }
  1531. #u34514_text {
  1532. border-width:0px;
  1533. word-wrap:break-word;
  1534. text-transform:none;
  1535. visibility:hidden;
  1536. }
  1537. #u34515 {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:0px;
  1543. height:0px;
  1544. }
  1545. #u34516_div {
  1546. border-width:0px;
  1547. position:absolute;
  1548. left:0px;
  1549. top:0px;
  1550. width:100px;
  1551. height:27px;
  1552. background:inherit;
  1553. background-color:rgba(242, 242, 242, 0.16078431372549);
  1554. box-sizing:border-box;
  1555. border-width:1px;
  1556. border-style:solid;
  1557. border-color:rgba(215, 215, 215, 1);
  1558. border-radius:2px;
  1559. -moz-box-shadow:none;
  1560. -webkit-box-shadow:none;
  1561. box-shadow:none;
  1562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1563. font-weight:400;
  1564. font-style:normal;
  1565. font-size:12px;
  1566. text-align:left;
  1567. }
  1568. #u34516 {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:42px;
  1572. top:409px;
  1573. width:100px;
  1574. height:27px;
  1575. display:flex;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:12px;
  1580. text-align:left;
  1581. }
  1582. #u34516 .text {
  1583. position:absolute;
  1584. align-self:center;
  1585. padding:5px 15px 5px 30px;
  1586. box-sizing:border-box;
  1587. width:100%;
  1588. }
  1589. #u34516_text {
  1590. border-width:0px;
  1591. word-wrap:break-word;
  1592. text-transform:none;
  1593. }
  1594. #u34517_img {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:0px;
  1598. top:0px;
  1599. width:12px;
  1600. height:12px;
  1601. }
  1602. #u34517 {
  1603. border-width:0px;
  1604. position:absolute;
  1605. left:53px;
  1606. top:416px;
  1607. width:12px;
  1608. height:12px;
  1609. display:flex;
  1610. }
  1611. #u34517 .text {
  1612. position:absolute;
  1613. align-self:center;
  1614. padding:2px 2px 2px 2px;
  1615. box-sizing:border-box;
  1616. width:100%;
  1617. }
  1618. #u34517_text {
  1619. border-width:0px;
  1620. word-wrap:break-word;
  1621. text-transform:none;
  1622. visibility:hidden;
  1623. }
  1624. #u34518 {
  1625. border-width:0px;
  1626. position:absolute;
  1627. left:0px;
  1628. top:0px;
  1629. width:0px;
  1630. height:0px;
  1631. }
  1632. #u34519_div {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:0px;
  1636. top:0px;
  1637. width:100px;
  1638. height:27px;
  1639. background:inherit;
  1640. background-color:rgba(242, 242, 242, 0.16078431372549);
  1641. box-sizing:border-box;
  1642. border-width:1px;
  1643. border-style:solid;
  1644. border-color:rgba(215, 215, 215, 1);
  1645. border-radius:2px;
  1646. -moz-box-shadow:none;
  1647. -webkit-box-shadow:none;
  1648. box-shadow:none;
  1649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1650. font-weight:400;
  1651. font-style:normal;
  1652. font-size:12px;
  1653. text-align:left;
  1654. }
  1655. #u34519 {
  1656. border-width:0px;
  1657. position:absolute;
  1658. left:166px;
  1659. top:409px;
  1660. width:100px;
  1661. height:27px;
  1662. display:flex;
  1663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1664. font-weight:400;
  1665. font-style:normal;
  1666. font-size:12px;
  1667. text-align:left;
  1668. }
  1669. #u34519 .text {
  1670. position:absolute;
  1671. align-self:center;
  1672. padding:5px 15px 5px 30px;
  1673. box-sizing:border-box;
  1674. width:100%;
  1675. }
  1676. #u34519_text {
  1677. border-width:0px;
  1678. word-wrap:break-word;
  1679. text-transform:none;
  1680. }
  1681. #u34520_img {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:0px;
  1685. top:0px;
  1686. width:12px;
  1687. height:12px;
  1688. }
  1689. #u34520 {
  1690. border-width:0px;
  1691. position:absolute;
  1692. left:177px;
  1693. top:416px;
  1694. width:12px;
  1695. height:12px;
  1696. display:flex;
  1697. }
  1698. #u34520 .text {
  1699. position:absolute;
  1700. align-self:center;
  1701. padding:2px 2px 2px 2px;
  1702. box-sizing:border-box;
  1703. width:100%;
  1704. }
  1705. #u34520_text {
  1706. border-width:0px;
  1707. word-wrap:break-word;
  1708. text-transform:none;
  1709. visibility:hidden;
  1710. }
  1711. #u34521 {
  1712. border-width:0px;
  1713. position:absolute;
  1714. left:0px;
  1715. top:0px;
  1716. width:0px;
  1717. height:0px;
  1718. }
  1719. #u34522_div {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:100px;
  1725. height:27px;
  1726. background:inherit;
  1727. background-color:rgba(242, 242, 242, 0.16078431372549);
  1728. box-sizing:border-box;
  1729. border-width:1px;
  1730. border-style:solid;
  1731. border-color:rgba(215, 215, 215, 1);
  1732. border-radius:2px;
  1733. -moz-box-shadow:none;
  1734. -webkit-box-shadow:none;
  1735. box-shadow:none;
  1736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1737. font-weight:400;
  1738. font-style:normal;
  1739. font-size:12px;
  1740. text-align:left;
  1741. }
  1742. #u34522 {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:42px;
  1746. top:446px;
  1747. width:100px;
  1748. height:27px;
  1749. display:flex;
  1750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1751. font-weight:400;
  1752. font-style:normal;
  1753. font-size:12px;
  1754. text-align:left;
  1755. }
  1756. #u34522 .text {
  1757. position:absolute;
  1758. align-self:center;
  1759. padding:5px 15px 5px 30px;
  1760. box-sizing:border-box;
  1761. width:100%;
  1762. }
  1763. #u34522_text {
  1764. border-width:0px;
  1765. word-wrap:break-word;
  1766. text-transform:none;
  1767. }
  1768. #u34523_img {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:0px;
  1772. top:0px;
  1773. width:12px;
  1774. height:12px;
  1775. }
  1776. #u34523 {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:53px;
  1780. top:453px;
  1781. width:12px;
  1782. height:12px;
  1783. display:flex;
  1784. }
  1785. #u34523 .text {
  1786. position:absolute;
  1787. align-self:center;
  1788. padding:2px 2px 2px 2px;
  1789. box-sizing:border-box;
  1790. width:100%;
  1791. }
  1792. #u34523_text {
  1793. border-width:0px;
  1794. word-wrap:break-word;
  1795. text-transform:none;
  1796. visibility:hidden;
  1797. }
  1798. #u34524 {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:0px;
  1802. top:0px;
  1803. width:0px;
  1804. height:0px;
  1805. }
  1806. #u34525_div {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:0px;
  1810. top:0px;
  1811. width:100px;
  1812. height:27px;
  1813. background:inherit;
  1814. background-color:rgba(242, 242, 242, 0.16078431372549);
  1815. box-sizing:border-box;
  1816. border-width:1px;
  1817. border-style:solid;
  1818. border-color:rgba(215, 215, 215, 1);
  1819. border-radius:2px;
  1820. -moz-box-shadow:none;
  1821. -webkit-box-shadow:none;
  1822. box-shadow:none;
  1823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1824. font-weight:400;
  1825. font-style:normal;
  1826. font-size:12px;
  1827. text-align:left;
  1828. }
  1829. #u34525 {
  1830. border-width:0px;
  1831. position:absolute;
  1832. left:166px;
  1833. top:446px;
  1834. width:100px;
  1835. height:27px;
  1836. display:flex;
  1837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1838. font-weight:400;
  1839. font-style:normal;
  1840. font-size:12px;
  1841. text-align:left;
  1842. }
  1843. #u34525 .text {
  1844. position:absolute;
  1845. align-self:center;
  1846. padding:5px 15px 5px 30px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u34525_text {
  1851. border-width:0px;
  1852. word-wrap:break-word;
  1853. text-transform:none;
  1854. }
  1855. #u34526_img {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:0px;
  1859. top:0px;
  1860. width:12px;
  1861. height:12px;
  1862. }
  1863. #u34526 {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:177px;
  1867. top:453px;
  1868. width:12px;
  1869. height:12px;
  1870. display:flex;
  1871. }
  1872. #u34526 .text {
  1873. position:absolute;
  1874. align-self:center;
  1875. padding:2px 2px 2px 2px;
  1876. box-sizing:border-box;
  1877. width:100%;
  1878. }
  1879. #u34526_text {
  1880. border-width:0px;
  1881. word-wrap:break-word;
  1882. text-transform:none;
  1883. visibility:hidden;
  1884. }
  1885. #u34527 {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:0px;
  1889. top:0px;
  1890. width:0px;
  1891. height:0px;
  1892. }
  1893. #u34528_div {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:0px;
  1897. top:0px;
  1898. width:100px;
  1899. height:27px;
  1900. background:inherit;
  1901. background-color:rgba(242, 242, 242, 0.16078431372549);
  1902. box-sizing:border-box;
  1903. border-width:1px;
  1904. border-style:solid;
  1905. border-color:rgba(215, 215, 215, 1);
  1906. border-radius:2px;
  1907. -moz-box-shadow:none;
  1908. -webkit-box-shadow:none;
  1909. box-shadow:none;
  1910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1911. font-weight:400;
  1912. font-style:normal;
  1913. font-size:12px;
  1914. text-align:left;
  1915. }
  1916. #u34528 {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:42px;
  1920. top:483px;
  1921. width:100px;
  1922. height:27px;
  1923. display:flex;
  1924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1925. font-weight:400;
  1926. font-style:normal;
  1927. font-size:12px;
  1928. text-align:left;
  1929. }
  1930. #u34528 .text {
  1931. position:absolute;
  1932. align-self:center;
  1933. padding:5px 15px 5px 30px;
  1934. box-sizing:border-box;
  1935. width:100%;
  1936. }
  1937. #u34528_text {
  1938. border-width:0px;
  1939. word-wrap:break-word;
  1940. text-transform:none;
  1941. }
  1942. #u34529_img {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:0px;
  1946. top:0px;
  1947. width:12px;
  1948. height:12px;
  1949. }
  1950. #u34529 {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:53px;
  1954. top:490px;
  1955. width:12px;
  1956. height:12px;
  1957. display:flex;
  1958. }
  1959. #u34529 .text {
  1960. position:absolute;
  1961. align-self:center;
  1962. padding:2px 2px 2px 2px;
  1963. box-sizing:border-box;
  1964. width:100%;
  1965. }
  1966. #u34529_text {
  1967. border-width:0px;
  1968. word-wrap:break-word;
  1969. text-transform:none;
  1970. visibility:hidden;
  1971. }
  1972. #u34530 {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:0px;
  1976. top:0px;
  1977. width:0px;
  1978. height:0px;
  1979. }
  1980. #u34531_div {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:0px;
  1984. top:0px;
  1985. width:100px;
  1986. height:27px;
  1987. background:inherit;
  1988. background-color:rgba(242, 242, 242, 0.16078431372549);
  1989. box-sizing:border-box;
  1990. border-width:1px;
  1991. border-style:solid;
  1992. border-color:rgba(215, 215, 215, 1);
  1993. border-radius:2px;
  1994. -moz-box-shadow:none;
  1995. -webkit-box-shadow:none;
  1996. box-shadow:none;
  1997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1998. font-weight:400;
  1999. font-style:normal;
  2000. font-size:12px;
  2001. text-align:left;
  2002. }
  2003. #u34531 {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:166px;
  2007. top:483px;
  2008. width:100px;
  2009. height:27px;
  2010. display:flex;
  2011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2012. font-weight:400;
  2013. font-style:normal;
  2014. font-size:12px;
  2015. text-align:left;
  2016. }
  2017. #u34531 .text {
  2018. position:absolute;
  2019. align-self:center;
  2020. padding:5px 15px 5px 30px;
  2021. box-sizing:border-box;
  2022. width:100%;
  2023. }
  2024. #u34531_text {
  2025. border-width:0px;
  2026. word-wrap:break-word;
  2027. text-transform:none;
  2028. }
  2029. #u34532_img {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:0px;
  2033. top:0px;
  2034. width:12px;
  2035. height:12px;
  2036. }
  2037. #u34532 {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:177px;
  2041. top:490px;
  2042. width:12px;
  2043. height:12px;
  2044. display:flex;
  2045. }
  2046. #u34532 .text {
  2047. position:absolute;
  2048. align-self:center;
  2049. padding:2px 2px 2px 2px;
  2050. box-sizing:border-box;
  2051. width:100%;
  2052. }
  2053. #u34532_text {
  2054. border-width:0px;
  2055. word-wrap:break-word;
  2056. text-transform:none;
  2057. visibility:hidden;
  2058. }
  2059. #u34533_div {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:0px;
  2063. top:0px;
  2064. width:278px;
  2065. height:40px;
  2066. background:inherit;
  2067. background-color:rgba(242, 242, 242, 1);
  2068. box-sizing:border-box;
  2069. border-width:1px;
  2070. border-style:solid;
  2071. border-color:rgba(215, 215, 215, 1);
  2072. border-radius:0px;
  2073. -moz-box-shadow:none;
  2074. -webkit-box-shadow:none;
  2075. box-shadow:none;
  2076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2077. font-weight:400;
  2078. font-style:normal;
  2079. font-size:14px;
  2080. }
  2081. #u34533 {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:20px;
  2085. top:349px;
  2086. width:278px;
  2087. height:40px;
  2088. display:flex;
  2089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2090. font-weight:400;
  2091. font-style:normal;
  2092. font-size:14px;
  2093. }
  2094. #u34533 .text {
  2095. position:absolute;
  2096. align-self:center;
  2097. padding:5px 0px 5px 20px;
  2098. box-sizing:border-box;
  2099. width:100%;
  2100. }
  2101. #u34533_text {
  2102. border-width:0px;
  2103. word-wrap:break-word;
  2104. text-transform:none;
  2105. }
  2106. #u34534_div {
  2107. border-width:0px;
  2108. position:absolute;
  2109. left:0px;
  2110. top:0px;
  2111. width:278px;
  2112. height:40px;
  2113. background:inherit;
  2114. background-color:rgba(242, 242, 242, 1);
  2115. box-sizing:border-box;
  2116. border-width:1px;
  2117. border-style:solid;
  2118. border-color:rgba(215, 215, 215, 1);
  2119. border-radius:0px;
  2120. -moz-box-shadow:none;
  2121. -webkit-box-shadow:none;
  2122. box-shadow:none;
  2123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2124. font-weight:400;
  2125. font-style:normal;
  2126. font-size:14px;
  2127. }
  2128. #u34534 {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:20px;
  2132. top:530px;
  2133. width:278px;
  2134. height:40px;
  2135. display:flex;
  2136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2137. font-weight:400;
  2138. font-style:normal;
  2139. font-size:14px;
  2140. }
  2141. #u34534 .text {
  2142. position:absolute;
  2143. align-self:center;
  2144. padding:5px 0px 5px 20px;
  2145. box-sizing:border-box;
  2146. width:100%;
  2147. }
  2148. #u34534_text {
  2149. border-width:0px;
  2150. word-wrap:break-word;
  2151. text-transform:none;
  2152. }
  2153. #u34535 {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:0px;
  2157. top:0px;
  2158. width:0px;
  2159. height:0px;
  2160. }
  2161. #u34536_div {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:0px;
  2165. top:0px;
  2166. width:100px;
  2167. height:27px;
  2168. background:inherit;
  2169. background-color:rgba(242, 242, 242, 0.16078431372549);
  2170. box-sizing:border-box;
  2171. border-width:1px;
  2172. border-style:solid;
  2173. border-color:rgba(215, 215, 215, 1);
  2174. border-radius:2px;
  2175. -moz-box-shadow:none;
  2176. -webkit-box-shadow:none;
  2177. box-shadow:none;
  2178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2179. font-weight:400;
  2180. font-style:normal;
  2181. font-size:12px;
  2182. text-align:left;
  2183. }
  2184. #u34536 {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:42px;
  2188. top:590px;
  2189. width:100px;
  2190. height:27px;
  2191. display:flex;
  2192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2193. font-weight:400;
  2194. font-style:normal;
  2195. font-size:12px;
  2196. text-align:left;
  2197. }
  2198. #u34536 .text {
  2199. position:absolute;
  2200. align-self:center;
  2201. padding:5px 15px 5px 30px;
  2202. box-sizing:border-box;
  2203. width:100%;
  2204. }
  2205. #u34536_text {
  2206. border-width:0px;
  2207. word-wrap:break-word;
  2208. text-transform:none;
  2209. }
  2210. #u34537_img {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:0px;
  2214. top:0px;
  2215. width:12px;
  2216. height:12px;
  2217. }
  2218. #u34537 {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:53px;
  2222. top:597px;
  2223. width:12px;
  2224. height:12px;
  2225. display:flex;
  2226. }
  2227. #u34537 .text {
  2228. position:absolute;
  2229. align-self:center;
  2230. padding:2px 2px 2px 2px;
  2231. box-sizing:border-box;
  2232. width:100%;
  2233. }
  2234. #u34537_text {
  2235. border-width:0px;
  2236. word-wrap:break-word;
  2237. text-transform:none;
  2238. visibility:hidden;
  2239. }
  2240. #u34538_div {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:0px;
  2244. top:0px;
  2245. width:1020px;
  2246. height:987px;
  2247. background:inherit;
  2248. background-color:rgba(255, 255, 255, 1);
  2249. border:none;
  2250. border-radius:4px;
  2251. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  2252. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  2253. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  2254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2255. font-weight:400;
  2256. font-style:normal;
  2257. font-size:14px;
  2258. color:#AAAAAA;
  2259. line-height:30px;
  2260. }
  2261. #u34538 {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:309px;
  2265. top:253px;
  2266. width:1020px;
  2267. height:987px;
  2268. display:flex;
  2269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2270. font-weight:400;
  2271. font-style:normal;
  2272. font-size:14px;
  2273. color:#AAAAAA;
  2274. line-height:30px;
  2275. }
  2276. #u34538 .text {
  2277. position:absolute;
  2278. align-self:center;
  2279. padding:5px 10px 5px 10px;
  2280. box-sizing:border-box;
  2281. width:100%;
  2282. }
  2283. #u34538_text {
  2284. border-width:0px;
  2285. word-wrap:break-word;
  2286. text-transform:none;
  2287. visibility:hidden;
  2288. }
  2289. #u34539 {
  2290. border-width:0px;
  2291. position:absolute;
  2292. left:0px;
  2293. top:0px;
  2294. width:0px;
  2295. height:0px;
  2296. }
  2297. #u34540_div {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:0px;
  2301. top:0px;
  2302. width:954px;
  2303. height:110px;
  2304. background:inherit;
  2305. background-color:rgba(129, 211, 248, 0.0980392156862745);
  2306. border:none;
  2307. border-radius:11px;
  2308. -moz-box-shadow:none;
  2309. -webkit-box-shadow:none;
  2310. box-shadow:none;
  2311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2312. font-weight:400;
  2313. font-style:normal;
  2314. font-size:14px;
  2315. color:#AAAAAA;
  2316. text-align:center;
  2317. line-height:30px;
  2318. }
  2319. #u34540 {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:327px;
  2323. top:299px;
  2324. width:954px;
  2325. height:110px;
  2326. display:flex;
  2327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2328. font-weight:400;
  2329. font-style:normal;
  2330. font-size:14px;
  2331. color:#AAAAAA;
  2332. text-align:center;
  2333. line-height:30px;
  2334. }
  2335. #u34540 .text {
  2336. position:absolute;
  2337. align-self:center;
  2338. padding:5px 10px 5px 10px;
  2339. box-sizing:border-box;
  2340. width:100%;
  2341. }
  2342. #u34540_text {
  2343. border-width:0px;
  2344. word-wrap:break-word;
  2345. text-transform:none;
  2346. visibility:hidden;
  2347. }
  2348. #u34541_div {
  2349. border-width:0px;
  2350. position:absolute;
  2351. left:0px;
  2352. top:0px;
  2353. width:41px;
  2354. height:31px;
  2355. background:inherit;
  2356. background-color:rgba(255, 255, 255, 0);
  2357. border:none;
  2358. border-top:0px;
  2359. border-right:0px;
  2360. border-bottom:0px;
  2361. border-radius:0px;
  2362. border-top-left-radius:0px;
  2363. border-bottom-left-radius:0px;
  2364. -moz-box-shadow:none;
  2365. -webkit-box-shadow:none;
  2366. box-shadow:none;
  2367. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2368. font-weight:500;
  2369. font-style:normal;
  2370. font-size:15px;
  2371. }
  2372. #u34541 {
  2373. border-width:0px;
  2374. position:absolute;
  2375. left:345px;
  2376. top:318px;
  2377. width:41px;
  2378. height:31px;
  2379. display:flex;
  2380. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2381. font-weight:500;
  2382. font-style:normal;
  2383. font-size:15px;
  2384. }
  2385. #u34541 .text {
  2386. position:absolute;
  2387. align-self:center;
  2388. padding:5px 10px 5px 0px;
  2389. box-sizing:border-box;
  2390. width:100%;
  2391. }
  2392. #u34541_text {
  2393. border-width:0px;
  2394. white-space:nowrap;
  2395. text-transform:none;
  2396. }
  2397. #u34542 {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:0px;
  2401. top:0px;
  2402. width:0px;
  2403. height:0px;
  2404. }
  2405. #u34543_img {
  2406. border-width:0px;
  2407. position:absolute;
  2408. left:0px;
  2409. top:0px;
  2410. width:32px;
  2411. height:19px;
  2412. }
  2413. #u34543 {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:1207px;
  2417. top:299px;
  2418. width:32px;
  2419. height:19px;
  2420. display:flex;
  2421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2422. font-weight:400;
  2423. font-style:normal;
  2424. font-size:10px;
  2425. }
  2426. #u34543 .text {
  2427. position:absolute;
  2428. align-self:center;
  2429. padding:2px 2px 2px 2px;
  2430. box-sizing:border-box;
  2431. width:100%;
  2432. }
  2433. #u34543_text {
  2434. border-width:0px;
  2435. word-wrap:break-word;
  2436. text-transform:none;
  2437. }
  2438. #u34544_img {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:0px;
  2442. top:0px;
  2443. width:32px;
  2444. height:19px;
  2445. }
  2446. #u34544 {
  2447. border-width:0px;
  2448. position:absolute;
  2449. left:1240px;
  2450. top:299px;
  2451. width:32px;
  2452. height:19px;
  2453. display:flex;
  2454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2455. font-weight:400;
  2456. font-style:normal;
  2457. font-size:10px;
  2458. }
  2459. #u34544 .text {
  2460. position:absolute;
  2461. align-self:center;
  2462. padding:2px 2px 2px 2px;
  2463. box-sizing:border-box;
  2464. width:100%;
  2465. }
  2466. #u34544_text {
  2467. border-width:0px;
  2468. word-wrap:break-word;
  2469. text-transform:none;
  2470. }
  2471. #u34545_input {
  2472. position:absolute;
  2473. left:0px;
  2474. top:0px;
  2475. width:909px;
  2476. height:42px;
  2477. padding:2px 2px 2px 10px;
  2478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2479. font-weight:400;
  2480. font-style:normal;
  2481. font-size:14px;
  2482. letter-spacing:normal;
  2483. color:#AAAAAA;
  2484. vertical-align:none;
  2485. text-align:left;
  2486. text-transform:none;
  2487. background-color:transparent;
  2488. border-color:transparent;
  2489. }
  2490. #u34545_input.disabled {
  2491. position:absolute;
  2492. left:0px;
  2493. top:0px;
  2494. width:909px;
  2495. height:42px;
  2496. padding:2px 2px 2px 10px;
  2497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2498. font-weight:400;
  2499. font-style:normal;
  2500. font-size:14px;
  2501. letter-spacing:normal;
  2502. color:#AAAAAA;
  2503. vertical-align:none;
  2504. text-align:left;
  2505. text-transform:none;
  2506. background-color:transparent;
  2507. border-color:transparent;
  2508. }
  2509. #u34545_div {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:0px;
  2513. top:0px;
  2514. width:909px;
  2515. height:42px;
  2516. background:inherit;
  2517. background-color:rgba(255, 255, 255, 1);
  2518. box-sizing:border-box;
  2519. border-width:1px;
  2520. border-style:solid;
  2521. border-color:rgba(215, 215, 215, 1);
  2522. border-radius:0px;
  2523. -moz-box-shadow:none;
  2524. -webkit-box-shadow:none;
  2525. box-shadow:none;
  2526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2527. font-weight:400;
  2528. font-style:normal;
  2529. font-size:14px;
  2530. color:#AAAAAA;
  2531. }
  2532. #u34545 {
  2533. border-width:0px;
  2534. position:absolute;
  2535. left:345px;
  2536. top:353px;
  2537. width:909px;
  2538. height:42px;
  2539. display:flex;
  2540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2541. font-weight:400;
  2542. font-style:normal;
  2543. font-size:14px;
  2544. color:#AAAAAA;
  2545. }
  2546. #u34545 .text {
  2547. position:absolute;
  2548. align-self:center;
  2549. padding:2px 2px 2px 10px;
  2550. box-sizing:border-box;
  2551. width:100%;
  2552. }
  2553. #u34545_div.disabled {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:0px;
  2557. top:0px;
  2558. width:909px;
  2559. height:42px;
  2560. background:inherit;
  2561. background-color:rgba(240, 240, 240, 1);
  2562. box-sizing:border-box;
  2563. border-width:1px;
  2564. border-style:solid;
  2565. border-color:rgba(215, 215, 215, 1);
  2566. border-radius:0px;
  2567. -moz-box-shadow:none;
  2568. -webkit-box-shadow:none;
  2569. box-shadow:none;
  2570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2571. font-weight:400;
  2572. font-style:normal;
  2573. font-size:14px;
  2574. color:#AAAAAA;
  2575. }
  2576. #u34545.disabled {
  2577. }
  2578. #u34546_img {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:0px;
  2582. top:0px;
  2583. width:14px;
  2584. height:16px;
  2585. }
  2586. #u34546 {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:1226px;
  2590. top:366px;
  2591. width:14px;
  2592. height:16px;
  2593. display:flex;
  2594. font-family:'Microsoft YaHei', sans-serif;
  2595. font-weight:400;
  2596. font-style:normal;
  2597. color:#1E1E1E;
  2598. }
  2599. #u34546 .text {
  2600. position:absolute;
  2601. align-self:center;
  2602. padding:2px 2px 2px 2px;
  2603. box-sizing:border-box;
  2604. width:100%;
  2605. }
  2606. #u34546_text {
  2607. border-width:0px;
  2608. word-wrap:break-word;
  2609. text-transform:none;
  2610. visibility:hidden;
  2611. }
  2612. #u34547 {
  2613. border-width:0px;
  2614. position:absolute;
  2615. left:0px;
  2616. top:0px;
  2617. width:0px;
  2618. height:0px;
  2619. }
  2620. #u34548_div {
  2621. border-width:0px;
  2622. position:absolute;
  2623. left:0px;
  2624. top:0px;
  2625. width:280px;
  2626. height:40px;
  2627. background:inherit;
  2628. background-color:rgba(255, 255, 255, 1);
  2629. box-sizing:border-box;
  2630. border-width:1px;
  2631. border-style:solid;
  2632. border-color:rgba(215, 215, 215, 1);
  2633. border-radius:0px;
  2634. -moz-box-shadow:none;
  2635. -webkit-box-shadow:none;
  2636. box-shadow:none;
  2637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2638. font-weight:400;
  2639. font-style:normal;
  2640. font-size:14px;
  2641. color:#FFFFFF;
  2642. text-align:center;
  2643. line-height:30px;
  2644. }
  2645. #u34548 {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:1340px;
  2649. top:110px;
  2650. width:280px;
  2651. height:40px;
  2652. display:flex;
  2653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2654. font-weight:400;
  2655. font-style:normal;
  2656. font-size:14px;
  2657. color:#FFFFFF;
  2658. text-align:center;
  2659. line-height:30px;
  2660. }
  2661. #u34548 .text {
  2662. position:absolute;
  2663. align-self:center;
  2664. padding:5px 10px 5px 10px;
  2665. box-sizing:border-box;
  2666. width:100%;
  2667. }
  2668. #u34548_text {
  2669. border-width:0px;
  2670. word-wrap:break-word;
  2671. text-transform:none;
  2672. visibility:hidden;
  2673. }
  2674. #u34549_div {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:0px;
  2678. top:0px;
  2679. width:280px;
  2680. height:1090px;
  2681. background:inherit;
  2682. background-color:rgba(255, 255, 255, 1);
  2683. box-sizing:border-box;
  2684. border-width:1px;
  2685. border-style:solid;
  2686. border-color:rgba(215, 215, 215, 1);
  2687. border-radius:0px;
  2688. -moz-box-shadow:none;
  2689. -webkit-box-shadow:none;
  2690. box-shadow:none;
  2691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2692. font-weight:400;
  2693. font-style:normal;
  2694. font-size:14px;
  2695. color:#FFFFFF;
  2696. text-align:center;
  2697. line-height:30px;
  2698. }
  2699. #u34549 {
  2700. border-width:0px;
  2701. position:absolute;
  2702. left:1340px;
  2703. top:150px;
  2704. width:280px;
  2705. height:1090px;
  2706. display:flex;
  2707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2708. font-weight:400;
  2709. font-style:normal;
  2710. font-size:14px;
  2711. color:#FFFFFF;
  2712. text-align:center;
  2713. line-height:30px;
  2714. }
  2715. #u34549 .text {
  2716. position:absolute;
  2717. align-self:center;
  2718. padding:5px 10px 5px 10px;
  2719. box-sizing:border-box;
  2720. width:100%;
  2721. }
  2722. #u34549_text {
  2723. border-width:0px;
  2724. word-wrap:break-word;
  2725. text-transform:none;
  2726. }
  2727. #u34550_div {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:0px;
  2731. top:0px;
  2732. width:79px;
  2733. height:30px;
  2734. background:inherit;
  2735. background-color:rgba(255, 255, 255, 0);
  2736. border:none;
  2737. border-top:0px;
  2738. border-right:0px;
  2739. border-bottom:0px;
  2740. border-radius:0px;
  2741. border-top-left-radius:0px;
  2742. border-bottom-left-radius:0px;
  2743. -moz-box-shadow:none;
  2744. -webkit-box-shadow:none;
  2745. box-shadow:none;
  2746. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2747. font-weight:500;
  2748. font-style:normal;
  2749. font-size:14px;
  2750. }
  2751. #u34550 {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:1360px;
  2755. top:159px;
  2756. width:79px;
  2757. height:30px;
  2758. display:flex;
  2759. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2760. font-weight:500;
  2761. font-style:normal;
  2762. font-size:14px;
  2763. }
  2764. #u34550 .text {
  2765. position:absolute;
  2766. align-self:center;
  2767. padding:5px 10px 5px 0px;
  2768. box-sizing:border-box;
  2769. width:100%;
  2770. }
  2771. #u34550_text {
  2772. border-width:0px;
  2773. word-wrap:break-word;
  2774. text-transform:none;
  2775. }
  2776. #u34551 {
  2777. border-width:0px;
  2778. position:absolute;
  2779. left:0px;
  2780. top:0px;
  2781. width:0px;
  2782. height:0px;
  2783. }
  2784. #u34552_div {
  2785. border-width:0px;
  2786. position:absolute;
  2787. left:0px;
  2788. top:0px;
  2789. width:236px;
  2790. height:30px;
  2791. background:inherit;
  2792. background-color:rgba(255, 255, 255, 1);
  2793. box-sizing:border-box;
  2794. border-width:1px;
  2795. border-style:solid;
  2796. border-color:rgba(215, 215, 215, 1);
  2797. border-radius:2px;
  2798. -moz-box-shadow:none;
  2799. -webkit-box-shadow:none;
  2800. box-shadow:none;
  2801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2802. font-weight:400;
  2803. font-style:normal;
  2804. font-size:12px;
  2805. text-align:left;
  2806. }
  2807. #u34552 {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:1360px;
  2811. top:295px;
  2812. width:236px;
  2813. height:30px;
  2814. display:flex;
  2815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2816. font-weight:400;
  2817. font-style:normal;
  2818. font-size:12px;
  2819. text-align:left;
  2820. }
  2821. #u34552 .text {
  2822. position:absolute;
  2823. align-self:center;
  2824. padding:5px 15px 5px 30px;
  2825. box-sizing:border-box;
  2826. width:100%;
  2827. }
  2828. #u34552_text {
  2829. border-width:0px;
  2830. word-wrap:break-word;
  2831. text-transform:none;
  2832. visibility:hidden;
  2833. }
  2834. #u34553_input {
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:212px;
  2839. height:28px;
  2840. padding:2px 2px 2px 2px;
  2841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2842. font-weight:400;
  2843. font-style:normal;
  2844. font-size:14px;
  2845. letter-spacing:normal;
  2846. color:#000000;
  2847. vertical-align:none;
  2848. text-align:left;
  2849. text-transform:none;
  2850. background-color:transparent;
  2851. border-color:transparent;
  2852. }
  2853. #u34553_input.disabled {
  2854. position:absolute;
  2855. left:0px;
  2856. top:0px;
  2857. width:212px;
  2858. height:28px;
  2859. padding:2px 2px 2px 2px;
  2860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2861. font-weight:400;
  2862. font-style:normal;
  2863. font-size:14px;
  2864. letter-spacing:normal;
  2865. color:#000000;
  2866. vertical-align:none;
  2867. text-align:left;
  2868. text-transform:none;
  2869. background-color:transparent;
  2870. border-color:transparent;
  2871. }
  2872. #u34553_div {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:0px;
  2876. top:0px;
  2877. width:212px;
  2878. height:28px;
  2879. background:inherit;
  2880. background-color:rgba(255, 255, 255, 0);
  2881. border:none;
  2882. border-radius:0px;
  2883. -moz-box-shadow:none;
  2884. -webkit-box-shadow:none;
  2885. box-shadow:none;
  2886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2887. font-weight:400;
  2888. font-style:normal;
  2889. font-size:14px;
  2890. }
  2891. #u34553 {
  2892. border-width:0px;
  2893. position:absolute;
  2894. left:1371px;
  2895. top:296px;
  2896. width:212px;
  2897. height:28px;
  2898. display:flex;
  2899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2900. font-weight:400;
  2901. font-style:normal;
  2902. font-size:14px;
  2903. }
  2904. #u34553 .text {
  2905. position:absolute;
  2906. align-self:center;
  2907. padding:2px 2px 2px 2px;
  2908. box-sizing:border-box;
  2909. width:100%;
  2910. }
  2911. #u34553_div.disabled {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:0px;
  2915. top:0px;
  2916. width:212px;
  2917. height:28px;
  2918. background:inherit;
  2919. background-color:rgba(240, 240, 240, 1);
  2920. border:none;
  2921. border-radius:0px;
  2922. -moz-box-shadow:none;
  2923. -webkit-box-shadow:none;
  2924. box-shadow:none;
  2925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2926. font-weight:400;
  2927. font-style:normal;
  2928. font-size:14px;
  2929. }
  2930. #u34553.disabled {
  2931. }
  2932. #u34554 {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:0px;
  2936. top:0px;
  2937. width:0px;
  2938. height:0px;
  2939. }
  2940. #u34555_div {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:0px;
  2944. top:0px;
  2945. width:41px;
  2946. height:40px;
  2947. background:inherit;
  2948. background-color:rgba(255, 255, 255, 0);
  2949. border:none;
  2950. border-top:0px;
  2951. border-right:0px;
  2952. border-bottom:0px;
  2953. border-radius:0px;
  2954. border-top-left-radius:0px;
  2955. border-bottom-left-radius:0px;
  2956. -moz-box-shadow:none;
  2957. -webkit-box-shadow:none;
  2958. box-shadow:none;
  2959. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2960. font-weight:500;
  2961. font-style:normal;
  2962. font-size:12px;
  2963. }
  2964. #u34555 {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:1360px;
  2968. top:325px;
  2969. width:41px;
  2970. height:40px;
  2971. display:flex;
  2972. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2973. font-weight:500;
  2974. font-style:normal;
  2975. font-size:12px;
  2976. }
  2977. #u34555 .text {
  2978. position:absolute;
  2979. align-self:center;
  2980. padding:5px 10px 5px 0px;
  2981. box-sizing:border-box;
  2982. width:100%;
  2983. }
  2984. #u34555_text {
  2985. border-width:0px;
  2986. word-wrap:break-word;
  2987. text-transform:none;
  2988. }
  2989. #u34556_img {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:0px;
  2993. top:0px;
  2994. width:11px;
  2995. height:11px;
  2996. }
  2997. #u34556 {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:1390px;
  3001. top:340px;
  3002. width:11px;
  3003. height:11px;
  3004. display:flex;
  3005. }
  3006. #u34556 .text {
  3007. position:absolute;
  3008. align-self:center;
  3009. padding:2px 2px 2px 2px;
  3010. box-sizing:border-box;
  3011. width:100%;
  3012. }
  3013. #u34556_text {
  3014. border-width:0px;
  3015. word-wrap:break-word;
  3016. text-transform:none;
  3017. visibility:hidden;
  3018. }
  3019. #u34557 {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:0px;
  3023. top:0px;
  3024. width:0px;
  3025. height:0px;
  3026. }
  3027. #u34558_div {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:0px;
  3031. top:0px;
  3032. width:236px;
  3033. height:30px;
  3034. background:inherit;
  3035. background-color:rgba(255, 255, 255, 1);
  3036. box-sizing:border-box;
  3037. border-width:1px;
  3038. border-style:solid;
  3039. border-color:rgba(215, 215, 215, 1);
  3040. border-radius:2px;
  3041. -moz-box-shadow:none;
  3042. -webkit-box-shadow:none;
  3043. box-shadow:none;
  3044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3045. font-weight:400;
  3046. font-style:normal;
  3047. font-size:12px;
  3048. text-align:left;
  3049. }
  3050. #u34558 {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:1360px;
  3054. top:365px;
  3055. width:236px;
  3056. height:30px;
  3057. display:flex;
  3058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3059. font-weight:400;
  3060. font-style:normal;
  3061. font-size:12px;
  3062. text-align:left;
  3063. }
  3064. #u34558 .text {
  3065. position:absolute;
  3066. align-self:center;
  3067. padding:5px 15px 5px 30px;
  3068. box-sizing:border-box;
  3069. width:100%;
  3070. }
  3071. #u34558_text {
  3072. border-width:0px;
  3073. word-wrap:break-word;
  3074. text-transform:none;
  3075. visibility:hidden;
  3076. }
  3077. #u34559_input {
  3078. position:absolute;
  3079. left:0px;
  3080. top:0px;
  3081. width:212px;
  3082. height:28px;
  3083. padding:2px 2px 2px 2px;
  3084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3085. font-weight:400;
  3086. font-style:normal;
  3087. font-size:14px;
  3088. letter-spacing:normal;
  3089. color:#000000;
  3090. vertical-align:none;
  3091. text-align:left;
  3092. text-transform:none;
  3093. background-color:transparent;
  3094. border-color:transparent;
  3095. }
  3096. #u34559_input.disabled {
  3097. position:absolute;
  3098. left:0px;
  3099. top:0px;
  3100. width:212px;
  3101. height:28px;
  3102. padding:2px 2px 2px 2px;
  3103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3104. font-weight:400;
  3105. font-style:normal;
  3106. font-size:14px;
  3107. letter-spacing:normal;
  3108. color:#000000;
  3109. vertical-align:none;
  3110. text-align:left;
  3111. text-transform:none;
  3112. background-color:transparent;
  3113. border-color:transparent;
  3114. }
  3115. #u34559_div {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:0px;
  3119. top:0px;
  3120. width:212px;
  3121. height:28px;
  3122. background:inherit;
  3123. background-color:rgba(255, 255, 255, 0);
  3124. border:none;
  3125. border-radius:0px;
  3126. -moz-box-shadow:none;
  3127. -webkit-box-shadow:none;
  3128. box-shadow:none;
  3129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3130. font-weight:400;
  3131. font-style:normal;
  3132. font-size:14px;
  3133. }
  3134. #u34559 {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:1371px;
  3138. top:366px;
  3139. width:212px;
  3140. height:28px;
  3141. display:flex;
  3142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3143. font-weight:400;
  3144. font-style:normal;
  3145. font-size:14px;
  3146. }
  3147. #u34559 .text {
  3148. position:absolute;
  3149. align-self:center;
  3150. padding:2px 2px 2px 2px;
  3151. box-sizing:border-box;
  3152. width:100%;
  3153. }
  3154. #u34559_div.disabled {
  3155. border-width:0px;
  3156. position:absolute;
  3157. left:0px;
  3158. top:0px;
  3159. width:212px;
  3160. height:28px;
  3161. background:inherit;
  3162. background-color:rgba(240, 240, 240, 1);
  3163. border:none;
  3164. border-radius:0px;
  3165. -moz-box-shadow:none;
  3166. -webkit-box-shadow:none;
  3167. box-shadow:none;
  3168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3169. font-weight:400;
  3170. font-style:normal;
  3171. font-size:14px;
  3172. }
  3173. #u34559.disabled {
  3174. }
  3175. #u34560_div {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:0px;
  3179. top:0px;
  3180. width:59px;
  3181. height:40px;
  3182. background:inherit;
  3183. background-color:rgba(255, 255, 255, 0);
  3184. border:none;
  3185. border-top:0px;
  3186. border-right:0px;
  3187. border-bottom:0px;
  3188. border-radius:0px;
  3189. border-top-left-radius:0px;
  3190. border-bottom-left-radius:0px;
  3191. -moz-box-shadow:none;
  3192. -webkit-box-shadow:none;
  3193. box-shadow:none;
  3194. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3195. font-weight:500;
  3196. font-style:normal;
  3197. font-size:12px;
  3198. }
  3199. #u34560 {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:1360px;
  3203. top:196px;
  3204. width:59px;
  3205. height:40px;
  3206. display:flex;
  3207. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3208. font-weight:500;
  3209. font-style:normal;
  3210. font-size:12px;
  3211. }
  3212. #u34560 .text {
  3213. position:absolute;
  3214. align-self:center;
  3215. padding:5px 10px 5px 0px;
  3216. box-sizing:border-box;
  3217. width:100%;
  3218. }
  3219. #u34560_text {
  3220. border-width:0px;
  3221. word-wrap:break-word;
  3222. text-transform:none;
  3223. }
  3224. #u34561_div {
  3225. border-width:0px;
  3226. position:absolute;
  3227. left:0px;
  3228. top:0px;
  3229. width:59px;
  3230. height:30px;
  3231. background:inherit;
  3232. background-color:rgba(255, 255, 255, 1);
  3233. box-sizing:border-box;
  3234. border-width:1px;
  3235. border-style:solid;
  3236. border-color:rgba(215, 215, 215, 1);
  3237. border-radius:2px;
  3238. -moz-box-shadow:none;
  3239. -webkit-box-shadow:none;
  3240. box-shadow:none;
  3241. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3242. font-weight:500;
  3243. font-style:normal;
  3244. font-size:12px;
  3245. }
  3246. #u34561 {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:1360px;
  3250. top:231px;
  3251. width:59px;
  3252. height:30px;
  3253. display:flex;
  3254. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3255. font-weight:500;
  3256. font-style:normal;
  3257. font-size:12px;
  3258. }
  3259. #u34561 .text {
  3260. position:absolute;
  3261. align-self:center;
  3262. padding:2px 2px 2px 2px;
  3263. box-sizing:border-box;
  3264. width:100%;
  3265. }
  3266. #u34561_text {
  3267. border-width:0px;
  3268. word-wrap:break-word;
  3269. text-transform:none;
  3270. }
  3271. #u34562_div {
  3272. border-width:0px;
  3273. position:absolute;
  3274. left:0px;
  3275. top:0px;
  3276. width:59px;
  3277. height:30px;
  3278. background:inherit;
  3279. background-color:rgba(255, 255, 255, 1);
  3280. box-sizing:border-box;
  3281. border-width:1px;
  3282. border-style:solid;
  3283. border-color:rgba(215, 215, 215, 1);
  3284. border-radius:2px;
  3285. -moz-box-shadow:none;
  3286. -webkit-box-shadow:none;
  3287. box-shadow:none;
  3288. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3289. font-weight:500;
  3290. font-style:normal;
  3291. font-size:12px;
  3292. }
  3293. #u34562 {
  3294. border-width:0px;
  3295. position:absolute;
  3296. left:1419px;
  3297. top:231px;
  3298. width:59px;
  3299. height:30px;
  3300. display:flex;
  3301. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3302. font-weight:500;
  3303. font-style:normal;
  3304. font-size:12px;
  3305. }
  3306. #u34562 .text {
  3307. position:absolute;
  3308. align-self:center;
  3309. padding:2px 2px 2px 2px;
  3310. box-sizing:border-box;
  3311. width:100%;
  3312. }
  3313. #u34562_text {
  3314. border-width:0px;
  3315. word-wrap:break-word;
  3316. text-transform:none;
  3317. }
  3318. #u34563_div {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:0px;
  3322. top:0px;
  3323. width:59px;
  3324. height:30px;
  3325. background:inherit;
  3326. background-color:rgba(255, 255, 255, 1);
  3327. box-sizing:border-box;
  3328. border-width:1px;
  3329. border-style:solid;
  3330. border-color:rgba(215, 215, 215, 1);
  3331. border-radius:2px;
  3332. -moz-box-shadow:none;
  3333. -webkit-box-shadow:none;
  3334. box-shadow:none;
  3335. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3336. font-weight:500;
  3337. font-style:normal;
  3338. font-size:12px;
  3339. }
  3340. #u34563 {
  3341. border-width:0px;
  3342. position:absolute;
  3343. left:1478px;
  3344. top:231px;
  3345. width:59px;
  3346. height:30px;
  3347. display:flex;
  3348. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3349. font-weight:500;
  3350. font-style:normal;
  3351. font-size:12px;
  3352. }
  3353. #u34563 .text {
  3354. position:absolute;
  3355. align-self:center;
  3356. padding:2px 2px 2px 2px;
  3357. box-sizing:border-box;
  3358. width:100%;
  3359. }
  3360. #u34563_text {
  3361. border-width:0px;
  3362. word-wrap:break-word;
  3363. text-transform:none;
  3364. }
  3365. #u34564_div {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:0px;
  3369. top:0px;
  3370. width:59px;
  3371. height:30px;
  3372. background:inherit;
  3373. background-color:rgba(245, 154, 35, 1);
  3374. box-sizing:border-box;
  3375. border-width:1px;
  3376. border-style:solid;
  3377. border-color:rgba(215, 215, 215, 1);
  3378. border-radius:2px;
  3379. -moz-box-shadow:none;
  3380. -webkit-box-shadow:none;
  3381. box-shadow:none;
  3382. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3383. font-weight:500;
  3384. font-style:normal;
  3385. font-size:12px;
  3386. color:#FFFFFF;
  3387. }
  3388. #u34564 {
  3389. border-width:0px;
  3390. position:absolute;
  3391. left:1536px;
  3392. top:231px;
  3393. width:59px;
  3394. height:30px;
  3395. display:flex;
  3396. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3397. font-weight:500;
  3398. font-style:normal;
  3399. font-size:12px;
  3400. color:#FFFFFF;
  3401. }
  3402. #u34564 .text {
  3403. position:absolute;
  3404. align-self:center;
  3405. padding:2px 2px 2px 2px;
  3406. box-sizing:border-box;
  3407. width:100%;
  3408. }
  3409. #u34564_text {
  3410. border-width:0px;
  3411. word-wrap:break-word;
  3412. text-transform:none;
  3413. }
  3414. #u34565 label {
  3415. left:0px;
  3416. width:100%;
  3417. }
  3418. #u34565_img {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:0px;
  3422. top:4px;
  3423. width:12px;
  3424. height:12px;
  3425. }
  3426. #u34565 {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:1364px;
  3430. top:680px;
  3431. width:118px;
  3432. height:20px;
  3433. display:flex;
  3434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3435. font-weight:400;
  3436. font-style:normal;
  3437. font-size:14px;
  3438. }
  3439. #u34565 .text {
  3440. position:absolute;
  3441. align-self:center;
  3442. padding:0px 2px 0px 2px;
  3443. box-sizing:border-box;
  3444. }
  3445. #u34565_img.selected {
  3446. }
  3447. #u34565.selected {
  3448. }
  3449. #u34565_img.disabled {
  3450. }
  3451. #u34565.disabled {
  3452. }
  3453. #u34565_img.selectedDisabled {
  3454. }
  3455. #u34565.selectedDisabled {
  3456. }
  3457. #u34565_text {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:14px;
  3461. top:0px;
  3462. width:102px;
  3463. word-wrap:break-word;
  3464. text-transform:none;
  3465. }
  3466. #u34565_input {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:0px;
  3470. top:0px;
  3471. width:0px;
  3472. height:0px;
  3473. opacity:0;
  3474. }
  3475. #u34566 label {
  3476. left:0px;
  3477. width:100%;
  3478. }
  3479. #u34566_img {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:0px;
  3483. top:4px;
  3484. width:12px;
  3485. height:12px;
  3486. }
  3487. #u34566 {
  3488. border-width:0px;
  3489. position:absolute;
  3490. left:1364px;
  3491. top:830px;
  3492. width:118px;
  3493. height:20px;
  3494. display:flex;
  3495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3496. font-weight:400;
  3497. font-style:normal;
  3498. font-size:14px;
  3499. }
  3500. #u34566 .text {
  3501. position:absolute;
  3502. align-self:center;
  3503. padding:0px 2px 0px 2px;
  3504. box-sizing:border-box;
  3505. }
  3506. #u34566_img.selected {
  3507. }
  3508. #u34566.selected {
  3509. }
  3510. #u34566_img.disabled {
  3511. }
  3512. #u34566.disabled {
  3513. }
  3514. #u34566_img.selectedDisabled {
  3515. }
  3516. #u34566.selectedDisabled {
  3517. }
  3518. #u34566_text {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:14px;
  3522. top:0px;
  3523. width:102px;
  3524. word-wrap:break-word;
  3525. text-transform:none;
  3526. }
  3527. #u34566_input {
  3528. border-width:0px;
  3529. position:absolute;
  3530. left:0px;
  3531. top:0px;
  3532. width:0px;
  3533. height:0px;
  3534. opacity:0;
  3535. }
  3536. #u34567 label {
  3537. left:0px;
  3538. width:100%;
  3539. }
  3540. #u34567_img {
  3541. border-width:0px;
  3542. position:absolute;
  3543. left:0px;
  3544. top:4px;
  3545. width:12px;
  3546. height:12px;
  3547. }
  3548. #u34567 {
  3549. border-width:0px;
  3550. position:absolute;
  3551. left:1364px;
  3552. top:620px;
  3553. width:118px;
  3554. height:20px;
  3555. display:flex;
  3556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3557. font-weight:400;
  3558. font-style:normal;
  3559. font-size:14px;
  3560. }
  3561. #u34567 .text {
  3562. position:absolute;
  3563. align-self:center;
  3564. padding:0px 2px 0px 2px;
  3565. box-sizing:border-box;
  3566. }
  3567. #u34567_img.selected {
  3568. }
  3569. #u34567.selected {
  3570. }
  3571. #u34567_img.disabled {
  3572. }
  3573. #u34567.disabled {
  3574. }
  3575. #u34567_img.selectedDisabled {
  3576. }
  3577. #u34567.selectedDisabled {
  3578. }
  3579. #u34567_text {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:14px;
  3583. top:0px;
  3584. width:102px;
  3585. word-wrap:break-word;
  3586. text-transform:none;
  3587. }
  3588. #u34567_input {
  3589. border-width:0px;
  3590. position:absolute;
  3591. left:0px;
  3592. top:0px;
  3593. width:0px;
  3594. height:0px;
  3595. opacity:0;
  3596. }
  3597. #u34568 label {
  3598. left:0px;
  3599. width:100%;
  3600. }
  3601. #u34568_img {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:0px;
  3605. top:4px;
  3606. width:12px;
  3607. height:12px;
  3608. }
  3609. #u34568 {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:1364px;
  3613. top:650px;
  3614. width:118px;
  3615. height:20px;
  3616. display:flex;
  3617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3618. font-weight:400;
  3619. font-style:normal;
  3620. font-size:14px;
  3621. }
  3622. #u34568 .text {
  3623. position:absolute;
  3624. align-self:center;
  3625. padding:0px 2px 0px 2px;
  3626. box-sizing:border-box;
  3627. }
  3628. #u34568_img.selected {
  3629. }
  3630. #u34568.selected {
  3631. }
  3632. #u34568_img.disabled {
  3633. }
  3634. #u34568.disabled {
  3635. }
  3636. #u34568_img.selectedDisabled {
  3637. }
  3638. #u34568.selectedDisabled {
  3639. }
  3640. #u34568_text {
  3641. border-width:0px;
  3642. position:absolute;
  3643. left:14px;
  3644. top:0px;
  3645. width:102px;
  3646. word-wrap:break-word;
  3647. text-transform:none;
  3648. }
  3649. #u34568_input {
  3650. border-width:0px;
  3651. position:absolute;
  3652. left:0px;
  3653. top:0px;
  3654. width:0px;
  3655. height:0px;
  3656. opacity:0;
  3657. }
  3658. #u34569 {
  3659. border-width:0px;
  3660. position:absolute;
  3661. left:0px;
  3662. top:0px;
  3663. width:0px;
  3664. height:0px;
  3665. }
  3666. #u34570_div {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:0px;
  3670. top:0px;
  3671. width:41px;
  3672. height:40px;
  3673. background:inherit;
  3674. background-color:rgba(255, 255, 255, 0);
  3675. border:none;
  3676. border-top:0px;
  3677. border-right:0px;
  3678. border-bottom:0px;
  3679. border-radius:0px;
  3680. border-top-left-radius:0px;
  3681. border-bottom-left-radius:0px;
  3682. -moz-box-shadow:none;
  3683. -webkit-box-shadow:none;
  3684. box-shadow:none;
  3685. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3686. font-weight:500;
  3687. font-style:normal;
  3688. font-size:12px;
  3689. }
  3690. #u34570 {
  3691. border-width:0px;
  3692. position:absolute;
  3693. left:1360px;
  3694. top:261px;
  3695. width:41px;
  3696. height:40px;
  3697. display:flex;
  3698. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3699. font-weight:500;
  3700. font-style:normal;
  3701. font-size:12px;
  3702. }
  3703. #u34570 .text {
  3704. position:absolute;
  3705. align-self:center;
  3706. padding:5px 10px 5px 0px;
  3707. box-sizing:border-box;
  3708. width:100%;
  3709. }
  3710. #u34570_text {
  3711. border-width:0px;
  3712. word-wrap:break-word;
  3713. text-transform:none;
  3714. }
  3715. #u34571_img {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:0px;
  3719. top:0px;
  3720. width:11px;
  3721. height:11px;
  3722. }
  3723. #u34571 {
  3724. border-width:0px;
  3725. position:absolute;
  3726. left:1390px;
  3727. top:276px;
  3728. width:11px;
  3729. height:11px;
  3730. display:flex;
  3731. }
  3732. #u34571 .text {
  3733. position:absolute;
  3734. align-self:center;
  3735. padding:2px 2px 2px 2px;
  3736. box-sizing:border-box;
  3737. width:100%;
  3738. }
  3739. #u34571_text {
  3740. border-width:0px;
  3741. word-wrap:break-word;
  3742. text-transform:none;
  3743. visibility:hidden;
  3744. }
  3745. #u34572 {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:0px;
  3749. top:0px;
  3750. width:0px;
  3751. height:0px;
  3752. }
  3753. #u34573_div {
  3754. border-width:0px;
  3755. position:absolute;
  3756. left:0px;
  3757. top:0px;
  3758. width:59px;
  3759. height:40px;
  3760. background:inherit;
  3761. background-color:rgba(255, 255, 255, 0);
  3762. border:none;
  3763. border-top:0px;
  3764. border-right:0px;
  3765. border-bottom:0px;
  3766. border-radius:0px;
  3767. border-top-left-radius:0px;
  3768. border-bottom-left-radius:0px;
  3769. -moz-box-shadow:none;
  3770. -webkit-box-shadow:none;
  3771. box-shadow:none;
  3772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3773. font-weight:400;
  3774. font-style:normal;
  3775. font-size:12px;
  3776. }
  3777. #u34573 {
  3778. border-width:0px;
  3779. position:absolute;
  3780. left:1360px;
  3781. top:465px;
  3782. width:59px;
  3783. height:40px;
  3784. display:flex;
  3785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3786. font-weight:400;
  3787. font-style:normal;
  3788. font-size:12px;
  3789. }
  3790. #u34573 .text {
  3791. position:absolute;
  3792. align-self:center;
  3793. padding:5px 10px 5px 0px;
  3794. box-sizing:border-box;
  3795. width:100%;
  3796. }
  3797. #u34573_text {
  3798. border-width:0px;
  3799. white-space:nowrap;
  3800. text-transform:none;
  3801. }
  3802. #u34574_img {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:0px;
  3806. top:0px;
  3807. width:11px;
  3808. height:11px;
  3809. }
  3810. #u34574 {
  3811. border-width:0px;
  3812. position:absolute;
  3813. left:1415px;
  3814. top:480px;
  3815. width:11px;
  3816. height:11px;
  3817. display:flex;
  3818. }
  3819. #u34574 .text {
  3820. position:absolute;
  3821. align-self:center;
  3822. padding:2px 2px 2px 2px;
  3823. box-sizing:border-box;
  3824. width:100%;
  3825. }
  3826. #u34574_text {
  3827. border-width:0px;
  3828. word-wrap:break-word;
  3829. text-transform:none;
  3830. visibility:hidden;
  3831. }
  3832. #u34575_img {
  3833. border-width:0px;
  3834. position:absolute;
  3835. left:0px;
  3836. top:0px;
  3837. width:11px;
  3838. height:11px;
  3839. }
  3840. #u34575 {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:1414px;
  3844. top:204px;
  3845. width:11px;
  3846. height:11px;
  3847. display:flex;
  3848. }
  3849. #u34575 .text {
  3850. position:absolute;
  3851. align-self:center;
  3852. padding:2px 2px 2px 2px;
  3853. box-sizing:border-box;
  3854. width:100%;
  3855. }
  3856. #u34575_text {
  3857. border-width:0px;
  3858. word-wrap:break-word;
  3859. text-transform:none;
  3860. visibility:hidden;
  3861. }
  3862. #u34576 {
  3863. border-width:0px;
  3864. position:absolute;
  3865. left:0px;
  3866. top:0px;
  3867. width:0px;
  3868. height:0px;
  3869. }
  3870. #u34577_img {
  3871. border-width:0px;
  3872. position:absolute;
  3873. left:0px;
  3874. top:0px;
  3875. width:255px;
  3876. height:2px;
  3877. }
  3878. #u34577 {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:1356px;
  3882. top:912px;
  3883. width:254px;
  3884. height:1px;
  3885. display:flex;
  3886. }
  3887. #u34577 .text {
  3888. position:absolute;
  3889. align-self:center;
  3890. padding:2px 2px 2px 2px;
  3891. box-sizing:border-box;
  3892. width:100%;
  3893. }
  3894. #u34577_text {
  3895. border-width:0px;
  3896. word-wrap:break-word;
  3897. text-transform:none;
  3898. visibility:hidden;
  3899. }
  3900. #u34578_div {
  3901. border-width:0px;
  3902. position:absolute;
  3903. left:0px;
  3904. top:0px;
  3905. width:74px;
  3906. height:30px;
  3907. background:inherit;
  3908. background-color:rgba(255, 255, 255, 1);
  3909. border:none;
  3910. border-top:0px;
  3911. border-right:0px;
  3912. border-bottom:0px;
  3913. border-radius:0px;
  3914. border-top-left-radius:0px;
  3915. border-bottom-left-radius:0px;
  3916. -moz-box-shadow:none;
  3917. -webkit-box-shadow:none;
  3918. box-shadow:none;
  3919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3920. font-weight:400;
  3921. font-style:normal;
  3922. font-size:14px;
  3923. text-align:center;
  3924. }
  3925. #u34578 {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:1445px;
  3929. top:898px;
  3930. width:74px;
  3931. height:30px;
  3932. display:flex;
  3933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3934. font-weight:400;
  3935. font-style:normal;
  3936. font-size:14px;
  3937. text-align:center;
  3938. }
  3939. #u34578 .text {
  3940. position:absolute;
  3941. align-self:center;
  3942. padding:5px 0px 5px 0px;
  3943. box-sizing:border-box;
  3944. width:100%;
  3945. }
  3946. #u34578_text {
  3947. border-width:0px;
  3948. word-wrap:break-word;
  3949. text-transform:none;
  3950. }
  3951. #u34579_div {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:0px;
  3955. top:0px;
  3956. width:74px;
  3957. height:26px;
  3958. background:inherit;
  3959. background-color:rgba(255, 255, 255, 1);
  3960. border:none;
  3961. border-top:0px;
  3962. border-right:0px;
  3963. border-bottom:0px;
  3964. border-radius:0px;
  3965. border-top-left-radius:0px;
  3966. border-bottom-left-radius:0px;
  3967. -moz-box-shadow:none;
  3968. -webkit-box-shadow:none;
  3969. box-shadow:none;
  3970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3971. font-weight:400;
  3972. font-style:normal;
  3973. font-size:11px;
  3974. color:#198CFB;
  3975. }
  3976. #u34579 {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:1356px;
  3980. top:933px;
  3981. width:74px;
  3982. height:26px;
  3983. display:flex;
  3984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3985. font-weight:400;
  3986. font-style:normal;
  3987. font-size:11px;
  3988. color:#198CFB;
  3989. }
  3990. #u34579 .text {
  3991. position:absolute;
  3992. align-self:center;
  3993. padding:5px 0px 5px 0px;
  3994. box-sizing:border-box;
  3995. width:100%;
  3996. }
  3997. #u34579_text {
  3998. border-width:0px;
  3999. word-wrap:break-word;
  4000. text-transform:none;
  4001. }
  4002. #u34580 label {
  4003. left:0px;
  4004. width:100%;
  4005. }
  4006. #u34580_img {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:0px;
  4010. top:3px;
  4011. width:12px;
  4012. height:12px;
  4013. }
  4014. #u34580 {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:1364px;
  4018. top:860px;
  4019. width:141px;
  4020. height:18px;
  4021. display:flex;
  4022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4023. font-weight:400;
  4024. font-style:normal;
  4025. }
  4026. #u34580 .text {
  4027. position:absolute;
  4028. align-self:center;
  4029. padding:0px 2px 0px 2px;
  4030. box-sizing:border-box;
  4031. }
  4032. #u34580_img.selected {
  4033. }
  4034. #u34580.selected {
  4035. }
  4036. #u34580_img.disabled {
  4037. }
  4038. #u34580.disabled {
  4039. }
  4040. #u34580_img.selectedDisabled {
  4041. }
  4042. #u34580.selectedDisabled {
  4043. }
  4044. #u34580_text {
  4045. border-width:0px;
  4046. position:absolute;
  4047. left:14px;
  4048. top:0px;
  4049. width:125px;
  4050. word-wrap:break-word;
  4051. text-transform:none;
  4052. }
  4053. #u34580_input {
  4054. border-width:0px;
  4055. position:absolute;
  4056. left:0px;
  4057. top:0px;
  4058. width:0px;
  4059. height:0px;
  4060. opacity:0;
  4061. }
  4062. #u34581_div {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:0px;
  4066. top:0px;
  4067. width:140px;
  4068. height:39px;
  4069. background:inherit;
  4070. background-color:rgba(255, 255, 255, 1);
  4071. box-sizing:border-box;
  4072. border-width:3px;
  4073. border-style:solid;
  4074. border-color:rgba(25, 140, 251, 1);
  4075. border-left:0px;
  4076. border-top:0px;
  4077. border-right:0px;
  4078. border-radius:0px;
  4079. border-bottom-right-radius:0px;
  4080. border-bottom-left-radius:0px;
  4081. -moz-box-shadow:none;
  4082. -webkit-box-shadow:none;
  4083. box-shadow:none;
  4084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4085. font-weight:400;
  4086. font-style:normal;
  4087. font-size:14px;
  4088. color:#1890FF;
  4089. text-align:center;
  4090. line-height:30px;
  4091. }
  4092. #u34581 {
  4093. border-width:0px;
  4094. position:absolute;
  4095. left:1340px;
  4096. top:111px;
  4097. width:140px;
  4098. height:39px;
  4099. display:flex;
  4100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4101. font-weight:400;
  4102. font-style:normal;
  4103. font-size:14px;
  4104. color:#1890FF;
  4105. text-align:center;
  4106. line-height:30px;
  4107. }
  4108. #u34581 .text {
  4109. position:absolute;
  4110. align-self:center;
  4111. padding:5px 10px 5px 10px;
  4112. box-sizing:border-box;
  4113. width:100%;
  4114. }
  4115. #u34581_text {
  4116. border-width:0px;
  4117. word-wrap:break-word;
  4118. text-transform:none;
  4119. }
  4120. #u34582_div {
  4121. border-width:0px;
  4122. position:absolute;
  4123. left:0px;
  4124. top:0px;
  4125. width:140px;
  4126. height:39px;
  4127. background:inherit;
  4128. background-color:rgba(255, 255, 255, 1);
  4129. border:none;
  4130. border-left:0px;
  4131. border-top:0px;
  4132. border-right:0px;
  4133. border-radius:0px;
  4134. border-bottom-right-radius:0px;
  4135. border-bottom-left-radius:0px;
  4136. -moz-box-shadow:none;
  4137. -webkit-box-shadow:none;
  4138. box-shadow:none;
  4139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4140. font-weight:400;
  4141. font-style:normal;
  4142. font-size:14px;
  4143. text-align:center;
  4144. line-height:30px;
  4145. }
  4146. #u34582 {
  4147. border-width:0px;
  4148. position:absolute;
  4149. left:1479px;
  4150. top:111px;
  4151. width:140px;
  4152. height:39px;
  4153. display:flex;
  4154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4155. font-weight:400;
  4156. font-style:normal;
  4157. font-size:14px;
  4158. text-align:center;
  4159. line-height:30px;
  4160. }
  4161. #u34582 .text {
  4162. position:absolute;
  4163. align-self:center;
  4164. padding:5px 10px 5px 10px;
  4165. box-sizing:border-box;
  4166. width:100%;
  4167. }
  4168. #u34582_text {
  4169. border-width:0px;
  4170. word-wrap:break-word;
  4171. text-transform:none;
  4172. }
  4173. #u34583 label {
  4174. left:0px;
  4175. width:100%;
  4176. }
  4177. #u34583_img {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:0px;
  4181. top:4px;
  4182. width:12px;
  4183. height:12px;
  4184. }
  4185. #u34583 {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:1364px;
  4189. top:740px;
  4190. width:118px;
  4191. height:20px;
  4192. display:flex;
  4193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4194. font-weight:400;
  4195. font-style:normal;
  4196. font-size:14px;
  4197. }
  4198. #u34583 .text {
  4199. position:absolute;
  4200. align-self:center;
  4201. padding:0px 2px 0px 2px;
  4202. box-sizing:border-box;
  4203. }
  4204. #u34583_img.selected {
  4205. }
  4206. #u34583.selected {
  4207. }
  4208. #u34583_img.disabled {
  4209. }
  4210. #u34583.disabled {
  4211. }
  4212. #u34583_img.selectedDisabled {
  4213. }
  4214. #u34583.selectedDisabled {
  4215. }
  4216. #u34583_text {
  4217. border-width:0px;
  4218. position:absolute;
  4219. left:14px;
  4220. top:0px;
  4221. width:102px;
  4222. word-wrap:break-word;
  4223. text-transform:none;
  4224. }
  4225. #u34583_input {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:0px;
  4229. top:0px;
  4230. width:0px;
  4231. height:0px;
  4232. opacity:0;
  4233. }
  4234. #u34584 label {
  4235. left:0px;
  4236. width:100%;
  4237. }
  4238. #u34584_img {
  4239. border-width:0px;
  4240. position:absolute;
  4241. left:0px;
  4242. top:4px;
  4243. width:12px;
  4244. height:12px;
  4245. }
  4246. #u34584 {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:1364px;
  4250. top:710px;
  4251. width:118px;
  4252. height:20px;
  4253. display:flex;
  4254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4255. font-weight:400;
  4256. font-style:normal;
  4257. font-size:14px;
  4258. }
  4259. #u34584 .text {
  4260. position:absolute;
  4261. align-self:center;
  4262. padding:0px 2px 0px 2px;
  4263. box-sizing:border-box;
  4264. }
  4265. #u34584_img.selected {
  4266. }
  4267. #u34584.selected {
  4268. }
  4269. #u34584_img.disabled {
  4270. }
  4271. #u34584.disabled {
  4272. }
  4273. #u34584_img.selectedDisabled {
  4274. }
  4275. #u34584.selectedDisabled {
  4276. }
  4277. #u34584_text {
  4278. border-width:0px;
  4279. position:absolute;
  4280. left:14px;
  4281. top:0px;
  4282. width:102px;
  4283. word-wrap:break-word;
  4284. text-transform:none;
  4285. }
  4286. #u34584_input {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:0px;
  4290. top:0px;
  4291. width:0px;
  4292. height:0px;
  4293. opacity:0;
  4294. }
  4295. #u34585 label {
  4296. left:0px;
  4297. width:100%;
  4298. }
  4299. #u34585_img {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:0px;
  4303. top:4px;
  4304. width:12px;
  4305. height:12px;
  4306. }
  4307. #u34585 {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:1364px;
  4311. top:770px;
  4312. width:118px;
  4313. height:20px;
  4314. display:flex;
  4315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4316. font-weight:400;
  4317. font-style:normal;
  4318. font-size:14px;
  4319. }
  4320. #u34585 .text {
  4321. position:absolute;
  4322. align-self:center;
  4323. padding:0px 2px 0px 2px;
  4324. box-sizing:border-box;
  4325. }
  4326. #u34585_img.selected {
  4327. }
  4328. #u34585.selected {
  4329. }
  4330. #u34585_img.disabled {
  4331. }
  4332. #u34585.disabled {
  4333. }
  4334. #u34585_img.selectedDisabled {
  4335. }
  4336. #u34585.selectedDisabled {
  4337. }
  4338. #u34585_text {
  4339. border-width:0px;
  4340. position:absolute;
  4341. left:14px;
  4342. top:0px;
  4343. width:102px;
  4344. word-wrap:break-word;
  4345. text-transform:none;
  4346. }
  4347. #u34585_input {
  4348. border-width:0px;
  4349. position:absolute;
  4350. left:0px;
  4351. top:0px;
  4352. width:0px;
  4353. height:0px;
  4354. opacity:0;
  4355. }
  4356. #u34586 label {
  4357. left:0px;
  4358. width:100%;
  4359. }
  4360. #u34586_img {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:0px;
  4364. top:4px;
  4365. width:12px;
  4366. height:12px;
  4367. }
  4368. #u34586 {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:1364px;
  4372. top:800px;
  4373. width:118px;
  4374. height:20px;
  4375. display:flex;
  4376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4377. font-weight:400;
  4378. font-style:normal;
  4379. font-size:14px;
  4380. }
  4381. #u34586 .text {
  4382. position:absolute;
  4383. align-self:center;
  4384. padding:0px 2px 0px 2px;
  4385. box-sizing:border-box;
  4386. }
  4387. #u34586_img.selected {
  4388. }
  4389. #u34586.selected {
  4390. }
  4391. #u34586_img.disabled {
  4392. }
  4393. #u34586.disabled {
  4394. }
  4395. #u34586_img.selectedDisabled {
  4396. }
  4397. #u34586.selectedDisabled {
  4398. }
  4399. #u34586_text {
  4400. border-width:0px;
  4401. position:absolute;
  4402. left:14px;
  4403. top:0px;
  4404. width:102px;
  4405. word-wrap:break-word;
  4406. text-transform:none;
  4407. }
  4408. #u34586_input {
  4409. border-width:0px;
  4410. position:absolute;
  4411. left:0px;
  4412. top:0px;
  4413. width:0px;
  4414. height:0px;
  4415. opacity:0;
  4416. }
  4417. #u34587 {
  4418. border-width:0px;
  4419. position:absolute;
  4420. left:0px;
  4421. top:0px;
  4422. width:0px;
  4423. height:0px;
  4424. }
  4425. #u34588_div {
  4426. border-width:0px;
  4427. position:absolute;
  4428. left:0px;
  4429. top:0px;
  4430. width:236px;
  4431. height:30px;
  4432. background:inherit;
  4433. background-color:rgba(255, 255, 255, 1);
  4434. box-sizing:border-box;
  4435. border-width:1px;
  4436. border-style:solid;
  4437. border-color:rgba(215, 215, 215, 1);
  4438. border-radius:4px;
  4439. -moz-box-shadow:none;
  4440. -webkit-box-shadow:none;
  4441. box-shadow:none;
  4442. font-size:11px;
  4443. }
  4444. #u34588 {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:1360px;
  4448. top:435px;
  4449. width:236px;
  4450. height:30px;
  4451. display:flex;
  4452. font-size:11px;
  4453. }
  4454. #u34588 .text {
  4455. position:absolute;
  4456. align-self:center;
  4457. padding:2px 2px 2px 2px;
  4458. box-sizing:border-box;
  4459. width:100%;
  4460. }
  4461. #u34588_text {
  4462. border-width:0px;
  4463. word-wrap:break-word;
  4464. text-transform:none;
  4465. visibility:hidden;
  4466. }
  4467. #u34589_input {
  4468. position:absolute;
  4469. left:0px;
  4470. top:0px;
  4471. width:224px;
  4472. height:23px;
  4473. padding:2px 2px 2px 2px;
  4474. font-family:'ArialMT', 'Arial', sans-serif;
  4475. font-weight:400;
  4476. font-style:normal;
  4477. font-size:12px;
  4478. letter-spacing:normal;
  4479. color:#AAAAAA;
  4480. vertical-align:none;
  4481. text-align:left;
  4482. text-transform:none;
  4483. background-color:transparent;
  4484. border-color:transparent;
  4485. }
  4486. #u34589_input.disabled {
  4487. position:absolute;
  4488. left:0px;
  4489. top:0px;
  4490. width:224px;
  4491. height:23px;
  4492. padding:2px 2px 2px 2px;
  4493. font-family:'ArialMT', 'Arial', sans-serif;
  4494. font-weight:400;
  4495. font-style:normal;
  4496. font-size:12px;
  4497. letter-spacing:normal;
  4498. color:#AAAAAA;
  4499. vertical-align:none;
  4500. text-align:left;
  4501. text-transform:none;
  4502. background-color:transparent;
  4503. border-color:transparent;
  4504. }
  4505. #u34589_div {
  4506. border-width:0px;
  4507. position:absolute;
  4508. left:0px;
  4509. top:0px;
  4510. width:224px;
  4511. height:23px;
  4512. background:inherit;
  4513. background-color:rgba(255, 255, 255, 1);
  4514. border:none;
  4515. border-radius:0px;
  4516. -moz-box-shadow:none;
  4517. -webkit-box-shadow:none;
  4518. box-shadow:none;
  4519. font-size:12px;
  4520. color:#AAAAAA;
  4521. }
  4522. #u34589 {
  4523. border-width:0px;
  4524. position:absolute;
  4525. left:1366px;
  4526. top:437px;
  4527. width:224px;
  4528. height:23px;
  4529. display:flex;
  4530. font-size:12px;
  4531. color:#AAAAAA;
  4532. }
  4533. #u34589 .text {
  4534. position:absolute;
  4535. align-self:flex-start;
  4536. padding:2px 2px 2px 2px;
  4537. box-sizing:border-box;
  4538. width:100%;
  4539. }
  4540. #u34589_div.disabled {
  4541. border-width:0px;
  4542. position:absolute;
  4543. left:0px;
  4544. top:0px;
  4545. width:224px;
  4546. height:23px;
  4547. background:inherit;
  4548. background-color:rgba(240, 240, 240, 1);
  4549. border:none;
  4550. border-radius:0px;
  4551. -moz-box-shadow:none;
  4552. -webkit-box-shadow:none;
  4553. box-shadow:none;
  4554. font-size:12px;
  4555. color:#AAAAAA;
  4556. }
  4557. #u34589.disabled {
  4558. }
  4559. .u34589_input_option {
  4560. font-size:12px;
  4561. }
  4562. #u34590_div {
  4563. border-width:0px;
  4564. position:absolute;
  4565. left:0px;
  4566. top:0px;
  4567. width:59px;
  4568. height:40px;
  4569. background:inherit;
  4570. background-color:rgba(255, 255, 255, 0);
  4571. border:none;
  4572. border-top:0px;
  4573. border-right:0px;
  4574. border-bottom:0px;
  4575. border-radius:0px;
  4576. border-top-left-radius:0px;
  4577. border-bottom-left-radius:0px;
  4578. -moz-box-shadow:none;
  4579. -webkit-box-shadow:none;
  4580. box-shadow:none;
  4581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4582. font-weight:400;
  4583. font-style:normal;
  4584. font-size:12px;
  4585. }
  4586. #u34590 {
  4587. border-width:0px;
  4588. position:absolute;
  4589. left:1360px;
  4590. top:395px;
  4591. width:59px;
  4592. height:40px;
  4593. display:flex;
  4594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4595. font-weight:400;
  4596. font-style:normal;
  4597. font-size:12px;
  4598. }
  4599. #u34590 .text {
  4600. position:absolute;
  4601. align-self:center;
  4602. padding:5px 10px 5px 0px;
  4603. box-sizing:border-box;
  4604. width:100%;
  4605. }
  4606. #u34590_text {
  4607. border-width:0px;
  4608. white-space:nowrap;
  4609. text-transform:none;
  4610. }
  4611. #u34591 label {
  4612. left:0px;
  4613. width:100%;
  4614. }
  4615. #u34591_img {
  4616. border-width:0px;
  4617. position:absolute;
  4618. left:0px;
  4619. top:4px;
  4620. width:12px;
  4621. height:12px;
  4622. }
  4623. #u34591 {
  4624. border-width:0px;
  4625. position:absolute;
  4626. left:1360px;
  4627. top:505px;
  4628. width:118px;
  4629. height:20px;
  4630. display:flex;
  4631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4632. font-weight:400;
  4633. font-style:normal;
  4634. font-size:14px;
  4635. }
  4636. #u34591 .text {
  4637. position:absolute;
  4638. align-self:center;
  4639. padding:0px 2px 0px 2px;
  4640. box-sizing:border-box;
  4641. }
  4642. #u34591_img.selected {
  4643. }
  4644. #u34591.selected {
  4645. }
  4646. #u34591_img.disabled {
  4647. }
  4648. #u34591.disabled {
  4649. }
  4650. #u34591_img.selectedDisabled {
  4651. }
  4652. #u34591.selectedDisabled {
  4653. }
  4654. #u34591_text {
  4655. border-width:0px;
  4656. position:absolute;
  4657. left:14px;
  4658. top:0px;
  4659. width:102px;
  4660. word-wrap:break-word;
  4661. text-transform:none;
  4662. }
  4663. #u34591_input {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:0px;
  4667. top:0px;
  4668. width:0px;
  4669. height:0px;
  4670. opacity:0;
  4671. }
  4672. #u34592 {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:0px;
  4676. top:0px;
  4677. width:0px;
  4678. height:0px;
  4679. }
  4680. #u34593_div {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:0px;
  4684. top:0px;
  4685. width:236px;
  4686. height:30px;
  4687. background:inherit;
  4688. background-color:rgba(255, 255, 255, 1);
  4689. box-sizing:border-box;
  4690. border-width:1px;
  4691. border-style:solid;
  4692. border-color:rgba(215, 215, 215, 1);
  4693. border-radius:4px;
  4694. -moz-box-shadow:none;
  4695. -webkit-box-shadow:none;
  4696. box-shadow:none;
  4697. font-size:11px;
  4698. }
  4699. #u34593 {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:1360px;
  4703. top:535px;
  4704. width:236px;
  4705. height:30px;
  4706. display:flex;
  4707. font-size:11px;
  4708. }
  4709. #u34593 .text {
  4710. position:absolute;
  4711. align-self:center;
  4712. padding:2px 2px 2px 2px;
  4713. box-sizing:border-box;
  4714. width:100%;
  4715. }
  4716. #u34593_text {
  4717. border-width:0px;
  4718. word-wrap:break-word;
  4719. text-transform:none;
  4720. visibility:hidden;
  4721. }
  4722. #u34594_input {
  4723. position:absolute;
  4724. left:0px;
  4725. top:0px;
  4726. width:224px;
  4727. height:23px;
  4728. padding:2px 2px 2px 2px;
  4729. font-family:'ArialMT', 'Arial', sans-serif;
  4730. font-weight:400;
  4731. font-style:normal;
  4732. font-size:12px;
  4733. letter-spacing:normal;
  4734. color:#AAAAAA;
  4735. vertical-align:none;
  4736. text-align:left;
  4737. text-transform:none;
  4738. background-color:transparent;
  4739. border-color:transparent;
  4740. }
  4741. #u34594_input.disabled {
  4742. position:absolute;
  4743. left:0px;
  4744. top:0px;
  4745. width:224px;
  4746. height:23px;
  4747. padding:2px 2px 2px 2px;
  4748. font-family:'ArialMT', 'Arial', sans-serif;
  4749. font-weight:400;
  4750. font-style:normal;
  4751. font-size:12px;
  4752. letter-spacing:normal;
  4753. color:#AAAAAA;
  4754. vertical-align:none;
  4755. text-align:left;
  4756. text-transform:none;
  4757. background-color:transparent;
  4758. border-color:transparent;
  4759. }
  4760. #u34594_div {
  4761. border-width:0px;
  4762. position:absolute;
  4763. left:0px;
  4764. top:0px;
  4765. width:224px;
  4766. height:23px;
  4767. background:inherit;
  4768. background-color:rgba(255, 255, 255, 1);
  4769. border:none;
  4770. border-radius:0px;
  4771. -moz-box-shadow:none;
  4772. -webkit-box-shadow:none;
  4773. box-shadow:none;
  4774. font-size:12px;
  4775. color:#AAAAAA;
  4776. }
  4777. #u34594 {
  4778. border-width:0px;
  4779. position:absolute;
  4780. left:1366px;
  4781. top:537px;
  4782. width:224px;
  4783. height:23px;
  4784. display:flex;
  4785. font-size:12px;
  4786. color:#AAAAAA;
  4787. }
  4788. #u34594 .text {
  4789. position:absolute;
  4790. align-self:flex-start;
  4791. padding:2px 2px 2px 2px;
  4792. box-sizing:border-box;
  4793. width:100%;
  4794. }
  4795. #u34594_div.disabled {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:0px;
  4799. top:0px;
  4800. width:224px;
  4801. height:23px;
  4802. background:inherit;
  4803. background-color:rgba(240, 240, 240, 1);
  4804. border:none;
  4805. border-radius:0px;
  4806. -moz-box-shadow:none;
  4807. -webkit-box-shadow:none;
  4808. box-shadow:none;
  4809. font-size:12px;
  4810. color:#AAAAAA;
  4811. }
  4812. #u34594.disabled {
  4813. }
  4814. .u34594_input_option {
  4815. font-size:12px;
  4816. }
  4817. #u34595 {
  4818. border-width:0px;
  4819. position:absolute;
  4820. left:0px;
  4821. top:0px;
  4822. width:0px;
  4823. height:0px;
  4824. }
  4825. #u34596_div {
  4826. border-width:0px;
  4827. position:absolute;
  4828. left:0px;
  4829. top:0px;
  4830. width:236px;
  4831. height:30px;
  4832. background:inherit;
  4833. background-color:rgba(255, 255, 255, 1);
  4834. box-sizing:border-box;
  4835. border-width:1px;
  4836. border-style:solid;
  4837. border-color:rgba(201, 201, 201, 1);
  4838. border-radius:4px;
  4839. -moz-box-shadow:none;
  4840. -webkit-box-shadow:none;
  4841. box-shadow:none;
  4842. font-family:'Helvetica', sans-serif;
  4843. font-weight:400;
  4844. font-style:normal;
  4845. font-size:10px;
  4846. color:#CCCCCC;
  4847. text-align:right;
  4848. }
  4849. #u34596 {
  4850. border-width:0px;
  4851. position:absolute;
  4852. left:1360px;
  4853. top:570px;
  4854. width:236px;
  4855. height:30px;
  4856. display:flex;
  4857. font-family:'Helvetica', sans-serif;
  4858. font-weight:400;
  4859. font-style:normal;
  4860. font-size:10px;
  4861. color:#CCCCCC;
  4862. text-align:right;
  4863. }
  4864. #u34596 .text {
  4865. position:absolute;
  4866. align-self:center;
  4867. padding:2px 8px 2px 8px;
  4868. box-sizing:border-box;
  4869. width:100%;
  4870. }
  4871. #u34596_text {
  4872. border-width:0px;
  4873. word-wrap:break-word;
  4874. text-transform:none;
  4875. visibility:hidden;
  4876. }
  4877. #u34597_input {
  4878. position:absolute;
  4879. left:0px;
  4880. top:0px;
  4881. width:207px;
  4882. height:28px;
  4883. padding:2px 2px 2px 2px;
  4884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4885. font-weight:400;
  4886. font-style:normal;
  4887. font-size:14px;
  4888. letter-spacing:normal;
  4889. color:#000000;
  4890. vertical-align:none;
  4891. text-align:left;
  4892. text-transform:none;
  4893. background-color:transparent;
  4894. border-color:transparent;
  4895. }
  4896. #u34597_input.disabled {
  4897. position:absolute;
  4898. left:0px;
  4899. top:0px;
  4900. width:207px;
  4901. height:28px;
  4902. padding:2px 2px 2px 2px;
  4903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4904. font-weight:400;
  4905. font-style:normal;
  4906. font-size:14px;
  4907. letter-spacing:normal;
  4908. color:#000000;
  4909. vertical-align:none;
  4910. text-align:left;
  4911. text-transform:none;
  4912. background-color:transparent;
  4913. border-color:transparent;
  4914. }
  4915. #u34597_div {
  4916. border-width:0px;
  4917. position:absolute;
  4918. left:0px;
  4919. top:0px;
  4920. width:207px;
  4921. height:28px;
  4922. background:inherit;
  4923. background-color:rgba(255, 255, 255, 1);
  4924. border:none;
  4925. border-radius:0px;
  4926. -moz-box-shadow:none;
  4927. -webkit-box-shadow:none;
  4928. box-shadow:none;
  4929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4930. font-weight:400;
  4931. font-style:normal;
  4932. font-size:14px;
  4933. }
  4934. #u34597 {
  4935. border-width:0px;
  4936. position:absolute;
  4937. left:1366px;
  4938. top:571px;
  4939. width:207px;
  4940. height:28px;
  4941. display:flex;
  4942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4943. font-weight:400;
  4944. font-style:normal;
  4945. font-size:14px;
  4946. }
  4947. #u34597 .text {
  4948. position:absolute;
  4949. align-self:center;
  4950. padding:2px 2px 2px 2px;
  4951. box-sizing:border-box;
  4952. width:100%;
  4953. }
  4954. #u34597_div.disabled {
  4955. border-width:0px;
  4956. position:absolute;
  4957. left:0px;
  4958. top:0px;
  4959. width:207px;
  4960. height:28px;
  4961. background:inherit;
  4962. background-color:rgba(240, 240, 240, 1);
  4963. border:none;
  4964. border-radius:0px;
  4965. -moz-box-shadow:none;
  4966. -webkit-box-shadow:none;
  4967. box-shadow:none;
  4968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4969. font-weight:400;
  4970. font-style:normal;
  4971. font-size:14px;
  4972. }
  4973. #u34597.disabled {
  4974. }